From eda5fa48d29906c296ef65e37927c31e5337bc79 Mon Sep 17 00:00:00 2001
From: Spit <110714733+Otari98@users.noreply.github.com>
Date: Sat, 7 Sep 2024 01:03:38 +0300
Subject: [PATCH] Overhaul
---
Core/AtlasLoot.lua | 495 ++++++------
Core/AtlasLoot.xml | 23 +-
Core/ButtonRegistry.lua | 747 +++++++++++++++---
Core/Crafting.lua | 577 ++++++++++----
Core/Factions.lua | 69 +-
Core/PvP.lua | 184 ++---
Core/Sets.lua | 106 +--
Core/Spells.lua | 4 +-
Core/WorldBoss.lua | 87 +++
Core/WorldEvents.lua | 10 +-
Crafting/crafting.en.lua | 1270 ++++++++++++++++++++++++++++++-
Factions/factions.lua | 121 +--
Locale/locale.en.lua | 163 ++--
PvP/Battlegrounds.en.lua | 4 +-
Sets/sets.lua | 103 ++-
TableRegister/loottables.en.lua | 137 +++-
WorldEvents/worldevents.lua | 29 +-
17 files changed, 3198 insertions(+), 931 deletions(-)
create mode 100644 Core/WorldBoss.lua
diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua
index 3fa04da..4dca047 100644
--- a/Core/AtlasLoot.lua
+++ b/Core/AtlasLoot.lua
@@ -68,8 +68,8 @@ local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
--Establish version number and compatible version of Atlas
local VERSION_MAJOR = "1";
-local VERSION_MINOR = "1";
-local VERSION_BOSSES = "3";
+local VERSION_MINOR = "2";
+local VERSION_BOSSES = "4";
ATLASLOOT_VERSION = "|cffFF8400AtlasLoot TW Edition v"..VERSION_MAJOR.."."..VERSION_MINOR.."."..VERSION_BOSSES.."|r";
ATLASLOOT_CURRENT_ATLAS = "1.12.0";
ATLASLOOT_PREVIEW_ATLAS = "1.12.1";
@@ -184,7 +184,7 @@ AtlasLoot_MenuList = {
"WORLDEPICS",
"REPMENU",
"WORLDEVENTMENU",
- "AbyssalCouncil",
+ --"AbyssalCouncil",
"ALCHEMYMENU",
"CRAFTINGMENU",
"SMITHINGMENU",
@@ -196,6 +196,7 @@ AtlasLoot_MenuList = {
"CRAFTSET",
"COOKINGMENU",
"SURVIVALMENU",
+ "WORLDBOSSMENU"
};
--entrance maps to instance maps NOT NEEDED FOR ATLAS 1.12
@@ -252,12 +253,12 @@ function AtlasLootDefaultFrame_OnShow()
--Set the item table to the loot table
AtlasLoot_SetItemInfoFrame(pFrame);
--Show the last displayed loot table
- if AtlasLoot_IsLootTableAvailable(AtlasLootCharDB.LastBoss) then
+ --if AtlasLoot_IsLootTableAvailable(AtlasLootCharDB.LastBoss) then
AtlasLoot_ShowBossLoot(AtlasLootCharDB.LastBoss, AtlasLootCharDB.LastBossText, pFrame);
--AtlasLoot_HewdropSubMenuRegister(AtlasLootCharDB.LastBoss);
- else
- AtlasLoot_ShowBossLoot("EmptyInstance", AL["AtlasLoot"], pFrame);
- end
+ --else
+ --AtlasLoot_ShowBossLoot("EmptyInstance", AL["AtlasLoot"], pFrame);
+ --end
end
--[[
@@ -598,11 +599,15 @@ function AtlasLoot_SetItemInfoFrame(pFrame)
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(AtlasFrame);
AtlasLootItemsFrame:SetPoint("TOPLEFT", "AtlasFrame", "TOPLEFT", 18, -84);
- else
+ elseif ( AtlasDefaultFrame ) then
+ AtlasLootItemsFrame:ClearAllPoints();
+ AtlasLootItemsFrame:SetParent(AtlasLootDefaultFrame);
+ AtlasLootItemsFrame:SetPoint("TOPLEFT", "AtlasLootDefaultFrame", "TOPLEFT", 0, 0);
+ --[[else
--Last resort, dump the items frame in the middle of the screen
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(UIParent);
- AtlasLootItemsFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);
+ AtlasLootItemsFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);]]
end
AtlasLootItemsFrame:Show();
end
@@ -748,7 +753,7 @@ function AtlasLoot_Refresh()
local f;
if (not getglobal("AtlasBossLine"..i)) then
f = CreateFrame("Button", "AtlasBossLine"..i, AtlasFrame, "AtlasLootNewBossLineTemplate");
- f:SetFrameStrata("MEDIUM");
+ f:SetFrameStrata("FULLSCREEN_DIALOG");
if i==1 then
f:SetPoint("TOPLEFT", "AtlasScrollBar", "TOPLEFT", 16, -3);
else
@@ -1160,8 +1165,6 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLootWorldEpicsMenu();
elseif(dataID=="WORLDEVENTMENU") then
AtlasLootWorldEventMenu();
- elseif(dataID=="AbyssalCouncil") then
- AtlasLootAbyssalCouncilMenu();
elseif(dataID=="CRAFTINGMENU") then
AtlasLoot_CraftingMenu();
elseif(dataID=="CRAFTSET") then
@@ -1184,6 +1187,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLoot_CookingMenu();
elseif(dataID=="SURVIVALMENU") then
AtlasLoot_SurvivalMenu();
+ elseif(dataID=="WORLDBOSSMENU") then
+ AtlasLoot_WorldBossMenu();
else
--Iterate through each item object and set its properties
for i = 1, 30, 1 do
@@ -1245,7 +1250,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
--This is a valid QuickLook, so show the UI objects
AtlasLoot_QuickLooks:Show();
AtlasLootQuickLooksButton:Show();
- AtlasLootServerQueryButton:Show();
+ AtlasLootServerQueryButton:Hide();
--Insert the item description
extra = dataSource[dataID][i][4];
extra = AtlasLoot_FixText(extra);
@@ -1612,6 +1617,7 @@ function AtlasLoot_HewdropSubMenuRegister(loottable)
'notCheckable', true
)
end
+ --[[
AtlasLoot_HewdropSubMenu:AddLine(
'text', AL["Close Menu"],
'textR', 0,
@@ -1620,6 +1626,7 @@ function AtlasLoot_HewdropSubMenuRegister(loottable)
'func', function() AtlasLoot_HewdropSubMenu:Close() end,
'notCheckable', true
)
+ ]]
end
end,
'dontHook', true
@@ -1667,6 +1674,8 @@ function AtlasLoot_HewdropRegister()
'textB', 0,
'hasArrow', true,
'value', j,
+ 'func', AtlasLoot_OpenMenu,
+ 'arg1', i,
'notCheckable', true
)
lock=1;
@@ -1675,7 +1684,7 @@ function AtlasLoot_HewdropRegister()
end
end
end
- --Close button
+ --[[Close button
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
@@ -1684,6 +1693,7 @@ function AtlasLoot_HewdropRegister()
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
+ ]]
elseif level == 2 then
if value then
for k,v in ipairs(value) do
@@ -1707,6 +1717,9 @@ function AtlasLoot_HewdropRegister()
else
AtlasLoot_Hewdrop:AddLine(
'text', v[1][1],
+ 'textR', 1,
+ 'textG', 0.82,
+ 'textB', 0,
'func', AtlasLoot_HewdropClick,
'arg1', v[1][2],
'arg2', v[1][1],
@@ -1735,6 +1748,7 @@ function AtlasLoot_HewdropRegister()
end
end
end
+ --[[
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
@@ -1743,6 +1757,7 @@ function AtlasLoot_HewdropRegister()
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
+ ]]
elseif level == 3 then
--Essentially the same as level == 2
if value then
@@ -1764,6 +1779,9 @@ function AtlasLoot_HewdropRegister()
else
AtlasLoot_Hewdrop:AddLine(
'text', v[1],
+ 'textR', 1,
+ 'textG', 0.82,
+ 'textB', 0,
'func', AtlasLoot_HewdropClick,
'arg1', v[2],
'arg2', v[1],
@@ -1784,6 +1802,7 @@ function AtlasLoot_HewdropRegister()
end
end
end
+ --[[
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
@@ -1792,12 +1811,45 @@ function AtlasLoot_HewdropRegister()
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
+ ]]
end
end,
'dontHook', true
)
end
+function AtlasLoot_OpenMenu(menu_name)
+ AtlasLoot_QuickLooks:Hide();
+ AtlasLootQuickLooksButton:Hide();
+ AtlasLootServerQueryButton:Hide();
+ AtlasLootCharDB.LastBoss = this.lootpage;
+ AtlasLootCharDB.LastBossText = menu_name;
+ if menu_name == "Crafting" then
+ AtlasLoot_CraftingMenu()
+ CloseDropDownMenus()
+ elseif menu_name == "PvP Rewards" then
+ AtlasLootPvPMenu()
+ CloseDropDownMenus()
+ elseif menu_name == "World Events" then
+ AtlasLootWorldEventMenu()
+ CloseDropDownMenus()
+ elseif menu_name == "Collections" then
+ AtlasLootSetMenu()
+ CloseDropDownMenus()
+ elseif menu_name == "Factions" then
+ AtlasLootRepMenu()
+ CloseDropDownMenus()
+ elseif menu_name == "World Bosses" then
+ AtlasLoot_WorldBossMenu()
+ CloseDropDownMenus()
+ end
+ AtlasLootDefaultFrame_SelectedCategory:SetText(menu_name)
+ AtlasLootDefaultFrame_SubMenu:Disable();
+ AtlasLootDefaultFrame_SelectedTable:SetText("");
+ AtlasLootDefaultFrame_SelectedTable:Show();
+
+end
+
--[[
AtlasLootItemsFrame_OnCloseButton:
Called when the close button on the item frame is clicked
@@ -1827,6 +1879,7 @@ Requests the relevant loot page from a menu screen
function AtlasLootMenuItem_OnClick()
if this.isheader == nil or this.isheader == false then
local pagename = getglobal(this:GetName().."_Name"):GetText()
+ --[[
for k,v in ipairs(AtlasLoot_HewdropDown) do
if not (type(v[1]) == "table") then
for k2, v2 in pairs(v) do
@@ -1842,6 +1895,10 @@ function AtlasLootMenuItem_OnClick()
end
end
end
+ ]]
+ CloseDropDownMenus()
+ AtlasLootCharDB.LastBoss = this.lootpage;
+ AtlasLootCharDB.LastBossText = pagename;
AtlasLoot_ShowBossLoot(this.lootpage, pagename, AtlasLoot_AnchorFrame);
end
end
@@ -1860,7 +1917,6 @@ function AtlasLoot_NavButton_OnClick()
AtlasLootCharDB.LastBoss = this.lootpage;
AtlasLootCharDB.LastBossText = this.title;
AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], this.title, AtlasLootItemsFrame.refresh[4]);
-
end
elseif AtlasLootItemsFrame.refresh and AtlasLootItemsFrame.refresh[2] then
AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], this.title, AtlasFrame);
@@ -2184,275 +2240,166 @@ end
AtlasLoot_HewdropDown = {
[1] = {
[AL["Dungeons & Raids"]] = {
- [1] = {
- { AL["Ragefire Chasm"], "RagefireChasm", "Submenu" },
- },
- [2] = {
- { AL["Wailing Caverns"], "WailingCaverns", "Submenu" },
- },
- [3] = {
- { AL["The Deadmines"], "Deadmines", "Submenu" },
- },
- [4] = {
- { AL["Shadowfang Keep"], "ShadowfangKeep", "Submenu" },
- },
- [5] = {
- { AL["Blackfathom Deeps"], "BlackfathomDeeps", "Submenu" },
- },
- [6] = {
- { AL["The Stockade"], "TheStockade", "Submenu" },
- },
- [7] = {
- { AL["Gnomeregan"], "Gnomeregan", "Submenu" },
- },
- [8] = {
- { AL["Razorfen Kraul"], "RazorfenKraul", "Submenu" },
- },
- [9] = {
- { AL["The Crescent Grove"], "TheCrescentGrove", "Submenu" },
- },
- [10] = {
- [AL["Scarlet Monastery"]] = {
+ [1] = {{ AL["Ragefire Chasm"], "RagefireChasm", "Submenu" },},
+ [2] = {{ AL["Wailing Caverns"], "WailingCaverns", "Submenu" },},
+ [3] = {{ AL["The Deadmines"], "Deadmines", "Submenu" },},
+ [4] = {{ AL["Shadowfang Keep"], "ShadowfangKeep", "Submenu" },},
+ [5] = {{ AL["Blackfathom Deeps"], "BlackfathomDeeps", "Submenu" },},
+ [6] = {{ AL["The Stockade"], "TheStockade", "Submenu" },},
+ [7] = {{ AL["Gnomeregan"], "Gnomeregan", "Submenu" },},
+ [8] = {{ AL["Razorfen Kraul"], "RazorfenKraul", "Submenu" },},
+ [9] = {{ AL["The Crescent Grove"], "TheCrescentGrove", "Submenu" },},
+ [10] = {[AL["Scarlet Monastery"]] = {
{ AL["Scarlet Monastery (Graveyard)"], "SMGraveyard", "Submenu" },
{ AL["Scarlet Monastery (Library)"], "SMLibrary", "Submenu" },
{ AL["Scarlet Monastery (Armory)"], "SMArmory", "Submenu" },
{ AL["Scarlet Monastery (Cathedral)"], "SMCathedral", "Submenu" },
- },
- },
- [11] = {
- { AL["Razorfen Downs"], "RazorfenDowns", "Submenu" },
- },
- [12] = {
- { AL["Uldaman"], "Uldaman", "Submenu" },
- },
- [13] = {
- { AL["Gilneas City"], "GilneasCity", "Submenu" },
- },
- [14] = {
- { AL["Maraudon"], "Maraudon", "Submenu" },
- },
- [15] = {
- { AL["Zul'Farrak"], "ZulFarrak", "Submenu" },
- },
- [16] = {
- { AL["The Sunken Temple"], "SunkenTemple", "Submenu" },
- },
- [17] = {
- { AL["Hateforge Quarry"], "HateforgeQuarry", "Submenu" },
- },
- [18] = {
- { AL["Blackrock Depths"], "BlackrockDepths", "Submenu" },
- },
- [19] = {
- [AL["Dire Maul"]] = {
+ },},
+ [11] = {{ AL["Razorfen Downs"], "RazorfenDowns", "Submenu" },},
+ [12] = {{ AL["Uldaman"], "Uldaman", "Submenu" },},
+ [13] = {{ AL["Gilneas City"], "GilneasCity", "Submenu" },},
+ [14] = {{ AL["Maraudon"], "Maraudon", "Submenu" },},
+ [15] = {{ AL["Zul'Farrak"], "ZulFarrak", "Submenu" },},
+ [16] = {{ AL["The Sunken Temple"], "SunkenTemple", "Submenu" },},
+ [17] = {{ AL["Hateforge Quarry"], "HateforgeQuarry", "Submenu" },},
+ [18] = {{ AL["Blackrock Depths"], "BlackrockDepths", "Submenu" },},
+ [19] = {[AL["Dire Maul"]] = {
{ AL["Dire Maul (East)"], "DireMaulEast", "Submenu" },
{ AL["Dire Maul (West)"], "DireMaulWest", "Submenu" },
{ AL["Dire Maul (North)"], "DireMaulNorth", "Submenu" },
- },
- },
- [20] = {
- { AL["Scholomance"], "Scholomance", "Submenu" },
- },
- [21] = {
- { AL["Stratholme"], "Stratholme", "Submenu" },
- },
- [22] = {
- { AL["Lower Blackrock Spire"], "LowerBlackrock", "Submenu" },
- },
- [23] = {
- { AL["Upper Blackrock Spire"], "UpperBlackrock", "Submenu" },
- },
- [24] = {
- { AL["Karazhan Crypt"], "KarazhanCrypt", "Submenu" },
- },
- [25] = {
- { AL["Caverns of Time: Black Morass"], "CavernsOfTimeBlackMorass", "Submenu" },
- },
- [26] = {
- { AL["Stormwind Vault"], "StormwindVault", "Submenu" },
- },
- [27] = {
- { AL["Zul'Gurub"], "ZulGurub", "Submenu" },
- },
- [28] = {
- { AL["Ruins of Ahn'Qiraj"], "RuinsofAQ", "Submenu" },
- },
- [29] = {
- { AL["Molten Core"], "MoltenCore", "Submenu" },
- },
- [30] = {
- { AL["Onyxia's Lair"], "Onyxia", "Submenu" },
- },
- [31] = {
- { AL["Lower Karazhan Halls"], "LowerKara", "Submenu" },
- },
- [32] = {
- { AL["Blackwing Lair"], "BlackwingLair", "Submenu" },
- },
- [33] = {
- { AL["Emerald Sanctum"], "EmeraldSanctum", "Submenu" },
- },
- [34] = {
- { AL["Temple of Ahn'Qiraj"], "TempleofAQ", "Submenu" },
- },
- [35] = {
- { AL["Naxxramas"], "Naxxramas", "Submenu" },
- },
+ },},
+ [20] = {{ AL["Scholomance"], "Scholomance", "Submenu" },},
+ [21] = {{ AL["Stratholme"], "Stratholme", "Submenu" },},
+ [22] = {{ AL["Lower Blackrock Spire"], "LowerBlackrock", "Submenu" },},
+ [23] = {{ AL["Upper Blackrock Spire"], "UpperBlackrock", "Submenu" },},
+ [24] = {{ AL["Karazhan Crypt"], "KarazhanCrypt", "Submenu" },},
+ [25] = {{ AL["Caverns of Time: Black Morass"], "CavernsOfTimeBlackMorass", "Submenu" },},
+ [26] = {{ AL["Stormwind Vault"], "StormwindVault", "Submenu" },},
+ [27] = {{ AL["Zul'Gurub"], "ZulGurub", "Submenu" },},
+ [28] = {{ AL["Ruins of Ahn'Qiraj"], "RuinsofAQ", "Submenu" },},
+ [29] = {{ AL["Molten Core"], "MoltenCore", "Submenu" },},
+ [30] = {{ AL["Onyxia's Lair"], "Onyxia", "Submenu" },},
+ [31] = {{ AL["Lower Karazhan Halls"], "LowerKara", "Submenu" },},
+ [32] = {{ AL["Blackwing Lair"], "BlackwingLair", "Submenu" },},
+ [33] = {{ AL["Emerald Sanctum"], "EmeraldSanctum", "Submenu" },},
+ [34] = {{ AL["Temple of Ahn'Qiraj"], "TempleofAQ", "Submenu" },},
+ [35] = {{ AL["Naxxramas"], "Naxxramas", "Submenu" },},
},
},
- [2] = {
- { AL["World Bosses"], "WorldBosses", "Submenu" },
- },
- [3] = {
- { "Rare Spawns", "RareSpawns", "Submenu" },
- },
- [4] = {
- [AL["PvP Rewards"]] = {
- [1] = {
- { AL["PvP Armor Sets"], "PvPArmorSets", "Submenu" },
- },
- [2] = {
- { AL["PvP Accessories"], "PvP60Accessories1", "Table" },
- },
- [3] = {
- { AL["Rank 14 Weapons"], "PVPWeapons1", "Table" },
- },
- [4] = {
- { AL["PvP Mounts"], "PvPMountsPvP", "Table" },
- },
- [5] = {
- { AL["Blood Ring"], "BRRewards", "Submenu" },
- },
- [6] = {
- { AL["Alterac Valley"], "AVRewards", "Submenu" },
- },
- [7] = {
- { AL["Arathi Basin"], "ABRewards", "Submenu" },
- },
- [8] = {
- { AL["Warsong Gulch"], "WSGRewards", "Submenu" },
- },
+ [2] = { [AL["World Bosses"]] = {
+ [1] = {{AL["Azuregos"], "AAzuregos", "Table" },},
+ [2] = {{AL["Emeriss"], "DEmeriss", "Table" },},
+ [3] = {{AL["Lethon"], "DLethon", "Table" },},
+ [4] = {{AL["Taerar"], "DTaerar", "Table" },},
+ [5] = {{AL["Ysondre"], "DYsondre", "Table" },},
+ [6] = {{AL["Lord Kazzak"], "KKazzak", "Table" },},
+ [7] = {{AL["Nerubian Overseer"], "Nerubian", "Table" },},
+ [8] = {{AL["Dark Reaver of Karazhan"], "Reaver", "Table" },},
+ [9] = {{AL["Ostarius"], "Ostarius", "Table" },},
+ [10] = {{AL["Concavius"], "Concavius", "Table" },},
+ [11] = {{AL["There Is No Cow Level"], "CowKing", "Table" },},
},
},
+
+ [3] = {[AL["PvP Rewards"]] = {
+ [1] = {{ AL["PvP Armor Sets"], "PVPSET", "Table" },},
+ [2] = {{ AL["PvP Accessories"], "PvP60Accessories1", "Table" },},
+ [3] = {{ AL["Rank 14 Weapons"], "PVPWeapons1", "Table" },},
+ [4] = {{ AL["PvP Mounts"], "PvPMountsPvP", "Table" },},
+ [5] = {{ AL["Blood Ring"], "BRRepMenu", "Table" },},
+ [6] = {{ AL["Alterac Valley"], "AVRepMenu", "Table" },},
+ [7] = {{ AL["Arathi Basin"], "ABRepMenu", "Table" },},
+ [8] = {{ AL["Warsong Gulch"], "WSGRepMenu", "Table" },},
+ },
+ },
+ [4] = {[AL["Collections"]] = {
+ [1] = {{ AL["Sets"], "PRE60SET", "Table" },},
+ [2] = {{ AL["Zul'Gurub Sets"], "ZGSET", "Table" },},
+ [3] = {{ AL["Ruins of Ahn'Qiraj Sets"], "AQ20SET", "Table" },},
+ [4] = {{ AL["Temple of Ahn'Qiraj Sets"], "AQ40SET", "Table" },},
+ [5] = {{ AL["Dungeon 1/2 Sets"], "T0SET", "Table" },},
+ [6] = {{ AL["Tier 1 Sets"], "T1SET", "Table" },},
+ [7] = {{ AL["Tier 2 Sets"], "T2SET", "Table" },},
+ [8] = {{ AL["Tier 3 Sets"], "T3SET", "Table" },},
+ [9] = {{ AL["Legendary Items"], "Legendaries", "Table" },},
+ [10] = {{ AL["World Epics"], "WORLDEPICS", "Table" },},
+ [11] = {{ AL["Rare Pets"], "RarePets1", "Table" },},
+ [12] = {{ AL["Rare Mounts"], "RareMounts", "Table" },},
+ [13] = {{ AL["Fashion"], "DonationRewards2", "Table" },},
+ [14] = {{ AL["Tabards"], "Tabards", "Table" },},
+ --[15] = {{ AL["Old Mounts"], "OldMounts", "Table" },},
+ --[16] = {{ AL["Unobtainable Mounts"], "UnobMounts", "Table" },},
+ },
+ },
[5] = {
- [AL["Sets/Collections"]] = {
- [1] = {
- { AL["Pre 60 Sets"], "Pre60Sets", "Submenu" },
- },
- [2] = {
- { AL["Dungeon 1/2 Sets"], "DungeonSets12", "Submenu" },
- },
- [3] = {
- { AL["Ruins of Ahn'Qiraj Sets"], "AQ20Sets", "Submenu" },
- },
- [4] = {
- { AL["Temple of Ahn'Qiraj Sets"], "AQ40Sets", "Submenu" },
- },
- [5] = {
- { AL["Zul'Gurub Sets"], "ZGSets", "Submenu" },
- },
- [6] = {
- { AL["Tier 1 Sets"], "T1Sets", "Submenu" },
- },
- [7] = {
- { AL["Tier 2 Sets"], "T2Sets", "Submenu" },
- },
- [8] = {
- { AL["Tier 3 Sets"], "T3Sets", "Submenu" },
- },
- [9] = {
- { AL["Legendary Items"], "Legendaries", "Table" },
- },
- [10] = {
- { AL["Rare Pets"], "RarePets1", "Table" },
- },
- [11] = {
- { AL["Rare Mounts"], "RareMounts", "Table" },
- },
- [12] = {
- { AL["Old Mounts"], "OldMounts", "Table" },
- },
- [13] = {
- { AL["Unobtainable Mounts"], "UnobMounts", "Table" },
- },
- [14] = {
- { AL["Tabards"], "Tabards", "Table" },
- },
- [15] = {
- { AL["World Epics"], "BoEWorldEpics", "Submenu" },
+ [AL["Factions"]] = {
+ [1] = {{ AL["Argent Dawn"], "Argent1" , "Table" },},
+ [2] = {{ AL["Bloodsail Buccaneers"], "Bloodsail1", "Table" },},
+ [3] = {{ AL["Brood of Nozdormu"], "AQBroodRings", "Table" },},
+ [4] = {{ AL["Cenarion Circle"], "Cenarion1", "Table" }},
+ [5] = {{ AL["Dalaran"], "Dalaran", "Table" },},
+ [6] = {{ AL["Darkmoon Faire"], "Darkmoon", "Table" },},
+ [7] = {{ AL["Darkspear Trolls"], "DarkspearTrolls", "Table" },},
+ [8] = {{ AL["Darnassus"], "Darnassus", "Table" },},
+ [9] = {{ AL["Durotar Labor Union"], "DurotarLaborUnion", "Table" },},
+ [10] = {{ AL["Frostwolf Clan"], "Frostwolf1", "Table" },},
+ [11] = {{ AL["Gelkis Clan Centaur"], "GelkisClan1", "Table" },},
+ [12] = {{ AL["Gnomeregan Exiles"], "GnomereganExiles", "Table" },},
+ [13] = {{ AL["Hydraxian Waterlords"], "WaterLords1", "Table" },},
+ [14] = {{ AL["Ironforge"], "Ironforge", "Table" },},
+ [15] = {{ AL["Magram Clan Centaur"], "MagramClan1", "Table" },},
+ [16] = {{ AL["Orgrimmar"], "Orgrimmar", "Table" },},
+ [17] = {{ AL["Revantusk Trolls"], "Revantusk", "Table" },},
+ [18] = {{ AL["Silvermoon Remnant"], "Helf", "Table" },},
+ [19] = {{ AL["Stormpike Guard"], "Stormpike1", "Table" },},
+ [20] = {{ AL["Stormwind"], "Stormwind", "Table" },},
+ [21] = {{ AL["Thorium Brotherhood"], "Thorium1", "Table" },},
+ [22] = {{ AL["Thunder Bluff"], "ThunderBluff", "Table" },},
+ [23] = {{ AL["Timbermaw Hold"], "Timbermaw", "Table" },},
+ [24] = {{ AL["Undercity"], "Undercity", "Table" },},
+ [25] = {{ AL["Wardens of Time"], "Wardens1", "Table" },},
+ [26] = {{ AL["Wildhammer Clan"], "Wildhammer", "Table" },},
+ [27] = {{ AL["Wintersaber Trainers"], "Wintersaber1", "Table" },},
+ [28] = {{ AL["Zandalar Tribe"], "Zandalar1", "Table" },},
+ },
+ },
+
+ [6] = {[AL["World Events"]] = {
+ [1] = {{ AL["Abyssal Council"], "AbyssalTemplars", "Table" },},
+ [2] = {{ AL["Children's Week"], "ChildrensWeek", "Table" },},
+ [3] = {{ AL["Elemental Invasion"], "ElementalInvasion", "Table" },},
+ [4] = {{ AL["Feast of Winter Veil"], "Winterviel", "Table" },},
+ [5] = {{ AL["Gurubashi Arena Booty Run"], "GurubashiArena", "Table" },},
+ [6] = {{ AL["Hallow's End"], "Halloween1", "Table" },},
+ [7] = {{ AL["Harvest Festival"], "HarvestFestival", "Table" },},
+ [8] = {{ AL["Love is in the Air"], "Valentineday", "Table" },},
+ [9] = {{ AL["Lunar Festival"], "LunarFestival1", "Table" },},
+ [10] = {{ AL["Midsummer Fire Festival"], "MidsummerFestival", "Table" },},
+ [11] = {{ AL["Noblegarden"], "Noblegarden", "Table" },},
+ [12] = {{ AL["Scourge Invasion"], "ScourgeInvasionEvent1", "Table" },},
+ [13] = {{ AL["Stranglethorn Fishing Extravaganza"], "FishingExtravaganza", "Table" },},
},
},
- },
- [6] = {
- { AL["Reputation Factions"], "Factions", "Submenu" },
- },
[7] = {
- [AL["World Events"]] = {
- [1] = {
- { AL["Abyssal Council"], "AbyssalCouncil", "Submenu" },
- },
- [2] = {
- { AL["Children's Week"], "ChildrensWeek", "Table" },
- },
- [3] = {
- { AL["Elemental Invasion"], "ElementalInvasion", "Table" },
- },
- [4] = {
- { AL["Feast of Winter Veil"], "Winterviel", "Submenu" },
- },
- [5] = {
- { AL["Gurubashi Arena Booty Run"], "GurubashiArena", "Table" },
- },
- [6] = {
- { AL["Hallow's End"], "Halloween1", "Table" },
- },
- [7] = {
- { AL["Harvest Festival"], "HarvestFestival", "Table" },
- },
- [8] = {
- { AL["Love is in the Air"], "Valentineday", "Table" },
- },
- [9] = {
- { AL["Lunar Festival"], "LunarFestival1", "Table" },
- },
- [10] = {
- { AL["Midsummer Fire Festival"], "MidsummerFestival", "Table" },
- },
- [11] = {
- { AL["Noblegarden"], "Noblegarden", "Table" },
- },
- [12] = {
- { AL["Scourge Invasion"], "ScourgeInvasionEvent1", "Table" },
- },
- [13] = {
- { AL["Stranglethorn Fishing Extravaganza"], "FishingExtravaganza", "Table" },
- },
- },
- },
- [8] = {
[AL["Crafting"]] = {
- [1] = { { AL["Alchemy"], "Alchemy", "Submenu" }, },
- [2] = { { (AL["Blacksmithing"]), "Blacksmithing", "Submenu" }, },
- [3] = { { (AL["Enchanting"]), "Enchanting", "Submenu" }, },
- [4] = { { (AL["Engineering"]), "Engineering", "Submenu" }, },
+ [1] = { { AL["Alchemy"], "ALCHEMYMENU", "Table" }, },
+ [2] = { { (AL["Blacksmithing"]), "SMITHINGMENU", "Table" }, },
+ [3] = { { (AL["Enchanting"]), "ENCHANTINGMENU", "Table" }, },
+ [4] = { { (AL["Engineering"]), "ENGINEERINGMENU", "Table" }, },
[5] = { { (AL["Herbalism"]), "Herbalism1", "Table" }, },
- [6] = { { (AL["Leatherworking"]), "Leatherworking", "Submenu" }, },
- [7] = { { (AL["Mining"]), "Mining", "Submenu" }, },
- [8] = { { (AL["Tailoring"]), "Tailoring", "Submenu" }, },
- [9] = { { (AL["Cooking"]), "Cooking", "Submenu" }, },
+ [6] = { { (AL["Leatherworking"]), "LEATHERWORKINGMENU", "Table" }, },
+ [7] = { { (AL["Mining"]), "MININGMENU", "Table" }, },
+ [8] = { { (AL["Tailoring"]), "TAILORINGMENU", "Table" }, },
+ [9] = { { (AL["Cooking"]), "COOKINGMENU", "Table" }, },
[10] = { { (AL["First Aid"]), "FirstAid1", "Table" }, },
- [11] = { { (AL["Survival"]), "Survival", "Submenu" }, },
- [12] = { { (AL["Poisons"]), "Poisons1", "Table" }, },
- [13] = {
- [AL["Crafted Sets"]] = {
- { (AL["Blacksmithing"]), "CraftSetBlacksmith", "Submenu" },
- { (AL["Leatherworking"]), "CraftSetLeatherwork", "Submenu" },
- { (AL["Tailoring"]), "CraftSetTailoring", "Submenu" },
- },
- },
- [14] = { { AL["Crafted Epic Weapons"], "CraftedWeapons1", "Table" }, },
+ [11] = { { (AL["Survival"]), "Survival1", "Table" }, },
+ [12] = { { (AL["Gardening"]), "Survival2", "Table" }, },
+ [13] = { { (AL["Poisons"]), "Poisons1", "Table" }, },
+ [14] = { { AL["Crafted Sets"], "CRAFTSET", "Table" },},
+ [15] = { { AL["Crafted Epic Weapons"], "CraftedWeapons1", "Table" }, },
},
},
+ [8] = {{ "Rare Spawns", "RareSpawns", "Submenu" },},
};
--This table defines all the subtables needed for the full menu
@@ -2994,8 +2941,9 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Abyssal Council"].." - "..AL["High Council"], "AbyssalLords" },
},
["Winterviel"] = {
- { AL["Feast of Winter Veil"], "Winterviel1", "Table" },
- { "Snowball", "WintervielSnowball", "Table" },
+ { AL["Feast of Winter Veil"], "Winterviel1"},
+ { AL["Feast of Winter Veil"], "Winterviel2"},
+ { "Snowball", "WintervielSnowball"},
},
["Factions"] = {
{ AL["Argent Dawn"], "Argent1" },
@@ -3022,7 +2970,7 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Thunder Bluff"], "ThunderBluff" },
{ AL["Timbermaw Hold"], "Timbermaw" },
{ AL["Undercity"], "Undercity" },
- { AL["Wardens of Time"], "Warderns1" },
+ { AL["Wardens of Time"], "Wardens1" },
{ AL["Wildhammer Clan"], "Wildhammer" },
{ AL["Wintersaber Trainers"], "Wintersaber1" },
{ AL["Zandalar Tribe"], "Zandalar1" },
@@ -3135,6 +3083,9 @@ AtlasLoot_HewdropDown_SubTables = {
{ "|cff2773ff"..AL["Shaman"], "ZGShaman" },
{ "|cfff48cba"..AL["Paladin"], "ZGPaladin" },
{ "|cffc69b6d"..AL["Warrior"], "ZGWarrior" },
+ { AL["Zul'Gurub Rings"], "ZGRings" },
+ { AL["The Twin Blades of Hakkari"], "HakkariBlades" },
+ { AL["Zul'Gurub Rings"], "ZGRings" },
},
["Pre60Sets"] = {
{ AL["Bloodmail Regalia"], "ScholoMail" },
@@ -3153,8 +3104,7 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Spirit of Eskhandar"], "SpiritofEskhandar" },
{ AL["The Gladiator"], "BLACKROCKD" },
{ AL["The Postmaster"], "STRAT" },
- { AL["The Twin Blades of Hakkari"], "HakkariBlades" },
- { AL["Zul'Gurub Rings"], "ZGRings" },
+
},
["BRRewards"] = {
{ AL["Friendly Reputation Rewards"], "BRRepFriendly" },
@@ -3202,6 +3152,12 @@ AtlasLoot_HewdropDown_SubTables = {
{ AtlasLoot_TableNames["AlchemyJourneyman1"][1], "AlchemyJourneyman1" },
{ AtlasLoot_TableNames["AlchemyExpert1"][1], "AlchemyExpert1" },
{ AtlasLoot_TableNames["AlchemyArtisan1"][1], "AlchemyArtisan1" },
+ { AtlasLoot_TableNames["AlchemyHealingAndMana1"][1], "AlchemyHealingAndMana1" },
+ { AtlasLoot_TableNames["AlchemyFlasks1"][1], "AlchemyFlasks1" },
+ { AtlasLoot_TableNames["AlchemyTransmutes1"][1], "AlchemyTransmutes1" },
+ { AtlasLoot_TableNames["AlchemyDefensive1"][1], "AlchemyDefensive1" },
+ { AtlasLoot_TableNames["AlchemyOffensive1"][1], "AlchemyOffensive1" },
+ { AtlasLoot_TableNames["AlchemyOther1"][1], "AlchemyOther1" },
},
["Blacksmithing"] = {
{ AtlasLoot_TableNames["SmithingApprentice1"][1], "SmithingApprentice1" },
@@ -3275,6 +3231,7 @@ AtlasLoot_HewdropDown_SubTables = {
function AtlasLootItem_OnEnter()
local isItem, isEnchant, isSpell;
AtlasLootTooltip:ClearLines();
+ AtlasLoot_QueryLootPage()
for i=1, 30, 1 do
if (getglobal("AtlasLootTooltipTextRight"..i) ~= nil) then
getglobal("AtlasLootTooltipTextRight"..i):SetText("");
diff --git a/Core/AtlasLoot.xml b/Core/AtlasLoot.xml
index b0767e2..88f9652 100644
--- a/Core/AtlasLoot.xml
+++ b/Core/AtlasLoot.xml
@@ -11,6 +11,7 @@
+
-
+
@@ -69,6 +70,7 @@
AtlasLootSearchBox:ClearFocus();
end
Atlas_Toggle();
+ CloseDropDownMenus();
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -93,6 +95,7 @@
AtlasLootOptions_Toggle();
+ CloseDropDownMenus();
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -210,6 +213,7 @@
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][1][1], AtlasLootCharDB["QuickLooks"][1][2], AtlasLootCharDB["QuickLooks"][1][3], pFrame);
end
+ CloseDropDownMenus();
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -255,6 +259,7 @@
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][2][1], AtlasLootCharDB["QuickLooks"][2][2], AtlasLootCharDB["QuickLooks"][2][3], pFrame);
end
+ CloseDropDownMenus();
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -300,6 +305,7 @@
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][3][1], AtlasLootCharDB["QuickLooks"][3][2], AtlasLootCharDB["QuickLooks"][3][3], pFrame);
end
+ CloseDropDownMenus();
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -330,6 +336,7 @@
GameTooltip:Show();
end
+
if(GameTooltip:IsVisible()) then
GameTooltip:Hide();
@@ -345,6 +352,7 @@
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][4][1], AtlasLootCharDB["QuickLooks"][4][2], AtlasLootCharDB["QuickLooks"][4][3], pFrame);
end
+ CloseDropDownMenus();
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -399,6 +407,7 @@
AtlasLoot:Search(AtlasLootDefaultFrameSearchBox:GetText());
AtlasLootDefaultFrameSearchBox:ClearFocus();
+ CloseDropDownMenus();
@@ -446,6 +455,7 @@
AtlasLootDefaultFrameSearchBox:SetText("");
AtlasLootDefaultFrameSearchBox:ClearFocus();
+ CloseDropDownMenus();
@@ -468,6 +478,7 @@
AtlasLoot:ShowSearchResult();
+ CloseDropDownMenus();
@@ -485,6 +496,7 @@
AtlasLoot_ShowWishList();
+ CloseDropDownMenus();
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -556,6 +568,9 @@
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
getglobal("AtlasLootDefaultFrame_Notice"):SetText(AL["NoticeFrame"]);
+
+ CloseDropDownMenus();
+
AtlasLootDefaultFrame_OnShow();
@@ -647,6 +662,7 @@
AtlasLoot_NavButton_OnClick();
+ CloseDropDownMenus();
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
@@ -830,6 +846,7 @@
AtlasLootItem_OnClick(arg1);
+ CloseDropDownMenus();
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
@@ -1173,6 +1190,7 @@
AtlasLoot_NavButton_OnClick()
+ CloseDropDownMenus();
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
@@ -1213,6 +1231,7 @@
GameTooltip:Hide();
AtlasLoot_QueryLootPage();
+ CloseDropDownMenus();
@@ -1242,6 +1261,7 @@
AtlasLoot_ShowQuickLooks(this);
+ CloseDropDownMenus();
@@ -1256,6 +1276,7 @@
AtlasLoot_NavButton_OnClick();
+ CloseDropDownMenus();
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
diff --git a/Core/ButtonRegistry.lua b/Core/ButtonRegistry.lua
index 5f92251..ae17b5f 100644
--- a/Core/ButtonRegistry.lua
+++ b/Core/ButtonRegistry.lua
@@ -1823,15 +1823,22 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Hakkar"];
};
["ZGTrash1"] = {
+ Title = AL["Trash Mobs"];
+ Next_Page = "ZGTrash2";
+ Next_Title = AL["Trash Mobs"];
+ Prev_Page = "ZGShared";
+ Prev_Title = AL["Trash Mobs"];
+ };
+ ["ZGTrash2"] = {
Title = AL["Trash Mobs"];
Next_Page = "ZGEnchants";
Next_Title = AL["ZG Enchants"];
- Prev_Page = "ZGShared";
- Prev_Title = AL["Random Boss Loot"];
+ Prev_Page = "ZGTrash1";
+ Prev_Title = AL["Trash Mobs"];
};
["ZGEnchants"] = {
Title = AL["ZG Enchants"];
- Prev_Page = "ZGTrash1";
+ Prev_Page = "ZGTrash2";
Prev_Title = AL["Trash Mobs"];
};
["BFDGhamoora"] = {
@@ -2651,16 +2658,13 @@ AtlasLoot_ButtonRegistry = {
Prev_Page = "LKHTrash";
Prev_Title = AL["Trash Mobs"];
};
-
-
-- World Bosses
["AAzuregos"] = {
Title = AL["Azuregos"];
Next_Page = "DEmeriss";
Next_Title = AL["Emeriss"];
- Prev_Page = "CowKing";
- Prev_Title = AL["There Is No Cow Level"];
+ Back_Page = "WORLDBOSSMENU"
};
["DEmeriss"] = {
Title = AL["Emeriss"];
@@ -2668,6 +2672,7 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lethon"];
Prev_Page = "AAzuregos";
Prev_Title = AL["Azuregos"];
+ Back_Page = "WORLDBOSSMENU"
};
["DLethon"] = {
Title = AL["Lethon"];
@@ -2675,6 +2680,7 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Taerar"];
Prev_Page = "DEmeriss";
Prev_Title = AL["Emeriss"];
+ Back_Page = "WORLDBOSSMENU"
};
["DTaerar"] = {
Title = AL["Taerar"];
@@ -2682,6 +2688,7 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ysondre"];
Prev_Page = "DLethon";
Prev_Title = AL["Lethon"];
+ Back_Page = "WORLDBOSSMENU"
};
["DYsondre"] = {
Title = AL["Ysondre"];
@@ -2689,6 +2696,7 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Lord Kazzak"];
Prev_Page = "DTaerar";
Prev_Title = AL["Taerar"];
+ Back_Page = "WORLDBOSSMENU"
};
["KKazzak"] = {
Title = AL["Lord Kazzak"];
@@ -2696,6 +2704,7 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Nerubian Overseer"];
Prev_Page = "DYsondre";
Prev_Title = AL["Ysondre"];
+ Back_Page = "WORLDBOSSMENU"
};
["Turtlhu"] = {
Title = AL["Turtlhu, the Black Turtle of Doom"];
@@ -2710,6 +2719,7 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Dark Reaver of Karazhan"];
Prev_Page = "KKazzak";
Prev_Title = AL["Lord Kazzak"];
+ Back_Page = "WORLDBOSSMENU"
};
["Reaver"] = {
Title = AL["Dark Reaver of Karazhan"];
@@ -2717,6 +2727,7 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Ostarius"];
Prev_Page = "Nerubian";
Prev_Title = AL["Nerubian Overseer"];
+ Back_Page = "WORLDBOSSMENU"
};
["Ostarius"] = {
Title = AL["Ostarius"];
@@ -2724,6 +2735,7 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["Concavius"];
Prev_Page = "Reaver";
Prev_Title = AL["Dark Reaver of Karazhan"];
+ Back_Page = "WORLDBOSSMENU"
};
["Concavius"] = {
Title = AL["Concavius"];
@@ -2731,13 +2743,13 @@ AtlasLoot_ButtonRegistry = {
Next_Title = AL["The Cow King"];
Prev_Page = "Ostarius";
Prev_Title = AL["Ostarius"];
+ Back_Page = "WORLDBOSSMENU"
};
["CowKing"] = {
Title = AL["There Is No Cow Level"];
- Next_Page = "AAzuregos";
- Next_Title = AL["Azuregos"];
Prev_Page = "Concavius";
Prev_Title = AL["Concavius"];
+ Back_Page = "WORLDBOSSMENU"
};
--Rare Spawns
@@ -3024,22 +3036,18 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "REPMENU";
Back_Title = AL["Factions"];
};
- ["Warderns1"] = {
+ ["Wardens1"] = {
Title = AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"];
Back_Page = "REPMENU";
Back_Title = AL["Factions"];
- Next_Page = "Warderns2";
+ Next_Page = "Wardens2";
Next_Title = AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"];
- Prev_Page = "Warderns2";
- Prev_Title = AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"];
};
- ["Warderns2"] = {
+ ["Wardens2"] = {
Title = AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"];
Back_Page = "REPMENU";
Back_Title = AL["Factions"];
- Next_Page = "Warderns1";
- Next_Title = AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"];
- Prev_Page = "Warderns1";
+ Prev_Page = "Wardens1";
Prev_Title = AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"];
};
["AQBroodRings"] = {
@@ -3253,8 +3261,6 @@ AtlasLoot_ButtonRegistry = {
["BRRepFriendly"] = {
Title = AL["Blood Ring Friendly Rewards"];
Back_Page = "BRRepMenu";
- Prev_Page = "BRRepTokens";
- Prev_Title = AL["Token of Blood Rewards"];
Next_Page = "BRRepHonored";
Next_Title = AL["Blood Ring Honored Rewards"];
};
@@ -3287,14 +3293,11 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "BRRepMenu";
Prev_Page = "BRRepExalted";
Prev_Title = AL["Blood Ring Exalted Rewards"];
- Next_Page = "BRRepFriendly";
- Next_Title = AL["Blood Ring Friendly Rewards"];
};
["ABRepFriendly"] = {
Back_Page = "ABRepMenu";
Title = AL["AB Friendly Rewards"];
Next_Page = "ABRepHonored2029";
- Prev_Page = "ABRepExalted";
};
["ABRepHonored2029"] = {
Back_Page = "ABRepMenu";
@@ -3347,14 +3350,11 @@ AtlasLoot_ButtonRegistry = {
["ABRepExalted"] = {
Back_Page = "ABRepMenu";
Title = AL["AB Exalted Rewards"];
- Prev_Page = "ABRepExalted5059";
- Next_Page = "ABRepFriendly";
+ Prev_Page = "ABRepRevered5059";
};
["AVRepFriendly"] = {
Title = AL["AV Friendly Rewards"];
Back_Page = "AVRepMenu";
- Prev_Page = "AVLokholarIvus";
- Prev_Title = AL["Ivus & Lokholar"];
Next_Page = "AVRepHonored";
Next_Title = AL["AV Honored Rewards"];
};
@@ -3395,14 +3395,11 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "AVRepMenu";
Prev_Page = "AVKorrak";
Prev_Title = AL["Korrak the Bloodrager"];
- Next_Page = "AVRepFriendly";
- Next_Title = AL["AV Friendly Rewards"];
};
["WSGRepFriendly"] = {
Back_Page = "WSGRepMenu";
Title = AL["WSG Friendly Rewards"];
Next_Page = "WSGRepHonored1019";
- Prev_Page = "WSGRepExalted60";
};
["WSGRepHonored1019"] = {
Back_Page = "WSGRepMenu";
@@ -3480,7 +3477,6 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "WSGRepMenu";
Title = AL["WSG 60 Exalted Rewards"];
Prev_Page = "WSGRepExalted5059";
- Next_Page = "WSGRepFriendly";
};
["PvP60Accessories1"] = {
Title = AL["PvP Trinkets"];
@@ -3882,92 +3878,92 @@ AtlasLoot_ButtonRegistry = {
["DEADMINES"] = {
Title = AL["Defias Leather"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["WAILING"] = {
Title = AL["Embrace of the Viper"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["SCARLET"] = {
Title = AL["Chain of the Scarlet Crusade"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["BLACKROCKD"] = {
Title = AL["The Gladiator"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["IRONWEAVE"] = {
Title = AL["Ironweave Battlesuit"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["ScholoCloth"] = {
Title = AL["Scholomance"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["ScholoLeather"] = {
Title = AL["Scholomance"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["ScholoMail"] = {
Title = AL["Scholomance"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["ScholoPlate"] = {
Title = AL["Scholomance"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["STRAT"] = {
Title = AL["The Postmaster"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["ScourgeInvasion"] = {
Title = AL["Scourge Invasion"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["ShardOfGods"] = {
Title = AL["Shard of the Gods"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["ZGRings"] = {
- Title = AL["Zul'Gurub"];
- Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Title = AL["Zul'Gurub Rings"];
+ Back_Page = "ZGSET";
+ Back_Title = AL["Zul'Gurub Sets"];
};
["HakkariBlades"] = {
- Title = AL["Zul'Gurub"];
- Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Title = AL["The Twin Blades of Hakkari"];
+ Back_Page = "ZGSET";
+ Back_Title = AL["Zul'Gurub Sets"];
};
["PrimalBlessing"] = {
- Title = AL["Zul'Gurub"];
- Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Title = AL["Primal Blessing"];
+ Back_Page = "ZGSET";
+ Back_Title = AL["Zul'Gurub Sets"];
};
["SpiritofEskhandar"] = {
Title = AL["Spirit of Eskhandar"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["DalRend"] = {
Title = AL["Dal'Rend's Arms"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["SpiderKiss"] = {
Title = AL["Spider's Kiss"];
Back_Page = "PRE60SET";
- Back_Title = AL["Pre 60 Sets"];
+ Back_Title = AL["Sets"];
};
["SteelPlate"] = {
Title = AL["Steel Plate"];
@@ -4083,6 +4079,8 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Tabards"];
Back_Page = "SETMENU";
Back_Title = AL["Collections"];
+ Next_Page = "DonationRewards1";
+ Next_Title = AL["Tabards"];
};
["Legendaries"] = {
Title = AL["Legendary Items"];
@@ -4128,6 +4126,20 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "SETMENU";
Back_Title = AL["Collections"];
};
+ --donation tabards
+ ["DonationRewards1"] = {
+ Title = AL["Tabards"];
+ Back_Page = "SETMENU";
+ Back_Title = AL["Collections"];
+ Prev_Page = "Tabards";
+ Prev_Title = AL["Tabards"];
+ };
+ --fashion
+ ["DonationRewards2"] = {
+ Title = AL["Fashion"];
+ Back_Page = "SETMENU";
+ Back_Title = AL["Collections"];
+ };
["WorldEpics1"] = {
Title = AtlasLoot_TableNames["WorldEpics1"][1];
Next_Page = "WorldEpics2";
@@ -4151,21 +4163,6 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "WORLDEPICS";
Back_Title = AL["World Epics"];
};
- ["ZGTrash1"] = {
- Title = AtlasLoot_TableNames["ZGTrash1"][1];
- Next_Page = "ZGTrash2";
- Next_Title = AtlasLoot_TableNames["ZGTrash2"][1];
- };
- ["ZGTrash2"] = {
- Title = AtlasLoot_TableNames["ZGTrash2"][1];
- Prev_Page = "ZGTrash1";
- Prev_Title = AtlasLoot_TableNames["ZGTrash1"][1];
- };
- ["AQ40Trash1"] = {
- Title = AtlasLoot_TableNames["AQ40Trash1"][1];
- Next_Page = "AQ40Trash2";
- Next_Title = AtlasLoot_TableNames["AQ40Trash2"][1];
- };
["AQ40Trash2"] = {
Title = AtlasLoot_TableNames["AQ40Trash2"][1];
Prev_Page = "AQ40Trash1";
@@ -4194,8 +4191,6 @@ AtlasLoot_ButtonRegistry = {
};
["WintervielSnowball"] = {
Title = "Snowball";
- Next_Page = "Winterviel1";
- Next_Title = AL["Feast of Winter Veil"];
Prev_Page = "Winterviel2";
Prev_Title = AtlasLoot_TableNames["Winterviel2"][1];
Back_Page = "WORLDEVENTMENU";
@@ -4279,19 +4274,27 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["World Events"];
};
["AbyssalTemplars"] = {
- Title = AL["Abyssal Council"] .. " - " .. AL["Templars"];
- Back_Page = "AbyssalCouncil";
- Back_Title = AL["Abyssal Council"];
+ Title = AL["Templars"];
+ Back_Page = "WORLDEVENTMENU";
+ Back_Title = AL["World Events"];
+ Next_Page = "AbyssalDukes";
+ Next_Title = AL["Dukes"];
};
["AbyssalDukes"] = {
- Title = AL["Abyssal Council"] .. " - " .. AL["Dukes"];
- Back_Page = "AbyssalCouncil";
- Back_Title = AL["Abyssal Council"];
+ Title = AL["Dukes"];
+ Back_Page = "WORLDEVENTMENU";
+ Back_Title = AL["World Events"];
+ Next_Page = "AbyssalLords";
+ Next_Title = AL["High Council"];
+ Prev_Page = "AbyssalTemplars";
+ Prev_Title = AL["Templars"];
};
["AbyssalLords"] = {
- Title = AL["Abyssal Council"] .. " - " .. AL["High Council"];
- Back_Page = "AbyssalCouncil";
- Back_Title = AL["Abyssal Council"];
+ Title = AL["High Council"];
+ Back_Page = "WORLDEVENTMENU";
+ Back_Title = AL["World Events"];
+ Prev_Page = "AbyssalDukes";
+ Prev_Title = AL["Dukes"];
};
["AlchemyApprentice1"] = {
Title = AL["Alchemy"] .. ": " .. AL["Apprentice"];
@@ -4333,7 +4336,70 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Alchemy"];
Prev_Page = "AlchemyArtisan1";
Prev_Title = AL["Alchemy"] .. ": " .. AL["Artisan"];
+ Next_Page = "AlchemyFlasks1";
+ Next_Title = AL["Flasks"];
};
+ ["AlchemyFlasks1"] = {
+ Title = AL["Flasks"];
+ Back_Page = "ALCHEMYMENU";
+ Back_Title = AL["Alchemy"];
+ Next_Page = "AlchemyProtectionPots1";
+ Next_Title = AL["Protection Potions"];
+ Prev_Page = "AlchemyArtisan2";
+ Prev_Title = AL["Alchemy"] .. ": " .. AL["Artisan"];
+ },
+ ["AlchemyProtectionPots1"] = {
+ Title = AL["Protection Potions"];
+ Back_Page = "ALCHEMYMENU";
+ Back_Title = AL["Alchemy"];
+ Next_Page = "AlchemyHealingAndMana1";
+ Next_Title = AL["Healing and Mana Potions"];
+ Prev_Page = "AlchemyFlasks1";
+ Prev_Title = AL["Flasks"];
+ },
+ ["AlchemyHealingAndMana1"] = {
+ Title = AL["Healing and Mana Potions"];
+ Back_Page = "ALCHEMYMENU";
+ Back_Title = AL["Alchemy"];
+ Next_Page = "AlchemyTransmutes1";
+ Next_Title = AL["Transmutes"];
+ Prev_Page = "AlchemyProtectionPots1";
+ Prev_Title = AL["Protection Potions"];
+ },
+ ["AlchemyTransmutes1"] = {
+ Title = AL["Transmutes"];
+ Back_Page = "ALCHEMYMENU";
+ Back_Title = AL["Alchemy"];
+ Next_Page = "AlchemyDefensive1";
+ Next_Title = AL["Defensive Potions and Elixirs"];
+ Prev_Page = "AlchemyHealingAndMana1";
+ Prev_Title = AL["Healing and Mana Potions"];
+ },
+ ["AlchemyDefensive1"] = {
+ Title = AL["Defensive Potions and Elixirs"];
+ Back_Page = "ALCHEMYMENU";
+ Back_Title = AL["Alchemy"];
+ Next_Page = "AlchemyOffensive1";
+ Next_Title = AL["Offensive Potions and Elixirs"];
+ Prev_Page = "AlchemyTransmutes1";
+ Prev_Title = AL["Transmutes"];
+ },
+ ["AlchemyOffensive1"] = {
+ Title = AL["Offensive Potions and Elixirs"];
+ Back_Page = "ALCHEMYMENU";
+ Back_Title = AL["Alchemy"];
+ Next_Page = "AlchemyOther1";
+ Next_Title = AL["Other"];
+ Prev_Page = "AlchemyDefensive1";
+ Prev_Title = AL["Defensive Potions and Elixirs"];
+ },
+ ["AlchemyOther1"] = {
+ Title = AL["Other"];
+ Back_Page = "ALCHEMYMENU";
+ Back_Title = AL["Alchemy"];
+ Prev_Page = "AlchemyOffensive1";
+ Prev_Title = AL["Offensive Potions and Elixirs"];
+ },
["SmithingApprentice1"] = {
Title = AL["Blacksmithing"] .. ": " .. AL["Apprentice"];
Back_Page = "SMITHINGMENU";
@@ -4419,15 +4485,168 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Blacksmithing"];
Prev_Page = "SmithingArtisan3";
Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"];
- Next_Page = "Armorsmith1";
- Next_Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"];
- };
- ["Armorsmith1"] = {
- Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"];
+ Next_Page = "SmithingHelm1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Helm"];
+ };
+ ["SmithingHelm1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Helm"];
Back_Page = "SMITHINGMENU";
Back_Title = AL["Blacksmithing"];
Prev_Page = "SmithingArtisan4";
Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"];
+ Next_Page = "SmithingShoulders1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Shoulders"];
+ };
+ ["SmithingShoulders1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Shoulders"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingHelm1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Helm"];
+ Next_Page = "SmithingChest1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Chest"];
+ };
+ ["SmithingChest1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Chest"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingShoulders1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Shoulders"];
+ Next_Page = "SmithingChest2";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Chest"];
+ };
+ ["SmithingChest2"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Chest"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingChest1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Chest"];
+ Next_Page = "SmithingBracers1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Bracers"];
+ };
+ ["SmithingBracers1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Bracers"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingChest2";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Chest"];
+ Next_Page = "SmithingGloves1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Gloves"];
+ };
+ ["SmithingGloves1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Gloves"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingBracers1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Bracers"];
+ Next_Page = "SmithingBelt1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Belt"];
+ };
+ ["SmithingBelt1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Belt"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingGloves1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Gloves"];
+ Next_Page = "SmithingPants1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Pants"];
+ };
+ ["SmithingPants1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Pants"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingBelt1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Belt"];
+ Next_Page = "SmithingBoots1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Boots"];
+ };
+ ["SmithingBoots1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Boots"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingPants1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Pants"];
+ Next_Page = "SmithingBuckles1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Belt Buckles"];
+ };
+ ["SmithingBuckles1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Belt Buckles"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingBoots1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Boots"];
+ Next_Page = "SmithingAxes1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Axes"];
+ };
+ ["SmithingAxes1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Axes"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingBuckles1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Belt Buckles"];
+ Next_Page = "SmithingSwords1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Swords"];
+ };
+ ["SmithingSwords1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Swords"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingAxes1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Axes"];
+ Next_Page = "SmithingMaces1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Maces"];
+ };
+ ["SmithingMaces1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Maces"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingSwords1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Swords"];
+ Next_Page = "SmithingFist1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Fist"];
+ };
+ ["SmithingFist1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Fist"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingMaces1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Maces"];
+ Next_Page = "SmithingDaggers1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Daggers"];
+ };
+ ["SmithingDaggers1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Daggers"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingFist1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Fist"];
+ Next_Page = "SmithingMisc1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Misc"];
+ };
+ ["SmithingMisc1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Misc"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingDaggers1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Daggers"];
+ Next_Page = "SmithingMisc2";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Misc"];
+ };
+ ["SmithingMisc2"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Misc"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingMisc1";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Misc"];
+ Next_Page = "Armorsmith1";
+ Next_Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"];
+ };
+ ["Armorsmith1"] = {
+ Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"];
+ Back_Page = "SMITHINGMENU";
+ Back_Title = AL["Blacksmithing"];
+ Prev_Page = "SmithingMisc2";
+ Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Misc"];
Next_Page = "Weaponsmith1";
Next_Title = AL["Blacksmithing"] .. ": " .. AL["Weaponsmith"];
};
@@ -4469,8 +4688,6 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Enchanting"] .. ": " .. AL["Apprentice"];
Back_Page = "ENCHANTINGMENU";
Back_Title = AL["Enchanting"];
- Prev_Page = "EnchantingMisc1";
- Prev_Title = AL["Enchanting"] .. ": " .. AL["Misc"];
Next_Page = "EnchantingJourneyman1";
Next_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"];
};
@@ -4562,10 +4779,10 @@ AtlasLoot_ButtonRegistry = {
Prev_Page = "EnchantingChest1";
Prev_Title = AL["Enchanting"] .. ": " .. AL["Chest"];
Next_Page = "EnchantingGlove1";
- Next_Title = AL["Enchanting"] .. ": " .. AL["Glove"];
+ Next_Title = AL["Enchanting"] .. ": " .. AL["Gloves"];
};
["EnchantingGlove1"] = {
- Title = AL["Enchanting"] .. ": " .. AL["Glove"];
+ Title = AL["Enchanting"] .. ": " .. AL["Gloves"];
Back_Page = "ENCHANTINGMENU";
Back_Title = AL["Enchanting"];
Prev_Page = "EnchantingBracer1";
@@ -4578,7 +4795,7 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "ENCHANTINGMENU";
Back_Title = AL["Enchanting"];
Prev_Page = "EnchantingGlove1";
- Prev_Title = AL["Enchanting"] .. ": " .. AL["Glove"];
+ Prev_Title = AL["Enchanting"] .. ": " .. AL["Gloves"];
Next_Page = "Enchanting2HWeapon1";
Next_Title = AL["Enchanting"] .. ": " .. AL["2H Weapon"];
};
@@ -4615,8 +4832,6 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Enchanting"];
Prev_Page = "EnchantingShield1";
Prev_Title = AL["Enchanting"] .. ": " .. AL["Shield"];
- Next_Page = "EnchantingApprentice1";
- Next_Title = AL["Enchanting"] .. ": " .. AL["Apprentice"];
};
["EngineeringApprentice1"] = {
Title = AL["Engineering"] .. ": " .. AL["Apprentice"];
@@ -4676,24 +4891,96 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Engineering"];
Prev_Page = "EngineeringArtisan1";
Prev_Title = AL["Engineering"] .. ": " .. AL["Artisan"];
- Next_Page = "Gnomish1";
- Next_Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"];
+ Next_Page = "EngineeringEquipment1";
+ Next_Title = AL["Engineering"] .. ": " .. AL["Equipment"];
};
- ["Gnomish1"] = {
- Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"];
+ ["EngineeringEquipment1"] = {
+ Title = AL["Engineering"] .. ": " .. AL["Equipment"];
Back_Page = "ENGINEERINGMENU";
Back_Title = AL["Engineering"];
Prev_Page = "EngineeringArtisan2";
Prev_Title = AL["Engineering"] .. ": " .. AL["Artisan"];
+ Next_Page = "EngineeringTrinkets1";
+ Next_Title = AL["Engineering"] .. ": " .. AL["Trinkets"];
+ };
+ ["EngineeringTrinkets1"] = {
+ Title = AL["Engineering"] .. ": " .. AL["Trinkets"];
+ Back_Page = "ENGINEERINGMENU";
+ Back_Title = AL["Engineering"];
+ Prev_Page = "EngineeringEquipment1";
+ Prev_Title = AL["Engineering"] .. ": " .. AL["Equipment"];
+ Next_Page = "EngineeringExplosives1";
+ Next_Title = AL["Engineering"] .. ": " .. AL["Explosives"];
+ };
+ ["EngineeringExplosives1"] = {
+ Title = AL["Engineering"] .. ": " .. AL["Explosives"];
+ Back_Page = "ENGINEERINGMENU";
+ Back_Title = AL["Engineering"];
+ Prev_Page = "EngineeringTrinkets1";
+ Prev_Title = AL["Engineering"] .. ": " .. AL["Equipment"];
+ Next_Page = "EngineeringWeapons1";
+ Next_Title = AL["Engineering"] .. ": " .. AL["Weapons"];
+ };
+ ["EngineeringWeapons1"] = {
+ Title = AL["Engineering"] .. ": " .. AL["Weapons"];
+ Back_Page = "ENGINEERINGMENU";
+ Back_Title = AL["Engineering"];
+ Prev_Page = "EngineeringExplosives1";
+ Prev_Title = AL["Engineering"] .. ": " .. AL["Explosives"];
+ Next_Page = "EngineeringParts1";
+ Next_Title = AL["Engineering"] .. ": " .. AL["Parts"];
+ };
+ ["EngineeringParts1"] = {
+ Title = AL["Engineering"] .. ": " .. AL["Parts"];
+ Back_Page = "ENGINEERINGMENU";
+ Back_Title = AL["Engineering"];
+ Prev_Page = "EngineeringWeapons1";
+ Prev_Title = AL["Engineering"] .. ": " .. AL["Weapons"];
+ Next_Page = "EngineeringMisc1";
+ Next_Title = AL["Engineering"] .. ": " .. AL["Misc"];
+ };
+ ["EngineeringMisc1"] = {
+ Title = AL["Engineering"] .. ": " .. AL["Misc"];
+ Back_Page = "ENGINEERINGMENU";
+ Back_Title = AL["Engineering"];
+ Prev_Page = "EngineeringParts1";
+ Prev_Title = AL["Engineering"] .. ": " .. AL["Parts"];
+ Next_Page = "EngineeringMisc2";
+ Next_Title = AL["Engineering"] .. ": " .. AL["Misc"];
+ };
+ ["EngineeringMisc2"] = {
+ Title = AL["Engineering"] .. ": " .. AL["Misc"];
+ Back_Page = "ENGINEERINGMENU";
+ Back_Title = AL["Engineering"];
+ Prev_Page = "EngineeringMisc1";
+ Prev_Title = AL["Engineering"] .. ": " .. AL["Misc"];
+ Next_Page = "EngineeringMisc3";
+ Next_Title = AL["Engineering"] .. ": " .. AL["Misc"];
+ };
+ ["EngineeringMisc3"] = {
+ Title = AL["Engineering"] .. ": " .. AL["Misc"];
+ Back_Page = "ENGINEERINGMENU";
+ Back_Title = AL["Engineering"];
+ Prev_Page = "EngineeringMisc2";
+ Prev_Title = AL["Engineering"] .. ": " .. AL["Misc"];
+ Next_Page = "Gnomish1";
+ Next_Title = AL["Gnomish Engineering"];
+ };
+ ["Gnomish1"] = {
+ Title = AL["Gnomish Engineering"];
+ Back_Page = "ENGINEERINGMENU";
+ Back_Title = AL["Engineering"];
+ Prev_Page = "EngineeringMisc2";
+ Prev_Title = AL["Engineering"] .. ": " .. AL["Misc"];
Next_Page = "Goblin1";
- Next_Title = AL["Engineering"] .. ": " .. AL["Goblin Engineering"];
+ Next_Title = AL["Goblin Engineering"];
};
["Goblin1"] = {
- Title = AL["Engineering"] .. ": " .. AL["Goblin Engineering"];
+ Title = AL["Goblin Engineering"];
Back_Page = "ENGINEERINGMENU";
Back_Title = AL["Engineering"];
Prev_Page = "Gnomish1";
- Prev_Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"];
+ Prev_Title = AL["Gnomish Engineering"];
};
["LeatherApprentice1"] = {
Title = AL["Leatherworking"] .. ": " .. AL["Apprentice"];
@@ -4762,15 +5049,132 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Leatherworking"];
Prev_Page = "LeatherArtisan2";
Prev_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"];
- Next_Page = "Dragonscale1";
- Next_Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"];
+ Next_Page = "LeatherHelm1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Helm"];
};
- ["Dragonscale1"] = {
- Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"];
+ ["LeatherHelm1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Helm"];
Back_Page = "LEATHERWORKINGMENU";
Back_Title = AL["Leatherworking"];
Prev_Page = "LeatherArtisan3";
Prev_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"];
+ Next_Page = "LeatherShoulders1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Shoulders"];
+ };
+ ["LeatherShoulders1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Shoulders"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherHelm1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Helm"];
+ Next_Page = "LeatherCloak1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Cloak"];
+ };
+ ["LeatherCloak1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Cloak"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherShoulders1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Shoulders"];
+ Next_Page = "LeatherChest1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Bracers"];
+ };
+ ["LeatherChest1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Chest"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherCloak1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Cloak"];
+ Next_Page = "LeatherChest2";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Chest"];
+ };
+ ["LeatherChest2"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Chest"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherChest1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Chest"];
+ Next_Page = "LeatherBracers1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Bracers"];
+ };
+ ["LeatherBracers1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Bracers"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherCloak1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Cloak"];
+ Next_Page = "LeatherGloves1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Gloves"];
+ };
+ ["LeatherGloves1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Gloves"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherBracers1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Bracers"];
+ Next_Page = "LeatherBelt1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Belt"];
+ };
+ ["LeatherBelt1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Belt"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherBracers1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Bracers"];
+ Next_Page = "LeatherPants1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Pants"];
+ };
+ ["LeatherPants1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Pants"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherBelt1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Belt"];
+ Next_Page = "LeatherPants2";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Boots"];
+ };
+ ["LeatherPants2"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Pants"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherPants1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Belt"];
+ Next_Page = "LeatherBoots1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Boots"];
+ };
+ ["LeatherBoots1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Boots"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherPants1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Pants"];
+ Next_Page = "LeatherBags1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Shirt"];
+ };
+ ["LeatherBags1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Bags"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherBoots1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Shirt"];
+ Next_Page = "LeatherMisc1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Misc"];
+ };
+ ["LeatherMisc1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Misc"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherBags1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Bags"];
+ Next_Page = "Dragonscale1";
+ Next_Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"];
+ },
+ ["Dragonscale1"] = {
+ Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"];
+ Back_Page = "LEATHERWORKINGMENU";
+ Back_Title = AL["Leatherworking"];
+ Prev_Page = "LeatherMisc1";
+ Prev_Title = AL["Leatherworking"] .. ": " .. AL["Misc"];
Next_Page = "Elemental1";
Next_Title = AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"];
};
@@ -4831,8 +5235,6 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Tailoring"] .. ": " .. AL["Apprentice"];
Back_Page = "TAILORINGMENU";
Back_Title = AL["Tailoring"];
- Prev_Page = "TailoringArtisan5";
- Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"];
Next_Page = "TailoringApprentice2";
Next_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"];
};
@@ -4923,8 +5325,123 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Tailoring"];
Prev_Page = "TailoringArtisan4";
Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"];
- Next_Page = "TailoringApprentice1";
- Next_Title = AL["Tailoring"] .. ": " .. AL["Apprentice"];
+ Next_Page = "TailoringHelm1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Helm"];
+ };
+ ["TailoringHelm1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Helm"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringArtisan5";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"];
+ Next_Page = "TailoringShoulders1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Shoulders"];
+ };
+ ["TailoringShoulders1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Shoulders"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringHelm1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Helm"];
+ Next_Page = "TailoringCloak1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Cloak"];
+ };
+ ["TailoringCloak1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Cloak"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringShoulders1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Shoulders"];
+ Next_Page = "TailoringBracers1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Bracers"];
+ };
+ ["TailoringChest1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Chest"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringCloak1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Cloak"];
+ Next_Page = "LeatherChest2";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Chest"];
+ };
+ ["TailoringChest2"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Chest"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringChest1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Chest"];
+ Next_Page = "TailoringBracers1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Bracers"];
+ };
+ ["TailoringBracers1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Bracers"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringCloak1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Cloak"];
+ Next_Page = "TailoringGloves1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Gloves"];
+ };
+ ["TailoringGloves1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Gloves"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringBracers1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Bracers"];
+ Next_Page = "TailoringBelt1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Belt"];
+ };
+ ["TailoringBelt1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Belt"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringBracers1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Bracers"];
+ Next_Page = "TailoringPants1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Pants"];
+ };
+ ["TailoringPants1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Pants"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringBelt1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Belt"];
+ Next_Page = "TailoringBoots1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Boots"];
+ };
+ ["TailoringBoots1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Boots"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringPants1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Pants"];
+ Next_Page = "TailoringShirt1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Shirt"];
+ };
+ ["TailoringShirt1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Shirt"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringBoots1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Boots"];
+ Next_Page = "TailoringBags1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Bags"];
+ };
+ ["TailoringBags1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Bags"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringShirt1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Shirt"];
+ Next_Page = "TailoringMisc1";
+ Next_Title = AL["Tailoring"] .. ": " .. AL["Misc"];
+ };
+ ["TailoringMisc1"] = {
+ Title = AL["Tailoring"] .. ": " .. AL["Misc"];
+ Back_Page = "TAILORINGMENU";
+ Back_Title = AL["Tailoring"];
+ Prev_Page = "TailoringBags1";
+ Prev_Title = AL["Tailoring"] .. ": " .. AL["Bags"];
};
["CookingApprentice1"] = {
Title = AL["Cooking"] .. ": " .. AL["Apprentice"];
@@ -4965,21 +5482,13 @@ AtlasLoot_ButtonRegistry = {
};
["Survival1"] = {
Title = AL["Survival"];
- Back_Page = "SURVIVALMENU";
- Back_Title = AL["Survival"];
- Prev_Page = "Survival2";
- Prev_Title = AL["Gardening"];
- Next_Page = "Survival2";
- Next_Title = AL["Gardening"];
+ Back_Page = "CRAFTINGMENU";
+ Back_Title = AL["Crafting"];
};
["Survival2"] = {
Title = AL["Gardening"];
- Back_Page = "SURVIVALMENU";
- Back_Title = AL["Survival"];
- Prev_Page = "Survival1";
- Prev_Title = AL["Survival"];
- Next_Page = "Survival1";
- Next_Title = AL["Survival"];
+ Back_Page = "CRAFTINGMENU";
+ Back_Title = AL["Crafting"];
};
["Poisons1"] = {
Title = AL["Poisons"];
diff --git a/Core/Crafting.lua b/Core/Crafting.lua
index 402e8cb..6733d01 100644
--- a/Core/Crafting.lua
+++ b/Core/Crafting.lua
@@ -22,47 +22,47 @@ function AtlasLoot_CraftingMenu()
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_2.lootpage="ALCHEMYMENU";
AtlasLootMenuItem_2:Show();
- --Blacksmithing
- AtlasLootMenuItem_3_Name:SetText(AL["Blacksmithing"]);
- AtlasLootMenuItem_3_Extra:SetText("");
- AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
- AtlasLootMenuItem_3.lootpage="SMITHINGMENU";
- AtlasLootMenuItem_3:Show();
--Enchanting
- AtlasLootMenuItem_4_Name:SetText(AL["Enchanting"]);
- AtlasLootMenuItem_4_Extra:SetText("");
- AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
- AtlasLootMenuItem_4.lootpage="ENCHANTINGMENU";
- AtlasLootMenuItem_4:Show();
+ AtlasLootMenuItem_3_Name:SetText(AL["Enchanting"]);
+ AtlasLootMenuItem_3_Extra:SetText("");
+ AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
+ AtlasLootMenuItem_3.lootpage="ENCHANTINGMENU";
+ AtlasLootMenuItem_3:Show();
--Engineering
- AtlasLootMenuItem_5_Name:SetText(AL["Engineering"]);
- AtlasLootMenuItem_5_Extra:SetText("");
- AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
- AtlasLootMenuItem_5.lootpage="ENGINEERINGMENU";
- AtlasLootMenuItem_5:Show();
- --Herbalism
- AtlasLootMenuItem_6_Name:SetText(AL["Herbalism"]);
- AtlasLootMenuItem_6_Extra:SetText("");
- AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Trade_Herbalism");
- AtlasLootMenuItem_6.lootpage="Herbalism1";
- AtlasLootMenuItem_6:Show();
+ AtlasLootMenuItem_4_Name:SetText(AL["Engineering"]);
+ AtlasLootMenuItem_4_Extra:SetText("");
+ AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
+ AtlasLootMenuItem_4.lootpage="ENGINEERINGMENU";
+ AtlasLootMenuItem_4:Show();
--Leatherworking
- AtlasLootMenuItem_7_Name:SetText(AL["Leatherworking"]);
- AtlasLootMenuItem_7_Extra:SetText("");
- AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
- AtlasLootMenuItem_7.lootpage="LEATHERWORKINGMENU";
- AtlasLootMenuItem_7:Show();
- --Mining
- AtlasLootMenuItem_8_Name:SetText(AL["Mining"]);
- AtlasLootMenuItem_8_Extra:SetText("");
- AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Mining");
- AtlasLootMenuItem_8.lootpage="MININGMENU";
- AtlasLootMenuItem_8:Show();
+ AtlasLootMenuItem_5_Name:SetText(AL["Leatherworking"]);
+ AtlasLootMenuItem_5_Extra:SetText("");
+ AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_5.lootpage="LEATHERWORKINGMENU";
+ AtlasLootMenuItem_5:Show();
+ --Blacksmithing
+ AtlasLootMenuItem_6_Name:SetText(AL["Blacksmithing"]);
+ AtlasLootMenuItem_6_Extra:SetText("");
+ AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_6.lootpage="SMITHINGMENU";
+ AtlasLootMenuItem_6:Show();
--Tailoring
- AtlasLootMenuItem_9_Name:SetText(AL["Tailoring"]);
+ AtlasLootMenuItem_7_Name:SetText(AL["Tailoring"]);
+ AtlasLootMenuItem_7_Extra:SetText("");
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_7.lootpage="TAILORINGMENU";
+ AtlasLootMenuItem_7:Show();
+ --Herbalism
+ AtlasLootMenuItem_8_Name:SetText(AL["Herbalism"]);
+ AtlasLootMenuItem_8_Extra:SetText("");
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Herbalism");
+ AtlasLootMenuItem_8.lootpage="Herbalism1";
+ AtlasLootMenuItem_8:Show();
+ --Mining
+ AtlasLootMenuItem_9_Name:SetText(AL["Mining"]);
AtlasLootMenuItem_9_Extra:SetText("");
- AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
- AtlasLootMenuItem_9.lootpage="TAILORINGMENU";
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Mining");
+ AtlasLootMenuItem_9.lootpage="MININGMENU";
AtlasLootMenuItem_9:Show();
--Cooking
AtlasLootMenuItem_11_Name:SetText(AL["Cooking"]);
@@ -80,8 +80,14 @@ function AtlasLoot_CraftingMenu()
AtlasLootMenuItem_13_Name:SetText(AL["Survival"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Survival");
- AtlasLootMenuItem_13.lootpage="SURVIVALMENU";
+ AtlasLootMenuItem_13.lootpage="Survival1";
AtlasLootMenuItem_13:Show();
+ --Gardening
+ AtlasLootMenuItem_14_Name:SetText(AL["Gardening"]);
+ AtlasLootMenuItem_14_Extra:SetText("");
+ AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Herbalism");
+ AtlasLootMenuItem_14.lootpage="Survival2";
+ AtlasLootMenuItem_14:Show();
--Poisons
AtlasLootMenuItem_15_Name:SetText(AL["Poisons"]);
AtlasLootMenuItem_15_Extra:SetText("|cfffff468"..AL["Rogue"]);
@@ -91,15 +97,15 @@ function AtlasLoot_CraftingMenu()
--Crafted Armor Sets
AtlasLootMenuItem_17_Name:SetText(AL["Crafted Sets"]);
AtlasLootMenuItem_17_Extra:SetText("");
- AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Box_01");
+ AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Pants_Wolf");
AtlasLootMenuItem_17.lootpage="CRAFTSET";
AtlasLootMenuItem_17:Show();
--Crafted Epic Weapons
- AtlasLootMenuItem_18_Name:SetText(AL["Crafted Epic Weapons"]);
- AtlasLootMenuItem_18_Extra:SetText("");
- AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Hammer_Unique_Sulfuras");
- AtlasLootMenuItem_18.lootpage="CraftedWeapons1";
- AtlasLootMenuItem_18:Show();
+ AtlasLootMenuItem_19_Name:SetText(AL["Crafted Epic Weapons"]);
+ AtlasLootMenuItem_19_Extra:SetText("");
+ AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Hammer_Unique_Sulfuras");
+ AtlasLootMenuItem_19.lootpage="CraftedWeapons1";
+ AtlasLootMenuItem_19:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -123,7 +129,7 @@ function AtlasLootCraftedSetMenu()
--Tailoring Header
AtlasLootMenuItem_1_Name:SetText(RED..AL["Tailoring"]);
AtlasLootMenuItem_1_Extra:SetText("");
- AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\INV_Chest_Cloth_21");
+ AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_1.isheader = true;
AtlasLootMenuItem_1:Show();
--Augerer's Attire
@@ -159,7 +165,7 @@ function AtlasLootCraftedSetMenu()
--Mail Blacksmithing Header
AtlasLootMenuItem_8_Name:SetText(RED..AL["Blacksmithing"]);
AtlasLootMenuItem_8_Extra:SetText(WHITE..AL["Mail"]);
- AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_04");
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_8.isheader = true;
AtlasLootMenuItem_8:Show();
--Bloodsoul Embrace
@@ -171,7 +177,7 @@ function AtlasLootCraftedSetMenu()
--Plate Blacksmithing header
AtlasLootMenuItem_11_Name:SetText(RED..AL["Blacksmithing"]);
AtlasLootMenuItem_11_Extra:SetText(WHITE..AL["Plate"]);
- AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate10");
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_11.isheader = true;
AtlasLootMenuItem_11:Show();
--Steel Plate
@@ -193,10 +199,10 @@ function AtlasLootCraftedSetMenu()
AtlasLootMenuItem_14.lootpage="TheDarksoul";
AtlasLootMenuItem_14:Show();
AtlasLootMenuItem_14:Show();
- --Leatherworking Leather Header
+ --Leatherworking Leather Header
AtlasLootMenuItem_16_Name:SetText(RED..AL["Leatherworking"]);
AtlasLootMenuItem_16_Extra:SetText(WHITE..AL["Leather"]);
- AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_04");
+ AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\inv_misc_armorkit_17");
AtlasLootMenuItem_16.isheader = true;
AtlasLootMenuItem_16:Show();
--Grifter's Armor
@@ -248,17 +254,17 @@ function AtlasLootCraftedSetMenu()
AtlasLootMenuItem_24.lootpage="PrimalBatskin";
AtlasLootMenuItem_24:Show();
--Leatherworking Mail Header
- AtlasLootMenuItem_25_Name:SetText(RED..AL["Leatherworking"]);
- AtlasLootMenuItem_25_Extra:SetText(WHITE..AL["Mail"]);
- AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_12");
- AtlasLootMenuItem_25.isheader = true;
- AtlasLootMenuItem_25:Show();
- --Red Dragon Mail
- AtlasLootMenuItem_26_Name:SetText(AL["Red Dragon Mail"]);
- AtlasLootMenuItem_26_Extra:SetText(ORANGE..AL["Fire Resistance Gear"]);
- AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\inv_chest_chain_06");
- AtlasLootMenuItem_26.lootpage="RedDragonM";
+ AtlasLootMenuItem_26_Name:SetText(RED..AL["Leatherworking"]);
+ AtlasLootMenuItem_26_Extra:SetText(WHITE..AL["Mail"]);
+ AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\inv_misc_armorkit_17");
+ AtlasLootMenuItem_26.isheader = true;
AtlasLootMenuItem_26:Show();
+ --Red Dragon Mail
+ AtlasLootMenuItem_30_Name:SetText(AL["Red Dragon Mail"]);
+ AtlasLootMenuItem_30_Extra:SetText(ORANGE..AL["Fire Resistance Gear"]);
+ AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\inv_chest_chain_06");
+ AtlasLootMenuItem_30.lootpage="RedDragonM";
+ AtlasLootMenuItem_30:Show();
--Green Dragon Mail
AtlasLootMenuItem_27_Name:SetText(AL["Green Dragon Mail"]);
AtlasLootMenuItem_27_Extra:SetText(ORANGE..AL["Nature Resistance Gear"]);
@@ -321,6 +327,48 @@ function AtlasLoot_AlchemyMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_5.lootpage="AlchemyArtisan1";
AtlasLootMenuItem_5:Show();
+ --Flasks
+ AtlasLootMenuItem_7_Name:SetText(AL["Flasks"]);
+ AtlasLootMenuItem_7_Extra:SetText("");
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
+ AtlasLootMenuItem_7.lootpage="AlchemyFlasks1";
+ AtlasLootMenuItem_7:Show();
+ --Protection Pots
+ AtlasLootMenuItem_8_Name:SetText(AL["Protection Potions"]);
+ AtlasLootMenuItem_8_Extra:SetText("");
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
+ AtlasLootMenuItem_8.lootpage="AlchemyProtectionPots1";
+ AtlasLootMenuItem_8:Show();
+ --Healing and Mana
+ AtlasLootMenuItem_9_Name:SetText(AL["Healing and Mana Potions"]);
+ AtlasLootMenuItem_9_Extra:SetText("");
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
+ AtlasLootMenuItem_9.lootpage="AlchemyHealingAndMana1";
+ AtlasLootMenuItem_9:Show();
+ --Transmutes
+ AtlasLootMenuItem_10_Name:SetText(AL["Transmutes"]);
+ AtlasLootMenuItem_10_Extra:SetText("");
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
+ AtlasLootMenuItem_10.lootpage="AlchemyTransmutes1";
+ AtlasLootMenuItem_10:Show();
+ --Defensive pots
+ AtlasLootMenuItem_11_Name:SetText(AL["Defensive Potions and Elixirs"]);
+ AtlasLootMenuItem_11_Extra:SetText("");
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
+ AtlasLootMenuItem_11.lootpage="AlchemyDefensive1";
+ AtlasLootMenuItem_11:Show();
+ --Offensive pots
+ AtlasLootMenuItem_12_Name:SetText(AL["Offensive Potions and Elixirs"]);
+ AtlasLootMenuItem_12_Extra:SetText("");
+ AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
+ AtlasLootMenuItem_12.lootpage="AlchemyOffensive1";
+ AtlasLootMenuItem_12:Show();
+ --Other
+ AtlasLootMenuItem_13_Name:SetText(AL["Other"]);
+ AtlasLootMenuItem_13_Extra:SetText("");
+ AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
+ AtlasLootMenuItem_13.lootpage="AlchemyOther1";
+ AtlasLootMenuItem_13:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -365,36 +413,126 @@ function AtlasLoot_SmithingMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_5.lootpage="SmithingArtisan1";
AtlasLootMenuItem_5:Show();
- --Armorsmith
- AtlasLootMenuItem_7_Name:SetText(AL["Blacksmithing"]..": "..AL["Armorsmith"]);
+ --BS Helm
+ AtlasLootMenuItem_7_Name:SetText(AL["Blacksmithing"]..": "..AL["Helm"]);
AtlasLootMenuItem_7_Extra:SetText("");
- AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate04");
- AtlasLootMenuItem_7.lootpage="Armorsmith1";
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_7.lootpage="SmithingHelm1";
AtlasLootMenuItem_7:Show();
- --Weaponsmith
- AtlasLootMenuItem_22_Name:SetText(AL["Blacksmithing"]..": "..AL["Weaponsmith"]);
+ --BS Shoulders
+ AtlasLootMenuItem_8_Name:SetText(AL["Blacksmithing"]..": "..AL["Shoulders"]);
+ AtlasLootMenuItem_8_Extra:SetText("");
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_8.lootpage="SmithingShoulders1";
+ AtlasLootMenuItem_8:Show();
+ --BS Chest
+ AtlasLootMenuItem_9_Name:SetText(AL["Blacksmithing"]..": "..AL["Chest"]);
+ AtlasLootMenuItem_9_Extra:SetText("");
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_9.lootpage="SmithingChest1";
+ AtlasLootMenuItem_9:Show();
+ --BS Bracers
+ AtlasLootMenuItem_10_Name:SetText(AL["Blacksmithing"]..": "..AL["Bracers"]);
+ AtlasLootMenuItem_10_Extra:SetText("");
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_10.lootpage="SmithingBracers1";
+ AtlasLootMenuItem_10:Show();
+ --BS Gloves
+ AtlasLootMenuItem_11_Name:SetText(AL["Blacksmithing"]..": "..AL["Gloves"]);
+ AtlasLootMenuItem_11_Extra:SetText("");
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_11.lootpage="SmithingGloves1";
+ AtlasLootMenuItem_11:Show();
+ --BS Belt
+ AtlasLootMenuItem_12_Name:SetText(AL["Blacksmithing"]..": "..AL["Belt"]);
+ AtlasLootMenuItem_12_Extra:SetText("");
+ AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_12.lootpage="SmithingBelt1";
+ AtlasLootMenuItem_12:Show();
+ --BS Pants
+ AtlasLootMenuItem_13_Name:SetText(AL["Blacksmithing"]..": "..AL["Pants"]);
+ AtlasLootMenuItem_13_Extra:SetText("");
+ AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_13.lootpage="SmithingPants1";
+ AtlasLootMenuItem_13:Show();
+ --BS Boots
+ AtlasLootMenuItem_14_Name:SetText(AL["Blacksmithing"]..": "..AL["Boots"]);
+ AtlasLootMenuItem_14_Extra:SetText("");
+ AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_14.lootpage="SmithingBoots1";
+ AtlasLootMenuItem_14:Show();
+ --BS Belt Buckles
+ AtlasLootMenuItem_15_Name:SetText(AL["Blacksmithing"]..": "..AL["Belt Buckles"]);
+ AtlasLootMenuItem_15_Extra:SetText("");
+ AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_15.lootpage="SmithingBuckles1";
+ AtlasLootMenuItem_15:Show();
+ --BS Axes
+ AtlasLootMenuItem_17_Name:SetText(AL["Blacksmithing"]..": "..AL["Axes"]);
+ AtlasLootMenuItem_17_Extra:SetText("");
+ AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_17.lootpage="SmithingAxes1";
+ AtlasLootMenuItem_17:Show();
+ --BS Swords
+ AtlasLootMenuItem_18_Name:SetText(AL["Blacksmithing"]..": "..AL["Swords"]);
+ AtlasLootMenuItem_18_Extra:SetText("");
+ AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_18.lootpage="SmithingSwords1";
+ AtlasLootMenuItem_18:Show();
+ --BS Maces
+ AtlasLootMenuItem_19_Name:SetText(AL["Blacksmithing"]..": "..AL["Maces"]);
+ AtlasLootMenuItem_19_Extra:SetText("");
+ AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_19.lootpage="SmithingMaces1";
+ AtlasLootMenuItem_19:Show();
+ --BS Fist
+ AtlasLootMenuItem_20_Name:SetText(AL["Blacksmithing"]..": "..AL["Fist"]);
+ AtlasLootMenuItem_20_Extra:SetText("");
+ AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_20.lootpage="SmithingFist1";
+ AtlasLootMenuItem_20:Show();
+ --BS Daggers
+ AtlasLootMenuItem_21_Name:SetText(AL["Blacksmithing"]..": "..AL["Daggers"]);
+ AtlasLootMenuItem_21_Extra:SetText("");
+ AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_21.lootpage="SmithingDaggers1";
+ AtlasLootMenuItem_21:Show();
+ --BS Misc
+ AtlasLootMenuItem_22_Name:SetText(AL["Blacksmithing"]..": "..AL["Misc"]);
AtlasLootMenuItem_22_Extra:SetText("");
- AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Sword_25");
- AtlasLootMenuItem_22.lootpage="Weaponsmith1";
+ AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
+ AtlasLootMenuItem_22.lootpage="SmithingMisc1";
AtlasLootMenuItem_22:Show();
+ --Armorsmith
+ AtlasLootMenuItem_26_Name:SetText(AL["Blacksmithing"]..": "..AL["Armorsmith"]);
+ AtlasLootMenuItem_26_Extra:SetText("");
+ AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate04");
+ AtlasLootMenuItem_26.lootpage="Armorsmith1";
+ AtlasLootMenuItem_26:Show();
+ --Weaponsmith
+ AtlasLootMenuItem_27_Name:SetText(AL["Blacksmithing"]..": "..AL["Weaponsmith"]);
+ AtlasLootMenuItem_27_Extra:SetText("");
+ AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Sword_25");
+ AtlasLootMenuItem_27.lootpage="Weaponsmith1";
+ AtlasLootMenuItem_27:Show();
--Master Axesmith
- AtlasLootMenuItem_23_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Axesmith"]);
- AtlasLootMenuItem_23_Extra:SetText("");
- AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Axe_05");
- AtlasLootMenuItem_23.lootpage="Axesmith1";
- AtlasLootMenuItem_23:Show();
+ AtlasLootMenuItem_28_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Axesmith"]);
+ AtlasLootMenuItem_28_Extra:SetText("");
+ AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\INV_Axe_05");
+ AtlasLootMenuItem_28.lootpage="Axesmith1";
+ AtlasLootMenuItem_28:Show();
--Master Hammersmith
- AtlasLootMenuItem_24_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Hammersmith"]);
- AtlasLootMenuItem_24_Extra:SetText("");
- AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Hammer_23");
- AtlasLootMenuItem_24.lootpage="Hammersmith1";
- AtlasLootMenuItem_24:Show();
+ AtlasLootMenuItem_29_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Hammersmith"]);
+ AtlasLootMenuItem_29_Extra:SetText("");
+ AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\INV_Hammer_23");
+ AtlasLootMenuItem_29.lootpage="Hammersmith1";
+ AtlasLootMenuItem_29:Show();
--Master Swordsmith
- AtlasLootMenuItem_25_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Swordsmith"]);
- AtlasLootMenuItem_25_Extra:SetText("");
- AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Sword_41");
- AtlasLootMenuItem_25.lootpage="Swordsmith1";
- AtlasLootMenuItem_25:Show();
+ AtlasLootMenuItem_30_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Swordsmith"]);
+ AtlasLootMenuItem_30_Extra:SetText("");
+ AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\INV_Sword_41");
+ AtlasLootMenuItem_30.lootpage="Swordsmith1";
+ AtlasLootMenuItem_30:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -439,55 +577,55 @@ function AtlasLoot_EnchantingMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_5.lootpage="EnchantingArtisan1";
AtlasLootMenuItem_5:Show();
- --By Slot, Cloak
+ --Enchanting Cloak
AtlasLootMenuItem_7_Name:SetText(AL["Enchanting"]..": "..AL["Cloak"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_7.lootpage="EnchantingCloak1";
AtlasLootMenuItem_7:Show();
- --By Slot, Chest
+ --Enchanting Chest
AtlasLootMenuItem_8_Name:SetText(AL["Enchanting"]..": "..AL["Chest"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_8.lootpage="EnchantingChest1";
AtlasLootMenuItem_8:Show();
- --By Slot, Bracer
+ --Enchanting Bracer
AtlasLootMenuItem_9_Name:SetText(AL["Enchanting"]..": "..AL["Bracer"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_9.lootpage="EnchantingBracer1";
AtlasLootMenuItem_9:Show();
- --By Slot, Glove
- AtlasLootMenuItem_10_Name:SetText(AL["Enchanting"]..": "..AL["Glove"]);
+ --Enchanting Gloves
+ AtlasLootMenuItem_10_Name:SetText(AL["Enchanting"]..": "..AL["Gloves"]);
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_10.lootpage="EnchantingGlove1";
AtlasLootMenuItem_10:Show();
- --By Slot, Boots
+ --Enchanting Boots
AtlasLootMenuItem_11_Name:SetText(AL["Enchanting"]..": "..AL["Boots"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_11.lootpage="EnchantingBoots1";
AtlasLootMenuItem_11:Show();
- --By Slot, 2H Weapon
+ --Enchanting 2H Weapon
AtlasLootMenuItem_12_Name:SetText(AL["Enchanting"]..": "..AL["2H Weapon"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_12.lootpage="Enchanting2HWeapon1";
AtlasLootMenuItem_12:Show();
- --By Slot, Weapon
+ --Enchanting Weapon
AtlasLootMenuItem_13_Name:SetText(AL["Enchanting"]..": "..AL["Weapon"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_13.lootpage="EnchantingWeapon1";
AtlasLootMenuItem_13:Show();
- --By Slot, Shield
+ --Enchanting Shield
AtlasLootMenuItem_14_Name:SetText(AL["Enchanting"]..": "..AL["Shield"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_14.lootpage="EnchantingShield1";
AtlasLootMenuItem_14:Show();
- --By Slot, Misc
+ --Enchanting Misc
AtlasLootMenuItem_14_Name:SetText(AL["Enchanting"]..": "..AL["Misc"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
@@ -537,18 +675,54 @@ function AtlasLoot_EngineeringMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_5.lootpage="EngineeringArtisan1";
AtlasLootMenuItem_5:Show();
- --Gnomish Engineering
- AtlasLootMenuItem_7_Name:SetText(AL["Engineering"]..": "..AL["Gnomish Engineering"]);
+ --Equipment
+ AtlasLootMenuItem_7_Name:SetText(AL["Engineering"]..": "..AL["Equipment"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
- AtlasLootMenuItem_7.lootpage="Gnomish1";
+ AtlasLootMenuItem_7.lootpage="EngineeringEquipment1";
AtlasLootMenuItem_7:Show();
+ --Trinkets
+ AtlasLootMenuItem_8_Name:SetText(AL["Engineering"]..": "..AL["Trinkets"]);
+ AtlasLootMenuItem_8_Extra:SetText("");
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
+ AtlasLootMenuItem_8.lootpage="EngineeringTrinkets1";
+ AtlasLootMenuItem_8:Show();
+ --Explosives
+ AtlasLootMenuItem_9_Name:SetText(AL["Engineering"]..": "..AL["Explosives"]);
+ AtlasLootMenuItem_9_Extra:SetText("");
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
+ AtlasLootMenuItem_9.lootpage="EngineeringExplosives1";
+ AtlasLootMenuItem_9:Show();
+ -- Weapons
+ AtlasLootMenuItem_10_Name:SetText(AL["Engineering"]..": "..AL["Weapons"]);
+ AtlasLootMenuItem_10_Extra:SetText("");
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
+ AtlasLootMenuItem_10.lootpage="EngineeringWeapons1";
+ AtlasLootMenuItem_10:Show();
+ --Parts
+ AtlasLootMenuItem_11_Name:SetText(AL["Engineering"]..": "..AL["Parts"]);
+ AtlasLootMenuItem_11_Extra:SetText("");
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
+ AtlasLootMenuItem_11.lootpage="EngineeringParts1";
+ AtlasLootMenuItem_11:Show();
+ --Misc
+ AtlasLootMenuItem_12_Name:SetText(AL["Engineering"]..": "..AL["Misc"]);
+ AtlasLootMenuItem_12_Extra:SetText("");
+ AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
+ AtlasLootMenuItem_12.lootpage="EngineeringMisc1";
+ AtlasLootMenuItem_12:Show();
+ --Gnomish Engineering
+ AtlasLootMenuItem_17_Name:SetText(AL["Gnomish Engineering"]);
+ AtlasLootMenuItem_17_Extra:SetText("");
+ AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
+ AtlasLootMenuItem_17.lootpage="Gnomish1";
+ AtlasLootMenuItem_17:Show();
--Goblin Engineering
- AtlasLootMenuItem_22_Name:SetText(AL["Engineering"]..": "..AL["Goblin Engineering"]);
- AtlasLootMenuItem_22_Extra:SetText("");
- AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
- AtlasLootMenuItem_22.lootpage="Goblin1";
- AtlasLootMenuItem_22:Show();
+ AtlasLootMenuItem_18_Name:SetText(AL["Goblin Engineering"]);
+ AtlasLootMenuItem_18_Extra:SetText("");
+ AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
+ AtlasLootMenuItem_18.lootpage="Goblin1";
+ AtlasLootMenuItem_18:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -594,23 +768,90 @@ function AtlasLoot_LeatherworkingMenu()
AtlasLootMenuItem_5.lootpage="LeatherArtisan1";
AtlasLootMenuItem_5:Show();
--Dragonscale Leatherworking
- AtlasLootMenuItem_7_Name:SetText(AL["Leatherworking"]..": "..AL["Dragonscale Leatherworking"]);
- AtlasLootMenuItem_7_Extra:SetText("");
- AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Misc_MonsterScales_03");
- AtlasLootMenuItem_7.lootpage="Dragonscale1";
- AtlasLootMenuItem_7:Show();
- --Tribal Leatherworking
- AtlasLootMenuItem_8_Name:SetText(AL["Leatherworking"]..": "..AL["Tribal Leatherworking"]);
- AtlasLootMenuItem_8_Extra:SetText("");
- AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Spell_Nature_NullWard");
- AtlasLootMenuItem_8.lootpage="Tribal1";
- AtlasLootMenuItem_8:Show();
+ AtlasLootMenuItem_20_Name:SetText(AL["Leatherworking"]..": "..AL["Dragonscale Leatherworking"]);
+ AtlasLootMenuItem_20_Extra:SetText("");
+ AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Misc_MonsterScales_03");
+ AtlasLootMenuItem_20.lootpage="Dragonscale1";
+ AtlasLootMenuItem_20:Show();
--Elemental Leatherworking
- AtlasLootMenuItem_22_Name:SetText(AL["Leatherworking"]..": "..AL["Elemental Leatherworking"]);
+ AtlasLootMenuItem_21_Name:SetText(AL["Leatherworking"]..": "..AL["Elemental Leatherworking"]);
+ AtlasLootMenuItem_21_Extra:SetText("");
+ AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\Spell_Fire_Volcano");
+ AtlasLootMenuItem_21.lootpage="Elemental1";
+ AtlasLootMenuItem_21:Show();
+ --Tribal Leatherworking
+ AtlasLootMenuItem_22_Name:SetText(AL["Leatherworking"]..": "..AL["Tribal Leatherworking"]);
AtlasLootMenuItem_22_Extra:SetText("");
- AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Spell_Fire_Volcano");
- AtlasLootMenuItem_22.lootpage="Elemental1";
+ AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Spell_Nature_NullWard");
+ AtlasLootMenuItem_22.lootpage="Tribal1";
AtlasLootMenuItem_22:Show();
+
+ --Leatherworking Helm
+ AtlasLootMenuItem_7_Name:SetText(AL["Leatherworking"]..": "..AL["Helm"]);
+ AtlasLootMenuItem_7_Extra:SetText("");
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_7.lootpage="LeatherHelm1";
+ AtlasLootMenuItem_7:Show();
+ --Leatherworking Shoulders
+ AtlasLootMenuItem_8_Name:SetText(AL["Leatherworking"]..": "..AL["Shoulders"]);
+ AtlasLootMenuItem_8_Extra:SetText("");
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_8.lootpage="LeatherShoulders1";
+ AtlasLootMenuItem_8:Show();
+ --Leatherworking Cape
+ AtlasLootMenuItem_9_Name:SetText(AL["Leatherworking"]..": "..AL["Cloak"]);
+ AtlasLootMenuItem_9_Extra:SetText("");
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_9.lootpage="LeatherCloak1";
+ AtlasLootMenuItem_9:Show();
+ --Leatherworking Chest
+ AtlasLootMenuItem_10_Name:SetText(AL["Leatherworking"]..": "..AL["Chest"]);
+ AtlasLootMenuItem_10_Extra:SetText("");
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_10.lootpage="LeatherChest1";
+ AtlasLootMenuItem_10:Show();
+ --Leatherworking Bracers
+ AtlasLootMenuItem_11_Name:SetText(AL["Leatherworking"]..": "..AL["Bracers"]);
+ AtlasLootMenuItem_11_Extra:SetText("");
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_11.lootpage="LeatherBracers1";
+ AtlasLootMenuItem_11:Show();
+ --Leatherworking Gloves
+ AtlasLootMenuItem_12_Name:SetText(AL["Leatherworking"]..": "..AL["Gloves"]);
+ AtlasLootMenuItem_12_Extra:SetText("");
+ AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_12.lootpage="LeatherGloves1";
+ AtlasLootMenuItem_12:Show();
+ --Leatherworking Belt
+ AtlasLootMenuItem_13_Name:SetText(AL["Leatherworking"]..": "..AL["Belt"]);
+ AtlasLootMenuItem_13_Extra:SetText("");
+ AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_13.lootpage="LeatherBelt1";
+ AtlasLootMenuItem_13:Show();
+ --Leatherworking Pants
+ AtlasLootMenuItem_14_Name:SetText(AL["Leatherworking"]..": "..AL["Pants"]);
+ AtlasLootMenuItem_14_Extra:SetText("");
+ AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_14.lootpage="LeatherPants1";
+ AtlasLootMenuItem_14:Show();
+ --Leatherworking Boots
+ AtlasLootMenuItem_15_Name:SetText(AL["Leatherworking"]..": "..AL["Boots"]);
+ AtlasLootMenuItem_15_Extra:SetText("");
+ AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_15.lootpage="LeatherBoots1";
+ AtlasLootMenuItem_15:Show();
+ --Leatherworking Bags
+ AtlasLootMenuItem_17_Name:SetText(AL["Leatherworking"]..": "..AL["Bags"]);
+ AtlasLootMenuItem_17_Extra:SetText("");
+ AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_17.lootpage="LeatherBags1";
+ AtlasLootMenuItem_17:Show();
+ --Leatherworking Misc
+ AtlasLootMenuItem_18_Name:SetText(AL["Leatherworking"]..": "..AL["Misc"]);
+ AtlasLootMenuItem_18_Extra:SetText("");
+ AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
+ AtlasLootMenuItem_18.lootpage="LeatherMisc1";
+ AtlasLootMenuItem_18:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -655,6 +896,79 @@ function AtlasLoot_TailoringMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_5.lootpage="TailoringArtisan1";
AtlasLootMenuItem_5:Show();
+
+ --Tailoring Helm
+ AtlasLootMenuItem_7_Name:SetText(AL["Tailoring"]..": "..AL["Helm"]);
+ AtlasLootMenuItem_7_Extra:SetText("");
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_7.lootpage="TailoringHelm1";
+ AtlasLootMenuItem_7:Show();
+ --Tailoring Shoulders
+ AtlasLootMenuItem_8_Name:SetText(AL["Tailoring"]..": "..AL["Shoulders"]);
+ AtlasLootMenuItem_8_Extra:SetText("");
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_8.lootpage="TailoringShoulders1";
+ AtlasLootMenuItem_8:Show();
+ --Tailoring Cape
+ AtlasLootMenuItem_9_Name:SetText(AL["Tailoring"]..": "..AL["Cloak"]);
+ AtlasLootMenuItem_9_Extra:SetText("");
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_9.lootpage="TailoringCloak1";
+ AtlasLootMenuItem_9:Show();
+ --Tailoring Chest
+ AtlasLootMenuItem_10_Name:SetText(AL["Tailoring"]..": "..AL["Chest"]);
+ AtlasLootMenuItem_10_Extra:SetText("");
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_10.lootpage="TailoringChest1";
+ AtlasLootMenuItem_10:Show();
+ --Tailoring Bracers
+ AtlasLootMenuItem_11_Name:SetText(AL["Tailoring"]..": "..AL["Bracers"]);
+ AtlasLootMenuItem_11_Extra:SetText("");
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_11.lootpage="TailoringBracers1";
+ AtlasLootMenuItem_11:Show();
+ --Tailoring Gloves
+ AtlasLootMenuItem_12_Name:SetText(AL["Tailoring"]..": "..AL["Gloves"]);
+ AtlasLootMenuItem_12_Extra:SetText("");
+ AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_12.lootpage="TailoringGloves1";
+ AtlasLootMenuItem_12:Show();
+ --Tailoring Belt
+ AtlasLootMenuItem_13_Name:SetText(AL["Tailoring"]..": "..AL["Belt"]);
+ AtlasLootMenuItem_13_Extra:SetText("");
+ AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_13.lootpage="TailoringBelt1";
+ AtlasLootMenuItem_13:Show();
+ --Tailoring Pants
+ AtlasLootMenuItem_14_Name:SetText(AL["Tailoring"]..": "..AL["Pants"]);
+ AtlasLootMenuItem_14_Extra:SetText("");
+ AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_14.lootpage="TailoringPants1";
+ AtlasLootMenuItem_14:Show();
+ --Tailoring Boots
+ AtlasLootMenuItem_15_Name:SetText(AL["Tailoring"]..": "..AL["Boots"]);
+ AtlasLootMenuItem_15_Extra:SetText("");
+ AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_15.lootpage="TailoringBoots1";
+ AtlasLootMenuItem_15:Show();
+ --Tailoring Shirt
+ AtlasLootMenuItem_17_Name:SetText(AL["Tailoring"]..": "..AL["Shirt"]);
+ AtlasLootMenuItem_17_Extra:SetText("");
+ AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_17.lootpage="TailoringShirt1";
+ AtlasLootMenuItem_17:Show();
+ --Tailoring Bags
+ AtlasLootMenuItem_18_Name:SetText(AL["Tailoring"]..": "..AL["Bags"]);
+ AtlasLootMenuItem_18_Extra:SetText("");
+ AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_18.lootpage="TailoringBags1";
+ AtlasLootMenuItem_18:Show();
+ --Tailoring Misc
+ AtlasLootMenuItem_19_Name:SetText(AL["Tailoring"]..": "..AL["Misc"]);
+ AtlasLootMenuItem_19_Extra:SetText("");
+ AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
+ AtlasLootMenuItem_19.lootpage="TailoringMisc1";
+ AtlasLootMenuItem_19:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -726,41 +1040,14 @@ function AtlasLoot_MiningMenu()
AtlasLootMenuItem_2.lootpage = "Mining1";
AtlasLootMenuItem_2:Show();
--Smelting
- AtlasLootMenuItem_17_Name:SetText(AL["Smelting"]);
- AtlasLootMenuItem_17_Extra:SetText("");
- AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Spell_Fire_FlameBlades");
- AtlasLootMenuItem_17.lootpage = "Smelting1";
- AtlasLootMenuItem_17:Show();
+ AtlasLootMenuItem_3_Name:SetText(AL["Smelting"]);
+ AtlasLootMenuItem_3_Extra:SetText("");
+ AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Spell_Fire_FlameBlades");
+ AtlasLootMenuItem_3.lootpage = "Smelting1";
+ AtlasLootMenuItem_3:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Mining"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
-
-function AtlasLoot_SurvivalMenu()
- for i = 1, 30, 1 do
- getglobal("AtlasLootItem_"..i):Hide();
- end
- for i = 1, 30, 1 do
- getglobal("AtlasLootMenuItem_"..i):Hide();
- getglobal("AtlasLootMenuItem_"..i).isheader = false;
- end
- getglobal("AtlasLootItemsFrame_BACK"):Show();
- getglobal("AtlasLootItemsFrame_BACK").lootpage = "CRAFTINGMENU";
- getglobal("AtlasLootItemsFrame_NEXT"):Hide();
- getglobal("AtlasLootItemsFrame_PREV"):Hide();
- getglobal("AtlasLootServerQueryButton"):Hide();
- --Apprentice
- AtlasLootMenuItem_2_Name:SetText(AL["Survival"]);
- AtlasLootMenuItem_2_Extra:SetText("");
- AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Trade_Survival");
- AtlasLootMenuItem_2.lootpage = "Survival1";
- AtlasLootMenuItem_2:Show();
- --Journeyman
- AtlasLootMenuItem_3_Name:SetText(AL["Gardening"]);
- AtlasLootMenuItem_3_Extra:SetText("");
- AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\trade_herbalism");
- AtlasLootMenuItem_3.lootpage = "Survival2";
- AtlasLootMenuItem_3:Show();
-end
diff --git a/Core/Factions.lua b/Core/Factions.lua
index 912597d..1f953cc 100644
--- a/Core/Factions.lua
+++ b/Core/Factions.lua
@@ -35,7 +35,7 @@ function AtlasLootRepMenu()
--Cenarion Hold
AtlasLootMenuItem_17_Name:SetText(AL["Cenarion Circle"]);
AtlasLootMenuItem_17_Extra:SetText("");
- AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate07");
+ AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Spell_Nature_HealingTouch");
AtlasLootMenuItem_17.lootpage="Cenarion1";
AtlasLootMenuItem_17:Show();
--Darkmoon Faire
@@ -44,12 +44,6 @@ function AtlasLootRepMenu()
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Misc_Ticket_Tarot_Maelstrom_01");
AtlasLootMenuItem_3.lootpage="Darkmoon";
AtlasLootMenuItem_3:Show();
- --The Defilers
- AtlasLootMenuItem_23_Name:SetText(AL["The Defilers"]);
- AtlasLootMenuItem_23_Extra:SetText("|cffFF0000"..AL["Horde"]);
- AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
- AtlasLootMenuItem_23.lootpage="Defilers";
- AtlasLootMenuItem_23:Show();
--Frostwolf Clan
AtlasLootMenuItem_24_Name:SetText(AL["Frostwolf Clan"]);
AtlasLootMenuItem_24_Extra:SetText("|cffFF0000"..AL["Horde"]);
@@ -65,27 +59,33 @@ function AtlasLootRepMenu()
--Hydraxian Waterlords
AtlasLootMenuItem_4_Name:SetText(AL["Hydraxian Waterlords"]);
AtlasLootMenuItem_4_Extra:SetText("");
- AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Spell_Frost_FrostArmor");
+ AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Spell_Frost_SummonWaterElemental_2");
AtlasLootMenuItem_4.lootpage="WaterLords1";
AtlasLootMenuItem_4:Show();
- --The League of Arathor
- AtlasLootMenuItem_8_Name:SetText(AL["The League of Arathor"]);
- AtlasLootMenuItem_8_Extra:SetText("|cff2773ff"..AL["Alliance"]);
- AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
- AtlasLootMenuItem_8.lootpage="LeagueofArathor";
- AtlasLootMenuItem_8:Show();
--Magram Clan Centaur
AtlasLootMenuItem_19_Name:SetText(AL["Magram Clan Centaur"]);
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Centaur_01");
AtlasLootMenuItem_19.lootpage="MagramClan1";
AtlasLootMenuItem_19:Show();
+ --Wildhammer Clan
+ AtlasLootMenuItem_7_Name:SetText(AL["Wildhammer Clan"]);
+ AtlasLootMenuItem_7_Extra:SetText("|cff2773ff"..AL["Alliance"]);
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Ability_Hunter_EagleEye");
+ AtlasLootMenuItem_7.lootpage="Wildhammer";
+ AtlasLootMenuItem_7:Show();
--Stormpike Guard
AtlasLootMenuItem_9_Name:SetText(AL["Stormpike Guard"]);
AtlasLootMenuItem_9_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_StormPikeTrinket_01");
AtlasLootMenuItem_9.lootpage="Stormpike1";
AtlasLootMenuItem_9:Show();
+ --Dalaran
+ AtlasLootMenuItem_10_Name:SetText(AL["Dalaran"]);
+ AtlasLootMenuItem_10_Extra:SetText("|cff2773ff"..AL["Alliance"]);
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Spell_Holy_MagicalSentry");
+ AtlasLootMenuItem_10.lootpage="Dalaran";
+ AtlasLootMenuItem_10:Show();
--Thorium Brotherhood
AtlasLootMenuItem_5_Name:SetText(AL["Thorium Brotherhood"]);
AtlasLootMenuItem_5_Extra:SetText("");
@@ -105,18 +105,29 @@ function AtlasLootRepMenu()
AtlasLootMenuItem_6.lootpage="Wintersaber1";
AtlasLootMenuItem_6:Show();
--Zandalar Tribe
- AtlasLootMenuItem_23_Name:SetText(AL["Zandalar Tribe"]);
- AtlasLootMenuItem_23_Extra:SetText("");
- AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Misc_Coin_08");
- AtlasLootMenuItem_23.lootpage="Zandalar1";
- AtlasLootMenuItem_23:Show();
-
+ AtlasLootMenuItem_21_Name:SetText(AL["Zandalar Tribe"]);
+ AtlasLootMenuItem_21_Extra:SetText("");
+ AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Misc_Coin_08");
+ AtlasLootMenuItem_21.lootpage="Zandalar1";
+ AtlasLootMenuItem_21:Show();
+ --Wardens of Time
+ AtlasLootMenuItem_22_Name:SetText(AL["Wardens of Time"]);
+ AtlasLootMenuItem_22_Extra:SetText("");
+ AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Bronze");
+ AtlasLootMenuItem_22.lootpage="Wardens1";
+ AtlasLootMenuItem_22:Show();
--helf
AtlasLootMenuItem_11_Name:SetText(AL["Silvermoon Remnant"]);
AtlasLootMenuItem_11_Extra:SetText("|cff2773ff"..AL["Alliance"]);
- AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\inv_misc_tournaments_symbol_bloodelf");
AtlasLootMenuItem_11.lootpage="Helf";
AtlasLootMenuItem_11:Show();
+ --Darkspear Trolls
+ AtlasLootMenuItem_25_Name:SetText(AL["Darkspear Trolls"]);
+ AtlasLootMenuItem_25_Extra:SetText("|cffFF0000"..AL["Horde"]);
+ AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\Racial_Troll_Berserk");
+ AtlasLootMenuItem_25.lootpage="DarkspearTrolls";
+ AtlasLootMenuItem_25:Show();
--raventusk
AtlasLootMenuItem_26_Name:SetText(AL["Revantusk Trolls"]);
AtlasLootMenuItem_26_Extra:SetText("|cffFF0000"..AL["Horde"]);
@@ -126,49 +137,49 @@ function AtlasLootRepMenu()
--Ironforge
AtlasLootMenuItem_12_Name:SetText(AL["Ironforge"]);
AtlasLootMenuItem_12_Extra:SetText("|cff2773ff"..AL["Alliance"]);
- AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Ability_Racial_Avatar");
AtlasLootMenuItem_12.lootpage="Ironforge";
AtlasLootMenuItem_12:Show();
--Darnassus
AtlasLootMenuItem_13_Name:SetText(AL["Darnassus"]);
AtlasLootMenuItem_13_Extra:SetText("|cff2773ff"..AL["Alliance"]);
- AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Ability_Racial_ShadowMeld");
AtlasLootMenuItem_13.lootpage="Darnassus";
AtlasLootMenuItem_13:Show();
--Stormwind
AtlasLootMenuItem_14_Name:SetText(AL["Stormwind"]);
AtlasLootMenuItem_14_Extra:SetText("|cff2773ff"..AL["Alliance"]);
- AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_BannerPVP_02");
AtlasLootMenuItem_14.lootpage="Stormwind";
AtlasLootMenuItem_14:Show();
--Gnomeregan Exiles
AtlasLootMenuItem_15_Name:SetText(AL["Gnomeregan Exiles"]);
AtlasLootMenuItem_15_Extra:SetText("|cff2773ff"..AL["Alliance"]);
- AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\INV_Gizmo_02");
AtlasLootMenuItem_15.lootpage="GnomereganExiles";
AtlasLootMenuItem_15:Show();
--Durotar Labor Union
AtlasLootMenuItem_27_Name:SetText(AL["Durotar Labor Union"]);
AtlasLootMenuItem_27_Extra:SetText("|cffFF0000"..AL["Horde"]);
- AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Misc_Coin_01");
AtlasLootMenuItem_27.lootpage="DurotarLaborUnion";
AtlasLootMenuItem_27:Show();
--Undercity
AtlasLootMenuItem_28_Name:SetText(AL["Undercity"]);
AtlasLootMenuItem_28_Extra:SetText("|cffFF0000"..AL["Horde"]);
- AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\Spell_Shadow_RaiseDead");
AtlasLootMenuItem_28.lootpage="Undercity";
AtlasLootMenuItem_28:Show();
--Orgrimmar
AtlasLootMenuItem_29_Name:SetText(AL["Orgrimmar"]);
AtlasLootMenuItem_29_Extra:SetText("|cffFF0000"..AL["Horde"]);
- AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\INV_BannerPVP_01");
AtlasLootMenuItem_29.lootpage="Orgrimmar";
AtlasLootMenuItem_29:Show();
--Thunder Bluff
AtlasLootMenuItem_30_Name:SetText(AL["Thunder Bluff"]);
AtlasLootMenuItem_30_Extra:SetText("|cffFF0000"..AL["Horde"]);
- AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\INV_Misc_Foot_Centaur");
AtlasLootMenuItem_30.lootpage="ThunderBluff";
AtlasLootMenuItem_30:Show();
diff --git a/Core/PvP.lua b/Core/PvP.lua
index 9109f7b..72630ce 100644
--- a/Core/PvP.lua
+++ b/Core/PvP.lua
@@ -28,23 +28,23 @@ function AtlasLootPvPMenu()
AtlasLootMenuItem_3.lootpage="ABRepMenu";
AtlasLootMenuItem_3:Show();
--PvP Mounts
- AtlasLootMenuItem_6_Name:SetText(AL["PvP Mounts"]);
- AtlasLootMenuItem_6_Extra:SetText("");
- AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Ability_Mount_RidingHorse");
- AtlasLootMenuItem_6.lootpage="PvPMountsPvP";
+ AtlasLootMenuItem_21_Name:SetText(AL["PvP Mounts"]);
+ AtlasLootMenuItem_21_Extra:SetText(ORANGE..AL["Rank 11"]);
+ AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\Ability_Mount_RidingHorse");
+ AtlasLootMenuItem_21.lootpage="PvPMountsPvP";
+ AtlasLootMenuItem_21:Show();
+ --PvP Armor Sets
+ AtlasLootMenuItem_6_Name:SetText(AL["PvP Armor Sets"]);
+ AtlasLootMenuItem_6_Extra:SetText(ORANGE..AL["Rank 7-13"]);
+ AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\INV_Helmet_05");
+ AtlasLootMenuItem_6.lootpage="PVPSET";
AtlasLootMenuItem_6:Show();
- --PvP
- AtlasLootMenuItem_8_Name:SetText(AL["PvP Armor Sets"]);
- AtlasLootMenuItem_8_Extra:SetText("|cffFF8400"..AL["Level 60"]);
- AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Helmet_05");
- AtlasLootMenuItem_8.lootpage="PVPSET";
- AtlasLootMenuItem_8:Show();
--PvP Accessories
- AtlasLootMenuItem_9_Name:SetText(AL["PvP Accessories"]);
- AtlasLootMenuItem_9_Extra:SetText("|cffFF8400"..AL["Level 60"]);
- AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Talisman_09");
- AtlasLootMenuItem_9.lootpage="PvP60Accessories1";
- AtlasLootMenuItem_9:Show();
+ AtlasLootMenuItem_7_Name:SetText(AL["PvP Accessories"]);
+ AtlasLootMenuItem_7_Extra:SetText(ORANGE..AL["Rank 2-9"]);
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Talisman_09");
+ AtlasLootMenuItem_7.lootpage="PvP60Accessories1";
+ AtlasLootMenuItem_7:Show();
-- Warsong Gulch Rewards
AtlasLootMenuItem_17_Name:SetText(AL["Warsong Gulch"]);
AtlasLootMenuItem_17_Extra:SetText("");
@@ -58,11 +58,11 @@ function AtlasLootPvPMenu()
AtlasLootMenuItem_18.lootpage="BRRepMenu";
AtlasLootMenuItem_18:Show();
--Weapons
- AtlasLootMenuItem_23_Name:SetText(AL["Rank 14 Weapons"]);
- AtlasLootMenuItem_23_Extra:SetText("|cffFF8400"..AL["Level 60"]);
- AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Sword_11");
- AtlasLootMenuItem_23.lootpage="PVPWeapons1";
- AtlasLootMenuItem_23:Show();
+ AtlasLootMenuItem_22_Name:SetText(AL["PvP Weapons"]);
+ AtlasLootMenuItem_22_Extra:SetText(ORANGE..AL["Rank 14"]);
+ AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Sword_11");
+ AtlasLootMenuItem_22.lootpage="PVPWeapons1";
+ AtlasLootMenuItem_22:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -183,65 +183,65 @@ function AtlasLootWSGRepMenu()
AtlasLootMenuItem_12.lootpage="WSGRepHonored5059";
AtlasLootMenuItem_12:Show();
--Exalted Header
- AtlasLootMenuItem_17_Name:SetText(RED..AL["Exalted"]);
+ AtlasLootMenuItem_24_Name:SetText(RED..AL["Exalted"]);
+ AtlasLootMenuItem_24_Extra:SetText("");
+ AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
+ AtlasLootMenuItem_24.isheader = true;
+ AtlasLootMenuItem_24:Show();
+ --Exalted 40-49
+ AtlasLootMenuItem_25_Name:SetText("40-49");
+ AtlasLootMenuItem_25_Extra:SetText("");
+ AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
+ AtlasLootMenuItem_25.lootpage="WSGRepExalted4049";
+ AtlasLootMenuItem_25:Show();
+ --Exalted 50-59
+ AtlasLootMenuItem_26_Name:SetText("50-59");
+ AtlasLootMenuItem_26_Extra:SetText("");
+ AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
+ AtlasLootMenuItem_26.lootpage="WSGRepExalted5059";
+ AtlasLootMenuItem_26:Show();
+ --Exalted 60-60
+ AtlasLootMenuItem_27_Name:SetText("60");
+ AtlasLootMenuItem_27_Extra:SetText("");
+ AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
+ AtlasLootMenuItem_27.lootpage="WSGRepExalted60";
+ AtlasLootMenuItem_27:Show();
+ --Revered Header
+ AtlasLootMenuItem_17_Name:SetText(RED..AL["Revered"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_17.isheader = true;
AtlasLootMenuItem_17:Show();
- --Exalted 40-49
- AtlasLootMenuItem_18_Name:SetText("40-49");
+ --Revered 10-19
+ AtlasLootMenuItem_18_Name:SetText("10-19");
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_18.lootpage="WSGRepExalted4049";
+ AtlasLootMenuItem_18.lootpage="WSGRepRevered1019";
AtlasLootMenuItem_18:Show();
- --Exalted 50-59
- AtlasLootMenuItem_19_Name:SetText("50-59");
+ --Revered 20-29
+ AtlasLootMenuItem_19_Name:SetText("20-29");
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_19.lootpage="WSGRepExalted5059";
+ AtlasLootMenuItem_19.lootpage="WSGRepRevered2029";
AtlasLootMenuItem_19:Show();
- --Exalted 60-60
- AtlasLootMenuItem_20_Name:SetText("60");
+ --Revered 30-39
+ AtlasLootMenuItem_20_Name:SetText("30-39");
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_20.lootpage="WSGRepExalted60";
+ AtlasLootMenuItem_20.lootpage="WSGRepRevered3039";
AtlasLootMenuItem_20:Show();
- --Revered Header
- AtlasLootMenuItem_22_Name:SetText(RED..AL["Revered"]);
+ --Revered 40-49
+ AtlasLootMenuItem_21_Name:SetText("40-49");
+ AtlasLootMenuItem_21_Extra:SetText("");
+ AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
+ AtlasLootMenuItem_21.lootpage="WSGRepRevered4049";
+ AtlasLootMenuItem_21:Show();
+ --Revered 50-59
+ AtlasLootMenuItem_22_Name:SetText("50-59");
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_22.isheader = true;
+ AtlasLootMenuItem_22.lootpage="WSGRepRevered5059";
AtlasLootMenuItem_22:Show();
- --Revered 10-19
- AtlasLootMenuItem_23_Name:SetText("10-19");
- AtlasLootMenuItem_23_Extra:SetText("");
- AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_23.lootpage="WSGRepRevered1019";
- AtlasLootMenuItem_23:Show();
- --Revered 20-29
- AtlasLootMenuItem_24_Name:SetText("20-29");
- AtlasLootMenuItem_24_Extra:SetText("");
- AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_24.lootpage="WSGRepRevered2029";
- AtlasLootMenuItem_24:Show();
- --Revered 30-39
- AtlasLootMenuItem_25_Name:SetText("30-39");
- AtlasLootMenuItem_25_Extra:SetText("");
- AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_25.lootpage="WSGRepRevered3039";
- AtlasLootMenuItem_25:Show();
- --Revered 40-49
- AtlasLootMenuItem_26_Name:SetText("40-49");
- AtlasLootMenuItem_26_Extra:SetText("");
- AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_26.lootpage="WSGRepRevered4049";
- AtlasLootMenuItem_26:Show();
- --Revered 50-59
- AtlasLootMenuItem_27_Name:SetText("50-59");
- AtlasLootMenuItem_27_Extra:SetText("");
- AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
- AtlasLootMenuItem_27.lootpage="WSGRepRevered5059";
- AtlasLootMenuItem_27:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -305,47 +305,47 @@ function AtlasLootABRepMenu()
AtlasLootMenuItem_9.lootpage="ABRepHonored5059";
AtlasLootMenuItem_9:Show();
--Exalted Header
- AtlasLootMenuItem_17_Name:SetText(RED..AL["Exalted"]);
+ AtlasLootMenuItem_23_Name:SetText(RED..AL["Exalted"]);
+ AtlasLootMenuItem_23_Extra:SetText("");
+ AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
+ AtlasLootMenuItem_23.isheader = true;
+ AtlasLootMenuItem_23:Show();
+ --Exalted
+ AtlasLootMenuItem_24_Name:SetText("60");
+ AtlasLootMenuItem_24_Extra:SetText("");
+ AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
+ AtlasLootMenuItem_24.lootpage="ABRepExalted";
+ AtlasLootMenuItem_24:Show();
+ --Revered Header
+ AtlasLootMenuItem_17_Name:SetText(RED..AL["Revered"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_17.isheader = true;
AtlasLootMenuItem_17:Show();
- --Exalted
- AtlasLootMenuItem_18_Name:SetText("60");
+ --Revered 20-29
+ AtlasLootMenuItem_18_Name:SetText("20-29");
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
- AtlasLootMenuItem_18.lootpage="ABRepExalted";
+ AtlasLootMenuItem_18.lootpage="ABRepRevered2029";
AtlasLootMenuItem_18:Show();
- --Revered Header
- AtlasLootMenuItem_20_Name:SetText(RED..AL["Revered"]);
+ --Revered 30-39
+ AtlasLootMenuItem_19_Name:SetText("30-39");
+ AtlasLootMenuItem_19_Extra:SetText("");
+ AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
+ AtlasLootMenuItem_19.lootpage="ABRepRevered3039";
+ AtlasLootMenuItem_19:Show();
+ --Revered 40-49
+ AtlasLootMenuItem_20_Name:SetText("40-49");
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
- AtlasLootMenuItem_20.isheader = true;
+ AtlasLootMenuItem_20.lootpage="ABRepRevered4049";
AtlasLootMenuItem_20:Show();
- --Revered 20-29
- AtlasLootMenuItem_21_Name:SetText("20-29");
+ --Revered 50-59
+ AtlasLootMenuItem_21_Name:SetText("50-59");
AtlasLootMenuItem_21_Extra:SetText("");
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
- AtlasLootMenuItem_21.lootpage="ABRepRevered2029";
- AtlasLootMenuItem_21:Show();
- --Revered 30-39
- AtlasLootMenuItem_22_Name:SetText("30-39");
- AtlasLootMenuItem_22_Extra:SetText("");
- AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
- AtlasLootMenuItem_22.lootpage="ABRepRevered3039";
- AtlasLootMenuItem_22:Show();
- --Revered 40-49
- AtlasLootMenuItem_23_Name:SetText("40-49");
- AtlasLootMenuItem_23_Extra:SetText("");
- AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
- AtlasLootMenuItem_23.lootpage="ABRepRevered4049";
- AtlasLootMenuItem_23:Show();
- --Revered 50-59
- AtlasLootMenuItem_24_Name:SetText("50-59");
- AtlasLootMenuItem_24_Extra:SetText("");
- AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
- AtlasLootMenuItem_24.lootpage="ABRepRevered5059";
- AtlasLootMenuItem_24:Show();
+ AtlasLootMenuItem_21.lootpage="ABRepRevered5059";
+ AtlasLootMenuItem_21:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
diff --git a/Core/Sets.lua b/Core/Sets.lua
index cd4d71b..5532dbd 100644
--- a/Core/Sets.lua
+++ b/Core/Sets.lua
@@ -17,19 +17,19 @@ function AtlasLootSetMenu()
--ZG
AtlasLootMenuItem_3_Name:SetText(AL["Zul'Gurub Sets"]);
AtlasLootMenuItem_3_Extra:SetText("");
- AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_19");
+ AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Sword_55");
AtlasLootMenuItem_3.lootpage="ZGSET";
AtlasLootMenuItem_3:Show();
--AQ20
AtlasLootMenuItem_4_Name:SetText(AL["Ruins of Ahn'Qiraj Sets"]);
AtlasLootMenuItem_4_Extra:SetText("");
- AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Ring_AhnQiraj_03");
+ AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Axe_15");
AtlasLootMenuItem_4.lootpage="AQ20SET";
AtlasLootMenuItem_4:Show();
--AQ40
AtlasLootMenuItem_5_Name:SetText(AL["Temple of Ahn'Qiraj Sets"]);
AtlasLootMenuItem_5_Extra:SetText("");
- AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Sword_59");
+ AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_35");
AtlasLootMenuItem_5.lootpage="AQ40SET";
AtlasLootMenuItem_5:Show();
--Legendaries
@@ -39,11 +39,13 @@ function AtlasLootSetMenu()
AtlasLootMenuItem_7.lootpage="Legendaries";
AtlasLootMenuItem_7:Show();
--Artifacts
+ --[[
AtlasLootMenuItem_8_Name:SetText(AL["Artifact Items"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Sword_07");
AtlasLootMenuItem_8.lootpage="Artifacts";
AtlasLootMenuItem_8:Show();
+ ]]
--Rare Pets
AtlasLootMenuItem_9_Name:SetText(AL["Rare Pets"]);
AtlasLootMenuItem_9_Extra:SetText("");
@@ -56,26 +58,14 @@ function AtlasLootSetMenu()
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Misc_QirajiCrystal_05");
AtlasLootMenuItem_10.lootpage="RareMounts";
AtlasLootMenuItem_10:Show();
- --Old Mounts
- AtlasLootMenuItem_11_Name:SetText(AL["Old Mounts"]);
- AtlasLootMenuItem_11_Extra:SetText("");
- AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Ability_Mount_RidingHorse");
- AtlasLootMenuItem_11.lootpage="OldMounts";
- AtlasLootMenuItem_11:Show();
- --Unobtainable Mounts
- AtlasLootMenuItem_12_Name:SetText(AL["Unobtainable Mounts"]);
- AtlasLootMenuItem_12_Extra:SetText("");
- AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Ability_Mount_Whitetiger");
- AtlasLootMenuItem_12.lootpage="UnobMounts";
- AtlasLootMenuItem_12:Show();
- --Tabards
- AtlasLootMenuItem_13_Name:SetText(AL["Tabards"]);
- AtlasLootMenuItem_13_Extra:SetText("");
- AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Shirt_GuildTabard_01");
- AtlasLootMenuItem_13.lootpage="Tabards";
- AtlasLootMenuItem_13:Show();
- --World Epics
- AtlasLootMenuItem_2_Name:SetText(AL["Pre 60 Sets"]);
+ -- Fashion
+ AtlasLootMenuItem_24_Name:SetText(AL["Fashion"]);
+ AtlasLootMenuItem_24_Extra:SetText("");
+ AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\Ability_Hunter_Pet_Turtle");
+ AtlasLootMenuItem_24.lootpage="DonationRewards2";
+ AtlasLootMenuItem_24:Show();
+ --Sets
+ AtlasLootMenuItem_2_Name:SetText(AL["Sets"]);
AtlasLootMenuItem_2_Extra:SetText("");
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Sword_43");
AtlasLootMenuItem_2.lootpage="PRE60SET";
@@ -83,31 +73,50 @@ function AtlasLootSetMenu()
--World Epics
AtlasLootMenuItem_22_Name:SetText(AL["World Epics"]);
AtlasLootMenuItem_22_Extra:SetText("");
- AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Box_04");
+ AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Gauntlets_30");
AtlasLootMenuItem_22.lootpage="WORLDEPICS";
AtlasLootMenuItem_22:Show();
+ --Old Mounts
+ --[[
+ AtlasLootMenuItem_23_Name:SetText(AL["Old Mounts"]);
+ AtlasLootMenuItem_23_Extra:SetText("");
+ AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\Ability_Mount_RidingHorse");
+ AtlasLootMenuItem_23.lootpage="OldMounts";
+ AtlasLootMenuItem_23:Show();
+ --Unobtainable Mounts
+ AtlasLootMenuItem_24_Name:SetText(AL["Unobtainable Mounts"]);
+ AtlasLootMenuItem_24_Extra:SetText("");
+ AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\Ability_Mount_Whitetiger");
+ AtlasLootMenuItem_24.lootpage="UnobMounts";
+ AtlasLootMenuItem_24:Show();]]
+ --Tabards
+ AtlasLootMenuItem_25_Name:SetText(AL["Tabards"]);
+ AtlasLootMenuItem_25_Extra:SetText("");
+ AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Shirt_GuildTabard_01");
+ AtlasLootMenuItem_25.lootpage="Tabards";
+ AtlasLootMenuItem_25:Show();
--Dungeon Set 1/2
AtlasLootMenuItem_17_Name:SetText(AL["Dungeon 1/2 Sets"]);
AtlasLootMenuItem_17_Extra:SetText("");
- AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_03");
+ AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Helmet_24");
AtlasLootMenuItem_17.lootpage="T0SET";
AtlasLootMenuItem_17:Show();
--Tier 1
AtlasLootMenuItem_18_Name:SetText(AL["Tier 1 Sets"]);
AtlasLootMenuItem_18_Extra:SetText("");
- AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Pants_Mail_03");
+ AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Helmet_09");
AtlasLootMenuItem_18.lootpage="T1SET";
AtlasLootMenuItem_18:Show();
--Tier 2
AtlasLootMenuItem_19_Name:SetText(AL["Tier 2 Sets"]);
AtlasLootMenuItem_19_Extra:SetText("");
- AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_32");
+ AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Helmet_74");
AtlasLootMenuItem_19.lootpage="T2SET";
AtlasLootMenuItem_19:Show();
--Tier 3
AtlasLootMenuItem_20_Name:SetText(AL["Tier 3 Sets"]);
AtlasLootMenuItem_20_Extra:SetText("");
- AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate02");
+ AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Helmet_58");
AtlasLootMenuItem_20.lootpage="T3SET";
AtlasLootMenuItem_20:Show();
for i = 1, 30, 1 do
@@ -246,24 +255,6 @@ function AtlasLootPRE60SetMenu()
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Sword_43");
AtlasLootMenuItem_18.lootpage="DalRend";
AtlasLootMenuItem_18:Show();
- --Zul'Gurub Rings
- AtlasLootMenuItem_19_Name:SetText(AL["Zul'Gurub Rings"]);
- AtlasLootMenuItem_19_Extra:SetText(ORANGE..AL["Zul'Gurub"]);
- AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Bijou_Orange");
- AtlasLootMenuItem_19.lootpage="ZGRings";
- AtlasLootMenuItem_19:Show();
- --Primal Blessing
- AtlasLootMenuItem_20_Name:SetText(AL["Primal Blessing"]);
- AtlasLootMenuItem_20_Extra:SetText(ORANGE..AL["Zul'Gurub"]);
- AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Weapon_Hand_01");
- AtlasLootMenuItem_20.lootpage="PrimalBlessing";
- AtlasLootMenuItem_20:Show();
- --The Twin Blades of Hakkari
- AtlasLootMenuItem_21_Name:SetText(AL["The Twin Blades of Hakkari"]);
- AtlasLootMenuItem_21_Extra:SetText(ORANGE..AL["Zul'Gurub"]);
- AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Sword_55");
- AtlasLootMenuItem_21.lootpage="HakkariBlades";
- AtlasLootMenuItem_21:Show();
--Shard of the Gods
AtlasLootMenuItem_22_Name:SetText(AL["Shard of the Gods"]);
AtlasLootMenuItem_22_Extra:SetText(ORANGE..AL["Various Locations"]);
@@ -276,10 +267,11 @@ function AtlasLootPRE60SetMenu()
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Misc_MonsterClaw_04");
AtlasLootMenuItem_23.lootpage="SpiritofEskhandar";
AtlasLootMenuItem_23:Show();
+
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
- AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Pre 60 Sets"]);
+ AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Sets"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
@@ -350,6 +342,26 @@ function AtlasLootZGSetMenu()
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Shield_05");
AtlasLootMenuItem_21.lootpage="ZGWarrior";
AtlasLootMenuItem_21:Show();
+ --Zul'Gurub Rings
+ AtlasLootMenuItem_23_Name:SetText(AL["Zul'Gurub Rings"]);
+ AtlasLootMenuItem_23_Extra:SetText("");
+ AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Bijou_Orange");
+ AtlasLootMenuItem_23.lootpage="ZGRings";
+ AtlasLootMenuItem_23:Show();
+ --Primal Blessing
+ AtlasLootMenuItem_24_Name:SetText(AL["Primal Blessing"]);
+ AtlasLootMenuItem_24_Extra:SetText("");
+ AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Weapon_Hand_01");
+ AtlasLootMenuItem_24.lootpage="PrimalBlessing";
+ AtlasLootMenuItem_24:Show();
+ --The Twin Blades of Hakkari
+ AtlasLootMenuItem_25_Name:SetText(AL["The Twin Blades of Hakkari"]);
+ AtlasLootMenuItem_25_Extra:SetText("");
+ AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Sword_55");
+ AtlasLootMenuItem_25.lootpage="HakkariBlades";
+ AtlasLootMenuItem_25:Show();
+
+
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
diff --git a/Core/Spells.lua b/Core/Spells.lua
index 58dd6df..e2bc1a1 100644
--- a/Core/Spells.lua
+++ b/Core/Spells.lua
@@ -12563,7 +12563,7 @@ GetSpellInfoVanillaDB = {
["tools"] = {5956},
["castTime"] = 12.5,
["text"] = "",
- ["craftItem"] = 2849,
+ ["craftItem"] = 2850,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
@@ -12807,7 +12807,7 @@ GetSpellInfoVanillaDB = {
["tools"] = {5956},
["castTime"] = 25,
["text"] = "",
- ["craftItem"] = 3484,
+ ["craftItem"] = 3492,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
diff --git a/Core/WorldBoss.lua b/Core/WorldBoss.lua
new file mode 100644
index 0000000..77372d7
--- /dev/null
+++ b/Core/WorldBoss.lua
@@ -0,0 +1,87 @@
+local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
+local WHITE = "|cffFFFFFF";
+function AtlasLoot_WorldBossMenu()
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootItem_"..i):Hide();
+ end
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootMenuItem_"..i):Hide();
+ getglobal("AtlasLootMenuItem_"..i).isheader = false;
+ end
+ getglobal("AtlasLootItemsFrame_BACK"):Hide();
+ getglobal("AtlasLootItemsFrame_NEXT"):Hide();
+ getglobal("AtlasLootItemsFrame_PREV"):Hide();
+ getglobal("AtlasLootServerQueryButton"):Hide();
+ --Azuregos
+ AtlasLootMenuItem_1_Name:SetText(AL["Azuregos"]);
+ AtlasLootMenuItem_1_Extra:SetText(WHITE..AL["Azshara"]);
+ AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Blue");
+ AtlasLootMenuItem_1.lootpage="AAzuregos";
+ AtlasLootMenuItem_1:Show();
+ --Emeriss
+ AtlasLootMenuItem_2_Name:SetText(AL["Emeriss"]);
+ AtlasLootMenuItem_2_Extra:SetText(WHITE..AL["Various Locations"]);
+ AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Green");
+ AtlasLootMenuItem_2.lootpage="DEmeriss";
+ AtlasLootMenuItem_2:Show();
+ --Lethon
+ AtlasLootMenuItem_3_Name:SetText(AL["Lethon"]);
+ AtlasLootMenuItem_3_Extra:SetText(WHITE..AL["Various Locations"]);
+ AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Green");
+ AtlasLootMenuItem_3.lootpage="DLethon";
+ AtlasLootMenuItem_3:Show();
+ --Taerar
+ AtlasLootMenuItem_4_Name:SetText(AL["Taerar"]);
+ AtlasLootMenuItem_4_Extra:SetText(WHITE..AL["Various Locations"]);
+ AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Green");
+ AtlasLootMenuItem_4.lootpage="DTaerar";
+ AtlasLootMenuItem_4:Show();
+ --Ysondre
+ AtlasLootMenuItem_5_Name:SetText(AL["Ysondre"]);
+ AtlasLootMenuItem_5_Extra:SetText(WHITE..AL["Various Locations"]);
+ AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Green");
+ AtlasLootMenuItem_5.lootpage="DYsondre";
+ AtlasLootMenuItem_5:Show();
+ --Lord Kazzak
+ AtlasLootMenuItem_7_Name:SetText(AL["Lord Kazzak"]);
+ AtlasLootMenuItem_7_Extra:SetText(WHITE..AL["Blasted Lands"]);
+ AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\warlock_summon_doomguard");
+ AtlasLootMenuItem_7.lootpage="KKazzak";
+ AtlasLootMenuItem_7:Show();
+ --Nerubian Overseer
+ AtlasLootMenuItem_8_Name:SetText(AL["Nerubian Overseer"]);
+ AtlasLootMenuItem_8_Extra:SetText(WHITE..AL["Eastern Plaguelands"]);
+ AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Spell_Nature_Web");
+ AtlasLootMenuItem_8.lootpage="Nerubian";
+ AtlasLootMenuItem_8:Show();
+ --Dark Reaver
+ AtlasLootMenuItem_9_Name:SetText(AL["Dark Reaver of Karazhan"]);
+ AtlasLootMenuItem_9_Extra:SetText(WHITE..AL["Deadwind Pass"]);
+ AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Ability_Mount_Dreadsteed");
+ AtlasLootMenuItem_9.lootpage="Reaver";
+ AtlasLootMenuItem_9:Show();
+ --Ostarius
+ AtlasLootMenuItem_10_Name:SetText(AL["Ostarius"]);
+ AtlasLootMenuItem_10_Extra:SetText(WHITE..AL["Tanaris"]);
+ AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Misc_Platnumdisks");
+ AtlasLootMenuItem_10.lootpage="Ostarius";
+ AtlasLootMenuItem_10:Show();
+ --Concavius
+ AtlasLootMenuItem_11_Name:SetText(AL["Concavius"]);
+ AtlasLootMenuItem_11_Extra:SetText(WHITE..AL["Desolace"]);
+ AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Spell_Shadow_SummonVoidWalker");
+ AtlasLootMenuItem_11.lootpage="Concavius";
+ AtlasLootMenuItem_11:Show();
+ --Cow level
+ AtlasLootMenuItem_13_Name:SetText(AL["There Is No Cow Level"]);
+ AtlasLootMenuItem_13_Extra:SetText(WHITE..AL["Moomoo Grove"]);
+ AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Spell_Nature_Polymorph_Cow");
+ AtlasLootMenuItem_13.lootpage="CowKing";
+ AtlasLootMenuItem_13:Show();
+
+ for i = 1, 30, 1 do
+ getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
+ end
+ AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["World Bosses"]);
+ AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
+end
\ No newline at end of file
diff --git a/Core/WorldEvents.lua b/Core/WorldEvents.lua
index 63f7ebf..bc1cf3c 100644
--- a/Core/WorldEvents.lua
+++ b/Core/WorldEvents.lua
@@ -17,13 +17,13 @@ function AtlasLootWorldEventMenu()
--Abyssal Council
AtlasLootMenuItem_2_Name:SetText(AL["Abyssal Council"]);
AtlasLootMenuItem_2_Extra:SetText(ORANGE..AL["Silithus"]);
- AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Spell_Nature_TimeStop");
- AtlasLootMenuItem_2.lootpage="AbyssalCouncil";
+ AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+ AtlasLootMenuItem_2.lootpage="AbyssalTemplars";
AtlasLootMenuItem_2:Show();
--Elemental Invasion
AtlasLootMenuItem_3_Name:SetText(AL["Elemental Invasion"]);
AtlasLootMenuItem_3_Extra:SetText(ORANGE..AL["Various Locations"]);
- AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Ammo_FireTar");
+ AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Spell_Fire_Elemental_Totem");
AtlasLootMenuItem_3.lootpage="ElementalInvasion";
AtlasLootMenuItem_3:Show();
--Children's Week
@@ -65,7 +65,7 @@ function AtlasLootWorldEventMenu()
--Midsummer Fire Festival
AtlasLootMenuItem_21_Name:SetText(AL["Midsummer Fire Festival"]);
AtlasLootMenuItem_21_Extra:SetText(ORANGE..AL["Various Locations"]);
- AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_SummerFest_FireFlower");
+ AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_SummerFest_Symbol_Medium");
AtlasLootMenuItem_21.lootpage="MidsummerFestival";
AtlasLootMenuItem_21:Show();
--Noblegarden
@@ -77,7 +77,7 @@ function AtlasLootWorldEventMenu()
--Gurubashi Arena Booty Run
AtlasLootMenuItem_4_Name:SetText(AL["Gurubashi Arena Booty Run"]);
AtlasLootMenuItem_4_Extra:SetText(ORANGE..AL["Stranglethorn Vale"]);
- AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Box_02");
+ AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_04");
AtlasLootMenuItem_4.lootpage="GurubashiArena";
AtlasLootMenuItem_4:Show();
--Scourge Invasion
diff --git a/Crafting/crafting.en.lua b/Crafting/crafting.en.lua
index 55ae496..d84ba99 100644
--- a/Crafting/crafting.en.lua
+++ b/Crafting/crafting.en.lua
@@ -6,7 +6,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
CraftedWeapons1 = {
{ 0, "", "", "" },
- { 0, "INV_Box_01", "=q6=#p2#", "" },
+ { 0, "Trade_BlackSmithing", "=q6=#p2#", "" },
{ 0, "", "", "" },
{ 22384, "INV_Hammer_08", "=q4=Persuader", "=ds=#h3#, #w6#" },
{ 22383, "INV_Sword_51", "=q4=Sageblade", "=ds=#h3#, #w10#" },
@@ -21,7 +21,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 0, "INV_Box_01", "=q6=#p5#", "" },
+ { 0, "Trade_Engineering", "=q6=#p5#", "" },
{ 0, "", "", "" },
{ 18282, "INV_Weapon_Rifle_05", "=q4=Core Marksman Rifle", "=ds=#w5#" },
{ 18168, "Spell_Arcane_PortalDarnassus", "=q4=Force Reactive Disk", "=ds=#w8#" },
@@ -394,6 +394,159 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s45989", "inv_potion_22", "=q1=Elixir of Greater Nature Power", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
{ "s57111", "inv_potion_08", "=q1=Potion of Quickness", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
};
+ AlchemyFlasks1 = {
+ { "s17638", "inv_potion_48", "=q1=Flask of Chromatic Resistance", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ { "s17634", "inv_potion_26", "=q1=Flask of Petrification", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ { "s17636", "inv_potion_97", "=q1=Flask of Distilled Wisdom", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ { "s17637", "inv_potion_41", "=q1=Flask of Supreme Power", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ { "s17635", "inv_potion_62", "=q1=Flask of the Titans", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+
+ };
+ AlchemyProtectionPots1 = {
+ { "s7255", "inv_potion_09", "=q1=Holy Protection Potion", "=ds=#sr# =so1=100 =so2=130 =so3=150 =so4=170" },
+ { "s7256", "inv_potion_44", "=q1=Shadow Protection Potion", "=ds=#sr# =so1=135 =so2=160 =so3=180 =so4=200" },
+ { "s7257", "inv_potion_16", "=q1=Fire Protection Potion", "=ds=#sr# =so1=165 =so2=210 =so3=230 =so4=250" },
+ { "s7258", "inv_potion_13", "=q1=Frost Protection Potion", "=ds=#sr# =so1=190 =so2=205 =so3=225 =so4=245" },
+ { "s7259", "inv_potion_06", "=q1=Nature Protection Potion", "=ds=#sr# =so1=190 =so2=210 =so3=230 =so4=250" },
+ { "", "", "", ""},
+ { "s17577", "inv_potion_83", "=q1=Greater Arcane Protection Potion", "=ds=#sr# =so1=290 =so2=305 =so3=325 =so4=345" },
+ { "s17574", "inv_potion_24", "=q1=Greater Fire Protection Potion", "=ds=#sr# =so1=290 =so2=305 =so3=325 =so4=345" },
+ { "s17575", "inv_potion_20", "=q1=Greater Frost Protection Potion", "=ds=#sr# =so1=290 =so2=305 =so3=325 =so4=345" },
+ { "s17576", "inv_potion_22", "=q1=Greater Nature Protection Potion", "=ds=#sr# =so1=290 =so2=305 =so3=325 =so4=345" },
+ { "s17578", "inv_potion_23", "=q1=Greater Shadow Protection Potion", "=ds=#sr# =so1=290 =so2=305 =so3=325 =so4=345" },
+ };
+ AlchemyHealingAndMana1 = {
+ { "s2330", "inv_potion_49", "=q1=Minor Healing Potion", "=ds=#sr# =so1=1 =so2=55 =so3=75 =so4=95" },
+ { "s4508", "inv_potion_35", "=q1=Discolored Healing Potion", "=ds=#sr# =so1=50 =so2=80 =so3=100 =so4=120" },
+ { "s2337", "inv_potion_50", "=q1=Lesser Healing Potion", "=ds=#sr# =so1=55 =so2=85 =so3=105 =so4=125" },
+ { "s3447", "inv_potion_51", "=q1=Healing Potion", "=ds=#sr# =so1=110 =so2=135 =so3=155 =so4=175" },
+ { "s7181", "inv_potion_52", "=q1=Greater Healing Potion", "=ds=#sr# =so1=155 =so2=175 =so3=195 =so4=215" },
+ { "s11457", "inv_potion_53", "=q1=Superior Healing Potion", "=ds=#sr# =so1=215 =so2=230 =so3=250 =so4=270" },
+ { "s17556", "inv_potion_54", "=q1=Major Healing Potion", "=ds=#sr# =so1=275 =so2=290 =so3=310 =so4=330" },
+ { "", "", "", ""},
+ { "s2331", "inv_potion_70", "=q1=Minor Mana Potion", "=ds=#sr# =so1=25 =so2=65 =so3=85 =so4=105" },
+ { "s3173", "inv_potion_71", "=q1=Lesser Mana Potion", "=ds=#sr# =so1=120 =so2=145 =so3=165 =so4=185" },
+ { "s3452", "inv_potion_72", "=q1=Mana Potion", "=ds=#sr# =so1=160 =so2=180 =so3=200 =so4=220" },
+ { "s11448", "inv_potion_73", "=q1=Greater Mana Potion", "=ds=#sr# =so1=205 =so2=220 =so3=240 =so4=260" },
+ { "s17553", "inv_potion_74", "=q1=Superior Mana Potion", "=ds=#sr# =so1=260 =so2=275 =so3=295 =so4=315" },
+ { "s17580", "inv_potion_76", "=q1=Major Mana Potion", "=ds=#sr# =so1=295 =so2=310 =so3=330 =so4=350" },
+ { "", "", "", ""},
+ { "s2332", "inv_potion_02", "=q1=Minor Rejuvenation Potion", "=ds=#sr# =so1=40 =so2=70 =so3=90 =so4=110" },
+ { "s11458", "inv_potion_34", "=q1=Wildvine Potion", "=ds=#sr# =so1=225 =so2=240 =so3=260 =so4=280" },
+ { "s15833", "inv_potion_83", "=q1=Dreamless Sleep Potion", "=ds=#sr# =so1=230 =so2=245 =so3=265 =so4=285" },
+ { "s24366", "inv_potion_83", "=q1=Greater Dreamless Sleep Potion", "=ds=#sr# =so1=275 =so2=290 =so3=310 =so4=330" },
+ { "s22732", "inv_potion_47", "=q1=Major Rejuvenation Potion", "=ds=#sr# =so1=300 =so2=310 =so3=320 =so4=330" },
+ { "", "", "", ""},
+ { "s24365", "inv_potion_45", "=q1=Mageblood Potion", "=ds=#sr# =so1=275 =so2=290 =so3=310 =so4=330" },
+ };
+ AlchemyTransmutes1 = {
+ { "s11479", "inv_ingot_03", "=q2=Transmute: Iron to Gold", "=ds=#sr# =so1=225 =so2=240 =so3=260 =so4=280" },
+ { "s11480", "inv_ingot_08", "=q2=Transmute: Mithril to Truesilver", "=ds=#sr# =so1=225 =so2=240 =so3=260 =so4=280" },
+ { "s17559", "spell_fire_volcano", "=q2=Transmute: Air to Fire", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s17566", "spell_nature_abolishmagic", "=q2=Transmute: Earth to Life", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s17561", "spell_nature_acid_01", "=q2=Transmute: Earth to Water", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s17560", "spell_nature_strengthofearthtotem02", "=q2=Transmute: Fire to Earth", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s17565", "spell_nature_strengthofearthtotem02", "=q2=Transmute: Life to Earth", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s17563", "spell_nature_acid_01", "=q2=Transmute: Undeath to Water", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s17562", "spell_nature_earthbind", "=q2=Transmute: Water to Air", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s17564", "spell_shadow_shadetruesight", "=q2=Transmute: Water to Undeath", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s17187", "inv_misc_stonetablet_05", "=q2=Transmute: Arcanite", "=ds=#sr# =so1=275 =so2=275 =so3=282 =so4=290" },
+ { "s25146", "spell_fire_fire", "=q1=Transmute: Elemental Fire", "=ds=#sr# =so1=300 =so2=301 =so3=305 =so4=310" },
+ };
+ AlchemyDefensive1 = {
+ { "s7183", "inv_potion_63", "=q1=Elixir of Minor Defense", "=ds=#sr# =so1=1 =so2=55 =so3=75 =so4=95" },
+ { "s3177", "inv_potion_64", "=q1=Elixir of Defense", "=ds=#sr# =so1=130 =so2=155 =so3=175 =so4=195" },
+ { "s11450", "inv_potion_65", "=q1=Elixir of Greater Defense", "=ds=#sr# =so1=195 =so2=215 =so3=235 =so4=255" },
+ { "s17554", "inv_potion_66", "=q1=Elixir of Superior Defense", "=ds=#sr# =so1=265 =so2=280 =so3=300 =so4=320" },
+ { "", "", "", ""},
+ { "s3170", "inv_potion_77", "=q1=Weak Troll's Blood Potion", "=ds=#sr# =so1=15 =so2=60 =so3=80 =so4=100" },
+ { "s3176", "inv_potion_78", "=q1=Strong Troll's Blood Potion", "=ds=#sr# =so1=125 =so2=150 =so3=170 =so4=190" },
+ { "s3451", "inv_potion_79", "=q1=Mighty Troll's Blood Potion", "=ds=#sr# =so1=180 =so2=200 =so3=220 =so4=240" },
+ { "s24368", "inv_potion_80", "=q1=Major Troll's Blood Potion", "=ds=#sr# =so1=290 =so2=305 =so3=325 =so4=345" },
+ { "", "", "", ""},
+ { "s2334", "inv_potion_42", "=q1=Elixir of Minor Fortitude", "=ds=#sr# =so1=50 =so2=80 =so3=100 =so4=120" },
+ { "s3450", "inv_potion_43", "=q1=Elixir of Fortitude", "=ds=#sr# =so1=175 =so2=195 =so3=215 =so4=235" },
+ { "", "", "", ""},
+ { "s3172", "inv_potion_08", "=q1=Minor Magic Resistance Potion", "=ds=#sr# =so1=110 =so2=135 =so3=155 =so4=175" },
+ { "s11453", "inv_potion_16", "=q1=Magic Resistance Potion", "=ds=#sr# =so1=210 =so2=225 =so3=245 =so4=265" },
+ { "s4942", "inv_potion_67", "=q1=Lesser Stoneshield Potion", "=ds=#sr# =so1=215 =so2=230 =so3=250 =so4=270" },
+ { "s17570", "inv_potion_69", "=q1=Greater Stoneshield Potion", "=ds=#sr# =so1=280 =so2=295 =so3=315 =so4=335" },
+ { "", "", "", ""},
+ { "s6624", "inv_potion_04", "=q1=Free Action Potion", "=ds=#sr# =so1=150 =so2=175 =so3=195 =so4=215" },
+ { "s57129", "inv_potion_36", "=q1=Lucidity Potion", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ { "s11452", "inv_potion_01", "=q1=Restorative Potion", "=ds=#sr# =so1=210 =so2=225 =so3=245 =so4=265" },
+ { "", "", "", ""},
+ { "s3174", "inv_potion_12", "=q1=Elixir of Poison Resistance", "=ds=#sr# =so1=120 =so2=145 =so3=165 =so4=185" },
+ { "s17572", "inv_potion_31", "=q1=Purification Potion", "=ds=#sr# =so1=285 =so2=300 =so3=320 =so4=340" },
+ { "", "", "", ""},
+ { "s3175", "inv_potion_62", "=q1=Limited Invulnerability Potion", "=ds=#sr# =so1=250 =so2=275 =so3=295 =so4=315" },
+ { "s24367", "inv_potion_07", "=q1=Living Action Potion", "=ds=#sr# =so1=285 =so2=300 =so3=320 =so4=340" },
+ { "", "", "", ""},
+ { "s11466", "inv_potion_28", "=q1=Gift of Arthas", "=ds=#sr# =so1=240 =so2=255 =so3=275 =so4=295" },
+ };
+ AlchemyOffensive1 = {
+ { "s2329", "inv_potion_56", "=q1=Elixir of Lion's Strength", "=ds=#sr# =so1=1 =so2=55 =so3=75 =so4=95" },
+ { "s3188", "inv_potion_57", "=q1=Elixir of Ogre's Strength", "=ds=#sr# =so1=150 =so2=175 =so3=195 =so4=215" },
+ { "s8240", "inv_potion_10", "=q1=Elixir of Giant Growth", "=ds=#sr# =so1=90 =so2=120 =so3=140 =so4=160" },
+ { "s11472", "inv_potion_61", "=q1=Elixir of Giants", "=ds=#sr# =so1=245 =so2=260 =so3=280 =so4=300" },
+ { "s17557", "inv_potion_40", "=q1=Elixir of Brute Force", "=ds=#sr# =so1=275 =so2=290 =so3=310 =so4=330" },
+ { "", "", "", ""},
+ { "s3230", "inv_potion_91", "=q1=Elixir of Minor Agility", "=ds=#sr# =so1=50 =so2=80 =so3=100 =so4=120" },
+ { "s2333", "inv_potion_92", "=q1=Elixir of Lesser Agility", "=ds=#sr# =so1=140 =so2=165 =so3=185 =so4=205" },
+ { "s11449", "inv_potion_93", "=q1=Elixir of Agility", "=ds=#sr# =so1=185 =so2=205 =so3=225 =so4=245" },
+ { "s11467", "inv_potion_94", "=q1=Elixir of Greater Agility", "=ds=#sr# =so1=240 =so2=255 =so3=275 =so4=295" },
+ { "s17571", "inv_potion_32", "=q1=Elixir of the Mongoose", "=ds=#sr# =so1=280 =so2=295 =so3=315 =so4=335" },
+ { "", "", "", ""},
+ { "s6617", "inv_potion_24", "=q1=Rage Potion", "=ds=#sr# =so1=60 =so2=90 =so3=110 =so4=130" },
+ { "s6618", "inv_potion_21", "=q1=Great Rage Potion", "=ds=#sr# =so1=175 =so2=195 =so3=215 =so4=235" },
+ { "s17552", "inv_potion_41", "=q1=Mighty Rage Potion", "=ds=#sr# =so1=255 =so2=270 =so3=290 =so4=310" },
+ { "s7845", "inv_potion_33", "=q1=Elixir of Firepower", "=ds=#sr# =so1=140 =so2=165 =so3=185 =so4=205" },
+ { "s21923", "inv_potion_03", "=q1=Elixir of Frost Power", "=ds=#sr# =so1=190 =so2=210 =so3=230 =so4=250" },
+ { "s11461", "inv_potion_30", "=q1=Arcane Elixir", "=ds=#sr# =so1=235 =so2=250 =so3=270 =so4=290" },
+ { "s26277", "inv_potion_60", "=q1=Elixir of Greater Firepower", "=ds=#sr# =so1=250 =so2=265 =so3=285 =so4=305" },
+ { "s11476", "inv_potion_46", "=q1=Elixir of Shadow Power", "=ds=#sr# =so1=250 =so2=265 =so3=285 =so4=305" },
+ { "s17573", "inv_potion_25", "=q1=Greater Arcane Elixir", "=ds=#sr# =so1=285 =so2=300 =so3=320 =so4=340" },
+ { "s45989", "inv_potion_22", "=q1=Elixir of Greater Nature Power", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ { "s57131", "INV_Potion_12", "=q1=Dreamshard Elixir", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ { "", "", "", ""},
+ { "s3171", "inv_potion_06", "=q1=Elixir of Wisdom", "=ds=#sr# =so1=90 =so2=120 =so3=140 =so4=160" },
+ { "s11465", "inv_potion_10", "=q1=Elixir of Greater Intellect", "=ds=#sr# =so1=235 =so2=250 =so3=270 =so4=290" },
+ { "s17555", "inv_potion_29", "=q1=Elixir of the Sages", "=ds=#sr# =so1=265 =so2=280 =so3=300 =so4=320" },
+ { "", "", "", ""},
+ { "s11477", "inv_potion_27", "=q1=Elixir of Demonslaying", "=ds=#sr# =so1=250 =so2=265 =so3=285 =so4=305" },
+ { "s57111", "inv_potion_08", "=q1=Potion of Quickness", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ };
+ AlchemyOther1 = {
+ { "s7836", "inv_drink_12", "=q1=Blackmouth Oil", "=ds=#sr# =so1=80 =so2=80 =so3=90 =so4=100" },
+ { "s7837", "inv_potion_38", "=q1=Fire Oil", "=ds=#sr# =so1=130 =so2=150 =so3=160 =so4=170" },
+ { "s17551", "inv_potion_68", "=q1=Stonescale Oil", "=ds=#sr# =so1=250 =so2=250 =so3=255 =so4=260" },
+ { "", "", "", ""},
+ { "s3449", "inv_potion_23", "=q1=Shadow Oil", "=ds=#sr# =so1=165 =so2=190 =so3=210 =so4=230" },
+ { "s3454", "inv_potion_20", "=q1=Frost Oil", "=ds=#sr# =so1=200 =so2=220 =so3=240 =so4=260" },
+ { "s11451", "inv_potion_11", "=q1=Oil of Immolation", "=ds=#sr# =so1=205 =so2=220 =so3=240 =so4=260" },
+ { "", "", "", ""},
+ { "s7179", "inv_potion_17", "=q1=Elixir of Water Breathing", "=ds=#sr# =so1=90 =so2=120 =so3=140 =so4=160" },
+ { "s22808", "inv_potion_05", "=q1=Elixir of Greater Water Breathing", "=ds=#sr# =so1=215 =so2=230 =so3=250 =so4=270"},
+ { "", "", "", ""},
+ { "s2335", "inv_potion_95", "=q1=Swiftness Potion", "=ds=#sr# =so1=60 =so2=90 =so3=110 =so4=130" },
+ { "s7841", "inv_potion_13", "=q1=Swim Speed Potion", "=ds=#sr# =so1=100 =so2=130 =so3=150 =so4=170" },
+ { "", "", "", ""},
+ { "", "", "", ""},
+ { "s3448", "inv_potion_18", "=q1=Lesser Invisibility Potion", "=ds=#sr# =so1=165 =so2=185 =so3=205 =so4=225" },
+ { "s11464", "inv_potion_25", "=q1=Invisibility Potion", "=ds=#sr# =so1=235 =so2=250 =so3=270 =so4=290" },
+ { "", "", "", ""},
+ { "s3453", "inv_potion_01", "=q1=Elixir of Detect Lesser Invisibility", "=ds=#sr# =so1=195 =so2=215 =so3=235 =so4=255" },
+ { "s12609", "inv_potion_36", "=q1=Catseye Elixir", "=ds=#sr# =so1=200 =so2=220 =so3=240 =so4=260" },
+ { "", "", "", ""},
+ { "s11460", "inv_potion_53", "=q1=Elixir of Detect Undead", "=ds=#sr# =so1=230 =so2=245 =so3=265 =so4=285" },
+ { "s11468", "inv_potion_14", "=q1=Elixir of Dream Vision", "=ds=#sr# =so1=240 =so2=255 =so3=275 =so4=295" },
+ { "s11478", "inv_potion_53", "=q1=Elixir of Detect Demon", "=ds=#sr# =so1=250 =so2=265 =so3=285 =so4=305" },
+ { "", "", "", ""},
+ { "s11459", "inv_misc_orb_01", "=q1=Philosopher's Stone", "=ds=#sr# =so1=200 =so2=240 =so3=260 =so4=280" },
+ { "s11456", "inv_cask_02", "=q1=Goblin Rocket Fuel", "=ds=#sr# =so1=210 =so2=225 =so3=245 =so4=265" },
+ { "s11473", "inv_poison_mindnumbing", "=q1=Ghost Dye", "=ds=#sr# =so1=245 =so2=260 =so3=280 =so4=300" },
+ { "s24266", "inv_poison_mindnumbing", "=q3=Gurubashi Mojo Madness", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" },
+ },
----------------
-- Enchanting --
@@ -1125,7 +1278,343 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s27832", "inv_sword_51", "=q4=Sageblade", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s46661", "inv_sword_31", "=q4=Dream's Herald", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
};
-
+ SmithingHelm1 = {
+ { "s3502", "inv_helmet_03", "=q2=Green Iron Helm", "=ds=#sr# =so1=170 =so2=195 =so3=207 =so4=220" },
+ { "s9814", "inv_helmet_25", "=q2=Barbaric Iron Helm", "=ds=#sr# =so1=175 =so2=200 =so3=212 =so4=225" },
+ { "s3503", "inv_helmet_36", "=q2=Golden Scale Coif", "=ds=#sr# =so1=190 =so2=215 =so3=227 =so4=240" },
+ { "s9980", "inv_helmet_10", "=q2=Ornate Mithril Helm", "=ds=#sr# =so1=210 =so2=265 =so3=275 =so4=285" },
+ { "s9935", "inv_helmet_03", "=q2=Steel Plate Helm", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" },
+ { "s46631", "inv_helmet_25", "=q3=Steel Plate Barbute", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" },
+ { "s9961", "inv_helmet_35", "=q2=Mithril Coif", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s9970", "inv_helmet_10", "=q2=Heavy Mithril Helm", "=ds=#sr# =so1=245 =so2=255 =so3=265 =so4=275" },
+ { "s16653", "inv_helmet_23", "=q2=Thorium Helm", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
+ { "s47029", "inv_helmet_10", "=q3=Hateforge Helmet", "=ds=#sr# =so1=290 =so2=300 =so3=310 =so4=320" },
+ { "s16658", "inv_helmet_22", "=q2=Imperial Plate Helm", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ { "s16726", "inv_helmet_03", "=q2=Runic Plate Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24913", "inv_helmet_10", "=q3=Darkrune Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s47024", "inv_helmet_06", "=q3=Rune-Etched Crown", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16742", "inv_helmet_02", "=q3=Enchanted Thorium Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16728", "inv_helmet_24", "=q3=Helm of the Great Chief", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16724", "inv_helmet_13", "=q3=Whitesoul Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23636", "inv_helmet_22", "=q4=Dark Iron Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16729", "inv_helmet_36", "=q4=Lionheart Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57187", "inv_helmet_37", "=q4=Towerforge Crown", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ },
+ SmithingShoulders1 = {
+ { "s3328", "inv_shoulder_05", "=q2=Rough Bronze Shoulders", "=ds=#sr# =so1=110 =so2=140 =so3=155 =so4=170" },
+ { "s3330", "inv_shoulder_09", "=q2=Silvered Bronze Shoulders", "=ds=#sr# =so1=125 =so2=155 =so3=170 =so4=185" },
+ { "s9811", "inv_shoulder_23", "=q2=Barbaric Iron Shoulders", "=ds=#sr# =so1=160 =so2=185 =so3=197 =so4=210" },
+ { "s3504", "inv_shoulder_09", "=q2=Green Iron Shoulders", "=ds=#sr# =so1=160 =so2=185 =so3=197 =so4=210" },
+ { "s3505", "inv_shoulder_09", "=q3=Golden Scale Shoulders", "=ds=#sr# =so1=175 =so2=200 =so3=212 =so4=225" },
+ { "s9926", "inv_shoulder_22", "=q2=Heavy Mithril Shoulder", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s9952", "inv_shoulder_09", "=q2=Ornate Mithril Shoulders", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "s46630", "inv_shoulder_16", "=q2=Steel Plate Pauldrons", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" },
+ { "s9966", "inv_shoulder_12", "=q3=Mithril Scale Shoulders", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" },
+ { "s16646", "inv_shoulder_02", "=q2=Imperial Plate Shoulders", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" },
+ { "s15295", "inv_shoulder_09", "=q2=Dark Iron Shoulders", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
+ { "s16660", "inv_shoulder_20", "=q3=Dawnbringer Shoulders", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s16664", "inv_shoulder_23", "=q2=Runic Plate Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24137", "inv_shoulder_15", "=q3=Bloodsoul Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24141", "inv_shoulder_01", "=q3=Darksoul Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57026", "inv_shoulder_13", "=q3=Mantle of Centaur Authority", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s47025", "INV_Shoulder_11", "=q3=Rune-Etched Mantle", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s54005", "inv_shoulder_02", "=q3=Pauldrons of the Timbermaw", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s20873", "inv_shoulder_23", "=q4=Fiery Chain Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57191", "inv_shoulder_26", "=q4=Towerforge Pauldrons", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ },
+ SmithingChest1 = {
+ { "s12260", "inv_chest_chain", "=q1=Rough Copper Vest", "=ds=#sr# =so1=1 =so2=15 =so3=35 =so4=55" },
+ { "s3321", "inv_chest_chain", "=q2=Copper Chain Vest", "=ds=#sr# =so1=35 =so2=75 =so3=95 =so4=115" },
+ { "s2667", "inv_chest_plate03", "=q2=Runed Copper Breastplate", "=ds=#sr# =so1=80 =so2=120 =so3=140 =so4=160" },
+ { "s8367", "inv_chest_plate05", "=q2=Ironforge Breastplate", "=ds=#sr# =so1=100 =so2=140 =so3=160 =so4=180" },
+ { "s2670", "inv_chest_chain_08", "=q2=Rough Bronze Cuirass", "=ds=#sr# =so1=105 =so2=145 =so3=160 =so4=175" },
+ { "s2673", "inv_chest_chain_09", "=q2=Silvered Bronze Breastplate", "=ds=#sr# =so1=130 =so2=160 =so3=175 =so4=190" },
+ { "s2675", "inv_chest_plate15", "=q3=Shining Silver Breastplate", "=ds=#sr# =so1=145 =so2=175 =so3=190 =so4=205" },
+ { "s9813", "inv_chest_chain_14", "=q2=Barbaric Iron Breastplate", "=ds=#sr# =so1=160 =so2=185 =so3=197 =so4=210" },
+ { "s3508", "inv_chest_chain", "=q3=Green Iron Hauberk", "=ds=#sr# =so1=180 =so2=205 =so3=217 =so4=230" },
+ { "s3511", "inv_chest_chain_06", "=q2=Golden Scale Cuirass", "=ds=#sr# =so1=195 =so2=220 =so3=232 =so4=245" },
+ { "s9916", "inv_chest_plate05", "=q2=Steel Breastplate", "=ds=#sr# =so1=200 =so2=225 =so3=237 =so4=250" },
+ { "s9972", "inv_chest_plate10", "=q2=Ornate Mithril Breastplate", "=ds=#sr# =so1=210 =so2=260 =so3=270 =so4=280" },
+ { "s46629", "inv_chest_chain_10", "=q2=Steel Plate Armor", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" },
+ { "s9959", "inv_chest_plate10", "=q2=Heavy Mithril Breastplate", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s16642", "inv_chest_plate08", "=q2=Thorium Armor", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s15293", "inv_chest_chain_16", "=q2=Dark Iron Mail", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s16648", "inv_chest_plate16", "=q2=Radiant Breastplate", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s47030", "inv_chest_chain_09", "=q3=Hateforge Cuirass", "=ds=#sr# =so1=290 =so2=300 =so3=310 =so4=320" },
+ { "s16663", "inv_chest_plate10", "=q2=Imperial Plate Chest", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16731", "inv_chest_plate11", "=q2=Runic Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24136", "inv_chest_chain_14", "=q3=Bloodsoul Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24914", "inv_chest_plate06", "=q3=Darkrune Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24139", "inv_chest_plate08", "=q3=Darksoul Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28461", "inv_chest_plate07", "=q3=Ironvine Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s47023", "inv_chest_plate08", "=q3=Rune-Etched Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28242", "inv_chest_chain_11", "=q4=Icebane Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s27590", "inv_chest_chain_17", "=q4=Obsidian Mail Tunic", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s27587", "inv_chest_chain_17", "=q4=Thick Obsidian Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s54009", "inv_chest_plate16", "=q4=Fiery Chain Breastplate", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s9974", "inv_chest_plate04", "=q3=Truesilver Breastplate", "=ds=#sr# =so1=245 =so2=265 =so3=275 =so4=285" },
+ },
+ SmithingChest2 = {
+ { "s16650", "inv_chest_chain_12", "=q3=Wildthorn Mail", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s16667", "inv_chest_plate06", "=q3=Demon Forged Breastplate", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s15296", "inv_chest_plate08", "=q3=Dark Iron Plate", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s16745", "inv_chest_plate10", "=q3=Enchanted Thorium Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16746", "inv_chest_chain_07", "=q4=Invulnerable Mail", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57189", "inv_chest_chain_09", "=q4=Towerforge Breastplate", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ },
+ SmithingBracers1 = {
+ { "s2663", "inv_bracer_03", "=q1=Copper Bracers", "=ds=#sr# =so1=1 =so2=20 =so3=40 =so4=60" },
+ { "s2664", "inv_bracer_03", "=q2=Runed Copper Bracers", "=ds=#sr# =so1=90 =so2=115 =so3=127 =so4=140" },
+ { "s2671", "inv_bracer_05", "=q2=Rough Bronze Bracers", "=ds=#sr# =so1=100 =so2=140 =so3=160 =so4=180" },
+ { "s2672", "inv_bracer_07", "=q2=Patterned Bronze Bracers", "=ds=#sr# =so1=120 =so2=150 =so3=165 =so4=180" },
+ { "s3501", "inv_bracer_06", "=q2=Green Iron Bracers", "=ds=#sr# =so1=165 =so2=190 =so3=202 =so4=215" },
+ { "s7223", "inv_bracer_10", "=q2=Golden Scale Bracers", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" },
+ { "s9937", "inv_bracer_07", "=q2=Mithril Scale Bracers", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" },
+ { "s16644", "inv_bracer_13", "=q2=Thorium Bracers", "=ds=#sr# =so1=255 =so2=275 =so3=285 =so4=295" },
+ { "s16649", "inv_bracer_19", "=q2=Imperial Plate Bracers", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s28244", "inv_bracer_07", "=q4=Icebane Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45469", "INV_Bracer_03", "=q4=Dreamsteel Bracers", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s20874", "inv_bracer_07", "=q4=Dark Iron Bracers", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ },
+ SmithingGloves1 = {
+ { "s3323", "inv_gauntlets_04", "=q2=Runed Copper Gauntlets", "=ds=#sr# =so1=40 =so2=80 =so3=100 =so4=120" },
+ { "s3325", "inv_gauntlets_05", "=q2=Gemmed Copper Gauntlets", "=ds=#sr# =so1=60 =so2=100 =so3=120 =so4=140" },
+ { "s3333", "inv_gauntlets_05", "=q2=Silvered Bronze Gauntlets", "=ds=#sr# =so1=135 =so2=165 =so3=180 =so4=195" },
+ { "s3336", "inv_gauntlets_05", "=q2=Green Iron Gauntlets", "=ds=#sr# =so1=150 =so2=180 =so3=195 =so4=210" },
+ { "s9820", "inv_gauntlets_31", "=q2=Barbaric Iron Gloves", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" },
+ { "s11643", "inv_gauntlets_29", "=q2=Golden Scale Gauntlets", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s9928", "inv_gauntlets_27", "=q2=Heavy Mithril Gauntlet", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s9950", "inv_gauntlets_31", "=q2=Ornate Mithril Gloves", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s46627", "inv_gauntlets_31", "=q2=Steel Plate Gauntlets", "=ds=#sr# =so1=220 =so2=220 =so3=220 =so4=220" },
+ { "s9942", "inv_gauntlets_31", "=q2=Mithril Scale Gloves", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s47033", "inv_gauntlets_04", "=q4=Hateforge Grips", "=ds=#sr# =so1=285 =so2=300 =so3=310 =so4=320" },
+ { "s16654", "inv_gauntlets_26", "=q2=Radiant Gloves", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s24138", "inv_gauntlets_31", "=q3=Bloodsoul Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24912", "inv_gauntlets_27", "=q3=Darkrune Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23633", "inv_gauntlets_29", "=q3=Gloves of the Dawn", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28462", "inv_gauntlets_29", "=q3=Ironvine Gloves", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s47026", "INV_Gauntlets_09", "=q3=Rune-Etched Grips", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s27589", "inv_gauntlets_31", "=q4=Black Grasp of the Destroyer", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28243", "inv_gauntlets_28", "=q4=Icebane Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s9954", "inv_gauntlets_29", "=q3=Truesilver Gauntlets", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "s16655", "inv_gauntlets_03", "=q3=Fiery Plate Gauntlets", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s16661", "inv_gauntlets_30", "=q3=Storm Gauntlets", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ { "s23637", "inv_gauntlets_22", "=q4=Dark Iron Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16741", "inv_gauntlets_30", "=q4=Stronghold Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ SmithingBelt1 = {
+ { "s2661", "inv_belt_02", "=q1=Copper Chain Belt", "=ds=#sr# =so1=35 =so2=75 =so3=95 =so4=115" },
+ { "s2666", "inv_belt_03", "=q2=Runed Copper Belt", "=ds=#sr# =so1=70 =so2=110 =so3=130 =so4=150" },
+ { "s16643", "inv_belt_30", "=q2=Thorium Belt", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s16645", "inv_belt_11", "=q2=Radiant Belt", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
+ { "s16647", "inv_belt_01", "=q2=Imperial Plate Belt", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" },
+ { "s47032", "inv_belt_04", "=q3=Hateforge Belt", "=ds=#sr# =so1=275 =so2=300 =so3=312 =so4=325" },
+ { "s23632", "inv_belt_11", "=q3=Girdle of the Dawn", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s23628", "inv_belt_16", "=q3=Heavy Timbermaw Belt", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s27585", "inv_belt_16", "=q3=Heavy Obsidian Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28463", "inv_belt_21", "=q3=Ironvine Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s27588", "inv_belt_16", "=q3=Light Obsidian Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s54003", "inv_belt_21", "=q3=Fury of the Timbermaw", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s20872", "inv_belt_13", "=q4=Fiery Chain Girdle", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ },
+ SmithingPants1 = {
+ { "s2662", "inv_pants_03", "=q1=Copper Chain Pants", "=ds=#sr# =so1=1 =so2=50 =so3=70 =so4=90" },
+ { "s3324", "inv_pants_03", "=q2=Runed Copper Pants", "=ds=#sr# =so1=45 =so2=85 =so3=105 =so4=125" },
+ { "s2668", "inv_pants_03", "=q2=Rough Bronze Leggings", "=ds=#sr# =so1=105 =so2=145 =so3=160 =so4=175" },
+ { "s3506", "inv_pants_05", "=q2=Green Iron Leggings", "=ds=#sr# =so1=155 =so2=180 =so3=192 =so4=205" },
+ { "s12259", "inv_pants_04", "=q2=Silvered Bronze Leggings", "=ds=#sr# =so1=155 =so2=180 =so3=192 =so4=205" },
+ { "s3507", "inv_pants_04", "=q2=Golden Scale Leggings", "=ds=#sr# =so1=170 =so2=195 =so3=207 =so4=220" },
+ { "s9933", "inv_pants_03", "=q2=Heavy Mithril Pants", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
+ { "s9931", "inv_pants_03", "=q2=Mithril Scale Pants", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
+ { "s9957", "inv_pants_03", "=q2=Orcish War Leggings", "=ds=#sr# =so1=210 =so2=250 =so3=260 =so4=270" },
+ { "s9945", "inv_pants_04", "=q2=Ornate Mithril Pants", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s46628", "inv_pants_04", "=q2=Steel Plate Legguards", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" },
+ { "s47031", "inv_pants_03", "=q3=Hateforge Leggings", "=ds=#sr# =so1=290 =so2=300 =so3=310 =so4=320" },
+ { "s16730", "inv_pants_04", "=q2=Imperial Plate Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16725", "inv_pants_03", "=q2=Radiant Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16732", "inv_pants_04", "=q2=Runic Plate Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s16662", "inv_pants_04", "=q2=Thorium Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24140", "inv_pants_plate_21", "=q3=Darksoul Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s47022", "inv_pants_04", "=q3=Rune-Etched Legplates", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45467", "INV_Pants_03", "=q4=Dreamsteel Leggings", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s16744", "inv_pants_04", "=q3=Enchanted Thorium Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s20876", "inv_pants_04", "=q4=Dark Iron Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s27829", "inv_pants_04", "=q4=Titanic Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ SmithingBoots1 = {
+ { "s3319", "inv_boots_01", "=q1=Copper Chain Boots", "=ds=#sr# =so1=20 =so2=60 =so3=80 =so4=100" },
+ { "s7817", "inv_boots_01", "=q2=Rough Bronze Boots", "=ds=#sr# =so1=95 =so2=125 =so3=140 =so4=155" },
+ { "s3331", "inv_boots_01", "=q2=Silvered Bronze Boots", "=ds=#sr# =so1=130 =so2=160 =so3=175 =so4=190" },
+ { "s3334", "inv_boots_01", "=q2=Green Iron Boots", "=ds=#sr# =so1=145 =so2=175 =so3=190 =so4=205" },
+ { "s9818", "inv_boots_plate_01", "=q2=Barbaric Iron Boots", "=ds=#sr# =so1=180 =so2=205 =so3=217 =so4=230" },
+ { "s3513", "inv_boots_01", "=q2=Polished Steel Boots", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" },
+ { "s3515", "inv_boots_01", "=q3=Golden Scale Boots", "=ds=#sr# =so1=200 =so2=225 =so3=237 =so4=250" },
+ { "s9979", "inv_boots_01", "=q2=Ornate Mithril Boots", "=ds=#sr# =so1=210 =so2=265 =so3=275 =so4=285" },
+ { "s46626", "inv_boots_plate_01", "=q2=Steel Plate Boots", "=ds=#sr# =so1=220 =so2=220 =so3=220 =so4=220" },
+ { "s9968", "inv_boots_plate_01", "=q2=Heavy Mithril Boots", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" },
+ { "s47034", "inv_boots_01", "=q3=Hateforge Boots", "=ds=#sr# =so1=275 =so2=300 =so3=310 =so4=320" },
+ { "s16652", "inv_boots_plate_08", "=q2=Thorium Boots", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
+ { "s16656", "inv_boots_plate_03", "=q2=Radiant Boots", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s16657", "inv_boots_plate_01", "=q2=Imperial Plate Boots", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ { "s16665", "inv_boots_plate_01", "=q2=Runic Plate Boots", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23629", "inv_boots_chain_10", "=q3=Heavy Timbermaw Boots", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s47021", "inv_boots_plate_05", "=q3=Rune-Etched Greaves", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45471", "INV_Boots_01", "=q4=Dreamsteel Boots", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s24399", "inv_boots_chain_08", "=q4=Dark Iron Boots", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ SmithingAxes1 = {
+ { "s2738", "inv_axe_23", "=q1=Copper Axe", "=ds=#sr# =so1=20 =so2=60 =so3=80 =so4=100" },
+ { "s3294", "inv_throwingaxe_01", "=q2=Thick War Axe", "=ds=#sr# =so1=70 =so2=110 =so3=130 =so4=150" },
+ { "s2741", "inv_axe_17", "=q1=Bronze Axe", "=ds=#sr# =so1=115 =so2=145 =so3=160 =so4=175" },
+ { "s21913", "inv_axe_06", "=q2=Edge of Winter", "=ds=#sr# =so1=190 =so2=215 =so3=227 =so4=240" },
+ { "s9993", "inv_axe_14", "=q2=Heavy Mithril Axe", "=ds=#sr# =so1=210 =so2=235 =so3=247 =so4=260" },
+ { "s9995", "inv_axe_03", "=q2=Blue Glittering Axe", "=ds=#sr# =so1=220 =so2=245 =so3=257 =so4=270" },
+ { "s16969", "inv_axe_12", "=q2=Ornate Thorium Handaxe", "=ds=#sr# =so1=275 =so2=300 =so3=312 =so4=325" },
+ { "s16970", "inv_axe_05", "=q3=Dawn's Edge", "=ds=#sr# =so1=275 =so2=300 =so3=312 =so4=325" },
+ { "s16991", "inv_axe_12", "=q3=Annihilator", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s20897", "inv_axe_12", "=q4=Dark Iron Destroyer", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "", "", ""},
+ { "", "", ""},
+ { "", "", ""},
+ { "", "", ""},
+ { "", "", ""},
+ { "s3293", "inv_throwingaxe_02", "=q2=Copper Battle Axe", "=ds=#sr# =so1=35 =so2=75 =so3=95 =so4=115" },
+ { "s9987", "inv_axe_21", "=q1=Bronze Battle Axe", "=ds=#sr# =so1=135 =so2=165 =so3=180 =so4=195" },
+ { "s3498", "inv_throwingaxe_05", "=q2=Massive Iron Axe", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" },
+ { "s3500", "inv_axe_17", "=q2=Shadow Crescent Axe", "=ds=#sr# =so1=200 =so2=225 =so3=237 =so4=250" },
+ { "s16971", "inv_weapon_halberd_11", "=q2=Huge Thorium Battleaxe", "=ds=#sr# =so1=280 =so2=305 =so3=317 =so4=330" },
+ { "s16965", "inv_axe_24", "=q3=Bleakwood Hew", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s16994", "inv_axe_09", "=q3=Arcanite Reaper", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23653", "inv_axe_12", "=q4=Nightfall", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ SmithingSwords1 = {
+ { "s2739", "inv_sword_26", "=q1=Copper Shortsword", "=ds=#sr# =so1=25 =so2=65 =so3=85 =so4=105" },
+ { "s2742", "inv_sword_04", "=q1=Bronze Shortsword", "=ds=#sr# =so1=120 =so2=150 =so3=165 =so4=180" },
+ { "s3492", "inv_sword_20", "=q2=Hardened Iron Shortsword", "=ds=#sr# =so1=160 =so2=185 =so3=197 =so4=210" },
+ { "s3493", "inv_sword_36", "=q2=Jade Serpentblade", "=ds=#sr# =so1=175 =so2=200 =so3=212 =so4=225" },
+ { "s9997", "inv_sword_10", "=q2=Wicked Mithril Blade", "=ds=#sr# =so1=225 =so2=250 =so3=262 =so4=275" },
+ { "s10005", "inv_sword_30", "=q2=Dazzling Mithril Rapier", "=ds=#sr# =so1=240 =so2=265 =so3=277 =so4=290" },
+ { "s10007", "inv_sword_40", "=q3=Phantom Blade", "=ds=#sr# =so1=245 =so2=270 =so3=282 =so4=295" },
+ { "s16978", "inv_sword_30", "=q3=Blazing Rapier", "=ds=#sr# =so1=280 =so2=305 =so3=317 =so4=330" },
+ { "s16992", "inv_sword_11", "=q3=Frostguard", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s20890", "inv_sword_48", "=q4=Dark Iron Reaver", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23652", "inv_sword_39", "=q4=Blackguard", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s27832", "inv_sword_51", "=q4=Sageblade", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s46661", "inv_sword_31", "=q4=Dream's Herald", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "", "", ""},
+ { "", "", ""},
+ { "s9983", "inv_sword_21", "=q1=Copper Claymore", "=ds=#sr# =so1=30 =so2=70 =so3=90 =so4=110" },
+ { "s3292", "inv_sword_14", "=q2=Heavy Copper Broadsword", "=ds=#sr# =so1=95 =so2=135 =so3=155 =so4=175" },
+ { "s9986", "inv_sword_20", "=q1=Bronze Greatsword", "=ds=#sr# =so1=130 =so2=160 =so3=175 =so4=190" },
+ { "s3496", "inv_sword_25", "=q2=Moonsteel Broadsword", "=ds=#sr# =so1=180 =so2=205 =so3=217 =so4=230" },
+ { "s3497", "inv_sword_05", "=q2=Frost Tiger Blade", "=ds=#sr# =so1=200 =so2=225 =so3=237 =so4=250" },
+ { "s10015", "inv_sword_19", "=q3=Truesilver Champion", "=ds=#sr# =so1=260 =so2=285 =so3=297 =so4=310" },
+ { "s16985", "inv_sword_07", "=q3=Corruption", "=ds=#sr# =so1=290 =so2=315 =so3=327 =so4=340" },
+ { "s16990", "inv_sword_39", "=q3=Arcanite Champion", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s46652", "INV_Sword_17", "=q3=Untempered Runeblade", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ SmithingMaces1 = {
+ { "s2737", "inv_mace_01", "=q1=Copper Mace", "=ds=#sr# =so1=15 =so2=55 =so3=75 =so4=95" },
+ { "s2740", "inv_mace_08", "=q1=Bronze Mace", "=ds=#sr# =so1=110 =so2=140 =so3=155 =so4=170" },
+ { "s3296", "inv_mace_08", "=q2=Heavy Bronze Mace", "=ds=#sr# =so1=130 =so2=160 =so3=175 =so4=190" },
+ { "s6518", "inv_hammer_05", "=q2=Iridescent Hammer", "=ds=#sr# =so1=140 =so2=170 =so3=185 =so4=200" },
+ { "s3297", "inv_hammer_04", "=q2=Mighty Iron Hammer", "=ds=#sr# =so1=145 =so2=175 =so3=190 =so4=205" },
+ { "s10001", "inv_mace_15", "=q2=Big Black Mace", "=ds=#sr# =so1=230 =so2=255 =so3=267 =so4=280" },
+ { "s10009", "inv_hammer_17", "=q3=Runed Mithril Hammer", "=ds=#sr# =so1=245 =so2=270 =so3=282 =so4=295" },
+ { "s16984", "inv_hammer_06", "=q2=Volcanic Hammer", "=ds=#sr# =so1=290 =so2=315 =so3=327 =so4=340" },
+ { "s10003", "inv_hammer_18", "=q3=The Shatterer", "=ds=#sr# =so1=235 =so2=260 =so3=272 =so4=285" },
+ { "s16983", "inv_mace_02", "=q3=Serenity", "=ds=#sr# =so1=285 =so2=310 =so3=322 =so4=335" },
+ { "s16993", "inv_hammer_04", "=q3=Masterwork Stormhammer", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23650", "inv_hammer_19", "=q4=Ebon Hand", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s27830", "inv_hammer_08", "=q4=Persuader", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "", "", ""},
+ { "", "", ""},
+ { "s7408", "inv_hammer_18", "=q1=Heavy Copper Maul", "=ds=#sr# =so1=65 =so2=105 =so3=125 =so4=145" },
+ { "s9985", "inv_hammer_18", "=q1=Bronze Warhammer", "=ds=#sr# =so1=125 =so2=155 =so3=170 =so4=185" },
+ { "s3494", "inv_hammer_07", "=q2=Solid Iron Maul", "=ds=#sr# =so1=155 =so2=180 =so3=192 =so4=205" },
+ { "s3495", "inv_hammer_04", "=q2=Golden Iron Destroyer", "=ds=#sr# =so1=170 =so2=195 =so3=207 =so4=220" },
+ { "s15292", "inv_hammer_09", "=q3=Dark Iron Pulverizer", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" },
+ { "s16973", "inv_hammer_05", "=q3=Enchanted Battlehammer", "=ds=#sr# =so1=280 =so2=305 =so3=317 =so4=330" },
+ { "s16988", "inv_hammer_09", "=q3=Hammer of the Titans", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57193", "INV_Hammer_19", "=q4=Towerforge Demolisher", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s45487", "inv_mace_14", "=q4=Dawnstone Hammer", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s21161", "inv_hammer_unique_sulfuras", "=q4=Sulfuron Hammer", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ },
+ SmithingFist1 = {
+ { "s46663", "inv_gauntlets_11", "=q1=Copper Knuckles", "=ds=#sr# =so1=30 =so2=60 =so3=62 =so4=65" },
+ { "s46664", "inv_misc_monsterclaw_01", "=q2=Sharpened Claw", "=ds=#sr# =so1=75 =so2=90 =so3=95 =so4=100" },
+ { "s46665", "inv_gauntlets_11", "=q2=Bronze Bruiser", "=ds=#sr# =so1=120 =so2=140 =so3=145 =so4=150" },
+ { "s16986", "inv_weapon_shortblade_27", "=q3=Blood Talon", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ SmithingDaggers1 = {
+ { "s8880", "inv_weapon_shortblade_14", "=q1=Copper Dagger", "=ds=#sr# =so1=30 =so2=70 =so3=90 =so4=110" },
+ { "s3491", "inv_weapon_shortblade_04", "=q2=Big Bronze Knife", "=ds=#sr# =so1=105 =so2=135 =so3=150 =so4=165" },
+ { "s6517", "inv_weapon_shortblade_05", "=q2=Pearl-handled Dagger", "=ds=#sr# =so1=110 =so2=140 =so3=155 =so4=170" },
+ { "s3295", "inv_weapon_shortblade_05", "=q2=Deadly Bronze Poniard", "=ds=#sr# =so1=125 =so2=155 =so3=170 =so4=185" },
+ { "s15972", "inv_weapon_shortblade_05", "=q2=Glinting Steel Dagger", "=ds=#sr# =so1=180 =so2=205 =so3=217 =so4=230" },
+ { "s15973", "inv_weapon_shortblade_05", "=q2=Searing Golden Blade", "=ds=#sr# =so1=190 =so2=215 =so3=227 =so4=240" },
+ { "s10013", "inv_weapon_shortblade_14", "=q2=Ebon Shiv", "=ds=#sr# =so1=255 =so2=280 =so3=292 =so4=305" },
+ { "s16995", "inv_sword_17", "=q3=Heartseeker", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23638", "inv_weapon_shortblade_12", "=q4=Black Amnesty", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s46657", "inv-sword_53", "=q4=Ornate Bloodstone Dagger", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ SmithingBuckles1 = {
+ { "s57163", "INV_Misc_Buckle_01", "=q2=Copper Belt Buckle", "=ds=#sr# =so1=25 =so2=65 =so3=85 =so4=105" },
+ { "s57166", "INV_Misc_Buckle_02", "=q2=Bronze Belt Buckle", "=ds=#sr# =so1=90 =so2=115 =so3=127 =so4=140" },
+ { "s57169", "INV_Misc_Buckle_03", "=q2=Iron Belt Buckle", "=ds=#sr# =so1=140 =so2=170 =so3=185 =so4=200" },
+ { "s57172", "INV_Misc_Buckle_04", "=q2=Mithril Belt Buckle", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" },
+ { "s57175", "INV_Misc_Buckle_05", "=q2=Thorium Belt Buckle", "=ds=#sr# =so1=240 =so2=265 =so3=277 =so4=290" },
+ { "s57178", "INV_Misc_Buckle_06", "=q2=Arcanite Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s57196", "INV_Misc_Buckle_08", "=q3=Bloody Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ { "s57181", "INV_Misc_Buckle_07", "=q3=Dreamsteel Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
+ },
+ SmithingMisc2 = {
+ { "s19666", "inv_misc_key_03", "=q2=Silver Skeleton Key", "=ds=#sr# =so1=100 =so2=100 =so3=110 =so4=120" },
+ { "s19667", "inv_misc_key_13", "=q2=Golden Skeleton Key", "=ds=#sr# =so1=150 =so2=150 =so3=160 =so4=170" },
+ { "s19668", "inv_misc_key_11", "=q2=Truesilver Skeleton Key", "=ds=#sr# =so1=200 =so2=200 =so3=210 =so4=220" },
+ { "s19669", "inv_misc_key_08", "=q2=Arcanite Skeleton Key", "=ds=#sr# =so1=275 =so2=275 =so3=280 =so4=285" },
+ { "", "", ""},
+ { "s3320", "inv_stone_grindingstone_01", "=q1=Rough Grinding Stone", "=ds=#sr# =so1=25 =so2=45 =so3=65 =so4=85" },
+ { "s3326", "inv_stone_grindingstone_02", "=q1=Coarse Grinding Stone", "=ds=#sr# =so1=75 =so2=75 =so3=87 =so4=100" },
+ { "s3337", "inv_stone_grindingstone_03", "=q1=Heavy Grinding Stone", "=ds=#sr# =so1=125 =so2=125 =so3=137 =so4=150" },
+ { "s9920", "inv_stone_grindingstone_04", "=q1=Solid Grinding Stone", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
+ { "s16639", "inv_stone_grindingstone_05", "=q1=Dense Grinding Stone", "=ds=#sr# =so1=250 =so2=255 =so3=257 =so4=260" },
+ { "", "", ""},
+ { "s7818", "inv_staff_01", "=q1=Silver Rod", "=ds=#sr# =so1=100 =so2=105 =so3=107 =so4=110" },
+ { "s14379", "inv_staff_10", "=q1=Golden Rod", "=ds=#sr# =so1=150 =so2=155 =so3=157 =so4=160" },
+ { "s14380", "inv_staff_11", "=q1=Truesilver Rod", "=ds=#sr# =so1=200 =so2=205 =so3=207 =so4=210" },
+ { "s20201", "inv_staff_19", "=q1=Arcanite Rod", "=ds=#sr# =so1=275 =so2=275 =so3=280 =so4=285" },
+ { "s8768", "inv_misc_armorkit_12", "=q1=Iron Buckle", "=ds=#sr# =so1=150 =so2=150 =so3=152 =so4=155" },
+ { "s11454", "inv_musket_01", "=q1=Inlaid Mithril Cylinder", "=ds=#sr# =so1=200 =so2=225 =so3=237 =so4=250" },
+ { "", "", ""},
+ { "s7222", "inv_misc_orb_01", "=q1=Iron Counterweight", "=ds=#sr# =so1=165 =so2=190 =so3=202 =so4=215" },
+ { "s7224", "spell_frost_chainsofice", "=q1=Steel Weapon Chain", "=ds=#sr# =so1=190 =so2=215 =so3=227 =so4=240" },
+ },
+ SmithingMisc1 = {
+ { "s2660", "inv_stone_sharpeningstone_01", "=q1=Rough Sharpening Stone", "=ds=#sr# =so1=1 =so2=15 =so3=35 =so4=55" },
+ { "s2665", "inv_stone_sharpeningstone_02", "=q1=Coarse Sharpening Stone", "=ds=#sr# =so1=65 =so2=65 =so3=72 =so4=80" },
+ { "s2674", "inv_stone_sharpeningstone_03", "=q1=Heavy Sharpening Stone", "=ds=#sr# =so1=125 =so2=125 =so3=132 =so4=140" },
+ { "s9918", "inv_stone_sharpeningstone_04", "=q1=Solid Sharpening Stone", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
+ { "s16641", "inv_stone_sharpeningstone_05", "=q1=Dense Sharpening Stone", "=ds=#sr# =so1=250 =so2=255 =so3=257 =so4=260" },
+ { "s22757", "inv_stone_02", "=q2=Elemental Sharpening Stone", "=ds=#sr# =so1=300 =so2=300 =so3=310 =so4=320" },
+ { "", "", ""},
+ { "s3115", "inv_stone_weightstone_01", "=q1=Rough Weightstone", "=ds=#sr# =so1=1 =so2=15 =so3=35 =so4=55" },
+ { "s3116", "inv_stone_weightstone_02", "=q1=Coarse Weightstone", "=ds=#sr# =so1=65 =so2=65 =so3=72 =so4=80" },
+ { "s3117", "inv_stone_weightstone_03", "=q1=Heavy Weightstone", "=ds=#sr# =so1=125 =so2=125 =so3=132 =so4=140" },
+ { "s9921", "inv_stone_weightstone_04", "=q1=Solid Weightstone", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
+ { "s16640", "inv_stone_weightstone_05", "=q1=Dense Weightstone", "=ds=#sr# =so1=250 =so2=255 =so3=257 =so4=260" },
+ { "", "", ""},
+ { "", "", ""},
+ { "", "", ""},
+ { "s9964", "ability_rogue_sprint", "=q2=Mithril Spurs", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" },
+ { "s57113", "inv_boots_plate_05", "=q2=Thorium Spurs", "=ds=#sr# =so1=275 =so2=300 =so3=310 =so4=320" },
+ { "", "", ""},
+ { "s7221", "inv_misc_armorkit_01", "=q1=Iron Shield Spike", "=ds=#sr# =so1=150 =so2=180 =so3=195 =so4=210" },
+ { "s9939", "inv_misc_armorkit_02", "=q2=Mithril Shield Spike", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" },
+ { "s16651", "inv_misc_armorkit_20", "=q2=Thorium Shield Spike", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "", "", ""},
+ { "s27586", "inv_shield_22", "=q4=Jagged Obsidian Shield", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
--------------------
-- Leatherworking --
--------------------
@@ -1431,7 +1920,308 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s47035", "inv_chest_leather_08", "=q4=Verdant Dreamer's Breastplate", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "s54007", "inv_gauntlets_26", "=q4=Corehound Gloves", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
};
-
+ LeatherHelm1 = {
+ { "s10490", "inv_helmet_15", "=q3=Comfortable Leather Hat", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
+ { "s46625", "inv_helmet_33", "=q2=Grifter's Cover", "=ds=#sr# =so1=210 =so2=225 =so3=230 =so4=235" },
+ { "s10531", "inv_banner_01", "=q2=Big Voodoo Mask", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s10546", "inv_helmet_10", "=q2=Wild Leather Helmet", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "s10552", "inv_helmet_40", "=q2=Turtle Scale Helm", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s10570", "inv_helmet_20", "=q2=Tough Scorpid Helm", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s47017", "inv_helmet_04", "=q2=Primalist's Headdress", "=ds=#sr# =so1=270 =so2=290 =so3=291 =so4=295" },
+ { "s19071", "inv_misc_bandage_13", "=q2=Wicked Leather Headband", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
+ { "s19082", "inv_misc_bandage_11", "=q2=Runic Leather Headband", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s19088", "inv_helmet_20", "=q2=Heavy Scorpid Helm", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ { "s28472", "inv_helmet_58", "=q3=Bramblewood Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s10632", "inv_helmet_08", "=q3=Helm of Fire", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s20854", "inv_helmet_08", "=q4=Molten Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57016", "inv_helmet_13", "=q4=Depthstalker Helm", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s10621", "inv_helmet_04", "=q3=Wolfshead Helm", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ },
+ LeatherShoulders1 = {
+ { "s3768", "inv_shoulder_08", "=q2=Hillman's Shoulders", "=ds=#sr# =so1=130 =so2=155 =so3=167 =so4=180" },
+ { "s9147", "inv_shoulder_06", "=q2=Earthen Leather Shoulders", "=ds=#sr# =so1=135 =so2=160 =so3=172 =so4=185" },
+ { "s3769", "inv_shoulder_12", "=q2=Dark Leather Shoulders", "=ds=#sr# =so1=140 =so2=165 =so3=177 =so4=190" },
+ { "s7151", "inv_shoulder_08", "=q2=Barbaric Shoulders", "=ds=#sr# =so1=175 =so2=195 =so3=205 =so4=215" },
+ { "s10516", "inv_shoulder_07", "=q2=Nightscape Shoulders", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
+ { "s10529", "inv_shoulder_18", "=q2=Wild Leather Shoulders", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s10564", "inv_shoulder_04", "=q2=Tough Scorpid Shoulders", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" },
+ { "s47016", "inv_shoulder_09", "=q2=Primalist's Shoulders", "=ds=#sr# =so1=280 =so2=285 =so3=290 =so4=295" },
+ { "s19100", "inv_shoulder_07", "=q2=Heavy Scorpid Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s19103", "inv_shoulder_15", "=q2=Runic Leather Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24125", "inv_shoulder_23", "=q3=Blood Tiger Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23706", "inv_shoulder_26", "=q3=Golden Mantle of the Dawn", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45473", "inv_shoulder_18", "=q4=Dreamhide Mantle", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s19089", "inv_shoulder_18", "=q3=Blue Dragonscale Shoulders", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ { "s46654", "inv_shoulder_23", "=q3=Red Dragonscale Shoulders", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s19094", "inv_shoulder_01", "=q3=Black Dragonscale Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s19061", "inv_shoulder_18", "=q3=Living Shoulders", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s19090", "inv_shoulder_05", "=q3=Stormshroud Shoulders", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ { "s19101", "inv_shoulder_13", "=q2=Volcanic Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s19062", "inv_shoulder_06", "=q3=Ironfeather Shoulders", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ },
+ LeatherCloak1 = {
+ { "s9058", "inv_helmet_48", "=q1=Handstitched Leather Cloak", "=ds=#sr# =so1=1 =so2=40 =so3=55 =so4=70" },
+ { "s2162", "inv_helmet_48", "=q1=Embossed Leather Cloak", "=ds=#sr# =so1=60 =so2=90 =so3=105 =so4=120" },
+ { "s2159", "inv_misc_cape_10", "=q2=Fine Leather Cloak", "=ds=#sr# =so1=85 =so2=105 =so3=120 =so4=135" },
+ { "s7953", "inv_misc_monsterscales_03", "=q2=Deviate Scale Cloak", "=ds=#sr# =so1=90 =so2=120 =so3=135 =so4=150" },
+ { "s9070", "inv_misc_monsterscales_03", "=q2=Black Whelp Cloak", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
+ { "s2168", "inv_misc_cape_10", "=q1=Dark Leather Cloak", "=ds=#sr# =so1=110 =so2=135 =so3=147 =so4=160" },
+ { "s3760", "inv_misc_cape_07", "=q1=Hillman's Cloak", "=ds=#sr# =so1=150 =so2=170 =so3=180 =so4=190" },
+ { "s9198", "inv_misc_cape_04", "=q2=Frost Leather Cloak", "=ds=#sr# =so1=180 =so2=200 =so3=210 =so4=220" },
+ { "s7153", "inv_misc_cape_03", "=q2=Guardian Cloak", "=ds=#sr# =so1=185 =so2=205 =so3=215 =so4=225" },
+ { "s10550", "inv_misc_cape_03", "=q2=Nightscape Cloak", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s10562", "inv_misc_cape_02", "=q2=Big Voodoo Cloak", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" },
+ { "s10574", "inv_misc_cape_03", "=q2=Wild Leather Cloak", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s19093", "inv_misc_cape_05", "=q3=Onyxia Scale Cloak", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s22926", "inv_misc_cape_02", "=q4=Chromatic Cloak", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s22928", "inv_misc_cape_20", "=q4=Shifting Cloak", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s22927", "inv_misc_cape_01", "=q4=Hide of the Wild", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ LeatherChest1 = {
+ { "s7126", "inv_chest_wolf", "=q1=Handstitched Leather Vest", "=ds=#sr# =so1=1 =so2=40 =so3=55 =so4=70" },
+ { "s2160", "inv_chest_leather_09", "=q2=Embossed Leather Vest", "=ds=#sr# =so1=40 =so2=70 =so3=85 =so4=100" },
+ { "s2163", "inv_chest_wolf", "=q1=White Leather Jerkin", "=ds=#sr# =so1=60 =so2=90 =so3=105 =so4=120" },
+ { "s3761", "inv_chest_leather_09", "=q2=Fine Leather Tunic", "=ds=#sr# =so1=85 =so2=115 =so3=130 =so4=145" },
+ { "s8322", "inv_chest_leather_09", "=q2=Moonglow Vest", "=ds=#sr# =so1=90 =so2=115 =so3=130 =so4=145" },
+ { "s6703", "inv_chest_chain_12", "=q2=Murloc Scale Breastplate", "=ds=#sr# =so1=95 =so2=125 =so3=140 =so4=155" },
+ { "s24940", "inv_chest_cloth_45", "=q2=Black Whelp Tunic", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
+ { "s2169", "inv_chest_leather_03", "=q2=Dark Leather Tunic", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
+ { "s3762", "inv_chest_leather_10", "=q2=Hillman's Leather Vest", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
+ { "s2166", "inv_chest_leather_10", "=q2=Toughened Leather Armor", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
+ { "s3772", "inv_chest_leather_08", "=q2=Green Leather Armor", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" },
+ { "s4096", "inv_chest_leather_04", "=q2=Raptor Hide Harness", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" },
+ { "s6704", "inv_chest_chain_12", "=q2=Thick Murloc Armor", "=ds=#sr# =so1=170 =so2=190 =so3=200 =so4=210" },
+ { "s9196", "inv_chest_leather_03", "=q2=Dusky Leather Armor", "=ds=#sr# =so1=175 =so2=195 =so3=205 =so4=215" },
+ { "s9197", "inv_chest_chain_09", "=q2=Green Whelp Armor", "=ds=#sr# =so1=175 =so2=195 =so3=205 =so4=215" },
+ { "s3773", "inv_chest_leather_08", "=q2=Guardian Armor", "=ds=#sr# =so1=175 =so2=195 =so3=205 =so4=215" },
+ { "s6661", "inv_chest_leather_04", "=q2=Barbaric Harness", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
+ { "s10499", "inv_chest_leather_03", "=q2=Nightscape Tunic", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s46624", "inv_chest_leather_08", "=q2=Grifter's Tunic", "=ds=#sr# =so1=210 =so2=235 =so3=240 =so4=245" },
+ { "s10511", "inv_chest_chain_12", "=q2=Turtle Scale Breastplate", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
+ { "s10520", "inv_chest_cloth_25", "=q2=Big Voodoo Robe", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" },
+ { "s10525", "inv_chest_leather_02", "=q2=Tough Scorpid Breastplate", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s10544", "inv_chest_cloth_06", "=q2=Wild Leather Vest", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "s10647", "inv_chest_leather_06", "=q3=Feathered Breastplate", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s19051", "inv_chest_chain_15", "=q2=Heavy Scorpid Vest", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" },
+ { "s57008", "inv_chest_leather_07", "=q3=Breastplate of the Earth", "=ds=#sr# =so1=265 =so2=? =so3=? =so4=?" },
+ { "s22815", "inv_chest_chain_14", "=q2=Gordok Ogre Suit", "=ds=#sr# =so1=275 =so2=285 =so3=290 =so4=295" },
+ { "s47019", "inv_chest_plate08", "=q3=Primalist's Vest", "=ds=#sr# =so1=285 =so2=290 =so3=291 =so4=295" },
+ { "s19102", "inv_chest_leather_07", "=q2=Runic Leather Armor", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s19098", "inv_chest_plate06", "=q2=Wicked Leather Armor", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ LeatherChest2 = {
+ { "s24124", "inv_chest_leather_07", "=q3=Blood Tiger Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24121", "inv_chest_leather_03", "=q3=Primal Batskin Jerkin", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24851", "inv_chest_plate07", "=q3=Sandstalker Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57022", "inv_chest_leather_04", "=q3=Centaur Battle Harness", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24848", "inv_chest_leather_02", "=q3=Spitfire Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28222", "inv_chest_plate09", "=q4=Icy Scale Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28219", "inv_chest_cloth_08", "=q4=Polar Tunic", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s10650", "inv_chest_chain_07", "=q3=Dragonscale Breastplate", "=ds=#sr# =so1=255 =so2=275 =so3=285 =so4=295" },
+ { "s19050", "inv_chest_chain_06", "=q3=Green Dragonscale Breastplate", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
+ { "s19077", "inv_chest_chain_04", "=q3=Blue Dragonscale Breastplate", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s19085", "inv_chest_plate06", "=q3=Black Dragonscale Breastplate", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s19054", "inv_chest_chain_06", "=q3=Red Dragonscale Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24703", "inv_chest_plate08", "=q4=Dreamscale Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s19076", "inv_chest_leather_07", "=q2=Volcanic Breastplate", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s19079", "inv_chest_leather_08", "=q3=Stormshroud Armor", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s19095", "inv_chest_plate07", "=q3=Living Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57012", "inv_chest_leather_08", "=q4=Earthguard Tunic", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s19068", "inv_chest_leather_04", "=q3=Warbear Harness", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "s19081", "inv_chest_leather_07", "=q2=Chimeric Vest", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s19086", "inv_chest_leather_06", "=q3=Ironfeather Breastplate", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s19104", "inv_chest_chain_10", "=q2=Frostsaber Tunic", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s47035", "inv_chest_leather_08", "=q4=Verdant Dreamer's Breastplate", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ },
+ LeatherBracers1 = {
+ { "s9059", "inv_bracer_08", "=q1=Handstitched Leather Bracers", "=ds=#sr# =so1=1 =so2=40 =so3=55 =so4=70" },
+ { "s9065", "inv_bracer_04", "=q1=Light Leather Bracers", "=ds=#sr# =so1=70 =so2=100 =so3=115 =so4=130" },
+ { "s23399", "inv_bracer_15", "=q3=Barbaric Bracers", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" },
+ { "s3776", "inv_bracer_12", "=q2=Green Leather Bracers", "=ds=#sr# =so1=180 =so2=200 =so3=210 =so4=220" },
+ { "s9201", "inv_bracer_07", "=q2=Dusky Bracers", "=ds=#sr# =so1=185 =so2=205 =so3=215 =so4=225" },
+ { "s9202", "inv_bracer_06", "=q2=Green Whelp Bracers", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
+ { "s6705", "inv_bracer_05", "=q2=Murloc Scale Bracers", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
+ { "s3777", "inv_bracer_10", "=q2=Guardian Leather Bracers", "=ds=#sr# =so1=195 =so2=215 =so3=225 =so4=235" },
+ { "s10518", "inv_bracer_06", "=q2=Turtle Scale Bracers", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
+ { "s10533", "inv_bracer_09", "=q2=Tough Scorpid Bracers", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s19048", "inv_bracer_09", "=q2=Heavy Scorpid Bracers", "=ds=#sr# =so1=255 =so2=275 =so3=285 =so4=295" },
+ { "s19052", "inv_bracer_07", "=q2=Wicked Leather Bracers", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" },
+ { "s19065", "inv_bracer_11", "=q2=Runic Leather Bracers", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "s24123", "inv_bracer_07", "=q3=Primal Batskin Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24849", "inv_bracer_12", "=q3=Sandstalker Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24846", "inv_bracer_05", "=q3=Spitfire Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s22923", "inv_bracer_05", "=q3=Swift Flight Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28224", "inv_bracer_07", "=q4=Icy Scale Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28221", "inv_bracer_07", "=q4=Polar Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45475", "inv_bracer_12", "=q4=Dreamhide Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45483", "INV_Bracer_07", "=q4=Inscribed Runic Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ LeatherGloves1 = {
+ { "s3756", "inv_gauntlets_05", "=q1=Embossed Leather Gloves", "=ds=#sr# =so1=55 =so2=85 =so3=100 =so4=115" },
+ { "s2164", "inv_gauntlets_05", "=q2=Fine Leather Gloves", "=ds=#sr# =so1=75 =so2=105 =so3=120 =so4=135" },
+ { "s7954", "inv_gauntlets_05", "=q2=Deviate Scale Gloves", "=ds=#sr# =so1=105 =so2=130 =so3=142 =so4=155" },
+ { "s9074", "inv_gauntlets_05", "=q2=Nimble Leather Gloves", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
+ { "s9072", "inv_gauntlets_05", "=q2=Red Whelp Gloves", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
+ { "s3765", "inv_gauntlets_05", "=q2=Dark Leather Gloves", "=ds=#sr# =so1=120 =so2=155 =so3=167 =so4=180" },
+ { "s9145", "inv_gauntlets_05", "=q2=Fletcher's Gloves", "=ds=#sr# =so1=125 =so2=150 =so3=162 =so4=175" },
+ { "s9146", "inv_gauntlets_18", "=q2=Herbalist's Gloves", "=ds=#sr# =so1=135 =so2=160 =so3=172 =so4=185" },
+ { "s3770", "inv_gauntlets_24", "=q3=Toughened Leather Gloves", "=ds=#sr# =so1=135 =so2=160 =so3=172 =so4=185" },
+ { "s9148", "inv_gauntlets_05", "=q2=Pilferer's Gloves", "=ds=#sr# =so1=140 =so2=165 =so3=177 =so4=190" },
+ { "s9149", "inv_gauntlets_23", "=q2=Heavy Earthen Gloves", "=ds=#sr# =so1=145 =so2=170 =so3=182 =so4=195" },
+ { "s3764", "inv_gauntlets_05", "=q2=Hillman's Leather Gloves", "=ds=#sr# =so1=145 =so2=170 =so3=182 =so4=195" },
+ { "s3771", "inv_gauntlets_05", "=q2=Barbaric Gloves", "=ds=#sr# =so1=150 =so2=170 =so3=180 =so4=190" },
+ { "s7156", "inv_gauntlets_05", "=q2=Guardian Gloves", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
+ { "s21943", "inv_gauntlets_21", "=q2=Gloves of the Greatfather", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
+ { "s22711", "inv_gauntlets_32", "=q3=Shadowskin Gloves", "=ds=#sr# =so1=200 =so2=210 =so3=220 =so4=230" },
+ { "s46621", "inv_gauntlets_15", "=q2=Grifter's Gauntlets", "=ds=#sr# =so1=200 =so2=215 =so3=220 =so4=225" },
+ { "s10509", "inv_gauntlets_05", "=q2=Turtle Scale Gloves", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s10542", "inv_gauntlets_24", "=q2=Tough Scorpid Gloves", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "s19049", "inv_gauntlets_31", "=q2=Wicked Leather Gauntlets", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
+ { "s19055", "inv_gauntlets_31", "=q2=Runic Leather Gauntlets", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s47015", "inv_gauntlets_09", "=q2=Primalist's Gloves ", "=ds=#sr# =so1=270 =so2=285 =so3=290 =so4=295" },
+ { "s19064", "inv_gauntlets_24", "=q2=Heavy Scorpid Gauntlets", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "s24122", "inv_gauntlets_31", "=q3=Primal Batskin Gloves", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24850", "inv_gauntlets_11", "=q3=Sandstalker Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24847", "inv_gauntlets_11", "=q3=Spitfire Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23704", "inv_gauntlets_26", "=q3=Timbermaw Brawlers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28223", "inv_gauntlets_28", "=q4=Icy Scale Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28220", "inv_gauntlets_06", "=q4=Polar Gloves", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s10619", "inv_gauntlets_10", "=q3=Dragonscale Gauntlets", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ },
+ LeatherGloves2 = {
+ { "s24655", "inv_gauntlets_12", "=q3=Green Dragonscale Gauntlets", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
+ { "s23708", "inv_gauntlets_22", "=q4=Chromatic Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s10630", "inv_gauntlets_30", "=q3=Gauntlets of the Sea", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s26279", "inv_gauntlets_05", "=q3=Stormshroud Gloves", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s19053", "inv_gauntlets_23", "=q2=Chimeric Gloves", "=ds=#sr# =so1=265 =so2=270 =so3=280 =so4=290" },
+ { "s19084", "inv_gauntlets_26", "=q3=Devilsaur Gauntlets", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s19087", "inv_gauntlets_16", "=q2=Frostsaber Gloves", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ { "s54007", "inv_gauntlets_26", "=q4=Corehound Gloves", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ },
+ LeatherBelt1 = {
+ { "s3753", "inv_belt_04", "=q1=Handstitched Leather Belt", "=ds=#sr# =so1=25 =so2=55 =so3=70 =so4=85" },
+ { "s3763", "inv_belt_04", "=q2=Fine Leather Belt", "=ds=#sr# =so1=80 =so2=110 =so3=125 =so4=140" },
+ { "s6702", "inv_belt_02", "=q2=Murloc Scale Belt", "=ds=#sr# =so1=90 =so2=120 =so3=135 =so4=150" },
+ { "s7955", "inv_belt_09", "=q3=Deviate Scale Belt", "=ds=#sr# =so1=115 =so2=140 =so3=152 =so4=165" },
+ { "s3767", "inv_belt_06", "=q2=Hillman's Belt", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
+ { "s3766", "inv_belt_03", "=q2=Dark Leather Belt", "=ds=#sr# =so1=125 =so2=150 =so3=162 =so4=175" },
+ { "s3774", "inv_belt_17", "=q2=Green Leather Belt", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
+ { "s4097", "inv_belt_02", "=q2=Raptor Hide Belt", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" },
+ { "s3775", "inv_belt_03", "=q3=Guardian Belt", "=ds=#sr# =so1=170 =so2=190 =so3=200 =so4=210" },
+ { "s3778", "inv_belt_01", "=q3=Gem-studded Leather Belt", "=ds=#sr# =so1=185 =so2=205 =so3=215 =so4=225" },
+ { "s9206", "inv_belt_06", "=q2=Dusky Belt", "=ds=#sr# =so1=195 =so2=215 =so3=225 =so4=235" },
+ { "s46622", "inv_belt_04", "=q2=Grifter's Belt", "=ds=#sr# =so1=200 =so2=215 =so3=220 =so4=225" },
+ { "s3779", "inv_belt_09", "=q3=Barbaric Belt", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
+ { "s19070", "inv_belt_03", "=q2=Heavy Scorpid Belt", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
+ { "s19072", "inv_belt_03", "=q2=Runic Leather Belt", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
+ { "s23703", "inv_belt_09", "=q3=Might of the Timbermaw", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s19092", "inv_belt_03", "=q2=Wicked Leather Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s28474", "inv_belt_17", "=q3=Bramblewood Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s22921", "inv_belt_26", "=q3=Girdle of Insight", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23707", "inv_belt_32", "=q4=Lava Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45479", "inv_belt_25", "=q4=Dreamhide Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23710", "inv_belt_13", "=q4=Molten Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23709", "inv_belt_24", "=q4=Corehound Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ LeatherPants1 = {
+ { "s2153", "inv_pants_wolf", "=q1=Handstitched Leather Pants", "=ds=#sr# =so1=15 =so2=45 =so3=60 =so4=75" },
+ { "s9064", "inv_pants_02", "=q2=Rugged Leather Pants", "=ds=#sr# =so1=35 =so2=65 =so3=80 =so4=95" },
+ { "s3759", "inv_pants_02", "=q2=Embossed Leather Pants", "=ds=#sr# =so1=75 =so2=105 =so3=120 =so4=135" },
+ { "s9068", "inv_pants_02", "=q2=Light Leather Pants", "=ds=#sr# =so1=95 =so2=125 =so3=140 =so4=155" },
+ { "s7133", "inv_pants_02", "=q2=Fine Leather Pants", "=ds=#sr# =so1=105 =so2=130 =so3=142 =so4=155" },
+ { "s7135", "inv_pants_09", "=q2=Dark Leather Pants", "=ds=#sr# =so1=115 =so2=140 =so3=152 =so4=165" },
+ { "s7147", "inv_pants_02", "=q2=Guardian Pants", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
+ { "s9195", "inv_pants_07", "=q2=Dusky Leather Leggings", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" },
+ { "s7149", "inv_pants_12", "=q2=Barbaric Leggings", "=ds=#sr# =so1=170 =so2=190 =so3=200 =so4=210" },
+ { "s46623", "inv_pants_12", "=q2=Grifter's Leggings", "=ds=#sr# =so1=205 =so2=225 =so3=230 =so4=235" },
+ { "s10548", "inv_pants_11", "=q2=Nightscape Pants", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s10556", "inv_pants_02", "=q2=Turtle Scale Leggings", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" },
+ { "s10560", "inv_pants_02", "=q2=Big Voodoo Pants", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" },
+ { "s10568", "inv_pants_12", "=q2=Tough Scorpid Leggings", "=ds=#sr# =so1=245 =so2=265 =so3=275 =so4=285" },
+ { "s10572", "inv_pants_14", "=q2=Wild Leather Leggings", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s47018", "inv_pants_04", "=q2=Primalist's Pants", "=ds=#sr# =so1=280 =so2=290 =so3=291 =so4=295" },
+ { "s19075", "inv_pants_12", "=q2=Heavy Scorpid Leggings", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s19083", "inv_pants_12", "=q2=Wicked Leather Pants", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s19091", "inv_pants_02", "=q2=Runic Leather Pants", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45477", "inv_pants_07", "=q4=Dreamhide Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s46695", "inv_pants_02", "=q3=Dragonscale Leggings", "=ds=#sr# =so1=245 =so2=245 =so3=245 =so4=245" },
+ { "s19060", "inv_pants_05", "=q3=Green Dragonscale Leggings", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s46653", "inv_pants_mail_09", "=q3=Red Dragonscale Leggings", "=ds=#sr# =so1=295 =so2=300 =so3=300 =so4=300" },
+ { "s19107", "inv_pants_03", "=q3=Black Dragonscale Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24654", "inv_pants_mail_15", "=q3=Blue Dragonscale Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s46659", "inv_pants_mail_15", "=q4=Stormscale Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s54013", "Inv_pants_mail_11", "=q4=Chromatic Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s19059", "inv_pants_06", "=q2=Volcanic Leggings", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s19067", "inv_pants_09", "=q3=Stormshroud Pants", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "s19078", "inv_pants_05", "=q3=Living Leggings", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ },
+ LeatherPants2 = {
+ { "s57014", "inv_pants_06", "=q4=Flamewrath Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s54015", "Inv_pants_leather_19", "=q4=Molten Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s19073", "inv_pants_02", "=q2=Chimeric Leggings", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
+ { "s19074", "inv_pants_01", "=q2=Frostsaber Leggings", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s19080", "inv_pants_wolf", "=q3=Warbear Woolies", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s19097", "inv_pants_wolf", "=q3=Devilsaur Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ LeatherBoots1 = {
+ { "s2149", "inv_boots_04", "=q1=Handstitched Leather Boots", "=ds=#sr# =so1=1 =so2=40 =so3=55 =so4=70" },
+ { "s2161", "inv_boots_05", "=q2=Embossed Leather Boots", "=ds=#sr# =so1=55 =so2=85 =so3=100 =so4=115" },
+ { "s45069", "INV_Boots_06", "=q2=Lynxstep Boots", "=ds=#sr# =so1=75 =so2=? =so3=? =so4=?" },
+ { "s2158", "inv_boots_06", "=q2=Fine Leather Boots", "=ds=#sr# =so1=90 =so2=120 =so3=135 =so4=150" },
+ { "s2167", "inv_boots_05", "=q2=Dark Leather Boots", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
+ { "s46620", "inv_boots_05", "=q2=Grifter's Boots", "=ds=#sr# =so1=200 =so2=215 =so3=220 =so4=225" },
+ { "s9207", "inv_boots_07", "=q3=Dusky Boots", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
+ { "s9208", "inv_boots_08", "=q2=Swift Boots", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
+ { "s10558", "inv_boots_05", "=q2=Nightscape Boots", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" },
+ { "s10554", "inv_boots_05", "=q2=Tough Scorpid Boots", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" },
+ { "s10566", "inv_boots_07", "=q2=Wild Leather Boots", "=ds=#sr# =so1=245 =so2=265 =so3=275 =so4=285" },
+ { "s47020", "inv_boots_plate_05", "=q2=Primalist's Boots", "=ds=#sr# =so1=275 =so2=290 =so3=291 =so4=295" },
+ { "s23705", "inv_boots_cloth_08", "=q3=Dawn Treaders", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s28473", "inv_boots_cloth_04", "=q3=Bramblewood Boots", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s22922", "inv_boots_08", "=q3=Mongoose Boots", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s46655", "inv_boots_chain_13", "=q3=Red Dragonscale Boots", "=ds=#sr# =so1=295 =so2=300 =so3=300 =so4=300" },
+ { "s20855", "inv_boots_plate_09", "=q4=Black Dragonscale Boots", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57010", "inv_boots_05", "=q3=Boots of the Wind", "=ds=#sr# =so1=255 =so2=255 =so3=255 =so4=255" },
+ { "s57018", "inv_boots_05", "=q4=Windwalker Boots", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s19063", "inv_boots_07", "=q2=Chimeric Boots", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "s19066", "inv_boots_05", "=q2=Frostsaber Boots", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "s20853", "inv_boots_07", "=q4=Corehound Boots", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" },
+ },
+ LeatherBags1 = {
+ { "s5244", "inv_misc_bag_10", "=q1=Kodo Hide Bag", "=ds=#sr# =so1=40 =so2=70 =so3=85 =so4=100" },
+ { "", "", ""},
+ { "s9060", "inv_misc_quiver_01", "=q1=Light Leather Quiver", "=ds=#sr# =so1=30 =so2=60 =so3=75 =so4=90" },
+ { "s9193", "inv_misc_quiver_02", "=q2=Heavy Quiver", "=ds=#sr# =so1=150 =so2=170 =so3=180 =so4=190" },
+ { "s14930", "inv_misc_quiver_07", "=q2=Quickdraw Quiver", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "", "", ""},
+ { "s9062", "inv_misc_ammo_bullet_01", "=q1=Small Leather Ammo Pouch", "=ds=#sr# =so1=30 =so2=60 =so3=75 =so4=90" },
+ { "s9194", "inv_misc_bag_09", "=q2=Heavy Leather Ammo Pouch", "=ds=#sr# =so1=150 =so2=170 =so3=180 =so4=190" },
+ { "s14932", "inv_misc_bag_09_black", "=q2=Thick Leather Ammo Pouch", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ },
+ LeatherMisc1 = {
+ { "s2881", "inv_misc_leatherscrap_03", "=q1=Light Leather", "=ds=#sr# =so1=1 =so2=20 =so3=30 =so4=40" },
+ { "s20648", "inv_misc_leatherscrap_05", "=q1=Medium Leather", "=ds=#sr# =so1=100 =so2=100 =so3=105 =so4=110" },
+ { "s20649", "inv_misc_leatherscrap_07", "=q1=Heavy Leather", "=ds=#sr# =so1=150 =so2=150 =so3=155 =so4=160" },
+ { "s20650", "inv_misc_leatherscrap_08", "=q1=Thick Leather", "=ds=#sr# =so1=200 =so2=200 =so3=202 =so4=205" },
+ { "s22331", "inv_misc_leatherscrap_02", "=q1=Rugged Leather", "=ds=#sr# =so1=250 =so2=250 =so3=250 =so4=250" },
+ { "", "", ""},
+ { "s3816", "inv_misc_pelt_wolf_01", "=q1=Cured Light Hide", "=ds=#sr# =so1=35 =so2=55 =so3=65 =so4=75" },
+ { "s3817", "inv_misc_pelt_bear_02", "=q1=Cured Medium Hide", "=ds=#sr# =so1=100 =so2=115 =so3=122 =so4=130" },
+ { "s3818", "inv_misc_pelt_wolf_02", "=q1=Cured Heavy Hide", "=ds=#sr# =so1=150 =so2=160 =so3=165 =so4=170" },
+ { "s10482", "inv_misc_pelt_bear_01", "=q1=Cured Thick Hide", "=ds=#sr# =so1=200 =so2=200 =so3=200 =so4=200" },
+ { "s19047", "inv_misc_pelt_bear_03", "=q1=Cured Rugged Hide", "=ds=#sr# =so1=250 =so2=250 =so3=255 =so4=260" },
+ { "", "", ""},
+ { "s23190", "inv_misc_throwingball_01", "=q1=Heavy Leather Ball", "=ds=#sr# =so1=150 =so2=150 =so3=155 =so4=160" },
+ { "", "", ""},
+ { "", "", ""},
+ { "s2152", "inv_misc_armorkit_17", "=q1=Light Armor Kit", "=ds=#sr# =so1=1 =so2=30 =so3=45 =so4=60" },
+ { "s2165", "inv_misc_armorkit_15", "=q1=Medium Armor Kit", "=ds=#sr# =so1=100 =so2=115 =so3=122 =so4=130" },
+ { "s3780", "inv_misc_armorkit_16", "=q1=Heavy Armor Kit", "=ds=#sr# =so1=150 =so2=170 =so3=180 =so4=190" },
+ { "s10487", "inv_misc_armorkit_07", "=q1=Thick Armor Kit", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
+ { "s19058", "inv_misc_armorkit_09", "=q1=Rugged Armor Kit", "=ds=#sr# =so1=250 =so2=255 =so3=265 =so4=275" },
+ { "s22727", "inv_misc_armorkit_05", "=q3=Core Armor Kit", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s57115", "inv_misc_armorkit_18", "=q3=Enchanted Armor Kit", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
---------------
-- Tailoring --
---------------
@@ -1722,6 +2512,271 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s45463", "inv_gauntlets_23", "=q4=Dreamthread Gloves", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "s45457", "INV_Shoulder_05", "=q4=Dreamthread Gloves", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
};
+ TailoringHelm1 = {
+ { "s8760", "inv_helmet_29", "=q2=Azure Silk Hood", "=ds=#sr# =so1=145 =so2=155 =so3=160 =so4=165" },
+ { "s3857", "inv_helmet_31", "=q2=Enchanter's Cowl", "=ds=#sr# =so1=165 =so2=185 =so3=200 =so4=215" },
+ { "s3858", "inv_helmet_27", "=q2=Shadow Hood", "=ds=#sr# =so1=170 =so2=190 =so3=205 =so4=220" },
+ { "s12059", "inv_misc_cape_11", "=q2=White Bandit Mask", "=ds=#sr# =so1=215 =so2=220 =so3=225 =so4=230" },
+ { "s69430", "inv_helmet_33", "=q2=Diviner's Cowl", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" },
+ { "s12072", "inv_misc_bandana_01", "=q2=Black Mageweave Headband", "=ds=#sr# =so1=230 =so2=245 =so3=260 =so4=275" },
+ { "s12081", "inv_helmet_29", "=q2=Admiral's Hat", "=ds=#sr# =so1=240 =so2=255 =so3=270 =so4=285" },
+ { "s12086", "inv_helmet_27", "=q2=Shadoweave Mask", "=ds=#sr# =so1=245 =so2=260 =so3=275 =so4=290" },
+ { "s12092", "inv_crown_01", "=q3=Dreamweave Circlet", "=ds=#sr# =so1=250 =so2=265 =so3=280 =so4=295" },
+ { "s69436", "inv_helmet_28", "=q2=Pillager's Hood", "=ds=#sr# =so1=265 =so2=265 =so3=265 =so4=265" },
+ { "s18442", "inv_helmet_34", "=q2=Felcloth Hood", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
+ { "s18452", "inv_misc_bandana_01", "=q3=Mooncloth Circlet", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s28481", "inv_crown_01", "=q3=Sylvan Crown", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ },
+ TailoringShoulders1 = {
+ { "s3848", "inv_shoulder_06", "=q1=Double-stitched Woolen Shoulders", "=ds=#sr# =so1=110 =so2=135 =so3=152 =so4=170" },
+ { "s3849", "inv_shoulder_09", "=q2=Reinforced Woolen Shoulders", "=ds=#sr# =so1=120 =so2=145 =so3=162 =so4=180" },
+ { "s8774", "inv_shoulder_18", "=q2=Green Silken Shoulders", "=ds=#sr# =so1=180 =so2=200 =so3=215 =so4=230" },
+ { "s8795", "inv_shoulder_27", "=q2=Azure Shoulders", "=ds=#sr# =so1=190 =so2=210 =so3=225 =so4=240" },
+ { "s8793", "inv_shoulder_23", "=q2=Crimson Silk Shoulders", "=ds=#sr# =so1=190 =so2=210 =so3=225 =so4=240" },
+ { "s69422", "INV_Shoulder_02", "=q2=Augerer's Mantle", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" },
+ { "s69428", "inv_shoulder_02", "=q2=Diviner's Epaulets", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" },
+ { "s12078", "inv_shoulder_23", "=q2=Red Mageweave Shoulders", "=ds=#sr# =so1=235 =so2=250 =so3=265 =so4=280" },
+ { "s12076", "inv_shoulder_25", "=q2=Shadoweave Shoulders", "=ds=#sr# =so1=235 =so2=250 =so3=265 =so4=280" },
+ { "s69434", "inv_shoulder_02", "=q2=Pillager's Amice", "=ds=#sr# =so1=265 =so2=265 =so3=265 =so4=265" },
+ { "s18453", "inv_shoulder_23", "=q2=Felcloth Shoulders", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18449", "inv_shoulder_21", "=q2=Runecloth Shoulders", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s23665", "inv_shoulder_13", "=q3=Argent Shoulders", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s23663", "inv_shoulder_19", "=q3=Mantle of the Timbermaw", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18448", "inv_shoulder_02", "=q3=Mooncloth Shoulders", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s28482", "inv_shoulder_18", "=q3=Sylvan Shoulders", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s20848", "inv_shoulder_23", "=q4=Flarecore Mantle", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s45457", "INV_Shoulder_05", "=q4=Dreamthread Gloves", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ },
+ TailoringCloak1 = {
+ { "s2387", "inv_misc_cape_14", "=q1=Linen Cloak", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
+ { "s2397", "inv_misc_cape_07", "=q1=Reinforced Linen Cape", "=ds=#sr# =so1=60 =so2=85 =so3=102 =so4=120" },
+ { "s2402", "inv_misc_cape_10", "=q2=Woolen Cape", "=ds=#sr# =so1=75 =so2=100 =so3=117 =so4=135" },
+ { "s6521", "inv_misc_cape_11", "=q2=Pearl-clasped Cloak", "=ds=#sr# =so1=90 =so2=115 =so3=132 =so4=150" },
+ { "s3844", "inv_misc_cape_14", "=q2=Heavy Woolen Cloak", "=ds=#sr# =so1=100 =so2=125 =so3=142 =so4=160" },
+ { "s8786", "inv_chest_cloth_14", "=q2=Azure Silk Cloak", "=ds=#sr# =so1=175 =so2=195 =so3=210 =so4=225" },
+ { "s8789", "inv_chest_cloth_16", "=q2=Crimson Silk Cloak", "=ds=#sr# =so1=180 =so2=200 =so3=215 =so4=230" },
+ { "s3861", "inv_misc_cape_02", "=q2=Long Silken Cloak", "=ds=#sr# =so1=185 =so2=205 =so3=220 =so4=235" },
+ { "s3862", "inv_misc_cape_04", "=q3=Icy Cloak", "=ds=#sr# =so1=200 =so2=220 =so3=235 =so4=250" },
+ { "s18409", "inv_misc_cape_10", "=q2=Runecloth Cloak", "=ds=#sr# =so1=265 =so2=280 =so3=295 =so4=310" },
+ { "s18420", "inv_misc_cape_11", "=q2=Brightcloth Cloak", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
+ { "s18418", "inv_misc_cape_18", "=q2=Cindercloth Cloak", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
+ { "s18422", "inv_misc_cape_18", "=q3=Cloak of Fire", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
+ { "s22870", "inv_misc_cape_06", "=q3=Cloak of Warding", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s28208", "inv_misc_cape_16", "=q4=Glacial Cloak", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ },
+ TailoringChest1 = {
+ { "s7623", "inv_chest_cloth_21", "=q2=Brown Linen Robe", "=ds=#sr# =so1=30 =so2=55 =so3=72 =so4=90" },
+ { "s7624", "inv_chest_cloth_04", "=q2=White Linen Robe", "=ds=#sr# =so1=30 =so2=55 =so3=72 =so4=90" },
+ { "s2389", "inv_chest_cloth_18", "=q2=Red Linen Robe", "=ds=#sr# =so1=40 =so2=65 =so3=82 =so4=100" },
+ { "s7630", "inv_chest_cloth_37", "=q2=Blue Linen Vest", "=ds=#sr# =so1=55 =so2=80 =so3=97 =so4=115" },
+ { "s7629", "inv_chest_cloth_40", "=q2=Red Linen Vest", "=ds=#sr# =so1=55 =so2=80 =so3=97 =so4=115" },
+ { "s2395", "inv_chest_fur", "=q2=Barbaric Linen Vest", "=ds=#sr# =so1=70 =so2=95 =so3=112 =so4=130" },
+ { "s7633", "inv_chest_cloth_23", "=q2=Blue Linen Robe", "=ds=#sr# =so1=70 =so2=95 =so3=112 =so4=130" },
+ { "s2399", "inv_chest_cloth_39", "=q2=Green Woolen Vest", "=ds=#sr# =so1=85 =so2=110 =so3=127 =so4=145" },
+ { "s2403", "inv_chest_cloth_13", "=q2=Gray Woolen Robe", "=ds=#sr# =so1=105 =so2=130 =so3=147 =so4=165" },
+ { "s7643", "inv_chest_cloth_24", "=q2=Greater Adept's Robe", "=ds=#sr# =so1=115 =so2=140 =so3=157 =so4=175" },
+ { "s6690", "inv_chest_cloth_17", "=q2=Lesser Wizard's Robe", "=ds=#sr# =so1=135 =so2=155 =so3=170 =so4=185" },
+ { "s3859", "inv_chest_cloth_37", "=q2=Azure Silk Vest", "=ds=#sr# =so1=150 =so2=170 =so3=185 =so4=200" },
+ { "s6692", "inv_chest_cloth_29", "=q2=Robes of Arcana", "=ds=#sr# =so1=150 =so2=170 =so3=185 =so4=200" },
+ { "s8784", "inv_chest_cloth_06", "=q2=Green Silk Armor", "=ds=#sr# =so1=165 =so2=185 =so3=200 =so4=215" },
+ { "s8770", "inv_chest_cloth_02", "=q3=Robe of Power", "=ds=#sr# =so1=190 =so2=210 =so3=225 =so4=240" },
+ { "s12048", "inv_chest_leather_03", "=q2=Black Mageweave Vest", "=ds=#sr# =so1=205 =so2=220 =so3=235 =so4=250" },
+ { "s8802", "inv_chest_cloth_25", "=q2=Crimson Silk Robe", "=ds=#sr# =so1=205 =so2=220 =so3=235 =so4=250" },
+ { "s69425", "inv_chest_cloth_22", "=q3=Augerer's Robe", "=ds=#sr# =so1=210 =so2=210 =so3=210 =so4=210" },
+ { "s12050", "inv_chest_cloth_13", "=q2=Black Mageweave Robe", "=ds=#sr# =so1=210 =so2=225 =so3=240 =so4=255" },
+ { "s12055", "inv_chest_cloth_38", "=q2=Shadoweave Robe", "=ds=#sr# =so1=215 =so2=230 =so3=245 =so4=260" },
+ { "s12069", "inv_chest_cloth_25", "=q2=Cindercloth Robe", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
+ { "s12070", "inv_chest_cloth_42", "=q3=Dreamweave Vest", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
+ { "s69431", "inv_chest_cloth_22", "=q3=Diviner's Robes", "=ds=#sr# =so1=235 =so2=235 =so3=235 =so4=235" },
+ { "s12077", "inv_chest_cloth_21", "=q1=Simple Black Dress", "=ds=#sr# =so1=235 =so2=240 =so3=245 =so4=250" },
+ { "s12091", "inv_chest_cloth_04", "=q1=White Wedding Dress", "=ds=#sr# =so1=250 =so2=255 =so3=260 =so4=265" },
+ { "s26403", "inv_chest_cloth_56", "=q1=Festival Dress", "=ds=#sr# =so1=250 =so2=265 =so3=280 =so4=295" },
+ { "s26407", "inv_chest_cloth_55", "=q1=Festive Red Pant Suit", "=ds=#sr# =so1=250 =so2=265 =so3=280 =so4=295" },
+ { "s18404", "inv_chest_cloth_03", "=q2=Frostweave Robe", "=ds=#sr# =so1=255 =so2=270 =so3=285 =so4=300" },
+ { "s18403", "inv_chest_cloth_08", "=q2=Frostweave Tunic", "=ds=#sr# =so1=255 =so2=270 =so3=285 =so4=300" },
+ { "s18408", "inv_chest_cloth_07", "=q2=Cindercloth Vest", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" },
+ },
+ TailoringChest2 = {
+ { "s18406", "inv_chest_cloth_04", "=q2=Runecloth Robe", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" },
+ { "s18407", "inv_chest_cloth_04", "=q2=Runecloth Tunic", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" },
+ { "s69437", "inv_chest_cloth_22", "=q3=Pillager's Robe", "=ds=#sr# =so1=270 =so2=270 =so3=270 =so4=270" },
+ { "s18414", "inv_chest_cloth_26", "=q2=Brightcloth Robe", "=ds=#sr# =so1=270 =so2=285 =so3=300 =so4=315" },
+ { "s22813", "inv_chest_chain_14", "=q2=Gordok Ogre Suit", "=ds=#sr# =so1=275 =so2=285 =so3=290 =so4=295" },
+ { "s18436", "inv_chest_cloth_49", "=q3=Robe of Winter Night", "=ds=#sr# =so1=285 =so2=300 =so3=315 =so4=330" },
+ { "s18451", "inv_chest_cloth_09", "=q2=Felcloth Robe", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18446", "inv_chest_cloth_46", "=q2=Wizardweave Robe", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s24091", "inv_chest_cloth_07", "=q3=Bloodvine Vest", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s22902", "inv_chest_cloth_04", "=q3=Mooncloth Robe", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18447", "inv_chest_cloth_08", "=q3=Mooncloth Vest", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s28480", "inv_chest_plate07", "=q3=Sylvan Vest", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s23666", "inv_chest_cloth_18", "=q4=Flarecore Robe", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s28207", "inv_chest_cloth_08", "=q4=Glacial Vest", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18457", "inv_chest_cloth_38", "=q4=Robe of the Archmage", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18458", "inv_chest_cloth_51", "=q4=Robe of the Void", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18456", "inv_chest_cloth_31", "=q4=Truefaith Vestments", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s46656", "inv_chest_cloth_09", "=q4=Robe of Sacrifice", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ },
+ TailoringBracers1 = {
+ { "s3841", "inv_bracer_12", "=q1=Green Linen Bracers", "=ds=#sr# =so1=60 =so2=85 =so3=102 =so4=120" },
+ { "s22759", "inv_bracer_09", "=q4=Flarecore Wraps", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s28209", "inv_bracer_07", "=q4=Glacial Wrists", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s45461", "inv_bracer_06", "=q4=Dreamthread Bracers", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ },
+ TailoringGloves1 = {
+ { "s3840", "inv_gauntlets_05", "=q1=Heavy Linen Gloves", "=ds=#sr# =so1=35 =so2=60 =so3=77 =so4=95" },
+ { "s45066", "inv_gauntlets_19", "=q2=Gloves of Manathirst", "=ds=#sr# =so1=75 =so2=150 =so3=167 =so4=185" },
+ { "s3843", "inv_gauntlets_05", "=q2=Heavy Woolen Gloves", "=ds=#sr# =so1=85 =so2=110 =so3=127 =so4=145" },
+ { "s3868", "inv_gauntlets_19", "=q2=Phoenix Gloves", "=ds=#sr# =so1=125 =so2=150 =so3=167 =so4=185" },
+ { "s3852", "inv_gauntlets_05", "=q2=Gloves of Meditation", "=ds=#sr# =so1=130 =so2=150 =so3=165 =so4=180" },
+ { "s3854", "inv_gauntlets_17", "=q2=Azure Silk Gloves", "=ds=#sr# =so1=145 =so2=165 =so3=180 =so4=195" },
+ { "s8780", "inv_gauntlets_22", "=q2=Hands of Darkness", "=ds=#sr# =so1=145 =so2=165 =so3=180 =so4=195" },
+ { "s8782", "inv_gauntlets_16", "=q2=Truefaith Gloves", "=ds=#sr# =so1=150 =so2=170 =so3=185 =so4=200" },
+ { "s69421", "INV_Gauntlets_06", "=q2=Augerer's Gloves", "=ds=#sr# =so1=200 =so2=200 =so3=200 =so4=200" },
+ { "s8804", "inv_gauntlets_05", "=q2=Crimson Silk Gloves", "=ds=#sr# =so1=210 =so2=225 =so3=240 =so4=255" },
+ { "s12053", "inv_gauntlets_05", "=q2=Black Mageweave Gloves", "=ds=#sr# =so1=215 =so2=230 =so3=245 =so4=260" },
+ { "s12066", "inv_gauntlets_19", "=q2=Red Mageweave Gloves", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
+ { "s12071", "inv_gauntlets_09", "=q2=Shadoweave Gloves", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
+ { "s12067", "inv_gauntlets_18", "=q3=Dreamweave Gloves", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
+ { "s69427", "inv_gauntlets_23", "=q2=Diviner's Mitts", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" },
+ { "s69433", "inv_gauntlets_15", "=q2=Pillager's Grips", "=ds=#sr# =so1=260 =so2=260 =so3=260 =so4=260" },
+ { "s18411", "inv_gauntlets_05", "=q2=Frostweave Gloves", "=ds=#sr# =so1=265 =so2=280 =so3=295 =so4=310" },
+ { "s18415", "inv_gauntlets_21", "=q2=Brightcloth Gloves", "=ds=#sr# =so1=270 =so2=285 =so3=300 =so4=315" },
+ { "s18412", "inv_gauntlets_05", "=q2=Cindercloth Gloves", "=ds=#sr# =so1=270 =so2=285 =so3=300 =so4=315" },
+ { "s18413", "inv_gauntlets_05", "=q2=Ghostweave Gloves", "=ds=#sr# =so1=270 =so2=285 =so3=300 =so4=315" },
+ { "s18417", "inv_gauntlets_25", "=q2=Runecloth Gloves", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
+ { "s22867", "inv_gauntlets_19", "=q3=Felcloth Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s22868", "inv_gauntlets_19", "=q3=Inferno Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s57024", "inv_gauntlets_12", "=q3=Windbinder Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s22869", "inv_gauntlets_17", "=q3=Mooncloth Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s20849", "inv_gauntlets_26", "=q4=Flarecore Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s28205", "inv_gauntlets_06", "=q4=Glacial Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18454", "inv_gauntlets_06", "=q4=Gloves of Spell Mastery", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s45485", "inv_gauntlets_25", "=q4=Gloves of Unwinding Mystery", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ { "s45463", "inv_gauntlets_23", "=q4=Dreamthread Gloves", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ },
+ TailoringBelt1 = {
+ { "s8776", "inv_belt_05", "=q1=Linen Belt", "=ds=#sr# =so1=15 =so2=50 =so3=67 =so4=85" },
+ { "s8766", "inv_belt_22", "=q2=Azure Silk Belt", "=ds=#sr# =so1=175 =so2=195 =so3=210 =so4=225" },
+ { "s8772", "inv_belt_04", "=q2=Crimson Silk Belt", "=ds=#sr# =so1=175 =so2=195 =so3=210 =so4=225" },
+ { "s3863", "inv_belt_25", "=q2=Spider Belt", "=ds=#sr# =so1=180 =so2=200 =so3=215 =so4=230" },
+ { "s8797", "inv_belt_24", "=q2=Earthen Silk Belt", "=ds=#sr# =so1=195 =so2=215 =so3=230 =so4=245" },
+ { "s3864", "inv_belt_06", "=q2=Star Belt", "=ds=#sr# =so1=200 =so2=220 =so3=235 =so4=250" },
+ { "s18402", "inv_belt_15", "=q2=Runecloth Belt", "=ds=#sr# =so1=255 =so2=270 =so3=285 =so4=300" },
+ { "s18410", "inv_belt_16", "=q2=Ghostweave Belt", "=ds=#sr# =so1=265 =so2=280 =so3=295 =so4=310" },
+ { "s23662", "inv_belt_09", "=q3=Wisdom of the Timbermaw", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
+ { "s57020", "inv_belt_01", "=q3=Dustguider Sash", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s24902", "inv_belt_14", "=q3=Runed Stygian Belt", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s22866", "inv_belt_31", "=q4=Belt of the Archmage", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ },
+ TailoringPants1 = {
+ { "s12044", "inv_pants_11", "=q1=Simple Linen Pants", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
+ { "s3914", "inv_pants_06", "=q1=Brown Linen Pants", "=ds=#sr# =so1=30 =so2=55 =so3=72 =so4=90" },
+ { "s3842", "inv_pants_07", "=q2=Handstitched Linen Britches", "=ds=#sr# =so1=70 =so2=95 =so3=112 =so4=130" },
+ { "s12046", "inv_pants_11", "=q1=Simple Kilt", "=ds=#sr# =so1=75 =so2=100 =so3=117 =so4=135" },
+ { "s3850", "inv_pants_01", "=q2=Heavy Woolen Pants", "=ds=#sr# =so1=110 =so2=135 =so3=152 =so4=170" },
+ { "s12047", "inv_pants_02", "=q2=Colorful Kilt", "=ds=#sr# =so1=120 =so2=145 =so3=162 =so4=180" },
+ { "s3851", "inv_pants_06", "=q2=Phoenix Pants", "=ds=#sr# =so1=125 =so2=150 =so3=167 =so4=185" },
+ { "s8758", "inv_pants_08", "=q2=Azure Silk Pants", "=ds=#sr# =so1=140 =so2=160 =so3=175 =so4=190" },
+ { "s8799", "inv_pants_06", "=q2=Crimson Silk Pantaloons", "=ds=#sr# =so1=195 =so2=215 =so3=225 =so4=235" },
+ { "s69423", "INV_Pants_08", "=q2=Augerer's Trousers", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" },
+ { "s12049", "inv_pants_09", "=q2=Black Mageweave Leggings", "=ds=#sr# =so1=205 =so2=220 =so3=235 =so4=250" },
+ { "s12052", "inv_pants_11", "=q2=Shadoweave Pants", "=ds=#sr# =so1=210 =so2=225 =so3=240 =so4=255" },
+ { "s12060", "inv_pants_06", "=q2=Red Mageweave Pants", "=ds=#sr# =so1=215 =so2=230 =so3=245 =so4=260" },
+ { "s69429", "inv_pants_07", "=q2=Diviner's Pantaloons", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" },
+ { "s12089", "inv_pants_01", "=q1=Tuxedo Pants", "=ds=#sr# =so1=245 =so2=250 =so3=255 =so4=260" },
+ { "s69435", "inv_pants_06", "=q2=Pillager's Pantaloons", "=ds=#sr# =so1=265 =so2=265 =so3=265 =so4=265" },
+ { "s18419", "inv_pants_06", "=q2=Felcloth Pants", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
+ { "s18421", "inv_pants_09", "=q2=Wizardweave Leggings", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
+ { "s18434", "inv_pants_06", "=q2=Cindercloth Pants", "=ds=#sr# =so1=280 =so2=295 =so3=310 =so4=325" },
+ { "s18424", "inv_pants_08", "=q2=Frostweave Pants", "=ds=#sr# =so1=280 =so2=295 =so3=310 =so4=325" },
+ { "s18438", "inv_pants_09", "=q2=Runecloth Pants", "=ds=#sr# =so1=285 =so2=300 =so3=315 =so4=330" },
+ { "s18439", "inv_pants_09", "=q2=Brightcloth Pants", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
+ { "s18441", "inv_pants_01", "=q2=Ghostweave Pants", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
+ { "s18440", "inv_pants_13", "=q3=Mooncloth Leggings", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
+ { "s24092", "inv_pants_cloth_14", "=q3=Bloodvine Leggings", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s24901", "inv_pants_cloth_05", "=q3=Runed Stygian Leggings", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s23667", "inv_pants_06", "=q4=Flarecore Leggings", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s45459", "inv_pants_14", "=q4=Dreamthread Kilt", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ },
+ TailoringBoots1 = {
+ { "s12045", "inv_boots_05", "=q1=Simple Linen Boots", "=ds=#sr# =so1=20 =so2=50 =so3=67 =so4=85" },
+ { "s2386", "inv_boots_09", "=q1=Linen Boots", "=ds=#sr# =so1=65 =so2=90 =so3=107 =so4=125" },
+ { "s3845", "inv_boots_09", "=q2=Soft-soled Linen Boots", "=ds=#sr# =so1=80 =so2=105 =so3=122 =so4=140" },
+ { "s3847", "inv_boots_09", "=q2=Red Woolen Boots", "=ds=#sr# =so1=95 =so2=120 =so3=137 =so4=155" },
+ { "s2401", "inv_boots_09", "=q2=Woolen Boots", "=ds=#sr# =so1=95 =so2=120 =so3=137 =so4=155" },
+ { "s3855", "inv_boots_05", "=q3=Spidersilk Boots", "=ds=#sr# =so1=125 =so2=150 =so3=167 =so4=185" },
+ { "s3856", "inv_boots_03", "=q2=Spider Silk Slippers", "=ds=#sr# =so1=140 =so2=160 =so3=175 =so4=190" },
+ { "s8778", "INV_Boots_05", "=q2=Boots of Darkness", "=ds=#sr# =so1=140 =so2=160 =so3=175 =so4=190" },
+ { "s3860", "inv_boots_05", "=q2=Boots of the Enchanter", "=ds=#sr# =so1=175 =so2=195 =so3=210 =so4=225" },
+ { "s69420", "INV_Boots_05", "=q2=Augerer's Boots", "=ds=#sr# =so1=200 =so2=200 =so3=200 =so4=200" },
+ { "s69426", "inv_boots_09", "=q2=Diviner's Boots", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" },
+ { "s12073", "inv_boots_05", "=q2=Black Mageweave Boots", "=ds=#sr# =so1=230 =so2=245 =so3=260 =so4=275" },
+ { "s12082", "inv_boots_05", "=q2=Shadoweave Boots", "=ds=#sr# =so1=240 =so2=255 =so3=270 =so4=285" },
+ { "s12088", "inv_boots_05", "=q2=Cindercloth Boots", "=ds=#sr# =so1=245 =so2=260 =so3=275 =so4=290" },
+ { "s69432", "inv_boots_09", "=q2=Pillager's Shoes", "=ds=#sr# =so1=260 =so2=260 =so3=260 =so4=260" },
+ { "s18423", "inv_boots_05", "=q2=Runecloth Boots", "=ds=#sr# =so1=280 =so2=295 =so3=310 =so4=325" },
+ { "s18437", "inv_boots_05", "=q2=Felcloth Boots", "=ds=#sr# =so1=285 =so2=300 =so3=315 =so4=330" },
+ { "s19435", "inv_boots_05", "=q3=Mooncloth Boots", "=ds=#sr# =so1=290 =so2=295 =so3=310 =so4=325" },
+ { "s23664", "inv_boots_cloth_03", "=q3=Argent Boots", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
+ { "s24093", "inv_boots_cloth_02", "=q3=Bloodvine Boots", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s24903", "inv_boots_05", "=q3=Runed Stygian Boots", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s54011", "inv_boots_05", "=q4=Flarecore Boots", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
+ },
+ TailoringBags1 = {
+ { "s3755", "inv_misc_bag_01", "=q1=Linen Bag", "=ds=#sr# =so1=45 =so2=70 =so3=87 =so4=105" },
+ { "s6686", "inv_misc_bag_02", "=q1=Red Linen Bag", "=ds=#sr# =so1=70 =so2=95 =so3=112 =so4=130" },
+ { "s3757", "inv_misc_bag_10", "=q1=Woolen Bag", "=ds=#sr# =so1=80 =so2=105 =so3=122 =so4=140" },
+ { "s3758", "inv_misc_bag_10_green", "=q1=Green Woolen Bag", "=ds=#sr# =so1=95 =so2=120 =so3=137 =so4=155" },
+ { "s6688", "inv_misc_bag_10_red", "=q1=Red Woolen Bag", "=ds=#sr# =so1=115 =so2=140 =so3=157 =so4=175" },
+ { "s3813", "inv_misc_bag_07", "=q1=Small Silk Pack", "=ds=#sr# =so1=150 =so2=170 =so3=185 =so4=200" },
+ { "s6693", "inv_misc_bag_07_green", "=q1=Green Silk Pack", "=ds=#sr# =so1=175 =so2=195 =so3=210 =so4=225" },
+ { "s6695", "inv_misc_bag_07_black", "=q1=Black Silk Pack", "=ds=#sr# =so1=185 =so2=205 =so3=220 =so4=235" },
+ { "s12065", "inv_misc_bag_10_black", "=q1=Mageweave Bag", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
+ { "s27658", "inv_misc_bag_enchantedmageweave", "=q2=Enchanted Mageweave Pouch", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
+ { "s12079", "inv_misc_bag_10_red", "=q1=Red Mageweave Bag", "=ds=#sr# =so1=235 =so2=250 =so3=265 =so4=280" },
+ { "s18405", "inv_misc_bag_19", "=q1=Runecloth Bag", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" },
+ { "s26085", "inv_misc_bag_soulbag", "=q2=Soul Pouch", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" },
+ { "s27724", "inv_misc_bag_cenarionherbbag", "=q2=Cenarion Herb Bag", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
+ { "s27659", "inv_misc_bag_enchantedrunecloth", "=q2=Enchanted Runecloth Bag", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
+ { "s26086", "inv_misc_bag_felclothbag", "=q3=Felcloth Bag", "=ds=#sr# =so1=280 =so2=300 =so3=315 =so4=330" },
+ { "s27660", "inv_misc_bag_bigbagofenchantments", "=q2=Big Bag of Enchantment", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18445", "inv_misc_bag_14", "=q2=Mooncloth Bag", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s27725", "inv_misc_bag_satchelofcenarius", "=q2=Satchel of Cenarius", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s18455", "inv_misc_bag_13", "=q3=Bottomless Bag", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ { "s26087", "inv_misc_bag_corefelclothbag", "=q4=Core Felcloth Bag", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
+ },
+ TailoringShirt1 = {
+ { "s3915", "inv_shirt_02", "=q1=Brown Linen Shirt", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
+ { "s2393", "inv_shirt_white_01", "=q1=White Linen Shirt", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
+ { "s2394", "inv_shirt_blue_01", "=q1=Blue Linen Shirt", "=ds=#sr# =so1=40 =so2=65 =so3=82 =so4=100" },
+ { "s2392", "inv_shirt_red_01", "=q1=Red Linen Shirt", "=ds=#sr# =so1=40 =so2=65 =so3=82 =so4=100" },
+ { "s2396", "inv_shirt_green_01", "=q1=Green Linen Shirt", "=ds=#sr# =so1=70 =so2=95 =so3=112 =so4=130" },
+ { "s2406", "inv_shirt_grey_01", "=q1=Gray Woolen Shirt", "=ds=#sr# =so1=100 =so2=110 =so3=120 =so4=130" },
+ { "s3866", "inv_shirt_red_01", "=q1=Stylish Red Shirt", "=ds=#sr# =so1=110 =so2=135 =so3=152 =so4=170" },
+ { "s7892", "inv_shirt_blue_01", "=q1=Stylish Blue Shirt", "=ds=#sr# =so1=120 =so2=145 =so3=162 =so4=180" },
+ { "s7893", "inv_shirt_green_01", "=q1=Stylish Green Shirt", "=ds=#sr# =so1=120 =so2=145 =so3=162 =so4=180" },
+ { "s3869", "inv_shirt_yellow_01", "=q1=Bright Yellow Shirt", "=ds=#sr# =so1=135 =so2=145 =so3=150 =so4=155" },
+ { "s3870", "inv_shirt_black_01", "=q1=Dark Silk Shirt", "=ds=#sr# =so1=155 =so2=165 =so3=170 =so4=175" },
+ { "s8483", "inv_shirt_white_01", "=q1=White Swashbuckler's Shirt", "=ds=#sr# =so1=160 =so2=170 =so3=175 =so4=180" },
+ { "s3871", "inv_shirt_08", "=q1=Formal White Shirt", "=ds=#sr# =so1=170 =so2=180 =so3=185 =so4=190" },
+ { "s8489", "inv_shirt_red_01", "=q1=Red Swashbuckler's Shirt", "=ds=#sr# =so1=175 =so2=185 =so3=190 =so4=195" },
+ { "s3872", "inv_shirt_16", "=q1=Rich Purple Silk Shirt", "=ds=#sr# =so1=185 =so2=195 =so3=200 =so4=205" },
+ { "s21945", "inv_shirt_green_01", "=q1=Green Holiday Shirt", "=ds=#sr# =so1=190 =so2=200 =so3=205 =so4=210" },
+ { "s3873", "inv_shirt_black_01", "=q1=Black Swashbuckler's Shirt", "=ds=#sr# =so1=200 =so2=210 =so3=215 =so4=220" },
+ { "s12061", "inv_shirt_orange_01", "=q1=Orange Mageweave Shirt", "=ds=#sr# =so1=215 =so2=220 =so3=225 =so4=230" },
+ { "s12064", "inv_shirt_orange_01", "=q1=Orange Martial Shirt", "=ds=#sr# =so1=220 =so2=225 =so3=230 =so4=235" },
+ { "s12075", "inv_shirt_purple_01", "=q1=Lavender Mageweave Shirt", "=ds=#sr# =so1=230 =so2=235 =so3=240 =so4=245" },
+ { "s12080", "inv_shirt_red_01", "=q1=Pink Mageweave Shirt", "=ds=#sr# =so1=235 =so2=240 =so3=245 =so4=250" },
+ { "s12085", "inv_shirt_08", "=q1=Tuxedo Shirt", "=ds=#sr# =so1=240 =so2=245 =so3=250 =so4=255" },
+ },
+ TailoringMisc1 = {
+ { "s2963", "inv_fabric_linen_02", "=q1=Bolt of Linen Cloth", "=ds=#sr# =so1=1 =so2=25 =so3=37 =so4=50" },
+ { "s2964", "inv_fabric_wool_03", "=q1=Bolt of Woolen Cloth", "=ds=#sr# =so1=75 =so2=90 =so3=97 =so4=105" },
+ { "s3839", "inv_fabric_silk_03", "=q1=Bolt of Silk Cloth", "=ds=#sr# =so1=125 =so2=135 =so3=140 =so4=145" },
+ { "s3865", "inv_fabric_mageweave_03", "=q1=Bolt of Mageweave", "=ds=#sr# =so1=175 =so2=180 =so3=182 =so4=185" },
+ { "s18401", "inv_fabric_purplefire_02", "=q1=Bolt of Runecloth", "=ds=#sr# =so1=250 =so2=255 =so3=257 =so4=260" },
+ { "s18560", "inv_fabric_moonrag_01", "=q1=Mooncloth", "=ds=#sr# =so1=250 =so2=290 =so3=305 =so4=320" },
+ },
-----------------
-- Engineering --
@@ -1920,9 +2975,204 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s23486", "inv_misc_enggizmos_07", "=q2=Dimensional Ripper - Everlook", "=ds=#sr# =so1=260 =so2=285 =so3=295 =so4=305" },
{ "s23078", "inv_misc_enggizmos_11", "=q1=Goblin Jumper Cables XL", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" },
};
-
-------------
--- Mining --
+ EngineeringEquipment1 = {
+ { "s3934", "inv_helmet_47", "=q2=Flying Tiger Goggles", "=ds=#sr# =so1=100 =so2=130 =so3=145 =so4=160" },
+ { "s3940", "inv_helmet_47", "=q2=Shadow Goggles", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
+ { "s3956", "inv_helmet_47", "=q2=Green Tinted Goggles", "=ds=#sr# =so1=150 =so2=175 =so3=187 =so4=200" },
+ { "s12587", "inv_helmet_47", "=q2=Bright-Eye Goggles", "=ds=#sr# =so1=175 =so2=195 =so3=205 =so4=215" },
+ { "s3966", "inv_helmet_44", "=q3=Craftsman's Monocle", "=ds=#sr# =so1=185 =so2=205 =so3=215 =so4=225" },
+ { "s12594", "inv_helmet_47", "=q2=Fire Goggles", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s12607", "inv_helmet_47", "=q2=Catseye Ultra Goggles", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s12615", "inv_helmet_47", "=q2=Spellpower Goggles Xtreme", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "s12617", "inv_helmet_49", "=q2=Deepdive Helmet", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s12618", "inv_helmet_47", "=q2=Rose Colored Goggles", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s12622", "inv_helmet_44", "=q3=Green Lens", "=ds=#sr# =so1=245 =so2=265 =so3=275 =so4=285" },
+ { "s19794", "inv_helmet_47", "=q3=Spellpower Goggles Xtreme Plus", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
+ { "s19825", "inv_helmet_47", "=q2=Master Engineer's Goggles", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s24356", "inv_helmet_47", "=q3=Bloodvine Goggles", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s24357", "inv_helmet_44", "=q3=Bloodvine Lens", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s45481", "inv_helmet_44", "=q4=Intricate Gyroscope Goggles", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s22797", "spell_arcane_portaldarnassus", "=q4=Force Reactive Disk", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s12897", "inv_helmet_47", "=q2=Gnomish Goggles", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
+ { "s12907", "inv_helmet_49", "=q2=Gnomish Mind Control Cap", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" },
+ { 0, "", "", "" },
+ { "s12718", "inv_helmet_60", "=q2=Goblin Construction Helmet", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s12717", "inv_helmet_25", "=q2=Goblin Mining Helmet", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s12758", "inv_helmet_49", "=q2=Goblin Rocket Helmet", "=ds=#sr# =so1=245 =so2=265 =so3=275 =so4=285" },
+ { 0, "", "", "" },
+ { "s12905", "inv_boots_02", "=q2=Gnomish Rocket Boots", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "s8895", "inv_gizmo_rocketboot_01", "=q2=Goblin Rocket Boots", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { 0, "", "", "" },
+ { "s12616", "inv_misc_cape_11", "=q2=Parachute Cloak", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { "s19819", "inv_jewelry_amulet_07", "=q2=Voice Amplification Modulator", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s12903", "inv_belt_06", "=q2=Gnomish Harm Prevention Belt", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" },
+ },
+ EngineeringTrinkets1 = {
+ { "s9269", "inv_misc_pocketwatch_01", "=q2=Gnomish Universal Remote", "=ds=#sr# =so1=125 =so2=150 =so3=162 =so4=175" },
+ { "s3952", "inv_gizmo_07", "=q2=Minor Recombobulator", "=ds=#sr# =so1=140 =so2=165 =so3=177 =so4=190" },
+ { "s9273", "inv_misc_enggizmos_10", "=q1=Goblin Jumper Cables", "=ds=#sr# =so1=165 =so2=165 =so3=180 =so4=200" },
+ { "s3971", "inv_gizmo_01", "=q1=Gnomish Cloaking Device", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
+ { "s3969", "inv_misc_head_dragon_01", "=q1=Mechanical Dragonling", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
+ { "s12624", "inv_misc_head_dragon_01", "=q1=Mithril Mechanical Dragonling", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s23077", "inv_misc_enggizmos_02", "=q3=Gyrofreeze Ice Reflector", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
+ { "s23079", "inv_misc_enggizmos_09", "=q2=Major Recombobulator", "=ds=#sr# =so1=275 =so2=285 =so3=290 =so4=295" },
+ { "s23081", "inv_misc_enggizmos_04", "=q3=Hyper-Radiant Flame Reflector", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
+ { "s19830", "inv_misc_head_dragon_01", "=q3=Arcanite Dragonling", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s23082", "inv_misc_enggizmos_16", "=q3=Ultra-Flash Shadow Reflector", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s12899", "inv_gizmo_09", "=q1=Gnomish Shrink Ray", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s12902", "inv_misc_net_01", "=q1=Gnomish Net-o-Matic Projector", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
+ { "s12906", "spell_magic_polymorphchicken", "=q1=Gnomish Battle Chicken", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
+ { "s12759", "inv_gizmo_08", "=q1=Gnomish Death Ray", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" },
+ { "s23489", "inv_misc_enggizmos_12", "=q2=Ultrasafe Transporter - Gadgetzan", "=ds=#sr# =so1=260 =so2=285 =so3=295 =so4=305" },
+ { "s13240", "inv_musket_01", "=q1=The Mortar: Reloaded", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" },
+ { "s12716", "inv_musket_01", "=q1=Goblin Mortar", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s12755", "inv_gizmo_06", "=q1=Goblin Bomb Dispenser", "=ds=#sr# =so1=230 =so2=230 =so3=250 =so4=270" },
+ { "s12908", "spell_fire_flamebolt", "=q1=Goblin Dragon Gun", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" },
+ { "s23486", "inv_misc_enggizmos_07", "=q2=Dimensional Ripper - Everlook", "=ds=#sr# =so1=260 =so2=285 =so3=295 =so4=305" },
+ { "s23078", "inv_misc_enggizmos_11", "=q1=Goblin Jumper Cables XL", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" },
+ },
+ EngineeringExplosives1 = {
+ { "s3919", "inv_misc_bomb_06", "=q1=Rough Dynamite", "=ds=#sr# =so1=1 =so2=30 =so3=45 =so4=60" },
+ { "s3923", "inv_misc_bomb_09", "=q1=Rough Copper Bomb", "=ds=#sr# =so1=30 =so2=60 =so3=75 =so4=90" },
+ { "s3931", "inv_misc_bomb_06", "=q1=Coarse Dynamite", "=ds=#sr# =so1=75 =so2=90 =so3=97 =so4=105" },
+ { "s45057", "inv_misc_bomb_06", "=q1=Unstable Mining Dynamite", "=ds=#sr# =so1=75 =so2=90 =so3=97 =so4=105" },
+ { "s8339", "inv_misc_bomb_06", "=q1=EZ-Thro Dynamite", "=ds=#sr# =so1=100 =so2=115 =so3=122 =so4=130" },
+ { "s3937", "inv_misc_bomb_01", "=q1=Large Copper Bomb", "=ds=#sr# =so1=105 =so2=105 =so3=130 =so4=155" },
+ { "s3941", "inv_misc_bomb_09", "=q1=Small Bronze Bomb", "=ds=#sr# =so1=120 =so2=120 =so3=145 =so4=170" },
+ { "s3946", "inv_misc_bomb_06", "=q1=Heavy Dynamite", "=ds=#sr# =so1=125 =so2=125 =so3=135 =so4=145" },
+ { "s3950", "inv_misc_bomb_05", "=q1=Big Bronze Bomb", "=ds=#sr# =so1=140 =so2=140 =so3=165 =so4=190" },
+ { "s3955", "spell_nature_polymorph", "=q1=Explosive Sheep", "=ds=#sr# =so1=150 =so2=175 =so3=187 =so4=200" },
+ { "s12586", "inv_misc_bomb_06", "=q1=Solid Dynamite", "=ds=#sr# =so1=175 =so2=175 =so3=185 =so4=195" },
+ { "s3962", "inv_misc_bomb_08", "=q1=Iron Grenade", "=ds=#sr# =so1=175 =so2=175 =so3=195 =so4=215" },
+ { "s8243", "inv_misc_ammo_bullet_01", "=q1=Flash Bomb", "=ds=#sr# =so1=185 =so2=185 =so3=205 =so4=225" },
+ { "s3967", "inv_misc_bomb_01", "=q1=Big Iron Bomb", "=ds=#sr# =so1=190 =so2=190 =so3=210 =so4=230" },
+ { "s3968", "inv_shield_08", "=q1=Goblin Land Mine", "=ds=#sr# =so1=195 =so2=215 =so3=225 =so4=235" },
+ { "s23069", "inv_misc_bomb_03", "=q1=EZ-Thro Dynamite II", "=ds=#sr# =so1=200 =so2=200 =so3=210 =so4=220" },
+ { "s12603", "inv_misc_bomb_02", "=q1=Mithril Frag Bomb", "=ds=#sr# =so1=215 =so2=215 =so3=235 =so4=255" },
+ { "s12619", "inv_misc_bomb_07", "=q1=Hi-Explosive Bomb", "=ds=#sr# =so1=235 =so2=235 =so3=255 =so4=275" },
+ { "s23070", "inv_misc_bomb_06", "=q1=Dense Dynamite", "=ds=#sr# =so1=250 =so2=250 =so3=260 =so4=270" },
+ { "s19790", "inv_misc_bomb_08", "=q1=Thorium Grenade", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
+ { "s12760", "spell_fire_selfdestruct", "=q1=Goblin Sapper Charge", "=ds=#sr# =so1=205 =so2=205 =so3=225 =so4=245" },
+ { "s12754", "inv_misc_bomb_04", "=q1=The Big One", "=ds=#sr# =so1=235 =so2=235 =so3=255 =so4=275" },
+ { "s19799", "inv_misc_bomb_05", "=q1=Dark Iron Bomb", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s19831", "spell_shadow_mindbomb", "=q1=Arcane Bomb", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ },
+ EngineeringWeapons1 = {
+ { "s3925", "inv_weapon_rifle_03", "=q2=Rough Boomstick", "=ds=#sr# =so1=50 =so2=80 =so3=95 =so4=110" },
+ { "s3936", "inv_weapon_rifle_07", "=q2=Deadly Blunderbuss", "=ds=#sr# =so1=105 =so2=130 =so3=142 =so4=155" },
+ { "s3939", "inv_weapon_rifle_07", "=q2=Lovingly Crafted Boomstick", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
+ { "s3949", "inv_weapon_rifle_07", "=q2=Silver-plated Shotgun", "=ds=#sr# =so1=130 =so2=155 =so3=167 =so4=180" },
+ { "s3954", "inv_weapon_rifle_06", "=q2=Moonsight Rifle", "=ds=#sr# =so1=145 =so2=170 =so3=182 =so4=195" },
+ { "s12595", "inv_weapon_rifle_07", "=q2=Mithril Blunderbuss", "=ds=#sr# =so1=205 =so2=225 =so3=235 =so4=245" },
+ { "s12614", "inv_weapon_rifle_07", "=q2=Mithril Heavy-bore Rifle", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
+ { "s19792", "inv_weapon_rifle_07", "=q2=Thorium Rifle", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
+ { "s19796", "inv_weapon_rifle_08", "=q3=Dark Iron Rifle", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "s19833", "inv_weapon_rifle_03", "=q3=Flawless Arcanite Rifle", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { "s22795", "inv_weapon_rifle_05", "=q4=Core Marksman Rifle", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { 0, "", "", "" },
+ { "s46610", "inv_mace_14", "=q4=Battery-Powered Crowd Pummeler", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ },
+ EngineeringParts1 = {
+ { "s3918", "inv_misc_dust_01", "=q1=Rough Blasting Powder", "=ds=#sr# =so1=1 =so2=20 =so3=30 =so4=40" },
+ { "s3929", "inv_misc_dust_02", "=q1=Coarse Blasting Powder", "=ds=#sr# =so1=75 =so2=85 =so3=90 =so4=95" },
+ { "s3945", "inv_misc_dust_06", "=q1=Heavy Blasting Powder", "=ds=#sr# =so1=125 =so2=125 =so3=135 =so4=145" },
+ { "s12585", "inv_misc_powder_black", "=q1=Solid Blasting Powder", "=ds=#sr# =so1=175 =so2=175 =so3=185 =so4=195" },
+ { "s19788", "inv_misc_ammo_gunpowder_01", "=q1=Dense Blasting Powder", "=ds=#sr# =so1=250 =so2=250 =so3=255 =so4=260" },
+ { 0, "", "", "" },
+ { "s3922", "inv_misc_gear_06", "=q1=Handful of Copper Bolts", "=ds=#sr# =so1=30 =so2=45 =so3=52 =so4=60" },
+ { "s3924", "inv_gizmo_pipe_02", "=q1=Copper Tube", "=ds=#sr# =so1=50 =so2=80 =so3=95 =so4=110" },
+ { "s3926", "inv_gizmo_03", "=q1=Copper Modulator", "=ds=#sr# =so1=65 =so2=95 =so3=110 =so4=125" },
+ { "s3973", "inv_ingot_04", "=q1=Silver Contact", "=ds=#sr# =so1=90 =so2=110 =so3=125 =so4=140" },
+ { "s3938", "inv_gizmo_pipe_01", "=q1=Bronze Tube", "=ds=#sr# =so1=105 =so2=105 =so3=130 =so4=155" },
+ { "s3942", "inv_gizmo_02", "=q1=Whirring Bronze Gizmo", "=ds=#sr# =so1=125 =so2=125 =so3=150 =so4=175" },
+ { "s3953", "inv_gizmo_bronzeframework_01", "=q1=Bronze Framework", "=ds=#sr# =so1=145 =so2=145 =so3=170 =so4=195" },
+ { "s12584", "inv_battery_02", "=q1=Gold Power Core", "=ds=#sr# =so1=150 =so2=150 =so3=170 =so4=190" },
+ { "s3958", "inv_spear_05", "=q1=Iron Strut", "=ds=#sr# =so1=160 =so2=160 =so3=170 =so4=180" },
+ { "s3961", "inv_misc_pocketwatch_02", "=q1=Gyrochronatom", "=ds=#sr# =so1=170 =so2=170 =so3=190 =so4=210" },
+ { "s12589", "inv_musket_01", "=q1=Mithril Tube", "=ds=#sr# =so1=195 =so2=195 =so3=215 =so4=235" },
+ { "s12591", "inv_battery_01", "=q1=Unstable Trigger", "=ds=#sr# =so1=200 =so2=200 =so3=220 =so4=240" },
+ { "s12599", "inv_gizmo_mithrilcasing_01", "=q1=Mithril Casing", "=ds=#sr# =so1=215 =so2=215 =so3=235 =so4=255" },
+ { "s23071", "inv_staff_18", "=q1=Truesilver Transformer", "=ds=#sr# =so1=260 =so2=270 =so3=275 =so4=280" },
+ { "s19791", "inv_gizmo_04", "=q1=Thorium Widget", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
+ { "s19795", "inv_gizmo_pipe_04", "=q1=Thorium Tube", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { "s19815", "inv_gizmo_07", "=q1=Delicate Arcanite Converter", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ },
+ EngineeringMisc1 = {
+ { "s7430", "inv_misc_wrench_01", "=q1=Arclight Spanner", "=ds=#sr# =so1=50 =so2=70 =so3=80 =so4=90" },
+ { "s12590", "inv_misc_screwdriver_02", "=q1=Gyromatic Micro-Adjustor", "=ds=#sr# =so1=175 =so2=175 =so3=195 =so4=215" },
+ { 0, "", "", "" },
+ { "s3977", "inv_misc_spyglass_02", "=q1=Crude Scope", "=ds=#sr# =so1=60 =so2=90 =so3=105 =so4=120" },
+ { "s3978", "inv_misc_spyglass_02", "=q1=Standard Scope", "=ds=#sr# =so1=110 =so2=135 =so3=147 =so4=160" },
+ { "s12597", "inv_misc_spyglass_02", "=q1=Deadly Scope", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
+ { "s12620", "inv_misc_spyglass_02", "=q1=Sniper Scope", "=ds=#sr# =so1=240 =so2=260 =so3=270 =so4=280" },
+ { "s22793", "inv_misc_spyglass_02", "=q3=Biznicks 247x128 Accurascope", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { 0, "", "", "" },
+ { "s3920", "inv_ammo_bullet_02", "=q1=Crafted Light Shot", "=ds=#sr# =so1=1 =so2=30 =so3=45 =so4=60" },
+ { "s3930", "inv_ammo_bullet_02", "=q1=Crafted Heavy Shot", "=ds=#sr# =so1=75 =so2=85 =so3=90 =so4=95" },
+ { "s3947", "inv_ammo_bullet_02", "=q1=Crafted Solid Shot", "=ds=#sr# =so1=125 =so2=125 =so3=135 =so4=145" },
+ { "s12621", "inv_ammo_bullet_01", "=q2=Mithril Gyro-Shot", "=ds=#sr# =so1=245 =so2=245 =so3=265 =so4=285" },
+ { "s12596", "inv_ammo_bullet_01", "=q2=Hi-Impact Mithril Slugs", "=ds=#sr# =so1=210 =so2=210 =so3=230 =so4=250" },
+ { "s19800", "inv_ammo_bullet_03", "=q2=Thorium Shells", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" },
+ { "s6458", "inv_misc_spyglass_01", "=q1=Ornate Spyglass", "=ds=#sr# =so1=135 =so2=160 =so3=172 =so4=185" },
+ { "s9271", "inv_misc_food_26", "=q1=Aquadynamic Fish Attractor", "=ds=#sr# =so1=150 =so2=150 =so3=160 =so4=170" },
+ { 0, "", "", "" },
+ { 0, "", "", "" },
+ { "s3932", "inv_crate_06", "=q1=Target Dummy", "=ds=#sr# =so1=85 =so2=115 =so3=130 =so4=145" },
+ { "s3965", "inv_crate_05", "=q1=Advanced Target Dummy", "=ds=#sr# =so1=185 =so2=185 =so3=205 =so4=225" },
+ { "s19814", "inv_crate_02", "=q1=Masterwork Target Dummy", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
+ { 0, "", "", "" },
+ { "s47027", "inv_gizmo_06", "=q1=Portable Wormhole Generator: Stormwind", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
+ { "s47028", "inv_gizmo_06", "=q1=Portable Wormhole Generator: Orgrimmar", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
+ { 0, "", "", "" },
+ { "s3933", "inv_misc_urn_01", "=q1=Small Seaforium Charge", "=ds=#sr# =so1=100 =so2=130 =so3=145 =so4=160" },
+ { "s3972", "inv_misc_urn_01", "=q1=Large Seaforium Charge", "=ds=#sr# =so1=200 =so2=200 =so3=220 =so4=240" },
+ { "s23080", "spell_shadow_detectinvisibility", "=q1=Powerful Seaforium Charge", "=ds=#sr# =so1=275 =so2=275 =so3=285 =so4=295" },
+ },
+ EngineeringMisc2 = {
+ { "s8334", "inv_box_01", "=q1=Practice Lock", "=ds=#sr# =so1=100 =so2=115 =so3=122 =so4=130" },
+ { "s3963", "inv_helmet_08", "=q1=Compact Harvest Reaper Kit", "=ds=#sr# =so1=175 =so2=175 =so3=195 =so4=215" },
+ { "s23096", "inv_misc_enggizmos_13", "=q1=Alarm-O-Bot", "=ds=#sr# =so1=265 =so2=275 =so3=280 =so4=285" },
+ { "s19567", "inv_egg_05", "=q1=Salt Shaker", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
+ { "s22704", "inv_egg_05", "=q1=Field Repair Bot 74A", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
+ { 0, "", "", "" },
+ { "s3944", "inv_gizmo_01", "=q1=Flame Deflector", "=ds=#sr# =so1=125 =so2=125 =so3=150 =so4=175" },
+ { "s3957", "inv_gizmo_01", "=q1=Ice Deflector", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" },
+ { "s3959", "inv_misc_spyglass_02", "=q1=Discombobulator Ray", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
+ { "s3960", "inv_musket_01", "=q1=Portable Bronze Mortar", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" },
+ { "s15255", "inv_gizmo_03", "=q1=Mechanical Repair Kit", "=ds=#sr# =so1=200 =so2=200 =so3=220 =so4=240" },
+ { "s23129", "inv_misc_enggizmos_08", "=q2=World Enlarger", "=ds=#sr# =so1=260 =so2=260 =so3=265 =so4=270" },
+ { "s21940", "spell_frost_windwalkon", "=q1=Snowmaster 9000", "=ds=#sr# =so1=190 =so2=190 =so3=210 =so4=230" },
+ { "s26442", "inv_musket_04", "=q1=Firework Launcher", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
+ { 0, "", "", "" },
+ { "s12715", "inv_scroll_03", "=q1=Goblin Rocket Fuel Recipe", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" },
+ { "s12895", "inv_scroll_05", "=q1=Inlaid Mithril Cylinder Plans", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" },
+ },
+ EngineeringMisc3 = {
+ { "s26416", "inv_misc_missilesmall_blue", "=q1=Small Blue Rocket", "=ds=#sr# =so1=125 =so2=125 =so3=137 =so4=150" },
+ { "s26417", "inv_misc_missilesmall_green", "=q1=Small Green Rocket", "=ds=#sr# =so1=125 =so2=125 =so3=137 =so4=150" },
+ { "s26418", "inv_misc_missilesmall_red", "=q1=Small Red Rocket", "=ds=#sr# =so1=125 =so2=125 =so3=137 =so4=150" },
+ { "s23067", "spell_ice_magicdamage", "=q1=Blue Firework", "=ds=#sr# =so1=150 =so2=150 =so3=162 =so4=175" },
+ { "s23068", "spell_nature_abolishmagic", "=q1=Green Firework", "=ds=#sr# =so1=150 =so2=150 =so3=162 =so4=175" },
+ { "s23066", "spell_fire_fireball02", "=q1=Red Firework", "=ds=#sr# =so1=150 =so2=150 =so3=162 =so4=175" },
+ { "s26420", "inv_misc_missilelarge_blue", "=q1=Large Blue Rocket", "=ds=#sr# =so1=175 =so2=175 =so3=187 =so4=200" },
+ { "s26421", "inv_misc_missilelarge_green", "=q1=Large Green Rocket", "=ds=#sr# =so1=175 =so2=175 =so3=187 =so4=200" },
+ { "s26422", "inv_misc_missilelarge_red", "=q1=Large Red Rocket", "=ds=#sr# =so1=175 =so2=175 =so3=187 =so4=200" },
+ { "s26423", "inv_misc_missilesmallcluster_blue", "=q1=Blue Rocket Cluster", "=ds=#sr# =so1=225 =so2=225 =so3=237 =so4=250" },
+ { "s26424", "inv_misc_missilesmallcluster_green", "=q1=Green Rocket Cluster", "=ds=#sr# =so1=225 =so2=225 =so3=237 =so4=250" },
+ { "s26425", "inv_misc_missilesmallcluster_red", "=q1=Red Rocket Cluster", "=ds=#sr# =so1=225 =so2=225 =so3=237 =so4=250" },
+ { "s23507", "spell_holy_holybolt", "=q1=Snake Burst Firework", "=ds=#sr# =so1=250 =so2=250 =so3=260 =so4=270" },
+ { "s26426", "inv_misc_missilelargecluster_blue", "=q1=Large Blue Rocket Cluster", "=ds=#sr# =so1=275 =so2=275 =so3=280 =so4=285" },
+ { "s26427", "inv_misc_missilelargecluster_green", "=q1=Large Green Rocket Cluster", "=ds=#sr# =so1=275 =so2=275 =so3=280 =so4=285" },
+ { "s26428", "inv_misc_missilelargecluster_red", "=q1=Large Red Rocket Cluster", "=ds=#sr# =so1=275 =so2=275 =so3=280 =so4=285" },
+ { 0, "", "", "" },
+ { "s3928", "inv_crate_01", "=q1=Mechanical Squirrel", "=ds=#sr# =so1=75 =so2=105 =so3=120 =so4=135" },
+ { "s26011", "ability_hunter_pet_gorilla", "=q1=Tranquil Mechanical Yeti", "=ds=#sr# =so1=250 =so2=320 =so3=330 =so4=340" },
+ { "s19793", "inv_misc_monsterhead_03", "=q1=Lifelike Mechanical Toad", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" },
+ { "s15633", "inv_misc_idol_02", "=q1=Lil' Smoky", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" },
+ { "s15628", "inv_misc_bomb_04", "=q1=Pet Bombling", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" },
+ },
+ ------------
+ -- Mining --
------------
Mining1 = {
@@ -2175,7 +3425,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
--------------
Survival1 = {
- { 0, "Trade_Survival", "=q6=#p16#", "" },
+ { 0, "", "", "" },
{ 0, "", "", "" },
{ "s46064", "inv_torch_lit", "=q1=Dim Torch", "=ds=#sr# =so1=1 =so2=30 =so3=45 =so4=60" },
{ 0, "", "", "" },
@@ -2193,7 +3443,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
Survival2 = {
{ 0, "", "", "" },
- { 0, "trade_herbalism", "=q6=#p17#", "" },
+ { 0, "", "", "" },
{ 0, "", "", "" },
{ 51706, "inv_misc_bag_03", "=q1=Country Pumpkin Seeds", "", "" },
{ 51713, "inv_misc_food_25", "=q1=Plump Country Pumpkin", "3-8", "" },
@@ -2236,7 +3486,6 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ 0, "Trade_BrewPoison", "=q6=#rp2#", "" },
{ "s6510", "inv_misc_ammo_gunpowder_01", "=q1=Blinding Powder", "=ds=#lr#=q1= 34 =ds=#sr# =so1=1 =so2=170 =so3=195 =so4=220" },
{ 0, "", "", "" },
- { 0, "", "", "" },
{ "s11341", "ability_poisons", "=q1=Instant Poison IV", "=ds=#lr#=q1= 44 =ds=#sr# =so1=200 =so2=245 =so3=270 =so4=295" },
{ "s11357", "ability_rogue_dualweild", "=q1=Deadly Poison III", "=ds=#lr#=q1= 46 =ds=#sr# =so1=210 =so2=255 =so3=280 =so4=305" },
{ "s13229", "ability_poisonsting", "=q1=Wound Poison III", "=ds=#lr#=q1= 48 =ds=#sr# =so1=1 =so2=265 =so3=290 =so4=315" },
@@ -2249,6 +3498,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s11343", "ability_poisons", "=q1=Instant Poison VI", "=ds=#lr#=q1= 60 =ds=#sr# =so1=280 =so2=325 =so3=350 =so4=375" },
{ "s65032", "spell_nature_nullifypoison", "=q1=Agitating Poison I", "=ds=#lr#=q1= 60 =ds=#sr# =so1=? =so2=? =so3=? =so4=?" },
{ 0, "", "", "" },
+ { 0, "", "", "" },
{ "s46068", "inv_misc_bandage_07", "=q1=Cleaning Cloth", "=q6=Requires 50 Survival" },
};
}
diff --git a/Factions/factions.lua b/Factions/factions.lua
index 4614a4e..ac63e6c 100644
--- a/Factions/factions.lua
+++ b/Factions/factions.lua
@@ -246,9 +246,9 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 20382, "INV_Scroll_03", "=q1=Pattern: Dreamscale Breastplate", "=ds=#p7# #m14#" },
{ 22221, "INV_Scroll_03", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# #m14#" },
{ 83548, "INV_Scroll_04", "=q1=Plans: Dream's Herald", "=ds=#p2# #m14#" },
+ { 83546, "INV_Scroll_04", "=q1=Pattern: Verdant Dreamer's Breastplate", "=ds=#p2# #m14#" },
{ 0, "", "", "" },
- { 0, "", "", "" },
- { 0, "", "", "" },
+ { 80301, "INV_Shirt_GuildTabard_01", "=q1=Cenarion Circle Tabard", "=ds=#p2# #m14#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
@@ -355,15 +355,15 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
};
WaterLords1 = {
{ 0, "", "", "" },
- { 0, "Spell_Ice_Lament", "=q6=#r3#", "" },
+ { 0, "Spell_Frost_SummonWaterElemental_2", "=q6=#r3#", "" },
{ 18399, "INV_Jewelry_Ring_28", "=q3=Ocean's Breeze", "=q1=#m4# =ds=#s13#" },
{ 18398, "INV_Jewelry_Ring_10", "=q3=Tidal Loop", "=q1=#m4# =ds=#s13#" },
{ 17333, "INV_Potion_76", "=q1=Aqual Quintessence", "=ds=#m33#" },
{ 0, "", "", "" },
- { 0, "Spell_Frost_FrostArmor", "=q6=#r4#", "" },
+ { 0, "Spell_Frost_SummonWaterElemental_2", "=q6=#r4#", "" },
{ 22754, "INV_Potion_83", "=q1=Eternal Quintessence", "=ds=#m33#" },
{ 0, "", "", "" },
- { 0, "Spell_Frost_FrostArmor", "=q6=#r5#", "" },
+ { 0, "Spell_Frost_SummonWaterElemental_2", "=q6=#r5#", "" },
{ 81254, "Spell_Frost_SummonWaterElemental", "=q1=Water Waveling", "=ds=#e15#" },
};
Bloodsail1 = {
@@ -389,8 +389,8 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 83492, "INV_Helmet_66", "=q2=Raider Captain's Hat", "=ds=#s1#, #a3#" },
{ 83491, "INV_Helmet_66", "=q2=Swashbuckler Captain's Hat", "=ds=#s1#, #a2#" },
};
- Warderns1 = {
- { 0, "inv_misc_head_dragon_01", "=q6=#r2#", "" },
+ Wardens1 = {
+ { 0, "INV_Misc_Head_Dragon_Bronze", "=q6=#r2#", "" },
{ 61000, "inv_misc_rune_08", "=q1=Time-Worn Rune", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
@@ -405,14 +405,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 0, "inv_misc_head_dragon_01", "=q6=#r3#", "" },
+ { 0, "INV_Misc_Head_Dragon_Bronze", "=q6=#r3#", "" },
{ 61005, "INV_Boots_08", "=q3=Boots of Flowing Sands", "=ds=#s12#, #a2#" },
{ 84604, "INV_Bracer_14", "=q3=Aurastone Bracers", "=ds=#s8#, #a3#" },
{ 61003, "INV_Helmet_09", "=q3=Timeskipper's Helm of Alacrity", "=ds=#s1#, #a4#" },
{ 61004, "inv_jewelry_ring_33", "=q3=Sandswept Ring of Arcanum", "=ds=#s13#" },
};
- Warderns2 = {
- { 0, "inv_misc_head_dragon_01", "=q6=#r4#", "" },
+ Wardens2 = {
+ { 0, "INV_Misc_Head_Dragon_Bronze", "=q6=#r4#", "" },
{ 84601, "INV_Shoulder_13", "=q3=Grass of Eternity", "=ds=#s3#, #a1#" },
{ 61002, "INV_Chest_Cloth_30", "=q3=Robe of the Custodian", "=ds=#s5#, #a1#" },
{ 61013, "INV_Gauntlets_10", "=q3=Gauntlets of Temporal Guidance", "=ds=#s9#, #a3#" },
@@ -420,14 +420,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 84602, "INV_Wand_07", "=q3=Consecrated Caduceus", "=ds=#w12#" },
{ 84603, "inv_staff_10", "=q3=Rod of the Churning Hourglass", "=ds=#h2#, #w9#" },
{ 0, "", "", "" },
- { 50070, "INV_Misc_Head_Dragon_01", "=q1=Bronze Whelpling", "=ds=#e15#" },
+ { 50070, "INV_Misc_Head_Dragon_Bronze", "=q1=Bronze Whelpling", "=ds=#e15#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 0, "inv_misc_head_dragon_01", "=q6=#r5#", "" },
+ { 0, "INV_Misc_Head_Dragon_Bronze", "=q6=#r5#", "" },
{ 61007, "INV_Boots_Plate_03", "=q4=Temporal Bronze Boots", "=ds=#s12#, #a4#" },
{ 61012, "inv_archaeology_70_highborne_inertleystonecharm", "=q4=Shard of Eternity", "=ds=#s2#" },
{ 61010, "INV_Misc_Cape_14", "=q4=Wing of the Time-Lord", "=ds=#s4#" },
@@ -437,7 +437,7 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 61006, "INV_Sword_22", "=q4=Blade of Infinite Mysteries", "=ds=#h3#, #w10#" },
{ 0, "", "", "" },
{ 51043, "inv_misc_bag_enchantedrunecloth", "=q2=Void-Linked Satchel", "=ds=#e10#" },
- { 51252, "inv_misc_head_dragon_01", "=q4=Bronze Drake", "=ds=#e7#" },
+ { 51252, "INV_Misc_Head_Dragon_Bronze", "=q4=Bronze Drake", "=ds=#e7#" },
{ 80300, "inv_shirt_guildtabard_01", "=q1=Time Warden's Tabard", "=ds=#s7#" },
};
@@ -516,14 +516,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
};
Helf = {
- { 0, "INV_Staff_13", "=q2=Cloth Armor", "" },
+ { 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Cloth Armor", "" },
{ 80512, "INV_Chest_Cloth_43", "=q3=Quel'dorei Magister's Robe", "=ds=#s5#, #a1#" },
{ 80513, "inv_boots_02", "=q3=Quel'dorei Magister's Boots", "=ds=#s12#, #a1#" },
{ 80514, "INV_Belt_06", "=q3=Quel'dorei Magister's Belt", "=ds=#s10#, #a1#" },
{ 80515, "inv_gauntlets_06", "=q3=Quel'dorei Magister's Gloves", "=ds=#s9#, #a1#" },
{ 80516, "Inv_pants_cloth_02", "=q3=Quel'dorei Magister's Leggings", "=ds=#s11#, #a1#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Leather Armor", "" },
+ { 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Leather Armor", "" },
{ 80517, "inv_chest_leather_05", "=q3=Quel'dorei Assassin's Tunic", "=ds=#s5#, #a2#" },
{ 80518, "inv_boots_05", "=q3=Quel'dorei Assassin's Boots", "=ds=#s12#, #a2#" },
{ 80519, "inv_belt_26", "=q3=Quel'dorei Assassin's Belt", "=ds=#s10#, #a2#" },
@@ -531,14 +531,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80521, "INV_Pants_02", "=q3=Quel'dorei Assassin's Leggings", "=ds=#s11#, #a2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Mail Armor", "" },
+ { 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Mail Armor", "" },
{ 80522, "INV_Chest_Leather_08", "=q3=Quel'dorei Ranger's Hauberk", "=ds=#s5#, #a3#" },
{ 80523, "INV_Boots_05", "=q3=Quel'dorei Ranger's Boots", "=ds=#s12#, #a3#" },
{ 80524, "INV_Belt_26", "=q3=Quel'dorei Ranger's Belt", "=ds=#s10#, #a3#" },
{ 80525, "Inv_gauntlets_25", "=q3=Quel'dorei Ranger's Gauntlets", "=ds=#s9#, #a3#" },
{ 80526, "INV_Pants_12", "=q3=Quel'dorei Ranger's Legguards", "=ds=#s11#, #a3#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Plate Armor", "" },
+ { 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Plate Armor", "" },
{ 80507, "inv_chest_chain_13", "=q3=Quel'dorei Guardian's Chestplate", "=ds=#s5#, #a4#" },
{ 80508, "Inv_boots_chain_06", "=q3=Quel'dorei Guardian's Boots", "=ds=#s12#, #a4#" },
{ 80509, "inv_belt_11", "=q3=Quel'dorei Guardian's Girdle", "=ds=#s10#, #a4#" },
@@ -546,12 +546,12 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80511, "inv_pants_03", "=q3=Quel'dorei Guardian's Legplates", "=ds=#s11#, #a4#" },
};
Helf2 = {
- { 0, "INV_Staff_13", "=q3=Cloaks", "" },
+ { 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Cloaks", "" },
{ 80505, "inv_misc_cape_10", "=q3=Quel'dorei Hero's Cape", "=ds=#s4#" },
{ 80527, "inv_misc_cape_16", "=q3=Quel'dorei Hero's Drape", "=ds=#s4#" },
{ 80506, "inv_misc_cape_16", "=q3=Quel'dorei Hero's Cloak", "=ds=#s4#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Weapons", "" },
+ { 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Weapons", "" },
{ 80502, "Inv_staff_38", "=q2=Curved Ceremonial Staff", "=ds=#w9#" },
{ 80504, "INV_Staff_25", "=q2=Hardened Root Staff", "=ds=#w9#" },
{ 80501, "INV_Sword_04", "=q2=Sturdy Broadsword", "=ds=#h1#, #w10#" },
@@ -561,20 +561,19 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
+ { 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Tabard", "" },
{ 80317, "inv_misc_tournaments_tabard_bloodelf", "=q1=Quel'Thalas Tabard", "=ds=#s7#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 0, "", "", "" },
- { 0, "INV_Staff_13", "=q1=Pets", "" },
+ { 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Pets", "" },
{ 80003, "inv_misc_foxkit", "=q1=Black-Footed Fox", "=ds=#e15#" },
{ 80007, "INV_Staff_08", "=q1=Enchanted Broom", "=ds=#e15#" },
{ 80000, "INV_Box_PetCarrier_01", "=q1=Golden Dragonhawk Hatchling", "=ds=#e15#" },
{ 80001, "INV_Misc_Herb_14", "=q1=Thalassian Tender", "=ds=#e15#" },
};
- Helf3 = {
- { 0, "", "", "" },
+ Helf3 = {
{ 80529, "INV_Weapon_ShortBlade_15", "=q3=Quel'dorei Magister's Channeling Blade", "=ds=#h3#, #w4#" },
{ 80539, "INV_Offhand_Blood_02", "=q3=Quel'dorei Magister's Focus", "=ds=#s15#" },
{ 80541, "Inv_staff_38", "=q3=Quel'dorei Magister's Staff", "=ds=#h2#, #w9#" },
@@ -603,17 +602,18 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 80538, "INV_Spear_10", "=q3=Quel'dorei Ranger's Spear", "=ds=#h2#, #w7#" },
{ 80543, "INV_Shield_36", "=q3=Quel'dorei Defender's Bulwark", "=ds=#w8#, #h4#" },
+ { 0, "", "", "" },
};
Revantusk = {
- { 0, "INV_Misc_Head_Troll_01", "=q2=Cloth Armor", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Cloth Armor", "" },
{ 80612, "inv_chest_cloth_20", "=q3=Revantusk Mystic's Robe", "=ds=#s5#, #a1#" },
{ 80613, "INV_Boots_05", "=q3=Revantusk Mystic's Boots", "=ds=#s12#, #a1#" },
{ 80614, "INV_Belt_04", "=q3=Revantusk Mystic's Belt", "=ds=#s10#, #a1#" },
{ 80615, "INV_Gauntlets_19", "=q3=Revantusk Mystic's Gloves", "=ds=#s9#, #a1#" },
{ 80616, "INV_Pants_13", "=q3=Revantusk Mystic's Leggings", "=ds=#s11#, #a1#" },
{ 0, "", "", "" },
- { 0, "INV_Misc_Head_Troll_01", "=q2=Leather Armor", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Leather Armor", "" },
{ 80617, "Inv_chest_chain_16", "=q3=Revantusk Stalker's Tunic", "=ds=#s5#, #a2#" },
{ 80618, "Inv_boots_chain_01", "=q3=Revantusk Stalker's Boots", "=ds=#s12#, #a2#" },
{ 80619, "Inv_belt_23", "=q3=Revantusk Stalker's Belt", "=ds=#s10#, #a2#" },
@@ -621,14 +621,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80621, "Inv_pants_mail_04", "=q3=Revantusk Stalker's Leggings", "=ds=#s11#, #a2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 0, "INV_Misc_Head_Troll_01", "=q2=Mail Armor", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Mail Armor", "" },
{ 80622, "inv_chest_leather_07", "=q3=Revantusk Shadow Hunter's Hauberk", "=ds=#s5#, #a3#" },
{ 80623, "inv_boots_02", "=q3=Revantusk Shadow Hunter's Boots", "=ds=#s12#, #a3#" },
{ 80624, "Inv_belt_23", "=q3=Revantusk Shadow Hunter's Belt", "=ds=#s10#, #a3#" },
{ 80625, "INV_Gauntlets_19", "=q3=Revantusk Shadow Hunter's Gauntlets", "=ds=#s9#, #a3#" },
{ 80626, "inv_pants_03", "=q3=Revantusk Shadow Hunter's Legguards", "=ds=#s11#, #a3#" },
{ 0, "", "", "" },
- { 0, "INV_Misc_Head_Troll_01", "=q2=Plate Armor", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Plate Armor", "" },
{ 80607, "inv_chest_chain_17", "=q3=Revantusk Watcher's Chestplate", "=ds=#s5#, #a4#" },
{ 80608, "Inv_boots_chain_03", "=q3=Revantusk Watcher's Boots", "=ds=#s12#, #a4#" },
{ 80609, "Inv_belt_23", "=q3=Revantusk Watcher's Girdle", "=ds=#s10#, #a4#" },
@@ -636,12 +636,12 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80611, "Inv_pants_leather_07", "=q3=Revantusk Watcher's Legplates", "=ds=#s11#, #a4#" },
};
Revantusk2 = {
- { 0, "INV_Misc_Head_Troll_01", "=q2=Cloaks", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Cloaks", "" },
{ 80605, "INV_Misc_Cape_15", "=q3=Revantusk Hero's Cape", "=ds=#s4#, #a1#" },
{ 80627, "INV_Misc_Cape_17", "=q3=Revantusk Hero's Drape", "=ds=#s4#, #a1#" },
{ 80606, "INV_Misc_Cape_18", "=q3=Revantusk Hero's Cloak", "=ds=#s4#, #a1#" },
{ 0, "", "", "" },
- { 0, "INV_Misc_Head_Troll_01", "=q2=Weapons", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Weapons", "" },
{ 80602, "INV_Staff_Goldfeathered_01", "=q2=Crude Channeling Staff", "=ds=#h2#, #w9#" },
{ 80601, "Inv_sword_33", "=q2=Flesh Cutter", "=ds=#h1#, #w10#" },
{ 80600, "INV_Axe_01", "=q2=Rockslicer", "=ds=#h1#, #w1#" },
@@ -651,27 +651,27 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Tabard", "" },
{ 81098, "inv_misc_tournaments_tabard_troll", "=q1=Revantusk Tabard", "=ds=#s7#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 0, "", "", "" },
- { 0, "", "", "" },
- { 0, "INV_Misc_Head_Troll_01", "=q1=Pets", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Pets", "" },
{ 80878, "INV_Feather_14", "=q1=Amani Eagle", "=ds=#e15#" },
{ 0, "", "", "" },
- { 0, "INV_Misc_Head_Troll_01", "=q1=Mounts", "" },
+ { 0, "INV_Misc_Head_Troll_01", "=q6=Mounts", "" },
{ 81226, "Ability_Hunter_Pet_Bear", "=q4=Armored Brown Bear", "=ds=#e7#" },
{ 80433, "Ability_Druid_DemoralizingRoar", "=q4=Black Bear", "=ds=#e7#" },
{ 80438, "Ability_Druid_DemoralizingRoar", "=q4=Brown Bear", "=ds=#e7#" },
+ { 0, "", "", "" },
};
Revantusk3 = {
- { 0, "", "", "" },
{ 80629, "INV_Misc_MonsterFang_01", "=q3=Revantusk Mystic's Chanting Blade", "=ds=#h3#, #w4#" },
{ 80639, "INV_Staff_13", "=q3=Revantusk Mystic's Hex Skull", "=ds=#s15#" },
{ 80641, "INV_Misc_Bone_ElfSkull_01", "=q3=Revantusk Mystic's Staff", "=ds=#h2#, #w9#" },
{ 80644, "INV_Wand_01", "=q3=Revantusk Mystic's Mojobender", "=ds=#w12#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
+ { 0, "", "", "" },
{ 80632, "INV_Misc_Bone_ElfSkull_01", "=q3=Revantusk Mender's Scepter", "=ds=#h3#, #w6#" },
{ 80640, "INV_Misc_Bone_01", "=q3=Revantusk Mender's Mojo", "=ds=#s15#" },
{ 80642, "INV_Staff_Goldfeathered_01", "=q3=Revantusk Mender's Cane", "=ds=#h2#, #w9#" },
@@ -696,38 +696,39 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80643, "INV_Shield_16", "=q3=Revantusk Defender's Bulwark", "=ds=#w8#, #h4#" },
};
Ironforge = {
- { 0, "inv_drink_08", "=q6=#r3#", "" },
+ { 0, "Ability_Racial_Avatar", "=q6=#r3#", "" },
{ 81214, "INV_Belt_27", "=q2=Girdle of Anvilmar", "=ds=#s10#, #a2#" },
{ 81211, "inv_boots_02", "=q2=Boots of Anvilmar", "=ds=#s12#, #a2#" },
{ 81212, "inv_chest_plate03", "=q2=Tunic of Anvilmar", "=ds=#s5#, #a2#" },
{ 81215, "INV_Gauntlets_25", "=q2=Armguards of Anvilmar", "=ds=#s9#, #a2#" },
{ 81213, "inv_pants_12", "=q2=Pants of Anvilmar", "=ds=#s11#, #a2#" },
{ 0, "", "", "" },
- { 0, "inv_drink_08", "=q6=#r5#", "" },
+ { 0, "Ability_Racial_Avatar", "=q6=#r5#", "" },
{ 80303, "inv_misc_tournaments_tabard_dwarf", "=q1=Ironforge Tabard", "=ds=#s7#" },
{ 81233, "Ability_Mount_MountainRam", "=q4=Armored Ironforge Ram", "=ds=#e7#" },
};
Darnassus = {
- { 0, "INV_Staff_13", "=q2=Honored", "" },
+ { 0, "Ability_Racial_ShadowMeld", "=q6=Honored", "" },
{ 60746, "inv_chest_plate09", "=q2=Sentinel's Breastplate", "=ds=#s5#, #a3#" },
{ 60747, "inv_boots_chain_08", "=q2=Sentinel's Boots", "=ds=#s12#, #a3#" },
- { 60748, "inv_helmet_19", "=q2=Sentinel's Crown", "=ds=#s1#, #a3#" },
+ { 60748, "inv_helmet_19", "=q6=Sentinel's Crown", "=ds=#s1#, #a3#" },
{ 60749, "inv_pants_mail_11", "=q2=Sentinel's Leggings", "=ds=#s11#, #a3#" },
{ 60750, "inv_gauntlets_06", "=q2=Sentinel's Gauntlets", "=ds=#s9#, #a3#" },
{ 60751, "INV_Shoulder_13", "=q2=Sentinel's Pauldrons", "=ds=#s3#, #a3#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Revered", "" },
+ { 0, "Ability_Racial_ShadowMeld", "=q6=Revered", "" },
{ 60752, "INV_Spear_08", "=q3=Sentinel's Glaive", "=ds=#h1#, #w10#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Exalted", "" },
+ { 0, "Ability_Racial_ShadowMeld", "=q6=Exalted", "" },
{ 80305, "inv_misc_tournaments_tabard_nightelf", "=q1=Darnassus Tabard", "=ds=#s7#" },
};
Stormwind = {
- { 0, "INV_Staff_13", "=q2=Exalted", "" },
- { 80320, "INV_Shirt_GuildTabard_01", "=q1=Stormwind Tabard", "=ds=#s7#" },
+ { 0, "INV_BannerPVP_02", "=q6=Exalted", "" },
+ { 81225, "Ability_Mount_RidingHorse", "=q4=Armored Stormwind Warhorse", "=ds=#s7#"},
+ { 80320, "inv_misc_tournaments_tabard_human", "=q1=Stormwind Tabard", "=ds=#s7#" },
};
GnomereganExiles = {
- { 0, "INV_Staff_13", "=q2=Exalted", "" },
+ { 0, "INV_Gizmo_02", "=q6=Exalted", "" },
{ 81192, "INV_Misc_Gear_01", "=q4=Black Scrapforged Mechaspider", "=ds=#e7#" },
{ 81193, "INV_Misc_Gear_01", "=q4=Blue Scrapforged Mechaspider", "=ds=#e7#" },
{ 81194, "INV_Misc_Gear_01", "=q4=Green Scrapforged Mechaspider", "=ds=#e7#" },
@@ -735,50 +736,51 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80306, "inv_misc_tournaments_tabard_gnome", "=q1=Gnomeregan Tabard", "=ds=#s7#" },
};
DarkspearTrolls = {
- { 0, "inv_misc_head_troll_01", "=q6=#r3#", "" },
+ { 0, "Racial_Troll_Berserk", "=q6=#r3#", "" },
{ 83064, "spell_nature_agitatingtotem", "=q3=Hexed Voodoo Pads", "=ds=#s3#, #a1#" },
- { 0, "inv_misc_head_troll_01", "=q6=#r4#", "" },
+ { 0, "", "", "" },
+ { 0, "Racial_Troll_Berserk", "=q6=#r4#", "" },
{ 80806, "INV_Banner_01", "=q3=Healing Ward", "=ds=#s14#" },
{ 80785, "INV_Potion_07", "=q3=Bottle of Good Mojo", "=ds=#s15#" },
{ 80797, "INV_Jewelry_Necklace_02", "=q3=Pendant of Troll Regeneration", "=ds=#s2#" },
{ 0, "", "", "" },
- { 0, "inv_misc_head_troll_01", "=q6=#r5#", "" },
+ { 0, "Racial_Troll_Berserk", "=q6=#r5#", "" },
{ 81183, "Ability_Hunter_Pet_WindSerpent", "=q1=Sunscale Hatchling", "=ds=#e15#" },
{ 80304, "inv_misc_tournaments_tabard_troll", "=q1=Darkspear Tribe Tabard", "=ds=#s7#" },
{ 81182, "Ability_Mount_Raptor", "=q4=Armored Darkspear Raptor", "=ds=#e7#" },
},
DurotarLaborUnion = {
- { 0, "INV_Staff_13", "=q2=Friendly", "" },
+ { 0, "INV_Misc_Coin_01", "=q6=Friendly", "" },
{ 50068, "Spell_Nature_GuardianWard", "=q1=Green Water Snake", "=ds=#e15#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Revered", "" },
+ { 0, "INV_Misc_Coin_01", "=q6=Revered", "" },
{ 81196, "INV_Scroll_06", "=q3=Schematic: Goblin Radio", "=ds=#p5# #m14#" },
{ 10585, "INV_Gizmo_GoblinBoomBox_01", "=q3=Goblin Radio KABOOM-Box X23B76", "=ds=#e34#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Exalted", "" },
+ { 0, "INV_Misc_Coin_01", "=q6=Exalted", "" },
{ 81190, "INV_Misc_Key_06", "=q4=Red Shredder X-0524A", "=ds=#e7#, Goblin Only" },
{ 81191, "INV_Misc_Key_05", "=q4=Green Shredder X-0524B", "=ds=#e7#, Goblin Only" },
- { 81089, "inv_shirt_guildtabard_01", "=q1=Durotar Labor Union Tabard", "=ds=#s7#" },
+ { 81089, "inv_misc_tabard_kezan", "=q1=Durotar Labor Union Tabard", "=ds=#s7#" },
};
Undercity = {
- { 0, "inv_misc_head_undead_02", "=q6=#r5#", "" },
+ { 0, "Spell_Shadow_RaiseDead", "=q6=#r5#", "" },
{ 81244, "Ability_Mount_Undeadhorse", "=q4=Armored Ebon Deathcharger", "=ds=#e7#" },
- { 81245, "Ability_Mount_Undeadhorse", "=q4=Armored Crimson Deathcharger", "=ds#e7#" },
+ { 81245, "Ability_Mount_Undeadhorse", "=q4=Armored Crimson Deathcharger", "=ds=#e7#" },
{ 81246, "Ability_Mount_Undeadhorse", "=q4=Armored Emerald Deathcharger", "=ds=#e7#" },
{ 81247, "Ability_Mount_Undeadhorse", "=q4=Armored Ivory Deathcharger", "=ds=#e7#" },
{ 80309, "inv_misc_tournaments_tabard_scourge", "=q1=Undercity Tabard", "=ds=#s7#" },
};
Orgrimmar = {
- { 0, "INV_Staff_13", "=q2=Honored", "" },
+ { 0, "INV_BannerPVP_01", "=q6=Honored", "" },
{ 81216, "inv_helmet_08", "=q2=Fur-Lined Orcish Helm", "=ds=#s1#, #a2#" },
{ 81217, "inv_helmet_08", "=q2=Protective Orcish Helm", "=ds=#s1#, #a3#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Exalted", "" },
+ { 0, "INV_BannerPVP_01", "=q6=Exalted", "" },
{ 81241, "Ability_Hunter_Pet_Wolf", "=q4=Armored Orgrimmar Wolf", "=ds=#e7#" },
{ 80307, "inv_misc_tournaments_tabard_orc", "=q1=Orgrimmar Tabard", "=ds=#s7#" },
};
ThunderBluff = {
- { 0, "INV_Staff_13", "=q2=Revered", "" },
+ { 0, "INV_Misc_Foot_Centaur", "=q6=Revered", "" },
{ 81199, "INV_Staff_03", "=q3=Ancestral War Totem", "=ds=#h2#, #w6#" },
{ 81218, "inv_chest_plate08", "=q2=Chieftain's Ceremonial Harness", "=ds=#s5#, #a2#" },
{ 81219, "inv_boots_plate_05", "=q2=Chieftain's Ceremonial Anklewraps", "=ds=#s12#, #a2#" },
@@ -786,7 +788,7 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 81221, "INV_Belt_13", "=q2=Chieftain's Ceremonial Belt", "=ds=#s10#, #a2#" },
{ 81222, "INV_Gauntlets_09", "=q2=Chieftain's Ceremonial Handwraps", "=ds=#s9#, #a2#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q2=Exalted", "" },
+ { 0, "INV_Misc_Foot_Centaur", "=q6=Exalted", "" },
{ 81167, "INV_Shoulder_06", "=q3=Chieftain's Ceremonial Mantle", "=ds=#s3#, #a2#" },
{ 81223, "INV_Helmet_04", "=q3=Chieftain's Ceremonial Headdress", "=ds=#s1#, #a2#" },
{ 81198, "Ability_Mount_Kodo_01", "=q4=Armored Thunder Bluff Kodo", "=ds=#e7#" },
@@ -794,19 +796,20 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80308, "inv_misc_tournaments_tabard_tauren", "=q1=Thunder Bluff Tabard", "=ds=#s7#" },
};
Dalaran = {
- { 0, "INV_Staff_13", "=q2=Revered", "" },
+ { 0, "Spell_Holy_MagicalSentry", "=q6=Revered", "" },
{ 60728, "INV_Boots_05", "=q3=Boots of the Hermit Magi", "=ds=#s12#, #a1#" },
{ 60730, "INV_Belt_33", "=q3=Girdle of the Warden", "=ds=#s10#, #a4#" },
{ 60727, "INV_Shoulder_18", "=q3=Pauldrons of Sealed Magics", "=ds=#s3#, #a3#" },
{ 60726, "INV_Shield_06", "=q3=Spellguard's Shield", "=ds=#w8#, #h4#" },
{ 60729, "INV_Gauntlets_09", "=q3=Skulker's Gloves", "=ds=#s9#, #a2#" },
{ 0, "", "", "" },
- { 0, "INV_Staff_13", "=q3=Exalted", "" },
+ { 0, "Spell_Holy_MagicalSentry", "=q6=Exalted", "" },
{ 60724, "INV_Helmet_11", "=q4=Dalarani Conjurer's Hat", "=ds=#s1#, #a1#" },
{ 60725, "INV_Jewelry_Ring_34", "=q4=Ring of Flowing Leylines", "=ds=#s13#" },
+ { 81289, "INV_Shirt_GuildTabard_01", "=q4=Dalaran Tabard", "=ds=#s13#" },
};
Wildhammer = {
- { 0, "inv_misc_tabard_wildhammerclan", "=q3=Exalted", "" },
+ { 0, "Ability_Hunter_EagleEye", "=q6=Exalted", "" },
{ 81185, "Ability_Mount_Gryphon_01", "=q3=Aerie Peak Gryphon", "=ds=#e7#" },
{ 81186, "Ability_Mount_Gryphon_01", "=q3=Armored Aerie Peak Gryphon", "=ds=#e7#" },
{ 81243, "inv_misc_birdbeck_01", "=q1=Beaky", "=ds=#e15#" },
diff --git a/Locale/locale.en.lua b/Locale/locale.en.lua
index d4d19e5..5516317 100644
--- a/Locale/locale.en.lua
+++ b/Locale/locale.en.lua
@@ -36,14 +36,19 @@ AL:RegisterTranslations("enUS", function() return {
["ALT+Click to use WishList."] = true,
["Left-click to open AtlasLoot.\nMiddle-click for AtlasLoot options.\nRight-click and drag to move this button."] = true,
["Various Locations"] = true,
- ["NoticeFrame"] = "If you find anything missing, please report it at |cffbe5effhttps://github.com/|cffE40303L|cffFF8C00e|cffFFED00x|cff008026i|cff24408Ee|cff732982b|cff5BCEFAe|cffF5A9B8a|cffFFFFFFn|cffbe5eff/AtlasLoot/issues|r or mail |cff5BCEFAL|cffF5A9B8e|cffFFFFFFx|cffF5A9B8i|cff5BCEFAe|r.",
+ ["Blasted Lands"] = true,
+ ["Eastern Plaguelands"] = true,
+ ["Deadwind Pass"] = true,
+ ["Tanaris"] = true,
+ ["Desolace"] = true,
+ ["Moomoo Grove"] = true,
+ ["NoticeFrame"] = " ",
["Toggle AL Panel"] = true,
[" is safe."] = true,
["Server queried for "] = true,
[". Right click on any other item to refresh the loot page."] = true,
["Level 60"] = true,
["|cffff0000(unsafe)"] = true,
- ["Misc"] = true,
["Test"] = true,
["Rewards"] = true,
["Raid"] = true,
@@ -152,26 +157,10 @@ AL:RegisterTranslations("enUS", function() return {
["This item is not available on your server or your battlegroup yet."] = true,
["This item is unsafe. To view this item without the risk of disconnection, you need to have first seen it in the game world. This is a restriction enforced by Blizzard since Patch 1.10."] = true,
["You can right-click to attempt to query the server. You may be disconnected."] = true,
- ["Mount"] = true,
- ["Enchant"] = true,
- ["Trade Goods"] = true,
- ["Scope"] = true,
- ["Pet"] = true,
- ["Darkmoon Faire Card"] = true,
- ["Book"] = true,
- ["Banner"] = true,
["Set"] = true,
["Set: "] = true,
- ["Token"] = true,
["Token Hand-Ins"] = true,
["Crafting Reagent"] = true,
- ["Skinning Knife"] = true,
- ["Herbalism Knife"] = true,
- ["Fish"] = true,
- ["Combat Pet"] = true,
- ["Fireworks"] = true,
- ["Cloak"] = true,
- ["Weapons"] = true,
["Classes"] = true,
["This Item Begins a Quest"] = true,
["Quest Item"] = true,
@@ -328,7 +317,7 @@ AL:RegisterTranslations("enUS", function() return {
["Thick Draenic Armor"] = true,
["Fel Skin"] = true,
["Strength of the Clefthoof"] = true,
- ["Dalaran"] = "|cff2773ffDalaran",
+ ["Dalaran"] = true,
["Red Dragon Mail"] = true,
["Green Dragon Mail"] = true,
["Blue Dragon Mail"] = true,
@@ -505,7 +494,7 @@ AL:RegisterTranslations("enUS", function() return {
["AQ20 Class Sets"] = true,
["AQ Enchants"] = true,
["AQ Opening Quest Chain"] = true,
- ["Pre 60 Sets"] = true,
+ ["Sets"] = true,
["Crafted Sets"] = true,
["Crafted Epic Weapons"] = true,
["Zul'Gurub Sets"] = true,
@@ -513,7 +502,6 @@ AL:RegisterTranslations("enUS", function() return {
["ZG Enchants"] = true,
["Dungeon 1/2 Sets"] = true,
["Dungeon Set 1"] = true,
- ["Dungeon Set 1"] = true,
["Dungeon 1 Set"] = true,
["Dungeon 2 Set"] = true,
["D2 Summonable"] = true,
@@ -561,7 +549,6 @@ AL:RegisterTranslations("enUS", function() return {
["Level 30-39"] = true,
["Level 40-49"] = true,
["Level 50-60"] = true,
- ["Trash Mobs"] = true,
["Dungeon Set 2 Summonable"] = true,
["Theldren"] = true,
["Sothos and Jarien"] = true,
@@ -692,7 +679,6 @@ AL:RegisterTranslations("enUS", function() return {
["Henry Stern"] = true,
["Aggem Thorncurse"] = true,
["Roogug"] = true,
- ["Rajaxx's Captains"] = true,
["Razorfen Spearhide"] = true,
["Rethilgore"] = true,
["Kalldan Felmoon"] = true,
@@ -775,73 +761,11 @@ AL:RegisterTranslations("enUS", function() return {
["Midsummer Fire Festival"] = true,
["Noblegarden"] = true,
["Stranglethorn Fishing Extravaganza"] = true,
- ["Highlord Omokk"] = true,
- ["Shadow Hunter Vosh'gajin"] = true,
- ["War Master Voone"] = true,
- ["Mor Grayhoof"] = true,
- ["Mother Smolderweb"] = true,
- ["Gizrul the Slavener"] = true,
- ["Overlord Wyrmthalak"] = true,
- ["Pyroguard Emberseer"] = true,
- ["Solakar Flamewreath"] = true,
- ["Warchief Rend Blackhand"] = true,
- ["Gyth"] = true,
- ["The Beast"] = true,
- ["General Drakkisath"] = true,
- ["Razorgore the Untamed"] = true,
- ["Vaelastrasz the Corrupt"] = true,
- ["Broodlord Lashlayer"] = true,
- ["Firemaw"] = true,
- ["Ebonroc"] = true,
- ["Flamegor"] = true,
- ["Chromaggus"] = true,
- ["Nefarian"] = true,
- ["Lucifron"] = true,
- ["Magmadar"] = true,
- ["Gehennas"] = true,
- ["Garr"] = true,
- ["Shazzrah"] = true,
- ["Baron Geddon"] = true,
- ["Golemagg the Incinerator"] = true,
- ["Sulfuron Harbinger"] = true,
- ["Ragnaros"] = true,
- ["Patchwerk"] = true,
- ["Grobbulus"] = true,
- ["Gluth"] = true,
- ["Thaddius"] = true,
- ["Anub'Rekhan"] = true,
["Grand Widow Faerlina"] = true,
- ["Maexxna"] = true,
["Instructor Razuvious"] = true,
["Gothik the Harvester"] = true,
- ["The Four Horsemen"] = true,
["Noth the Plaguebringer"] = true,
["Heigan the Unclean"] = true,
- ["Loatheb"] = true,
- ["Sapphiron"] = true,
- ["Kel'Thuzad"] = true,
- ["Onyxia"] = true,
- ["Kirtonos the Herald"] = true,
- ["Jandice Barov"] = true,
- ["Rattlegore"] = true,
- ["Ras Frostwhisper"] = true,
- ["Instructor Malicia"] = true,
- ["Doctor Theolen Krastinov"] = true,
- ["Lorekeeper Polkelt"] = true,
- ["The Ravenian"] = true,
- ["Lord Alexei Barov"] = true,
- ["Darkmaster Gandling"] = true,
- ["Hearthsinger Forresten"] = true,
- ["The Unforgiven"] = true,
- ["Timmy the Cruel"] = true,
- ["Cannon Master Willey"] = true,
- ["Archivist Galford"] = true,
- ["Balnazzar"] = true,
- ["Baroness Anastari"] = true,
- ["Nerub'enkan"] = true,
- ["Maleki the Pallid"] = true,
- ["Magistrate Barthilas"] = true,
- ["Ramstein the Gorger"] = true,
["Keys"] = true,
["Blackfathom Deeps"] = "|cffffffff[23-32]|cffffd200 Blackfathom Deeps",
["Lady Sarevess"] = true,
@@ -1184,7 +1108,6 @@ AL:RegisterTranslations("enUS", function() return {
["Neck"] = true,
["Shoulder"] = true,
["Back"] = true,
- ["Chest"] = true,
["Shirt"] = true,
["Tabard"] = true,
["Wrist"] = true,
@@ -1207,7 +1130,6 @@ AL:RegisterTranslations("enUS", function() return {
["Gun"] = true,
["Mace"] = true,
["Polearm"] = true,
- ["Shield"] = true,
["Staff"] = true,
["Sword"] = true,
["Thrown"] = true,
@@ -1357,7 +1279,6 @@ AL:RegisterTranslations("enUS", function() return {
["Shadeflayer Goliath"] = true,
["Widow of the Woods"] = true,
["M-0L1Y"] = true,
- ["Wardens of Time"] = true,
["Blood Ring Friendly Rewards"] = true,
["Blood Ring Honored Rewards"] = true,
["Blood Ring Revered Rewards"] = true,
@@ -1390,7 +1311,6 @@ AL:RegisterTranslations("enUS", function() return {
["WSG 40-49 Exalted Rewards"] = true,
["WSG 50-59 Exalted Rewards"] = true,
["WSG 60 Exalted Rewards"] = true,
-
["Neutral"] = true,
["Friendly"] = true,
["Honored"] = true,
@@ -1402,16 +1322,16 @@ AL:RegisterTranslations("enUS", function() return {
["Cenarion Circle"] = true,
["Darkmoon Faire"] = true,
["The Defilers"] = true,
- ["Frostwolf Clan"] = "|cffff0000Frostwolf Clan",
+ ["Frostwolf Clan"] = true,
["Hydraxian Waterlords"] = true,
["Gelkis Clan Centaur"] = true,
["The League of Arathor"] = true,
["Magram Clan Centaur"] = true,
- ["Stormpike Guard"] = "|cff2773ffStormpike Guard",
+ ["Stormpike Guard"] = true,
["Thorium Brotherhood"] = true,
["Timbermaw Hold"] = true,
["Wardens of Time"] = true,
- ["Wintersaber Trainers"] = "|cff2773ffWintersaber Trainers",
+ ["Wintersaber Trainers"] = true,
["Zandalar Tribe"] = true,
["Apprentice"] = true,
["Journeyman"] = true,
@@ -1538,23 +1458,22 @@ AL:RegisterTranslations("enUS", function() return {
["Huge Emerald"] = true,
["Dust of Deterioration"] = true,
["Leaded Vial"] = true,
- ["Silvermoon Remnant"] = "|cff2773ffSilvermoon Remnant",
- ["Revantusk Trolls"] = "|cffff0000Revantusk Trolls",
- ["Ironforge"] = "|cff2773ffIronforge",
- ["Darnassus"] = "|cff2773ffDarnassus",
- ["Stormwind"] = "|cff2773ffStormwind",
- ["Gnomeregan Exiles"] = "|cff2773ffGnomeregan Exiles",
- ["Darkspear Trolls"] = "|cffff0000Darkspear Trolls",
- ["Durotar Labor Union"] = "|cffff0000Durotar Labor Union",
- ["Wildhammer Clan"] = "|cff2773ffWildhammer Clan",
- ["Undercity"] = "|cffff0000Undercity",
- ["Orgrimmar"] = "|cffff0000Orgrimmar",
- ["Thunder Bluff"] = "|cffff0000Thunder Bluff",
+ ["Silvermoon Remnant"] = true,
+ ["Revantusk Trolls"] = true,
+ ["Ironforge"] = true,
+ ["Darnassus"] = true,
+ ["Stormwind"] = true,
+ ["Gnomeregan Exiles"] = true,
+ ["Darkspear Trolls"] = true,
+ ["Durotar Labor Union"] = true,
+ ["Wildhammer Clan"] = true,
+ ["Undercity"] = true,
+ ["Orgrimmar"] = true,
+ ["Thunder Bluff"] = true,
["Lower Karazhan Halls"] = "|cffff0000[RAID]|cffffd200 Lower Karazhan Halls",
["Emerald Sanctum"] = "|cffff0000[RAID]|cffffd200 Emerald Sanctum",
["Gilneas City"] = "|cffffffff[42-50]|cffffd200 Gilneas City",
["Matthias Holtz"] = true,
- ["Packmaster Ragetooth"] = true,
["Packmaster Ragetooth"] = true,
["Judge Sutherland"] = true,
["Dustivan Blackcowl"] = true,
@@ -1578,10 +1497,40 @@ AL:RegisterTranslations("enUS", function() return {
["Cloak"] = true,
["Chest"] = true,
["Bracer"] = true,
- ["Glove"] = true,
+ ["Gloves"] = true,
["Boots"] = true,
["2H Weapon"] = true,
["Weapon"] = true,
["Shield"] = true,
["Misc"] = true,
- } end)
+ ["Flasks"] = true,
+ ["Protection Potions"] = true,
+ ["Healing and Mana Potions"] = true,
+ ["Transmutes"] = true,
+ ["Defensive Potions and Elixirs"] = true,
+ ["Offensive Potions and Elixirs"] = true,
+ ["Other"] = true,
+ ["Helm"] = true,
+ ["Shoulders"] = true,
+ ["Bracers"] = true,
+ ["Belt"] = true,
+ ["Pants"] = true,
+ ["Bags"] = true,
+ ["Axes"] = true,
+ ["Swords"] = true,
+ ["Maces"] = true,
+ ["Fist"] = true,
+ ["Daggers"] = true,
+ ["Belt Buckles"] = true,
+ ["Equipment"] = true,
+ ["Trinkets"] = true,
+ ["Explosives"] = true,
+ ["Parts"] = true,
+ ["Rank 7-13"] = true,
+ ["Rank 11"] = true,
+ ["Rank 14"] = true,
+ ["Rank 2-9"] = true,
+ ["Donation Rewards"] = true,
+ ["Fashion"] = true,
+ }
+end)
diff --git a/PvP/Battlegrounds.en.lua b/PvP/Battlegrounds.en.lua
index 5a0e180..969972a 100644
--- a/PvP/Battlegrounds.en.lua
+++ b/PvP/Battlegrounds.en.lua
@@ -702,9 +702,9 @@ AtlasLoot_Data["AtlasLootBGItems"] = {
{ 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "=q1=#m4# =ds=#s7#" },
};
WSGRepFriendly = {
- { 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b3#" },
+ { 0, "", "", "" },
{ 21566, "INV_Misc_Rune_05", "=q3=Rune of Perfection", "=ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" },
{ 21565, "INV_Misc_Rune_05", "=q3=Rune of Perfection", "=ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" },
{ 0, "", "", "" },
@@ -718,8 +718,8 @@ AtlasLoot_Data["AtlasLootBGItems"] = {
{ 17349, "INV_Potion_39", "=q1=Superior Healing Draught", "=ds=#e1#" },
{ 17352, "INV_Potion_81", "=q1=Superior Mana Draught", "=ds=#e1#" },
{ 0, "", "", "" },
- { 0, "", "", "" },
{ 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b4#" },
+ { 0, "", "", "" },
{ 21566, "INV_Misc_Rune_05", "=q3=Rune of Perfection", "=ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" },
{ 21565, "INV_Misc_Rune_05", "=q3=Rune of Perfection", "=ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" },
{ 0, "", "", "" },
diff --git a/Sets/sets.lua b/Sets/sets.lua
index 631d15c..41186d6 100644
--- a/Sets/sets.lua
+++ b/Sets/sets.lua
@@ -1081,13 +1081,13 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 17204, "INV_Misc_Gem_Pearl_05", "=q5=Eye of Sulfuras", "=q1=#m31#", " 3.42%" },
{ 18564, "Spell_Ice_Lament", "=q5=Bindings of the Windseeker", "=ds=#m9# =q1=#m3#", " 3.74%" },
{ 18563, "Spell_Ice_Lament", "=q5=Bindings of the Windseeker", "=ds=#m10# =q1=#m3#", " 3.78%" },
- { 0, "", "", "" },
- { 0, "", "", "" },
- { 0, "", "", "" },
- { 0, "", "", "" },
{ 17782, "INV_Jewelry_Amulet_04", "=q5=Talisman of Binding Shard", "=ds=#s2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
+ { 61184, "Inv_weapon_shortblade_23", "=q5=The Scythe of Elune", "=ds=#m2#", "0.85%" },
+ { 0, "", "", "" },
+ { "e57518", "inv_misc_gem_pearl_04", "=q5=Eternal Dreamstone Shard", "=q1=Enchanting"},
+ { 0, "", "", "" },
{ 22631, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9# =q9=#c5#"},
{ 22589, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9# =q10=#c3#"},
{ 22630, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9# =q11=#c8#"},
@@ -1099,7 +1099,8 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 23051, "INV_Spear_05", "=q5=Glaive of the Defender", "=ds=#h3#, #w10# =q17=#c9#" },
+ { 0, "", "", "" },
+ { 0, "", "", "" },
{ 13262, "INV_Sword_48", "=q5=Ashbringer", "=ds=#h2#, #w10#" },
};
RareMounts = {
@@ -1193,27 +1194,26 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 8628, "Ability_Mount_Blackpanther", "=q1=Reins of the Spotted Nightsaber", "=ds=#e7#" },
};
Tabards = {
+ { 15196, "INV_Misc_TabardPVP_01", "=q1=Private's Tabard", "PvP =q8=#m7#" },
+ { 15198, "INV_Misc_TabardPVP_03", "=q1=Knight's Colors", "PvP =q8=#m7#" },
+ { 19506, "INV_Shirt_GuildTabard_01", "=q1=Silverwing Battle Tabard", "PvP =q8=#m7#" },
+ { 20132, "INV_Shirt_GuildTabard_01", "=q1=Arathor Battle Tabard", "PvP =q8=#m7#" },
+ { 19032, "INV_Shirt_GuildTabard_01", "=q1=Stormpike Battle Tabard", "PvP =q8=#m7#" },
{ 0, "", "", "" },
- { 15196, "INV_Misc_TabardPVP_01", "=q1=Private's Tabard", "=ds=#s7# =q8=#m7#" },
- { 15198, "INV_Misc_TabardPVP_03", "=q1=Knight's Colors", "=ds=#s7# =q8=#m7#" },
- { 19506, "INV_Shirt_GuildTabard_01", "=q1=Silverwing Battle Tabard", "=ds=#s7# =q8=#m7#" },
- { 20132, "INV_Shirt_GuildTabard_01", "=q1=Arathor Battle Tabard", "=ds=#s7# =q8=#m7#" },
- { 19032, "INV_Shirt_GuildTabard_01", "=q1=Stormpike Battle Tabard", "=ds=#s7# =q8=#m7#" },
- { 0, "", "", "" },
- { 19160, "INV_Shirt_GuildTabard_01", "=q1=Contest Winner's Tabard", "=ds=#s7#" },
- { 22999, "INV_Shirt_GuildTabard_01", "=q1=Tabard of the Agent Dawn", "=ds=#s7#" },
- { 23192, "INV_Misc_Cape_18", "=q2=Tabard of the Scarlet Crusade", "=ds=#s7#" },
- { 23705, "INV_Misc_TabardPVP_02", "=q4=Tabard of Flame", "=ds=#s7#" },
- { 23709, "INV_Misc_TabardPVP_01", "=q4=Tabard of Frost", "=ds=#s7#" },
+ { 5976, "INV_Shirt_GuildTabard_01", "Guild Tabard", "Vendor" },
+ { 19160, "INV_Shirt_GuildTabard_01", "=q1=Contest Winner's Tabard", "Slow & Steady Challenge" },
+ { 80187, "INV_Shirt_GuildTabard_01", "=q1=Contest Winner's Tabard", "Hardcore Challenge" },
+ { 61369, "INV_Shirt_GuildTabard_01", "Ravenshire Tabard", "#m4#" },
+ { 23192, "INV_Misc_Cape_18", "=q2=Tabard of the Scarlet Crusade", "Drop" },
+ { 61368, "INV_Shirt_GuildTabard_01", "Greymane Tabard", "Drop" },
+ { 22999, "INV_Shirt_GuildTabard_01", "=q1=Tabard of the Agent Dawn", "Vendor" },
{ 0, "", "", "" },
{ 0, "", "", "" },
- { 0, "", "", "" },
- { 0, "", "", "" },
- { 15197, "INV_Misc_TabardPVP_02", "=q1=Scout's Tabard", "=ds=#s7# =q6=#m6#" },
- { 15199, "INV_Misc_TabardPVP_04", "=q1=Stone Guard's Herald", "=ds=#s7# =q6=#m6#" },
- { 19505, "INV_Shirt_GuildTabard_01", "=q1=Warsong Battle Tabard", "=ds=#s7# =q6=#m6#" },
- { 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "=ds=#s7# =q6=#m6#" },
- { 19031, "INV_Shirt_GuildTabard_01", "=q1=Frostwolf Battle Tabard", "=ds=#s7# =q6=#m6#" },
+ { 15197, "INV_Misc_TabardPVP_02", "=q1=Scout's Tabard", "PvP =q6=#m6#" },
+ { 15199, "INV_Misc_TabardPVP_04", "=q1=Stone Guard's Herald", "PvP =q6=#m6#" },
+ { 19505, "INV_Shirt_GuildTabard_01", "=q1=Warsong Battle Tabard", "PvP =q6=#m6#" },
+ { 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "PvP =q6=#m6#" },
+ { 19031, "INV_Shirt_GuildTabard_01", "=q1=Frostwolf Battle Tabard", "PvP =q6=#m6#" },
};
WorldEpics1 = {
{ 0, "", "", "" },
@@ -1257,7 +1257,6 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
- { 0,"","","" },
{ 810, "INV_Hammer_11", "=q4=Hammer of the Northern Wind", "=ds=#h3#, #w6#", "" },
{ 809, "INV_Sword_28", "=q4=Bloodrazor", "=ds=#h3#, #w10#", "" },
{ 871, "INV_Axe_17", "=q4=Flurry Axe", "=ds=#h1#, #w1#", "" },
@@ -1344,4 +1343,60 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 21277,"Ability_Hunter_Pet_Gorilla","=q1=Tranquil Mechanical Yeti","=ds=#e15#" },
{ 12264,"INV_Box_PetCarrier_01","=q1=Worg Carrier","=ds=#e15#" },
};
+ -- Donation Tabards
+ DonationRewards1 = {
+ { 23705, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Flame", "Donation Reward" },
+ { 23709, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Frost", "Donation Reward" },
+ { 81085, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Nature", "Donation Reward" },
+ { 81082, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Brilliance", "Donation Reward" },
+ { 81083, "INV_Shirt_GuildTabard_01", "=q4=Tabard of the Void", "Donation Reward" },
+ { 81081, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Fury", "Donation Reward" },
+ { 81084, "INV_Shirt_GuildTabard_01", "=q4=Tabard of the Arcane", "Donation Reward" },
+ { 81204, "INV_Misc_TabardPVP_02", "=q4=Illidari Tabard", "Donation Reward" },
+ { 81088, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Summer Skies", "Donation Reward" },
+ { 81087, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Summer Flames", "Donation Reward" },
+ { 50092, "INV_Misc_TabardPVP_01", "=q4=Crimson Legion Tabard", "Donation Reward" },
+ { 81203, "INV_Misc_TabardPVP_01", "=q4=Violet Eye Tabard", "Donation Reward" },
+ { 50086, "INV_Misc_TabardPVP_01", "=q4=Stromgarde Tabard", "Donation Reward" },
+ { 50376, "INV_Misc_TabardPVP_01", "=q4=Hillsbrad Tabard", "Donation Reward" },
+ { 23710, "INV_Shirt_GuildTabard_01", "=q4=Darkmoon Faire Tabard", "Donation Reward" },
+ { 80310, "inv_misc_tournaments_tabard_bloodelf", "=q4=Sin'dorei Tabard", "Donation Reward" },
+ { 80314, "inv_misc_tabard_forsaken", "=q4=Undead Scourge Tabard", "Donation Reward" },
+ { 50091, "INV_Shirt_GuildTabard_01", "=q4=Black Mageweave Tabard", "Donation Reward" },
+ { 50044, "INV_Shirt_GuildTabard_01", "=q4=Gold Mageweave Tabard", "Donation Reward" },
+ { 50038, "INV_Shirt_GuildTabard_01", "=q4=Red Mageweave Tabard", "Donation Reward" },
+ },
+ --Fashion
+ DonationRewards2 = {
+ { 69146, "INV_Chest_Cloth_41", "=q4=Midnight Star Gown", "Donation Reward" },
+ { 69147, "INV_Chest_Cloth_41", "=q4=Evening Star Gown", "Donation Reward" },
+ { 69148, "INV_Chest_Cloth_41", "=q4=Twilight Star Gown", "Donation Reward" },
+ { 69149, "INV_Chest_Cloth_41", "=q4=Dusk Star Gown", "Donation Reward" },
+ { 69150, "INV_Chest_Cloth_41", "=q4=Dawn Star Gown", "Donation Reward" },
+ { 69151, "INV_Chest_Cloth_41", "=q4=Morning Star Gown", "Donation Reward" },
+ { 69119, "INV_Chest_Cloth_04", "=q4=Stormwind Archmage Robe", "Donation Reward" },
+ { 69123, "INV_Chest_Cloth_04", "=q4=Dalaran Archmage Robe", "Donation Reward" },
+ { 69120, "INV_Chest_Cloth_04", "=q4=Tirisfal Archmage Robe", "Donation Reward" },
+ { 69124, "INV_Chest_Cloth_04", "=q4=Lordaeron Archmage Robe", "Donation Reward" },
+ { 69118, "INV_Chest_Cloth_04", "=q4=Gilnean Archmage Robe", "Donation Reward" },
+ { 69122, "INV_Chest_Cloth_04", "=q4=Kul Tiras Archmage Robe", "Donation Reward" },
+ { 69121, "INV_Chest_Cloth_04", "=q4=Scarlet Archmage Robe", "Donation Reward" },
+ { 69125, "INV_Chest_Cloth_04", "=q4=Theramore Archmage Robe", "Donation Reward" },
+ { 69117, "INV_Chest_Cloth_04", "=q4=Jaina Proudmoore Robe", "Donation Reward" },
+ { 69127, "INV_Chest_Cloth_31", "=q4=Robes of the Lotus Pond", "Donation Reward" },
+ { 69131, "INV_Chest_Cloth_31", "=q4=Peach Garden Robes", "Donation Reward" },
+ { 69128, "INV_Chest_Cloth_31", "=q4=Robes of Spring", "Donation Reward" },
+ { 69129, "INV_Chest_Cloth_31", "=q4=Year of the Dragon Robes", "Donation Reward" },
+ { 69130, "INV_Chest_Cloth_31", "=q4=Traditional New Year Robes", "Donation Reward" },
+ { 69132, "INV_Chest_Cloth_31", "=q4=Blooming Wisteria Robes", "Donation Reward" },
+ { 41091, "INV_Chest_Cloth_07", "=q4=Apparel of the Bells", "Donation Reward" },
+ { 41092, "INV_Chest_Cloth_07", "=q4=Jingle Belle Frock", "Donation Reward" },
+ { 83479, "INV_Chest_Cloth_09", "=q4=Romantinc Pink Corset Dress", "Donation Reward" },
+ { 83478, "INV_Chest_Cloth_09", "=q4=Romantinc Red Corset Dress", "Donation Reward" },
+ { 69152, "INV_Boots_Fabric_01", "=q4=Silver Star Sandals", "Donation Reward" },
+ { 69101, "Spell_Shadow_Metamorphosis", "=q4=Blood Illidari Tatoos", "Donation Reward" },
+ { 69103, "Spell_Shadow_Metamorphosis", "=q4=Nether Illidari Tatoos", "Donation Reward" },
+ { 69100, "Spell_Shadow_Metamorphosis", "=q4=Illidari Tatoos", "Donation Reward" },
+ { 69102, "Spell_Shadow_Metamorphosis", "=q4=Void Illidari Tatoos", "Donation Reward" },
+ },
};
diff --git a/TableRegister/loottables.en.lua b/TableRegister/loottables.en.lua
index 59d2978..1ba7a9f 100644
--- a/TableRegister/loottables.en.lua
+++ b/TableRegister/loottables.en.lua
@@ -536,6 +536,9 @@ AtlasLoot_TableNames = {
["Tabards"] = { AL["Tabards"], "AtlasLootSetItems" },
["RarePets1"] = { AL["Rare Pets"], "AtlasLootSetItems" },
["RarePets2"] = { AL["Rare Pets"], "AtlasLootSetItems" },
+ --Turtle Wow
+ ["DonationRewards1"] = {AL["Donation Rewards"], "AtlasLootSetItems" },
+ ["DonationRewards2"] = {AL["Donation Rewards"], "AtlasLootSetItems" },
--Crafted Sets - Blacksmithing
["SteelPlate"] = { AL["Steel Plate"], "AtlasLootCrafting" },
["ImperialPlate"] = { AL["Imperial Plate"], "AtlasLootCrafting" },
@@ -730,6 +733,7 @@ AtlasLoot_TableNames = {
["MidsummerFestival"] = { AL["Midsummer Fire Festival"], "AtlasLootWorldEvents" },
["Noblegarden"] = { AL["Noblegarden"], "AtlasLootWorldEvents" },
["Valentineday"] = { AL["Love is in the Air"], "AtlasLootWorldEvents" },
+ ["Winterviel"] = { AL["Feast of Winter Veil"], "AtlasLootWorldEvents" },
["Winterviel1"] = { AL["Feast of Winter Veil"], "AtlasLootWorldEvents" },
["Winterviel2"] = { AL["Feast of Winter Veil"], "AtlasLootWorldEvents" },
["WintervielSnowball"] = { "Snowball", "AtlasLootWorldEvents" },
@@ -779,8 +783,8 @@ AtlasLoot_TableNames = {
--Timbermaw Hold
["Timbermaw"] = { AL["Timbermaw Hold"], "AtlasLootRepItems" },
--Wardens of Time
- ["Warderns1"] = { AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"], "AtlasLootRepItems" },
- ["Warderns2"] = { AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"], "AtlasLootRepItems" },
+ ["Wardens1"] = { AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"], "AtlasLootRepItems" },
+ ["Wardens2"] = { AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"], "AtlasLootRepItems" },
--Wintersaber Trainers
["Wintersaber1"] = { AL["Wintersaber Trainers"], "AtlasLootRepItems" },
--Zandalar Tribe
@@ -815,6 +819,13 @@ AtlasLoot_TableNames = {
["AlchemyExpert1"] = { AL["Alchemy"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["AlchemyArtisan1"] = { AL["Alchemy"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["AlchemyArtisan2"] = { AL["Alchemy"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
+ ["AlchemyFlasks1"] = { AL["Flasks"], "AtlasLootCrafting" },
+ ["AlchemyProtectionPots1"] = { AL["Protection Potions"], "AtlasLootCrafting" },
+ ["AlchemyHealingAndMana1"] = { AL["Healing and Mana Potions"], "AtlasLootCrafting" },
+ ["AlchemyTransmutes1"] = { AL["Transmutes"], "AtlasLootCrafting" },
+ ["AlchemyDefensive1"] = { AL["Defensive Potions and Elixirs"], "AtlasLootCrafting" },
+ ["AlchemyOffensive1"] = { AL["Offensive Potions and Elixirs"], "AtlasLootCrafting" },
+ ["AlchemyOther1"] = { AL["Other"], "AtlasLootCrafting" },
--BlackSmithing
["SmithingApprentice1"] = { AL["Blacksmithing"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["SmithingJourneyman1"] = { AL["Blacksmithing"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -831,6 +842,23 @@ AtlasLoot_TableNames = {
["Axesmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"], "AtlasLootCrafting" },
["Hammersmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"], "AtlasLootCrafting" },
["Swordsmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Swordsmith"], "AtlasLootCrafting" },
+ ["SmithingHelm1"] = { AL["Blacksmithing"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
+ ["SmithingShoulders1"] = { AL["Blacksmithing"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
+ ["SmithingChest1"] = { AL["Blacksmithing"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["SmithingChest2"] = { AL["Blacksmithing"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["SmithingBracers1"] = { AL["Blacksmithing"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
+ ["SmithingGloves1"] = { AL["Blacksmithing"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
+ ["SmithingBelt1"] = { AL["Blacksmithing"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
+ ["SmithingPants1"] = { AL["Blacksmithing"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
+ ["SmithingBoots1"] = { AL["Blacksmithing"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
+ ["SmithingAxes1"] = { AL["Blacksmithing"] .. ": " .. AL["Axes"], "AtlasLootCrafting" },
+ ["SmithingSwords1"] = { AL["Blacksmithing"] .. ": " .. AL["Swords"], "AtlasLootCrafting" },
+ ["SmithingMaces1"] = { AL["Blacksmithing"] .. ": " .. AL["Maces"], "AtlasLootCrafting" },
+ ["SmithingFist1"] = { AL["Blacksmithing"] .. ": " .. AL["Fist"], "AtlasLootCrafting" },
+ ["SmithingDaggers1"] = { AL["Blacksmithing"] .. ": " .. AL["Daggers"], "AtlasLootCrafting" },
+ ["SmithingMisc1"] = { AL["Blacksmithing"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
+ ["SmithingMisc2"] = { AL["Blacksmithing"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
+ ["SmithingBuckles1"] = { AL["Blacksmithing"] .. ": " .. AL["Belt Buckles"], "AtlasLootCrafting" },
--Enchanting
["EnchantingApprentice1"] = { AL["Enchanting"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["EnchantingJourneyman1"] = { AL["Enchanting"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -843,7 +871,7 @@ AtlasLoot_TableNames = {
["EnchantingCloak1"] = { AL["Enchanting"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
["EnchantingChest1"] = { AL["Enchanting"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["EnchantingBracer1"] = { AL["Enchanting"] .. ": " .. AL["Bracer"], "AtlasLootCrafting" },
- ["EnchantingGlove1"] = { AL["Enchanting"] .. ": " .. AL["Glove"], "AtlasLootCrafting" },
+ ["EnchantingGlove1"] = { AL["Enchanting"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["EnchantingBoots1"] = { AL["Enchanting"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["Enchanting2HWeapon1"] = { AL["Enchanting"] .. ": " .. AL["2H Weapon"], "AtlasLootCrafting" },
["EnchantingWeapon1"] = { AL["Enchanting"] .. ": " .. AL["Weapon"], "AtlasLootCrafting" },
@@ -859,6 +887,13 @@ AtlasLoot_TableNames = {
["EngineeringArtisan2"] = { AL["Engineering"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["Gnomish1"] = { AL["Engineering"] .. ": " .. AL["Gnomish Engineering"], "AtlasLootCrafting" },
["Goblin1"] = { AL["Engineering"] .. ": " .. AL["Goblin Engineering"], "AtlasLootCrafting" },
+ ["EngineeringEquipment1"] = { AL["Engineering"] .. ": " .. AL["Equipment"], "AtlasLootCrafting" },
+ ["EngineeringTrinkets1"] = { AL["Engineering"] .. ": " .. AL["Trinkets"], "AtlasLootCrafting" },
+ ["EngineeringExplosives1"] = { AL["Engineering"] .. ": " .. AL["Explosives"], "AtlasLootCrafting" },
+ ["EngineeringParts1"] = { AL["Engineering"] .. ": " .. AL["Parts"], "AtlasLootCrafting" },
+ ["EngineeringMisc1"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
+ ["EngineeringMisc2"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
+ ["EngineeringWeapons1"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Leatherworking
["LeatherApprentice1"] = { AL["Leatherworking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["LeatherJourneyman1"] = { AL["Leatherworking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -871,6 +906,19 @@ AtlasLoot_TableNames = {
["Dragonscale1"] = { AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"], "AtlasLootCrafting" },
["Elemental1"] = { AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"], "AtlasLootCrafting" },
["Tribal1"] = { AL["Leatherworking"] .. ": " .. AL["Tribal Leatherworking"], "AtlasLootCrafting" },
+ ["LeatherHelm1"] = { AL["Leatherworking"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
+ ["LeatherShoulders1"] = { AL["Leatherworking"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
+ ["LeatherCloak1"] = { AL["Leatherworking"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
+ ["LeatherChest1"] = { AL["Leatherworking"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["LeatherChest2"] = { AL["Leatherworking"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["LeatherBracers1"] = { AL["Leatherworking"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
+ ["LeatherGloves1"] = { AL["Leatherworking"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
+ ["LeatherBelt1"] = { AL["Leatherworking"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
+ ["LeatherPants1"] = { AL["Leatherworking"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
+ ["LeatherPants2"] = { AL["Leatherworking"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
+ ["LeatherBoots1"] = { AL["Leatherworking"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
+ ["LeatherBags1"] = { AL["Leatherworking"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
+ ["LeatherMisc1"] = { AL["Leatherworking"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Mining
["Mining1"] = { AL["Mining"], "AtlasLootCrafting" },
["Mining2"] = { AL["Mining"], "AtlasLootCrafting" },
@@ -889,6 +937,19 @@ AtlasLoot_TableNames = {
["TailoringArtisan3"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan4"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan5"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
+ ["TailoringHelm1"] = { AL["Tailoring"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
+ ["TailoringShoulders1"] = { AL["Tailoring"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
+ ["TailoringCloak1"] = { AL["Tailoring"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
+ ["TailoringChest1"] = { AL["Tailoring"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["TailoringChest2"] = { AL["Tailoring"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["TailoringBracers1"] = { AL["Tailoring"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
+ ["TailoringGloves1"] = { AL["Tailoring"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
+ ["TailoringBelt1"] = { AL["Tailoring"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
+ ["TailoringPants1"] = { AL["Tailoring"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
+ ["TailoringBoots1"] = { AL["Tailoring"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
+ ["TailoringBags1"] = { AL["Tailoring"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
+ ["TailoringShirt1"] = { AL["Tailoring"] .. ": " .. AL["Shirt"], "AtlasLootCrafting" },
+ ["TailoringMisc1"] = { AL["Tailoring"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Cooking
["CookingApprentice1"] = { AL["Cooking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["CookingJourneyman1"] = { AL["Cooking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1002,9 +1063,11 @@ AtlasLoot_TableNames = {
["COOKINGMENU"] = { "dummy", "dummy" },
["FIRSTAIDMENU"] = { "dummy", "dummy" },
["SURVIVALMENU"] = { "dummy", "dummy" },
+ ["WORLDBOSSMENU"] = { "dummy", "dummy" },
["WishList"] = { AL["WishList"], "AtlasLootCharDB" },
--If all else fails!
["EmptyInstance"] = { "AtlasLoot", "AtlasLootFallback" },
+
};
AtlasLoot_TableNamesBoss = {
@@ -1589,6 +1652,8 @@ AtlasLoot_TableNamesBoss = {
["WorldEpics1"] = { AL["World Epics"] .. " - " .. AL["Level 30-39"], "AtlasLootSetItems" },
["WorldEpics2"] = { AL["World Epics"] .. " - " .. AL["Level 40-49"], "AtlasLootSetItems" },
["WorldEpics3"] = { AL["World Epics"] .. " - " .. AL["Level 50-60"], "AtlasLootSetItems" },
+ ["DonationRewards1"] = {AL["Donation Rewards"], "AtlasLootSetItems" },
+ ["DonationRewards2"] = {AL["Donation Rewards"], "AtlasLootSetItems" },
},
--Crafted Sets - Blacksmithing
["Crafted Sets - Blacksmithing"] = {
@@ -1704,7 +1769,7 @@ AtlasLoot_TableNamesBoss = {
--- World Bosses ---
--------------------
- ["World Bosses"] = {
+ ["WorldBosses"] = {
["AAzuregos"] = { AL["Azuregos"], "AtlasLootWBItems" },
["ASpiritA"] = { AL["Spirit of Azuregos"], "AtlasLootWBItems" },
["Turtlhu"] = { "Turtlhu, the Black Turtle of Doom", "AtlasLootWBItems" },
@@ -1835,8 +1900,8 @@ AtlasLoot_TableNamesBoss = {
--Timbermaw Hold
["Timbermaw"] = { AL["Timbermaw Hold"], "AtlasLootRepItems" },
--Wardens of Time
- ["Warderns1"] = { AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"], "AtlasLootRepItems" },
- ["Warderns2"] = { AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"], "AtlasLootRepItems" },
+ ["Wardens1"] = { AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"], "AtlasLootRepItems" },
+ ["Wardens2"] = { AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"], "AtlasLootRepItems" },
--Wintersaber Trainers
["Wintersaber1"] = { AL["Wintersaber Trainers"], "AtlasLootRepItems" },
--Zandalar Tribe
@@ -1873,6 +1938,13 @@ AtlasLoot_TableNamesBoss = {
["AlchemyExpert1"] = { AL["Alchemy"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["AlchemyArtisan1"] = { AL["Alchemy"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["AlchemyArtisan2"] = { AL["Alchemy"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
+ ["AlchemyFlasks1"] = { AL["Flasks"], "AtlasLootCrafting" },
+ ["AlchemyProtectionPots1"] = { AL["Protection Potions"], "AtlasLootCrafting" },
+ ["AlchemyHealingAndMana1"] = { AL["Healing and Mana Potions"], "AtlasLootCrafting" },
+ ["AlchemyTransmutes1"] = { AL["Transmutes"], "AtlasLootCrafting" },
+ ["AlchemyDefensive1"] = { AL["Defensive Potions and Elixirs"], "AtlasLootCrafting" },
+ ["AlchemyOffensive1"] = { AL["Offensive Potions and Elixirs"], "AtlasLootCrafting" },
+ ["AlchemyOther1"] = { AL["Other"], "AtlasLootCrafting" },
--BlackSmithing
["SmithingApprentice1"] = { AL["Blacksmithing"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["SmithingJourneyman1"] = { AL["Blacksmithing"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1889,6 +1961,23 @@ AtlasLoot_TableNamesBoss = {
["Axesmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"], "AtlasLootCrafting" },
["Hammersmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"], "AtlasLootCrafting" },
["Swordsmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Swordsmith"], "AtlasLootCrafting" },
+ ["SmithingHelm1"] = { AL["Blacksmithing"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
+ ["SmithingShoulders1"] = { AL["Blacksmithing"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
+ ["SmithingChest1"] = { AL["Blacksmithing"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["SmithingChest2"] = { AL["Blacksmithing"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["SmithingBracers1"] = { AL["Blacksmithing"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
+ ["SmithingGloves1"] = { AL["Blacksmithing"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
+ ["SmithingBelt1"] = { AL["Blacksmithing"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
+ ["SmithingPants1"] = { AL["Blacksmithing"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
+ ["SmithingBoots1"] = { AL["Blacksmithing"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
+ ["SmithingAxes1"] = { AL["Blacksmithing"] .. ": " .. AL["Axes"], "AtlasLootCrafting" },
+ ["SmithingSwords1"] = { AL["Blacksmithing"] .. ": " .. AL["Swords"], "AtlasLootCrafting" },
+ ["SmithingMaces1"] = { AL["Blacksmithing"] .. ": " .. AL["Maces"], "AtlasLootCrafting" },
+ ["SmithingFist1"] = { AL["Blacksmithing"] .. ": " .. AL["Fist"], "AtlasLootCrafting" },
+ ["SmithingDaggers1"] = { AL["Blacksmithing"] .. ": " .. AL["Daggers"], "AtlasLootCrafting" },
+ ["SmithingMisc1"] = { AL["Blacksmithing"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
+ ["SmithingMisc2"] = { AL["Blacksmithing"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
+ ["SmithingBuckles1"] = { AL["Blacksmithing"] .. ": " .. AL["Belt Buckles"], "AtlasLootCrafting" },
--Enchanting
["EnchantingApprentice1"] = { AL["Enchanting"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["EnchantingJourneyman1"] = { AL["Enchanting"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1901,7 +1990,7 @@ AtlasLoot_TableNamesBoss = {
["EnchantingCloak1"] = { AL["Enchanting"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
["EnchantingChest1"] = { AL["Enchanting"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["EnchantingBracer1"] = { AL["Enchanting"] .. ": " .. AL["Bracer"], "AtlasLootCrafting" },
- ["EnchantingGlove1"] = { AL["Enchanting"] .. ": " .. AL["Glove"], "AtlasLootCrafting" },
+ ["EnchantingGlove1"] = { AL["Enchanting"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["EnchantingBoots1"] = { AL["Enchanting"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["Enchanting2HWeapon1"] = { AL["Enchanting"] .. ": " .. AL["2H Weapon"], "AtlasLootCrafting" },
["EnchantingWeapon1"] = { AL["Enchanting"] .. ": " .. AL["Weapon"], "AtlasLootCrafting" },
@@ -1915,8 +2004,16 @@ AtlasLoot_TableNamesBoss = {
["EngineeringExpert2"] = { AL["Engineering"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["EngineeringArtisan1"] = { AL["Engineering"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["EngineeringArtisan2"] = { AL["Engineering"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
+ ["EngineeringEquipment1"] = { AL["Engineering"] .. ": " .. AL["Equipment"], "AtlasLootCrafting" },
+ ["EngineeringTrinkets1"] = { AL["Engineering"] .. ": " .. AL["Trinkets"], "AtlasLootCrafting" },
+ ["EngineeringExplosives1"] = { AL["Engineering"] .. ": " .. AL["Explosives"], "AtlasLootCrafting" },
+ ["EngineeringParts1"] = { AL["Engineering"] .. ": " .. AL["Parts"], "AtlasLootCrafting" },
+ ["EngineeringMisc1"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
+ ["EngineeringMisc2"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
+ ["EngineeringWeapons1"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["Gnomish1"] = { AL["Engineering"] .. ": " .. AL["Gnomish Engineering"], "AtlasLootCrafting" },
["Goblin1"] = { AL["Engineering"] .. ": " .. AL["Goblin Engineering"], "AtlasLootCrafting" },
+
--Leatherworking
["LeatherApprentice1"] = { AL["Leatherworking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["LeatherJourneyman1"] = { AL["Leatherworking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1929,6 +2026,19 @@ AtlasLoot_TableNamesBoss = {
["Dragonscale1"] = { AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"], "AtlasLootCrafting" },
["Elemental1"] = { AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"], "AtlasLootCrafting" },
["Tribal1"] = { AL["Leatherworking"] .. ": " .. AL["Tribal Leatherworking"], "AtlasLootCrafting" },
+ ["LeatherHelm1"] = { AL["Leatherworking"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
+ ["LeatherShoulders1"] = { AL["Leatherworking"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
+ ["LeatherCloak1"] = { AL["Leatherworking"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
+ ["LeatherChest1"] = { AL["Leatherworking"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["LeatherChest2"] = { AL["Leatherworking"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["LeatherBracers1"] = { AL["Leatherworking"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
+ ["LeatherGloves1"] = { AL["Leatherworking"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
+ ["LeatherBelt1"] = { AL["Leatherworking"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
+ ["LeatherPants1"] = { AL["Leatherworking"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
+ ["LeatherPants2"] = { AL["Leatherworking"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
+ ["LeatherBoots1"] = { AL["Leatherworking"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
+ ["LeatherBags1"] = { AL["Leatherworking"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
+ ["LeatherMisc1"] = { AL["Leatherworking"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Mining
["Mining1"] = { AL["Mining"], "AtlasLootCrafting" },
["Mining2"] = { AL["Mining"], "AtlasLootCrafting" },
@@ -1947,6 +2057,19 @@ AtlasLoot_TableNamesBoss = {
["TailoringArtisan3"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan4"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan5"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
+ ["TailoringHelm1"] = { AL["Tailoring"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
+ ["TailoringShoulders1"] = { AL["Tailoring"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
+ ["TailoringCloak1"] = { AL["Tailoring"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
+ ["TailoringChest1"] = { AL["Tailoring"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["TailoringChest2"] = { AL["Tailoring"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
+ ["TailoringBracers1"] = { AL["Tailoring"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
+ ["TailoringGloves1"] = { AL["Tailoring"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
+ ["TailoringBelt1"] = { AL["Tailoring"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
+ ["TailoringPants1"] = { AL["Tailoring"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
+ ["TailoringBoots1"] = { AL["Tailoring"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
+ ["TailoringBags1"] = { AL["Tailoring"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
+ ["TailoringShirt1"] = { AL["Tailoring"] .. ": " .. AL["Shirt"], "AtlasLootCrafting" },
+ ["TailoringMisc1"] = { AL["Tailoring"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Cooking
["CookingApprentice1"] = { AL["Cooking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["CookingJourneyman1"] = { AL["Cooking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
diff --git a/WorldEvents/worldevents.lua b/WorldEvents/worldevents.lua
index 0991e3c..698e2b2 100644
--- a/WorldEvents/worldevents.lua
+++ b/WorldEvents/worldevents.lua
@@ -11,6 +11,8 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20656, "INV_Boots_Chain_09", "=q2=Abyssal Mail Sabatons", "=ds=#s12#, #a3# =q2=#e31#", "12.89%" },
{ 20513, "INV_Jewelry_Talisman_05", "=q2=Abyssal Crest", "=ds=#m3#", "100%" },
{ 0,"","","" },
+ { 0,"","","" },
+ { 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x81#", "=q1=#j16#" },
{ 20654, "INV_Staff_11", "=q3=Amethyst War Staff", "=ds=#w9#", "2.38%" },
{ 20653, "INV_Gauntlets_29", "=q2=Abyssal Plate Gauntlets", "=ds=#s9#, #a4# =q2=#e31#", "13.61%" },
@@ -18,14 +20,14 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20513, "INV_Jewelry_Talisman_05", "=q2=Abyssal Crest", "=ds=#m3#", "100%" },
{ 0,"","","" },
{ 0,"","","" },
- { 0,"","","" },
- { 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x83#", "=q1=#j18#" },
{ 20660, "INV_Spear_06", "=q3=Stonecutting Glaive", "=ds=#w7#", "2.22%" },
{ 20659, "INV_Gauntlets_32", "=q2=Abyssal Mail Handguards", "=ds=#s9#, #a3# =q2=#e31#", "12.64%" },
{ 20658, "INV_Boots_07", "=q2=Abyssal Leather Boots", "=ds=#s12#, #a2# =q2=#e31#", "13.16%" },
{ 20513, "INV_Jewelry_Talisman_05", "=q2=Abyssal Crest", "=ds=#m3#", "100%" },
{ 0,"","","" },
+ { 0,"","","" },
+ { 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x82#", "=q1=#j17#" },
{ 20663, "INV_Weapon_Bow_10", "=q3=Deep Strike Bow", "=ds=#w2#", "2.55%" },
{ 20661, "INV_Gauntlets_05", "=q2=Abyssal Leather Gloves", "=ds=#s9#, #a2# =q2=#e31#", "13.16%" },
@@ -40,6 +42,7 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20664, "INV_Belt_06", "=q2=Abyssal Cloth Sash", "=ds=#s10#, #a1# =q2=#e31#", "27.08%" },
{ 0,"","","" },
{ 0,"","","" },
+ { 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x87#", "=q1=#j16#" },
{ 20668, "INV_Pants_Mail_16", "=q3=Abyssal Mail Legguards", "=ds=#s11#, #a3# =q2=#e31#", "22.40%" },
{ 20669, "INV_Sword_35", "=q3=Darkstone Claymore", "=ds=#h2#, #w10#", "29.62%" },
@@ -47,7 +50,6 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20667, "INV_Belt_30", "=q2=Abyssal Leather Belt", "=ds=#s10#, #a2# =q2=#e31#", "29.04%" },
{ 0,"","","" },
{ 0,"","","" },
- { 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x84#", "=q1=#j18#" },
{ 20674, "INV_Pants_Cloth_04", "=q3=Abyssal Cloth Pants", "=ds=#s11#, #a1# =q2=#e31#", "21.83%" },
{ 20675, "INV_Axe_13", "=q3=Soulrender", "=ds=#h1#, #w1#", "29.73%" },
@@ -55,6 +57,7 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20673, "INV_Belt_26", "=q2=Abyssal Plate Girdle", "=ds=#s10#, #a4# =q2=#e31#", "27.11%" },
{ 0,"","","" },
{ 0,"","","" },
+ { 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x85#", "=q1=#j17#" },
{ 20671, "INV_Pants_Plate_12", "=q3=Abyssal Plate Legplates", "=ds=#s11#, #a4# =q2=#e31#", "22.63%" },
{ 20672, "INV_Wand_12", "=q3=Sparkling Crystal Wand", "=ds=#w12#", "28.90%" },
@@ -94,14 +97,14 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 83555, "INV_Misc_StoneTablet_01", "=q4=Abyssal Slate", "=ds=#m33#", "40%" },
};
ElementalInvasion = {
- { 0, "INV_Box_01", "=q6=#x92#", "=q1=#j15#, Un'goro Crater" },
+ { 0, "Spell_Fire_Elemental_Totem", "=q6=#x92#", "=q1=#j15#, Un'goro Crater" },
{ 83550, "Spell_Fire_Fire", "=q4=Primordial Flame", "=ds=#m33#", "100%" },
{ 18671, "INV_Mace_08", "=q3=Baron Charr's Sceptre", "=ds=#h3#, #w6#", "21%" },
{ 80850, "INV_Crown_01", "=q3=Circlet of the Living Volcano", "=ds=#s1#, #a1#", "15%" },
{ 18672, "INV_Misc_Orb_05", "=q2=Elemental Ember", "=ds=#s15#", "50%" },
{ 80849, "INV_Jewelry_Necklace_02", "=q2=Living Ember Pendant", "=ds=#s2#", "15%" },
{ 0,"","","" },
- { 0, "INV_Box_01", "=q6=#x94#", "=q1=#j16#, Winterspring" },
+ { 0, "Spell_Fire_Elemental_Totem", "=q6=#x94#", "=q1=#j16#, Winterspring" },
{ 83552, "INV_Stone_01", "=q4=Unmelting Ice", "=ds=#m33#", "100%" },
{ 18678, "INV_Jewelry_Necklace_03", "=q3=Tempestria's Frozen Necklace", "=ds=#s2#", "30%" },
{ 80843, "INV_Boots_Cloth_03", "=q3=Tideturner Boots", "=ds=#s12#, #a1#", "15%" },
@@ -109,14 +112,14 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 80844, "INV_Misc_Gem_Sapphire_01", "=q2=Tempestria's Frozen Heart", "=ds=#s15#", "15%" },
{ 21548, "INV_Scroll_03", "=q3=Pattern: Stormshroud Gloves", "=ds=#p7# #m14#", "20%" },
{ 0,"","","" },
- { 0, "INV_Box_01", "=q6=#x93#", "=q1=#j17#, Azshara" },
+ { 0, "Spell_Fire_Elemental_Totem", "=q6=#x93#", "=q1=#j17#, Azshara" },
{ 83551, "INV_Stone_14", "=q4=Evershifting Stone", "=ds=#m33#", "100%" },
{ 18673, "INV_Shield_03", "=q3=Avalanchion's Stony Hide", "=ds=#w8#", "30%" },
{ 80851, "INV_Bracer_06", "=q3=Earthclad Bracers", "=ds=#s8#, #a4#", "15%" },
{ 18674, "INV_Jewelry_Ring_14", "=q2=Hardened Stone Band", "=ds=#s13#", "50%" },
{ 80852, "INV_Jewelry_Necklace_06", "=q2=Earthshard Necklace", "=ds=#s2#", "15%" },
{ 0,"","","" },
- { 0, "INV_Box_01", "=q6=#x95#", "=q1=#j18#, Silithus" },
+ { 0, "Spell_Fire_Elemental_Totem", "=q6=#x95#", "=q1=#j18#, Silithus" },
{ 83553, "Spell_Nature_Cyclone", "=q4=Unyielding Gust", "=ds=#m33#", "100%" },
{ 18676, "INV_Belt_31", "=q3=Sash of the Windreaver", "=ds=#s10#, #a3#", "25%" },
{ 80853, "INV_Jewelry_Necklace_07", "=q3=Thunderstruck Talisman", "=ds=#s2#", "15%" },
@@ -386,32 +389,32 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 23078, "INV_Gauntlets_29", "=q3=Gauntlets of Undead Slaying", "=ds=#s9#, #a4#", "" },
};
ScourgeInvasionEvent2 = {
- { 0, "INV_Box_01", "=q6=Balzaphon", "=q1=Stratholme" },
+ { 0, "INV_Jewelry_Talisman_13", "=q6=Balzaphon", "=q1=Stratholme" },
{ 23126, "INV_Belt_13", "=q3=Waistband of Balzaphon", "=ds=#s10#, #a1#", "27.38%" },
{ 23125, "INV_Belt_18", "=q3=Chains of the Lich", "=ds=#s2#", "19.89%" },
{ 23124, "INV_Staff_07", "=q3=Staff of Balzaphon", "=ds=#w9#", "24.74%" },
{ 0,"","","" },
- { 0, "INV_Box_01", "=q6=Lord Blackwood", "=q1=Scholomance" },
+ { 0, "INV_Jewelry_Talisman_13", "=q6=Lord Blackwood", "=q1=Scholomance" },
{ 23132, "INV_Sword_05", "=q3=Lord Blackwood's Blade", "=ds=#h1#, #w10#", "12.83%" };
{ 23156, "INV_Misc_Bone_10", "=q3=Blackwood's Thigh", "=ds=#s15#", "45.21%" };
{ 23139, "INV_Shield_02", "=q3=Lord Blackwood's Buckler", "=ds=#w8#", "38.75%" };
{ 0,"","","" },
- { 0, "INV_Box_01", "=q6=Revanchion", "=q1=Dire Maul" },
+ { 0, "INV_Jewelry_Talisman_13", "=q6=Revanchion", "=q1=Dire Maul" },
{ 23127, "INV_Misc_Cape_02", "=q3=Cloak of Revanchion", "=ds=#s4#", "38.49%" },
{ 23129, "INV_Bracer_13", "=q3=Bracers of Mending", "=ds=#s8#, #a1#", "39.61%" },
{ 23128, "INV_Gauntlets_16", "=q3=The Shadow's Grasp", "=ds=#s9#, #a1#", "21.81%" },
{ 0,"","","" },
- { 0, "INV_Box_01", "=q6=Scorn", "=q1=Scarlet Monastery - Graveyard" },
+ { 0, "INV_Jewelry_Talisman_13", "=q6=Scorn", "=q1=Scarlet Monastery - Graveyard" },
{ 23169, "INV_Jewelry_Necklace_03", "=q3=Scorn's Icy Choker", "=ds=#s2#", "27.49%" },
{ 23170, "INV_Gauntlets_11", "=q3=The Frozen Clutch", "=ds=#s9#, #a3#", "56.15%" },
{ 23168, "INV_Weapon_ShortBlade_07", "=q3=Scorn's Focal Dagger", "=ds=#h1#, #w4#", "16.36%" },
{ 0,"","","" },
- { 0, "INV_Box_01", "=q6=Sever", "=q1=Shadowfang Keep" },
+ { 0, "INV_Jewelry_Talisman_13", "=q6=Sever", "=q1=Shadowfang Keep" },
{ 23173, "INV_Pants_06", "=q3=Abomination Skin Leggings", "=ds=#s11#, #a1#", "76.87%" },
{ 23171,"INV_Axe_03","=q3=The Axe of Severing","=ds=#h2#, #w1#", "22.94%" },
{ 0,"","","" },
{ 0,"","","" },
- { 0, "INV_Box_01", "=q6=Lady Falther'ess", "=q1=Razorfen Downs" },
+ { 0, "INV_Jewelry_Talisman_13", "=q6=Lady Falther'ess", "=q1=Razorfen Downs" },
{ 23178, "INV_Misc_Cape_17", "=q3=Mantle of Lady Falther'ess", "=ds=#s4#", "61.24%" },
{ 23177, "INV_Wand_12", "=q3=Lady Falther'ess' Finger", "=ds=#w12#", "38.17%" },
};