1.1.0 Update

# Atlasloot v1.1.0

• Added recommended levels to dungeons
• Atlasloot attempts to opens at the last page you were on
• WSG Landing page and overhaul
• AB Landing Page
• Core fixes
• Fixed some bugs that were breaking the Search function
• **3,167 drop rates updated**
• Checked drop rates for all World Bosses and Rare Spawns
• Gardening
• Sorted the reputation list A-Z
• Added faction colours to the reputation list
• Added and fixed MANY missing drops, items, recipies, etc.
• Reworked Silvermoon and Revantusk pages
• Update announce code using LFT as well as SendAddonMessage

-- 1.17.0 Patch --

• Lower Karazhan Halls
• Emerald Sanctum
• Gilneas City
• Rare Spawns
• Enchants
• First Aid
• Tailoring
• Leatherworking
• Mining
• _Some_ of Blacksmithing

# THERE IS STILL A LOT MORE 1.17.0 THINGS THAT NEED TO BE ADDED
This commit is contained in:
Lexie
2023-10-29 07:12:47 +11:00
parent 24d2f7f7aa
commit c20b44e6e0
43 changed files with 21857 additions and 16733 deletions
+3 -3
View File
@@ -2,10 +2,10 @@
## Title: AtlasLoot TW Edition
## Notes: Shows the possible loot from the bosses
## Author: Daviesh, Pompa (Turtle WoW World Bosses), Xerron (Turtle WoW World Bosses), Gurky (Turtle WoW 1.16/1.16.1 Dungeons), |cffbe5effLexie|r
## Version: 1.0.9
## Version: 1.1.0
## SavedVariables: AtlasLoot_updateavailable
## SavedVariablesPerCharacter: AtlasLootCharDB
## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, DewdropLib, Ace2, EquipCompare, EQCompare
## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, HewdropLib, Ace2, EquipCompare, EQCompare
Libs\AceLibrary\AceLibrary.lua
Libs\AceOO\AceOO-2.0.lua
@@ -13,7 +13,7 @@ Libs\AceEvent\AceEvent-2.0.lua
Libs\AceDB\AceDB-2.0.lua
Libs\AceLocale\AceLocale-2.2.lua
Libs\AceAddon\AceAddon-2.0.lua
Libs\Dewdrop\Dewdrop-2.0.lua
Libs\Hewdrop\Hewdrop-2.0.lua
Locale\Locale.xml
# Bossnames\BossNames.xml
+7 -7
View File
@@ -114,10 +114,10 @@
</Anchors>
<Scripts>
<OnClick>
if AtlasLoot_Dewdrop:IsOpen() then
AtlasLoot_Dewdrop:Close();
if AtlasLoot_Hewdrop:IsOpen() then
AtlasLoot_Hewdrop:Close();
else
AtlasLoot_Dewdrop:Open(this);
AtlasLoot_Hewdrop:Open(this);
end
</OnClick>
<OnShow>
@@ -140,10 +140,10 @@
</Anchors>
<Scripts>
<OnClick>
if AtlasLoot_DewdropSubMenu:IsOpen() then
AtlasLoot_DewdropSubMenu:Close();
if AtlasLoot_HewdropSubMenu:IsOpen() then
AtlasLoot_HewdropSubMenu:Close();
else
AtlasLoot_DewdropSubMenu:Open(this);
AtlasLoot_HewdropSubMenu:Open(this);
end
</OnClick>
<OnShow>
@@ -554,7 +554,7 @@
this:SetMovable(1);
this:SetBackdropColor(0.75, 0, 0.75);
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
getglobal("AtlasLootDefaultFrame_Notice"):SetText(AL["If you find anything missing, please /w Lexie or message me on Discord Lexie#4024"]);
getglobal("AtlasLootDefaultFrame_Notice"):SetText(AL["NoticeFrame"]);
</OnLoad>
<OnShow>
AtlasLootDefaultFrame_OnShow();
+285 -146
View File
@@ -29,10 +29,10 @@ AtlasLootOptions_OpaqueToggle()
AtlasLootOptions_ItemIDToggle()
AtlasLootOptions_ItemSpam()
AtlasLoot_ShowItemsFrame()
AtlasLoot_DewDropClick(tablename, text, tabletype)
AtlasLoot_DewDropSubMenuClick(tablename, text)
AtlasLoot_DewdropSubMenuRegister(loottable)
AtlasLoot_DewdropRegister()
AtlasLoot_HewdropClick(tablename, text, tabletype)
AtlasLoot_HewdropSubMenuClick(tablename, text)
AtlasLoot_HewdropSubMenuRegister(loottable)
AtlasLoot_HewdropRegister()
AtlasLootItemsFrame_OnCloseButton()
AtlasLoot_Toggle()
AtlasLootMenuItem_OnClick()
@@ -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 = "0";
local VERSION_BOSSES = "9";
local VERSION_MINOR = "1";
local VERSION_BOSSES = "0";
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";
@@ -81,9 +81,9 @@ ATLASLOOT_OPTIONS_EQUIPCOMPARE_DISABLED = AL["|cff9d9d9dUse EquipCompare|r"];
--Standard indent to line text up with Atlas text
ATLASLOOT_INDENT = " ";
--Make the Dewdrop menu in the standalone loot browser accessible here
AtlasLoot_Dewdrop = AceLibrary("Dewdrop-2.0");
AtlasLoot_DewdropSubMenu = AceLibrary("Dewdrop-2.0");
--Make the Hewdrop menu in the standalone loot browser accessible here
AtlasLoot_Hewdrop = AceLibrary("Hewdrop-2.0");
AtlasLoot_HewdropSubMenu = AceLibrary("Hewdrop-2.0");
--Variable to cap debug spam
ATLASLOOT_DEBUGSHOWN = false;
@@ -195,6 +195,7 @@ AtlasLoot_MenuList = {
"TAILORINGMENU",
"CRAFTSET",
"COOKINGMENU",
"SURVIVALMENU",
};
--entrance maps to instance maps NOT NEEDED FOR ATLAS 1.12
@@ -253,6 +254,7 @@ function AtlasLootDefaultFrame_OnShow()
--Show the last displayed loot table
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
@@ -401,7 +403,7 @@ function AtlasLoot_OnVariablesLoaded()
);
end
--Set up the menu in the loot browser
AtlasLoot_DewdropRegister();
AtlasLoot_HewdropRegister();
--Enable or disable AtlasLootFu based on seleced options
--If EquipCompare is available, use it
if((IsAddOnLoaded("EquipCompare")) and (AtlasLootCharDB.EquipCompare == true)) then
@@ -420,6 +422,10 @@ function AtlasLoot_OnVariablesLoaded()
AtlasLootDefaultFrame_SelectedCategory:Show();
AtlasLootDefaultFrame_SelectedTable:Show();
AtlasLootDefaultFrame_SubMenu:Disable();
--Load the last loaded sebmenu
if AtlasLootCharDB["LastMenu"] then
AtlasLoot_HewdropClick(AtlasLootCharDB["LastMenu"][1],AtlasLootCharDB["LastMenu"][2],AtlasLootCharDB["LastMenu"][3])
end
end
--[[
@@ -481,8 +487,8 @@ Atlas_FreshOptions:
Sets default options on a fresh start.
]]
function AtlasLootOptions_Fresh()
AtlasLootCharDB.SafeLinks = true;
AtlasLootCharDB.AllLinks = false;
AtlasLootCharDB.SafeLinks = false;
AtlasLootCharDB.AllLinks = true;
AtlasLootCharDB.DefaultTT = true;
AtlasLootCharDB.LootlinkTT = false;
AtlasLootCharDB.ItemSyncTT = false;
@@ -533,21 +539,20 @@ function AtlasLoot_SlashCommand(msg)
AtlasLootOptions_Toggle();
else
AtlasLootDefaultFrame:Show();
DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r |cffddabffIf you find anything missing, please /w Lexie or message me on Discord Lexie#4024|r")
end
end
--[[
AtlasLootDefaultFrame_OnHide:
When we close the loot browser, re-bind the item table to Atlas
and close all Dewdrop menus
and close all Hewdrop menus
]]
function AtlasLootDefaultFrame_OnHide()
if AtlasFrame then
AtlasLoot_SetupForAtlas();
end
AtlasLoot_Dewdrop:Close(1);
AtlasLoot_DewdropSubMenu:Close(1);
AtlasLoot_Hewdrop:Close(1);
AtlasLoot_HewdropSubMenu:Close(1);
end
--[[
@@ -905,7 +910,6 @@ Legacy function used in Cosmos integration to open the loot browser
]]
function AtlasLoot_ShowMenu()
AtlasLootDefaultFrame:Show();
DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r |cffddabffIf you find anything missing, please /w Lexie or message me on Discord Lexie#4024|r")
end
--[[
@@ -1178,6 +1182,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLoot_TailoringMenu();
elseif(dataID=="COOKINGMENU") then
AtlasLoot_CookingMenu();
elseif(dataID=="SURVIVALMENU") then
AtlasLoot_SurvivalMenu();
else
--Iterate through each item object and set its properties
for i = 1, 30, 1 do
@@ -1521,13 +1527,14 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
end
--[[
AtlasLoot_DewDropClick(tablename, text, tabletype):
AtlasLoot_HewdropClick(tablename, text, tabletype):
tablename - Name of the loot table in the database
text - Heading for the loot table
tabletype - Whether the tablename indexes an actual table or needs to generate a submenu
Called when a button in AtlasLoot_Dewdrop is clicked
Called when a button in AtlasLoot_Hewdrop is clicked
]]
function AtlasLoot_DewDropClick(tablename, text, tabletype)
function AtlasLoot_HewdropClick(tablename, text, tabletype)
AtlasLootCharDB.LastMenu = { tablename, text, tabletype }
--Definition of where I want the loot table to be shown
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
@@ -1547,30 +1554,30 @@ function AtlasLoot_DewDropClick(tablename, text, tabletype)
--Enable the submenu button
AtlasLootDefaultFrame_SubMenu:Enable();
--Show the first loot table associated with the submenu
AtlasLoot_ShowBossLoot(AtlasLoot_DewDropDown_SubTables[tablename][1][2], AtlasLoot_DewDropDown_SubTables[tablename][1][1], pFrame);
AtlasLoot_ShowBossLoot(AtlasLoot_HewdropDown_SubTables[tablename][1][2], AtlasLoot_HewdropDown_SubTables[tablename][1][1], pFrame);
--Save needed info for fuure re-display of the table
AtlasLootCharDB.LastBoss = AtlasLoot_DewDropDown_SubTables[tablename][1][2];
AtlasLootCharDB.LastBossText = AtlasLoot_DewDropDown_SubTables[tablename][1][1];
AtlasLootCharDB.LastBoss = AtlasLoot_HewdropDown_SubTables[tablename][1][2];
AtlasLootCharDB.LastBossText = AtlasLoot_HewdropDown_SubTables[tablename][1][1];
--Load the correct submenu and associated with the button
AtlasLoot_DewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu);
AtlasLoot_DewdropSubMenuRegister(AtlasLoot_DewDropDown_SubTables[tablename]);
AtlasLoot_HewdropSubMenu:Unregister(AtlasLootDefaultFrame_SubMenu);
AtlasLoot_HewdropSubMenuRegister(AtlasLoot_HewdropDown_SubTables[tablename]);
--Show a text label of what has been selected
AtlasLootDefaultFrame_SelectedTable:SetText(AtlasLoot_DewDropDown_SubTables[tablename][1][1]);
AtlasLootDefaultFrame_SelectedTable:SetText(AtlasLoot_HewdropDown_SubTables[tablename][1][1]);
AtlasLootDefaultFrame_SelectedTable:Show();
end
--Show the category that has been selected
AtlasLootDefaultFrame_SelectedCategory:SetText(text);
AtlasLootDefaultFrame_SelectedCategory:Show();
AtlasLoot_Dewdrop:Close(1);
AtlasLoot_Hewdrop:Close(1);
end
--[[
AtlasLoot_DewDropSubMenuClick(tablename, text):
AtlasLoot_HewdropSubMenuClick(tablename, text):
tablename - Name of the loot table in the database
text - Heading for the loot table
Called when a button in AtlasLoot_DewdropSubMenu is clicked
Called when a button in AtlasLoot_HewdropSubMenu is clicked
]]
function AtlasLoot_DewDropSubMenuClick(tablename, text)
function AtlasLoot_HewdropSubMenuClick(tablename, text)
--Definition of where I want the loot table to be shown
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
--Show the select loot table
@@ -1581,36 +1588,36 @@ function AtlasLoot_DewDropSubMenuClick(tablename, text)
--Show the table that has been selected
AtlasLootDefaultFrame_SelectedTable:SetText(text);
AtlasLootDefaultFrame_SelectedTable:Show();
AtlasLoot_DewdropSubMenu:Close(1);
AtlasLoot_HewdropSubMenu:Close(1);
end
--[[
AtlasLoot_DewdropSubMenuRegister(loottable):
AtlasLoot_HewdropSubMenuRegister(loottable):
loottable - Table defining the sub menu
Generates the sub menu needed by passing a table of loot tables and titles
]]
function AtlasLoot_DewdropSubMenuRegister(loottable)
AtlasLoot_DewdropSubMenu:Register(AtlasLootDefaultFrame_SubMenu,
function AtlasLoot_HewdropSubMenuRegister(loottable)
AtlasLoot_HewdropSubMenu:Register(AtlasLootDefaultFrame_SubMenu,
'point', function(parent)
return "TOP", "BOTTOM"
end,
'children', function(level, value)
if level == 1 then
for k,v in pairs(loottable) do
AtlasLoot_DewdropSubMenu:AddLine(
AtlasLoot_HewdropSubMenu:AddLine(
'text', v[1],
'func', AtlasLoot_DewDropSubMenuClick,
'func', AtlasLoot_HewdropSubMenuClick,
'arg1', v[2],
'arg2', v[1],
'notCheckable', true
)
end
AtlasLoot_DewdropSubMenu:AddLine(
AtlasLoot_HewdropSubMenu:AddLine(
'text', AL["Close Menu"],
'textR', 0,
'textG', 1,
'textB', 1,
'func', function() AtlasLoot_DewdropSubMenu:Close() end,
'func', function() AtlasLoot_HewdropSubMenu:Close() end,
'notCheckable', true
)
end
@@ -1620,28 +1627,28 @@ function AtlasLoot_DewdropSubMenuRegister(loottable)
end
--[[
AtlasLoot_DewdropRegister:
AtlasLoot_HewdropRegister:
Constructs the main category menu from a tiered table
]]
function AtlasLoot_DewdropRegister()
AtlasLoot_Dewdrop:Register(AtlasLootDefaultFrame_Menu,
function AtlasLoot_HewdropRegister()
AtlasLoot_Hewdrop:Register(AtlasLootDefaultFrame_Menu,
'point', function(parent)
return "TOP", "BOTTOM"
end,
'children', function(level, value)
if level == 1 then
if AtlasLoot_DewDropDown then
for k,v in ipairs(AtlasLoot_DewDropDown) do
if AtlasLoot_HewdropDown then
for k,v in ipairs(AtlasLoot_HewdropDown) do
--If a link to show a submenu
if (type(v[1]) == "table") and (type(v[1][1]) == "string") then
local checked = false;
if v[1][3] == "Submenu" then
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', v[1][1],
'textR', 1,
'textG', 0.82,
'textB', 0,
'func', AtlasLoot_DewDropClick,
'func', AtlasLoot_HewdropClick,
'arg1', v[1][2],
'arg2', v[1][1],
'arg3', v[1][3],
@@ -1653,7 +1660,7 @@ function AtlasLoot_DewdropRegister()
--If an entry linked to a subtable
for i,j in pairs(v) do
if lock==0 then
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', i,
'textR', 1,
'textG', 0.82,
@@ -1669,12 +1676,12 @@ function AtlasLoot_DewdropRegister()
end
end
--Close button
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
'textG', 1,
'textB', 1,
'func', function() AtlasLoot_Dewdrop:Close() end,
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
elseif level == 2 then
@@ -1685,12 +1692,12 @@ function AtlasLoot_DewdropRegister()
local checked = false;
--If an entry to show a submenu
if v[1][3] == "Submenu" then
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', v[1][1],
'textR', 1,
'textG', 0.82,
'textB', 0,
'func', AtlasLoot_DewDropClick,
'func', AtlasLoot_HewdropClick,
'arg1', v[1][2],
'arg2', v[1][1],
'arg3', v[1][3],
@@ -1698,9 +1705,9 @@ function AtlasLoot_DewdropRegister()
)
--An entry to show a specific loot page
else
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', v[1][1],
'func', AtlasLoot_DewDropClick,
'func', AtlasLoot_HewdropClick,
'arg1', v[1][2],
'arg2', v[1][1],
'arg3', v[1][3],
@@ -1712,7 +1719,7 @@ function AtlasLoot_DewdropRegister()
--Entry to link to a sub table
for i,j in pairs(v) do
if lock==0 then
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', i,
'textR', 1,
'textG', 0.82,
@@ -1728,12 +1735,12 @@ function AtlasLoot_DewdropRegister()
end
end
end
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
'textG', 1,
'textB', 1,
'func', function() AtlasLoot_Dewdrop:Close() end,
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
elseif level == 3 then
@@ -1743,21 +1750,21 @@ function AtlasLoot_DewdropRegister()
if type(v[1]) == "string" then
local checked = false;
if v[3] == "Submenu" then
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', v[1],
'textR', 1,
'textG', 0.82,
'textB', 0,
'func', AtlasLoot_DewDropClick,
'func', AtlasLoot_HewdropClick,
'arg1', v[2],
'arg2', v[1],
'arg3', v[3],
'notCheckable', true
)
else
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', v[1],
'func', AtlasLoot_DewDropClick,
'func', AtlasLoot_HewdropClick,
'arg1', v[2],
'arg2', v[1],
'arg3', v[3],
@@ -1765,7 +1772,7 @@ function AtlasLoot_DewdropRegister()
)
end
elseif type(v) == "table" then
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', k,
'textR', 1,
'textG', 0.82,
@@ -1777,12 +1784,12 @@ function AtlasLoot_DewdropRegister()
end
end
end
AtlasLoot_Dewdrop:AddLine(
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
'textG', 1,
'textB', 1,
'func', function() AtlasLoot_Dewdrop:Close() end,
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
end
@@ -1819,7 +1826,23 @@ Requests the relevant loot page from a menu screen
]]
function AtlasLootMenuItem_OnClick()
if this.isheader == nil or this.isheader == false then
AtlasLoot_ShowBossLoot(this.lootpage, getglobal(this:GetName().."_Name"):GetText(), AtlasLoot_AnchorFrame);
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
for k3, v3 in pairs(v2) do
for k4, v4 in pairs(v3) do
if not (type(v4[1]) == "table") then
if v4[1] == pagename then
AtlasLoot_HewdropClick(v4[2],v4[1],v4[3])
end
end
end
end
end
end
end
AtlasLoot_ShowBossLoot(this.lootpage, pagename, AtlasLoot_AnchorFrame);
end
end
@@ -1834,7 +1857,10 @@ function AtlasLoot_NavButton_OnClick()
elseif string.sub(this.lootpage, 1, 12) == "WishListPage" then
AtlasLoot_ShowItemsFrame("WishList", this.lootpage, AL["WishList"], AtlasLootItemsFrame.refresh[4]);
else
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);
@@ -1884,53 +1910,53 @@ button: Identity of the button pressed to trigger the function
Shows the GUI for setting Quicklooks
]]
function AtlasLoot_ShowQuickLooks(button)
local dewdrop = AceLibrary("Dewdrop-2.0");
if dewdrop:IsOpen(button) then
dewdrop:Close(1);
local Hewdrop = AceLibrary("Hewdrop-2.0");
if Hewdrop:IsOpen(button) then
Hewdrop:Close(1);
else
local setOptions = function()
dewdrop:AddLine(
Hewdrop:AddLine(
"text", AL["QuickLook"].." 1",
"tooltipTitle", AL["QuickLook"].." 1",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 1",
"func", function()
AtlasLootCharDB["QuickLooks"][1]={AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4]};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
Hewdrop:Close(1);
end
);
dewdrop:AddLine(
Hewdrop:AddLine(
"text", AL["QuickLook"].." 2",
"tooltipTitle", AL["QuickLook"].." 2",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 2",
"func", function()
AtlasLootCharDB["QuickLooks"][2]={AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4]};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
Hewdrop:Close(1);
end
);
dewdrop:AddLine(
Hewdrop:AddLine(
"text", AL["QuickLook"].." 3",
"tooltipTitle", AL["QuickLook"].." 3",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 3",
"func", function()
AtlasLootCharDB["QuickLooks"][3]={AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4]};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
Hewdrop:Close(1);
end
);
dewdrop:AddLine(
Hewdrop:AddLine(
"text", AL["QuickLook"].." 4",
"tooltipTitle", AL["QuickLook"].." 4",
"tooltipText", AL["Assign this loot table\n to QuickLook"].." 4",
"func", function()
AtlasLootCharDB["QuickLooks"][4]={AtlasLootItemsFrame.refresh[1], AtlasLootItemsFrame.refresh[2], AtlasLootItemsFrame.refresh[3], AtlasLootItemsFrame.refresh[4]};
AtlasLoot_RefreshQuickLookButtons();
dewdrop:Close(1);
Hewdrop:Close(1);
end
);
end;
dewdrop:Open(button,
Hewdrop:Open(button,
'point', function(parent)
return "BOTTOMLEFT", "BOTTOMRIGHT";
end,
@@ -2155,7 +2181,7 @@ end
--This is a multi-layer table defining the main loot listing.
--Entries have the text to display, loot table or sub table to link to and if the link is to a loot table or sub table
AtlasLoot_DewDropDown = {
AtlasLoot_HewdropDown = {
[1] = {
[AL["Dungeons & Raids"]] = {
[1] = {
@@ -2187,10 +2213,10 @@ AtlasLoot_DewDropDown = {
},
[10] = {
[AL["Scarlet Monastery"]] = {
{ AL["Scarlet Monastery"].." "..AL["Graveyard"], "SMGraveyard", "Submenu" },
{ AL["Scarlet Monastery"].." "..AL["Library"], "SMLibrary", "Submenu" },
{ AL["Scarlet Monastery"].." "..AL["Armory"], "SMArmory", "Submenu" },
{ AL["Scarlet Monastery"].." "..AL["Cathedral"], "SMCathedral", "Submenu" },
{ 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] = {
@@ -2200,67 +2226,76 @@ AtlasLoot_DewDropDown = {
{ AL["Uldaman"], "Uldaman", "Submenu" },
},
[13] = {
{ AL["Maraudon"], "Maraudon", "Submenu" },
{ AL["Gilneas City"], "GilneasCity", "Submenu" },
},
[14] = {
{ AL["Zul'Farrak"], "ZulFarrak", "Submenu" },
{ AL["Maraudon"], "Maraudon", "Submenu" },
},
[15] = {
{ AL["The Sunken Temple"], "SunkenTemple", "Submenu" },
{ AL["Zul'Farrak"], "ZulFarrak", "Submenu" },
},
[16] = {
{ AL["Hateforge Quarry"], "HateforgeQuarry", "Submenu" },
{ AL["The Sunken Temple"], "SunkenTemple", "Submenu" },
},
[17] = {
{ AL["Blackrock Depths"], "BlackrockDepths", "Submenu" },
{ AL["Hateforge Quarry"], "HateforgeQuarry", "Submenu" },
},
[18] = {
[AL["Dire Maul"]] = {
{ AL["Dire Maul"].." "..AL["East"], "DireMaulEast", "Submenu" },
{ AL["Dire Maul"].." "..AL["West"], "DireMaulWest", "Submenu" },
{ AL["Dire Maul"].." "..AL["North"], "DireMaulNorth", "Submenu" },
},
{ AL["Blackrock Depths"], "BlackrockDepths", "Submenu" },
},
[19] = {
{ AL["Scholomance"], "Scholomance", "Submenu" },
[AL["Dire Maul"]] = {
{ AL["Dire Maul (East)"], "DireMaulEast", "Submenu" },
{ AL["Dire Maul (West)"], "DireMaulWest", "Submenu" },
{ AL["Dire Maul (North)"], "DireMaulNorth", "Submenu" },
},
},
[20] = {
{ AL["Stratholme"], "Stratholme", "Submenu" },
{ AL["Scholomance"], "Scholomance", "Submenu" },
},
[21] = {
{ AL["Lower Blackrock Spire"], "LowerBlackrock", "Submenu" },
{ AL["Stratholme"], "Stratholme", "Submenu" },
},
[22] = {
{ AL["Upper Blackrock Spire"], "UpperBlackrock", "Submenu" },
{ AL["Lower Blackrock Spire"], "LowerBlackrock", "Submenu" },
},
[23] = {
{ AL["Karazhan Crypt"], "KarazhanCrypt", "Submenu" },
{ AL["Upper Blackrock Spire"], "UpperBlackrock", "Submenu" },
},
[24] = {
{ AL["Caverns of Time: Black Morass"], "CavernsOfTimeBlackMorass", "Submenu" },
{ AL["Karazhan Crypt"], "KarazhanCrypt", "Submenu" },
},
[25] = {
{ AL["Stormwind Vault"], "StormwindVault", "Submenu" },
{ AL["Caverns of Time: Black Morass"], "CavernsOfTimeBlackMorass", "Submenu" },
},
[26] = {
{ AL["Zul'Gurub"], "ZulGurub", "Submenu" },
{ AL["Stormwind Vault"], "StormwindVault", "Submenu" },
},
[27] = {
{ AL["Ruins of Ahn'Qiraj"], "RuinsofAQ", "Submenu" },
{ AL["Zul'Gurub"], "ZulGurub", "Submenu" },
},
[28] = {
{ AL["Molten Core"], "MoltenCore", "Submenu" },
{ AL["Ruins of Ahn'Qiraj"], "RuinsofAQ", "Submenu" },
},
[29] = {
{ AL["Onyxia's Lair"], "Onyxia", "Submenu" },
{ AL["Molten Core"], "MoltenCore", "Submenu" },
},
[30] = {
{ AL["Blackwing Lair"], "BlackwingLair", "Submenu" },
{ AL["Onyxia's Lair"], "Onyxia", "Submenu" },
},
[31] = {
{ AL["Temple of Ahn'Qiraj"], "TempleofAQ", "Submenu" },
{ 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" },
},
},
@@ -2354,7 +2389,7 @@ AtlasLoot_DewDropDown = {
[7] = {
[AL["World Events"]] = {
[1] = {
{ AL["Abyssal Council"], "AbyssalCouncil1", "Submenu" },
{ AL["Abyssal Council"], "AbyssalCouncil", "Submenu" },
},
[2] = {
{ AL["Children's Week"], "ChildrensWeek", "Table" },
@@ -2406,7 +2441,7 @@ AtlasLoot_DewDropDown = {
[8] = { { (AL["Tailoring"]), "Tailoring", "Submenu" }, },
[9] = { { (AL["Cooking"]), "Cooking", "Submenu" }, },
[10] = { { (AL["First Aid"]), "FirstAid1", "Table" }, },
[11] = { { (AL["Survival"]), "Survival1", "Table" }, },
[11] = { { (AL["Survival"]), "Survival", "Submenu" }, },
[12] = { { (AL["Poisons"]), "Poisons1", "Table" }, },
[13] = {
[AL["Crafted Sets"]] = {
@@ -2422,7 +2457,7 @@ AtlasLoot_DewDropDown = {
--This table defines all the subtables needed for the full menu
--Each sub table entry contains the text entry and the loot table that goes wih it
AtlasLoot_DewDropDown_SubTables = {
AtlasLoot_HewdropDown_SubTables = {
["HateforgeQuarry"] = {
{ AL["High Foreman Bargul Blackhammer"], "HQHighForemanBargulBlackhammer" },
{ AL["Engineer Figgles"], "HQEngineerFiggles" },
@@ -2502,11 +2537,16 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Commander Anderson"], "KCCommanderAnderson" },
{ AL["Alarus"], "KCAlarus" },
{ AL["Half-Buried Treasure Chest"], "KCTreasure" },
{ AL["Trash Mobs"], "KCTrash" },
},
["CavernsOfTimeBlackMorass"] = {
{ AL["Chronar"], "COTBMChronar" },
{ AL["Harbinger Aph'ygth"], "COTBMHarbingerAphygth" },
{ AL["Epidamu"], "COTBMEpidamu" },
{ AL["Drifting Avatar of Time"], "COTBMDriftingAvatar" },
{ AL["Time-Lord Epochronos"], "COTBMTimeLordEpochronos" },
{ AL["Mossheart"], "COTBMMossheart" },
{ AL["Rotmaw"], "COTBMRotmaw" },
{ AL["Antnormi"], "COTBMAntnormi" },
{ AL["Infinite Chromie"], "COTBMInfiniteChromie" },
},
@@ -2516,8 +2556,7 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Black Bride"], "SWVBlackBride" },
{ AL["Damian"], "SWVDamian" },
{ AL["Volkan Cruelblade"], "SWVVolkanCruelblade" },
{ AL["Arc'tiras"], "SWVArctiras" },
{ AL["Vault Armory Equipment"], "SWVVaultArmoryEquipment" },
{ AL["Arc'tiras / Vault Armory Equipment"], "SWVVaultArmoryEquipment" },
},
["BlackwingLair"] = {
{ AL["Razorgore the Untamed"], "BWLRazorgore" },
@@ -2712,6 +2751,17 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Archaedas"], "UldArchaedas" },
{ AL["Trash Mobs"], "UldTrash" },
},
["GilneasCity"] = {
{ AL["Matthias Holtz"], "GCMatthiasHoltz" },
{ AL["Packmaster Ragetooth"], "GCPackmasterRagetooth" },
{ AL["Judge Sutherland"], "GCJudgeSutherland" },
{ AL["Dustivan Blackcowl"], "GCDustivanBlackcowl" },
{ AL["Marshal Magnus Greystone"], "GCMarshalMagnusGreystone" },
{ AL["Horsemaster Levvin"], "GCHorsemasterLevvin" },
{ AL["Harlow Family Chest"], "GCHarlowFamilyChest" },
{ AL["Genn Greymane"], "GCGennGreymane" },
{ AL["Trash Mobs"], "GCTrash" },
},
["ZulGurub"] = {
{ AL["High Priestess Jeklik"], "ZGJeklik" },
{ AL["High Priest Venoxis"], "ZGVenoxis" },
@@ -2867,6 +2917,23 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Chief Ukorz Sandscalp"], "ZFChiefUkorzSandscalp" },
{ AL["Trash Mobs"], "ZFTrash" },
},
["EmeraldSanctum"] = {
{ AL["Erennius"], "ESErennius" },
{ AL["Solnius the Awakener"], "ESSolnius1" },
{ AL["Solnius the Awakener (Page 2)"], "ESSolnius2" },
{ AL["Favor of Erennius (ES Hard Mode)"], "ESHardMode" },
{ AL["Trash Mobs"], "ESTrash" },
},
["LowerKara"] = {
{ AL["Master Blacksmith Rolfen"], "LKHRolfen" },
{ AL["Brood Queen Araxxna"], "LKHBroodQueenAraxxna" },
{ AL["Grizikil"], "LKHGrizikil" },
{ AL["Clawlord Howlfang"], "LKHClawlordHowlfang" },
{ AL["Lord Blackwald II"], "LKHLordBlackwaldII" },
{ AL["Moroes"], "LKHMoroes" },
{ AL["Trash Mobs"], "LKHTrash" },
{ AL["LKH Enchants"], "LKHEnchants" },
},
["WorldBosses"] = {
{ AL["Azuregos"], "AAzuregos" },
{ AL["Emeriss"], "DEmeriss" },
@@ -2874,7 +2941,7 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Taerar"], "DTaerar" },
{ AL["Ysondre"], "DYsondre" },
{ AL["Lord Kazzak"], "KKazzak"},
{ "Turtlhu, the Black Turtle of Doom", "Turtlhu" },
--{ "Turtlhu, the Black Turtle of Doom", "Turtlhu" },
{ "Nerubian Overseer", "Nerubian" },
{ "Dark Reaver of Karazhan", "Reaver" },
{ "Ostarius", "Ostarius" },
@@ -2882,19 +2949,43 @@ AtlasLoot_DewDropDown_SubTables = {
{ "There Is No Cow Level", "CowKing" },
},
["RareSpawns"] = {
{ "Tarangos The Dampener", "Tarangos" },
{ "Blademaster Kargron", "Kargron" },
{ "Xalvic Blackclaw", "Xalvic" },
{ "Mallon The Moontouched", "Mallon" },
{ "Grug'thok the Seer", "Grugthok" },
{ "The Wandering Knight", "WanderingKnight" },
{ "Crusader Larsarius The Scarlet Crusade", "CrusaderLarsarius" },
{ "Zareth Terrorblade Demon Hunter", "Zareth" },
{ "Jal'akar Dire Troll", "Jalakar" },
{ "Explorer Ashbeard", "Ashbeard" },
{ "Admiral Barean Westwind", "AdmiralBareanWestwind" },
{ "|cffffffff[17]|cffffd200 Earthcaller Rezengal |cffffffff(Stonetalon)", "EarthcallerRezengal" },
{ "|cffffffff[17]|cffffd200 Shade Mage |cffffffff(Tirisfal Uplands)", "ShadeMage" },
{ "|cffffffff[18]|cffffd200 Graypaw Alpha |cffffffff(Tirisfal Uplands)", "GraypawAlpha" },
{ "|cffffffff[24]|cffffd200 Blazespark |cffffffff(Stonetalon)", "Blazespark" },
{ "|cffffffff[35]|cffffd200 Witch Doctor Tan'zo |cffffffff(Ruins of Zul'Rasaz)", "WitchDoctorTanzo" },
{ "|cffffffff[40]|cffffd200 Dawnhowl |cffffffff(Gilneas)", "Dawnhowl" },
{ "|cffffffff[43]|cffffd200 Maltimor's Prototype |cffffffff(Gilneas)", "MaltimorsPrototype" },
{ "|cffffffff[44]|cffffd200 Bonecruncher |cffffffff(Gilneas)", "Bonecruncher" },
{ "|cffffffff[44]|cffffd200 Duskskitter |cffffffff(Gilneas)", "Duskskitter" },
{ "|cffffffff[45]|cffffd200 Baron Perenolde |cffffffff(Gilneas)", "BaronPerenolde" },
{ "|cffffffff[47]|cffffd200 Grug'thok the Seer |cffffffff(Feralas)", "Grugthok" },
{ "|cffffffff[49]|cffffd200 Explorer Ashbeard |cffffffff(Searing Gorge)", "Ashbeard" },
{ "|cffffffff[50]|cffffd200 Jal'akar |cffffffff(Hinterlands)", "Jalakar" },
{ "|cffffffff[51]|cffffd200 Embereye |cffffffff(Gilijim Isle)", "Embereye" },
{ "|cffffffff[51]|cffffd200 Ruk'thok the Pyromancer |cffffffff(Lapidis Isle)", "Rukthok" },
{ "|cffffffff[51]|cffffd200 Tarangos |cffffffff(Azshara)", "Tarangos" },
{ "|cffffffff[51-52]|cffffd200 Ripjaw |cffffffff(Lapidis Isle)", "Ripjaw" },
{ "|cffffffff[53]|cffffd200 Xalvic Blackclaw |cffffffff(Felwood)", "Xalvic" },
{ "|cffffffff[54]|cffffd200 Aquitus |cffffffff(Gilijim Isle)", "Aquitus" },
{ "|cffffffff[55]|cffffd200 Firstborn of Arugal |cffffffff(Gilneas)", "FirstbornofArugal" },
{ "|cffffffff[55]|cffffd200 Letashaz |cffffffff(Gilijim Isle)", "Letashaz" },
{ "|cffffffff[55]|cffffd200 Margon the Mighty |cffffffff(Lapidis Isle)", "MargontheMighty" },
{ "|cffffffff[55]|cffffd200 The Wandering Knight |cffffffff(WPL)", "WanderingKnight" },
{ "|cffffffff[56]|cffffd200 Stoneshell |cffffffff(Tel'abim)", "Stoneshell" },
{ "|cffffffff[57]|cffffd200 Zareth Terrorblade |cffffffff(Blasted Lands)", "Zareth" },
{ "|cffffffff[58]|cffffd200 Highvale Silverback |cffffffff(Tel'abim)", "HighvaleSilverback" },
{ "|cffffffff[58]|cffffd200 Mallon The Moontouched |cffffffff(Winterspring)", "Mallon" },
{ "|cffffffff[59]|cffffd200 Blademaster Kargron |cffffffff(Burning Steppes)", "Kargron" },
{ "|cffffffff[60]|cffffd200 Admiral Barean Westwind |cffffffff(Sarlet Enclave)", "AdmiralBareanWestwind" },
{ "|cffffffff[60]|cffffd200 Azurebeak |cffffffff(Hyjal)", "Azurebeak" },
{ "|cffffffff[60]|cffffd200 Barkskin Fisher |cffffffff(Hyjal)", "BarkskinFisher" },
{ "|cffffffff[61]|cffffd200 Crusader Larsarius |cffffffff(EPL)", "CrusaderLarsarius" },
{ "|cffffffff[61]|cffffd200 Shadeflayer Goliath |cffffffff(Hyjal)", "ShadeflayerGoliath" },
{ "|cffffffff[??]|cffffd200 Widow of the Woods |cffffffff(Gilneas)", "WidowoftheWoods" },
{ "|cffffffff[??]|cffffd200 M-0L1Y |cffffffff(???)", "M0L1Y" },
},
["AbyssalCouncil1"] = {
["AbyssalCouncil"] = {
{ AL["Abyssal Council"].." - "..AL["Templars"], "AbyssalTemplars" },
{ AL["Abyssal Council"].." - "..AL["Dukes"], "AbyssalDukes" },
{ AL["Abyssal Council"].." - "..AL["High Council"], "AbyssalLords" },
@@ -2906,27 +2997,28 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Cenarion Circle"], "Cenarion1" },
{ AL["Dalaran"], "Dalaran" },
{ AL["Darkmoon Faire"], "Darkmoon" },
{ AL["Darkspear Trolls"], "DarkspearTrolls" },
{ AL["Darnassus"], "Darnassus" },
{ AL["Durotar Labor Union"], "DurotarLaborUnion" },
{ AL["Frostwolf Clan"], "Frostwolf1" },
{ AL["Gelkis Clan Centaur"], "GelkisClan1" },
{ AL["Hydraxian Waterlords"], "WaterLords1" },
{ AL["Magram Clan Centaur"], "MagramClan1" },
{ AL["Stormpike Guard"], "Stormpike1" },
{ AL["Thorium Brotherhood"], "Thorium1" },
{ AL["Timbermaw Hold"], "Timbermaw" },
{ AL["Wardens of Time"], "Warderns1" },
{ AL["Wintersaber Trainers"], "Wintersaber1" },
{ AL["Zandalar Tribe"], "Zandalar1" },
{ AL["Darnassus"], "Darnassus" },
{ AL["Gnomeregan Exiles"], "GnomereganExiles" },
{ AL["Hydraxian Waterlords"], "WaterLords1" },
{ AL["Ironforge"], "Ironforge" },
{ AL["Silvermoon Remnant"], "Helf" },
{ AL["Stormwind"], "Stormwind" },
{ AL["Darkspear Trolls"], "DarkspearTrolls" },
{ AL["Durotar Labor Union"], "DurotarLaborUnion" },
{ AL["Magram Clan Centaur"], "MagramClan1" },
{ AL["Orgrimmar"], "Orgrimmar" },
{ AL["Revantusk Trolls"], "Revantusk" },
{ AL["Silvermoon Remnant"], "Helf" },
{ AL["Stormpike Guard"], "Stormpike1" },
{ AL["Stormwind"], "Stormwind" },
{ AL["Thorium Brotherhood"], "Thorium1" },
{ AL["Thunder Bluff"], "ThunderBluff" },
{ AL["Timbermaw Hold"], "Timbermaw" },
{ AL["Undercity"], "Undercity" },
{ AL["Wardens of Time"], "Warderns1" },
{ AL["Wildhammer Clan"], "Wildhammer" },
{ AL["Wintersaber Trainers"], "Wintersaber1" },
{ AL["Zandalar Tribe"], "Zandalar1" },
},
["BoEWorldEpics"] = {
{ AtlasLoot_TableNames["WorldEpics3"][1], "WorldEpics3" },
@@ -3058,22 +3150,23 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Zul'Gurub Rings"], "ZGRings" },
},
["BRRewards"] = {
{ AL["Exalted Reputation Rewards"], "BRRepExalted" },
{ AL["Revered Reputation Rewards"], "BRRepRevered" },
{ AL["Honored Reputation Rewards"], "BRRepHonored" },
{ AL["Friendly Reputation Rewards"], "BRRepFriendly" },
{ AL["Honored Reputation Rewards"], "BRRepHonored" },
{ AL["Revered Reputation Rewards"], "BRRepRevered" },
{ AL["Exalted Reputation Rewards"], "BRRepExalted" },
},
["AVRewards"] = {
{ AL["Exalted Reputation Rewards"], "AVRepExalted" },
{ AL["Revered Reputation Rewards"], "AVRepRevered" },
{ AL["Honored Reputation Rewards"], "AVRepHonored" },
{ AL["Friendly Reputation Rewards"], "AVRepFriendly" },
{ AL["Honored Reputation Rewards"], "AVRepHonored" },
{ AL["Revered Reputation Rewards"], "AVRepRevered" },
{ AL["Exalted Reputation Rewards"], "AVRepExalted" },
},
["ABRewards"] = {
{ AL["Exalted Reputation Rewards"], "ABRepExalted" },
{ AL["Revered Reputation Rewards"], "ABRepRevered5059" },
{ "Arathi Basin Menu", "ABRepMenu" },
{ AL["Friendly Reputation Rewards"], "ABRepFriendly" },
{ AL["Honored Reputation Rewards"], "ABRepHonored5059" },
{ AL["Friendly Reputation Rewards"], "ABRepFriendly5059" },
{ AL["Revered Reputation Rewards"], "ABRepRevered5059" },
{ AL["Exalted Reputation Rewards"], "ABRepExalted" },
},
["PvPArmorSets"] = {
{ AL["Priest"], "PVPPriest" },
@@ -3087,10 +3180,11 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Warrior"], "PVPWarrior" },
},
["WSGRewards"] = {
{ AL["Exalted Reputation Rewards"], "WSGRepExalted60" },
{ AL["Revered Reputation Rewards"], "WSGRepRevered5059" },
{ "Warsong Gulch Menu", "WSGRepMenu" },
{ AL["Friendly Reputation Rewards"], "WSGRepFriendly" },
{ AL["Honored Reputation Rewards"], "WSGRepHonored5059" },
{ AL["Friendly Reputation Rewards"], "WSGRepFriendly4049" },
{ AL["Revered Reputation Rewards"], "WSGRepRevered5059" },
{ AL["Exalted Reputation Rewards"], "WSGRepExalted60" },
},
["Alchemy"] = {
{ AtlasLoot_TableNames["AlchemyApprentice1"][1], "AlchemyApprentice1" },
@@ -3148,6 +3242,10 @@ AtlasLoot_DewDropDown_SubTables = {
{ AtlasLoot_TableNames["TailoringExpert1"][1], "TailoringExpert1" },
{ AtlasLoot_TableNames["TailoringArtisan1"][1], "TailoringArtisan1" },
},
["Survival"] = {
{ AtlasLoot_TableNames["Survival1"][1], "Survival1" },
{ AtlasLoot_TableNames["Survival2"][1], "Survival2" },
},
};
--------------------------------------------------------------------------------
@@ -3260,6 +3358,7 @@ function AtlasLootItem_OnEnter()
if ( AtlasLootCharDB.ItemIDs ) then
AtlasLootTooltip:AddLine(BLUE..AL["SpellID:"].." "..spellID, nil, nil, nil, 1);
end
AtlasLootTooltip:AddLine("\nLooking for an enchant? /w Lexie", 0.75, 0.37, 1, 1);
AtlasLootTooltip:Show();
if GetSpellInfoVanillaDB["enchants"][spellID]["item"] and GetSpellInfoVanillaDB["enchants"][spellID]["item"] ~= nil and GetSpellInfoVanillaDB["enchants"][spellID]["item"] ~= "" then
AtlasLootTooltip2:SetOwner(AtlasLootTooltip, "ANCHOR_BOTTOMRIGHT", -(AtlasLootTooltip:GetWidth()), 0);
@@ -3726,14 +3825,51 @@ local remoteversion = tonumber(AtlasLoot_updateavailable) or 0
local loginchannels = { "BATTLEGROUND", "RAID", "GUILD" }
local groupchannels = { "BATTLEGROUND", "RAID" }
AtlasLoot_updater_ChatFrame_OnEvent = ChatFrame_OnEvent
AtlasLoot_updater = CreateFrame("Frame")
AtlasLoot_updater:RegisterEvent("CHAT_MSG_ADDON")
AtlasLoot_updater:RegisterEvent("PLAYER_ENTERING_WORLD")
AtlasLoot_updater:RegisterEvent("PARTY_MEMBERS_CHANGED")
function ChatFrame_OnEvent(event)
if event == "CHAT_MSG_CHANNEL" then
local type = strsub(event, 10)
local source = strsub(type,1,1)
if type == "CHANNEL" and arg4 then
_,_,source = string.find(arg4,"(%d+)%.")
end
if source then
_,name = GetChannelName(source)
end
if name == "LFT" then
local msg, v, remoteversion = AtlasLoot_strsplit(":", arg1)
if msg == "Atlasloot" then
local remoteversion = tonumber(remoteversion)
if remoteversion >= 40000 then remoteversion = 0 end --Block for people using some version from another version of WoW.
if v == "VERSION" and remoteversion then
if remoteversion > localversion then
AtlasLoot_updateavailable = remoteversion
if not alreadyshown then
DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Lexiebean/AtlasLoot/")
alreadyshown = true
end
end
end
end
end
end
AtlasLoot_updater_ChatFrame_OnEvent(event);
end
AtlasLoot_updater:SetScript("OnEvent", function()
if event == "CHAT_MSG_ADDON" and arg1 == "AtlasLoot" then
local v, remoteversion = AtlasLoot_strsplit(":", arg2)
local remoteversion = tonumber(remoteversion)
if remoteversion >= 40000 then remoteversion = 0 end --Block for people using some version from another version of WoW.
if v == "VERSION" and remoteversion then
if remoteversion > localversion then
AtlasLoot_updateavailable = remoteversion
@@ -3765,5 +3901,8 @@ AtlasLoot_updater:SetScript("OnEvent", function()
for _, chan in pairs(loginchannels) do
SendAddonMessage("AtlasLoot", "VERSION:" .. localversion, chan)
end
if GetChannelName("LFT") ~= 0 then
SendChatMessage("Atlasloot:VERSION:" .. localversion, "CHANNEL", nil, GetChannelName("LFT"))
end
end
end)
+7 -7
View File
@@ -114,10 +114,10 @@
</Anchors>
<Scripts>
<OnClick>
if AtlasLoot_Dewdrop:IsOpen() then
AtlasLoot_Dewdrop:Close();
if AtlasLoot_Hewdrop:IsOpen() then
AtlasLoot_Hewdrop:Close();
else
AtlasLoot_Dewdrop:Open(this);
AtlasLoot_Hewdrop:Open(this);
end
</OnClick>
<OnShow>
@@ -140,10 +140,10 @@
</Anchors>
<Scripts>
<OnClick>
if AtlasLoot_DewdropSubMenu:IsOpen() then
AtlasLoot_DewdropSubMenu:Close();
if AtlasLoot_HewdropSubMenu:IsOpen() then
AtlasLoot_HewdropSubMenu:Close();
else
AtlasLoot_DewdropSubMenu:Open(this);
AtlasLoot_HewdropSubMenu:Open(this);
end
</OnClick>
<OnShow>
@@ -554,7 +554,7 @@
this:SetMovable(1);
this:SetBackdropColor(0.75, 0, 0.75);
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
getglobal("AtlasLootDefaultFrame_Notice"):SetText(AL["If you find anything missing, please /w Lexie or message me on Discord Lexie#4024"]);
getglobal("AtlasLootDefaultFrame_Notice"):SetText(AL["NoticeFrame"]);
</OnLoad>
<OnShow>
AtlasLootDefaultFrame_OnShow();
+510 -114
View File
@@ -480,6 +480,15 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Half-Buried Treasure Chest"];
Prev_Page = "KCAlarus";
Prev_Title = AL["Alarus"];
Next_Page = "KCTrash";
Next_Title = AL["Trash Mobs"];
};
["KCTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "KCTreasure";
Prev_Title = AL["Half-Buried Treasure Chest"];
Next_Page = "KCMarrowspike";
Next_Title = AL["Marrowspike"];
};
["COTBMChronar"] = {
Title = AL["Chronar"];
@@ -488,24 +497,52 @@ AtlasLoot_ButtonRegistry = {
};
["COTBMHarbingerAphygth"] = {
Title = AL["Harbinger Aph'ygth"];
Next_Page = "COTBMTimeLordEpochronos";
Next_Title = AL["Time-Lord Epochronos"];
Next_Page = "COTBMEpidamu";
Next_Title = AL["Epidamu"];
Prev_Page = "COTBMChronar";
Prev_Title = AL["Chronar"];
};
["COTBMEpidamu"] = {
Title = AL["Epidamu"];
Next_Page = "COTBMDriftingAvatar";
Next_Title = AL["Drifting Avatar of Time"];
Prev_Page = "COTBMChronar";
Prev_Title = AL["Chronar"];
};
["COTBMDriftingAvatar"] = {
Title = AL["Drifting Avatar of Time"];
Next_Page = "COTBMTimeLordEpochronos";
Next_Title = AL["Time-Lord Epochronos"];
Prev_Page = "COTBMEpidamu";
Prev_Title = AL["Epidamu"];
};
["COTBMTimeLordEpochronos"] = {
Title = AL["Time-Lord Epochronos"];
Next_Page = "COTBMMossheart";
Next_Title = AL["Mossheart"];
Prev_Page = "COTBMDriftingAvatar";
Prev_Title = AL["Drifting Avatar of Time"];
};
["COTBMMossheart"] = {
Title = AL["Mossheart"];
Next_Page = "COTBMRotmaw";
Next_Title = AL["Rotmaw"];
Prev_Page = "COTBMTimeLordEpochronos";
Prev_Title = AL["Time-Lord Epochronos"];
};
["COTBMRotmaw"] = {
Title = AL["Rotmaw"];
Next_Page = "COTBMAntnormi";
Next_Title = AL["Antnormi"];
Prev_Page = "COTBMHarbingerAphygth";
Prev_Title = AL["Harbinger Aph'ygth"];
Prev_Page = "COTBMMossheart";
Prev_Title = AL["Mossheart"];
};
["COTBMAntnormi"] = {
Title = AL["Antnormi"];
Next_Page = "COTBMInfiniteChromie";
Next_Title = AL["Infinite Chromie"];
Prev_Page = "COTBMTimeLordEpochronos";
Prev_Title = AL["Time-Lord Epochronos"];
Prev_Page = "COTBMRotmaw";
Prev_Title = AL["Rotmaw"];
};
["COTBMInfiniteChromie"] = {
Title = AL["Infinite Chromie"];
@@ -513,6 +550,8 @@ AtlasLoot_ButtonRegistry = {
Prev_Title = AL["Antnormi"];
};
["SWVAszoshGrimflame"] = {
Prev_Page = "SWVVaultArmoryEquipment";
Prev_Title = AL["Arc'tiras / Vault Armory Equipment"];
Title = AL["Aszosh Grimflame"];
Next_Page = "SWVThamGrarr";
Next_Title = AL["Tham'Grarr"];
@@ -540,22 +579,17 @@ AtlasLoot_ButtonRegistry = {
};
["SWVVolkanCruelblade"] = {
Title = AL["Volkan Cruelblade"];
Next_Page = "SWVArctiras";
Next_Title = AL["Arc'tiras"];
Next_Page = "SWVVaultArmoryEquipment";
Next_Title = AL["Arc'tiras / Vault Armory Equipment"];
Prev_Page = "SWVDamian";
Prev_Title = AL["Damian"];
};
["SWVArctiras"] = {
Title = AL["Arc'tiras"];
Next_Page = "SWVVaultArmoryEquipment";
Next_Title = AL["Vault Armory Equipment"];
["SWVVaultArmoryEquipment"] = {
Title = AL["Arc'tiras / Vault Armory Equipment"];
Prev_Page = "SWVVolkanCruelblade";
Prev_Title = AL["Volkan Cruelblade"];
};
["SWVVaultArmoryEquipment"] = {
Title = AL["Vault Armory Equipment"];
Prev_Page = "SWVArctiras";
Prev_Title = AL["Arc'tiras"];
Next_Page = "SWVAszoshGrimflame";
Next_Title = AL["Aszosh Grimflame"];
};
["BWLRazorgore"] = {
Title = AL["Razorgore the Untamed"];
@@ -1620,6 +1654,69 @@ AtlasLoot_ButtonRegistry = {
Prev_Page = "UldArchaedas";
Prev_Title = AL["Archaedas"];
};
["GCMatthiasHoltz"] = {
Title = AL["Matthias Holtz"];
Next_Page = "GCPackmasterRagetooth";
Next_Title = AL["Packmaster Ragetooth"];
Prev_Page = "GCTrash";
Prev_Title = AL["Trash Mobs"];
};
["GCPackmasterRagetooth"] = {
Title = AL["Packmaster Ragetooth"];
Next_Page = "GCJudgeSutherland";
Next_Title = AL["Judge Sutherland"];
Prev_Page = "GCMatthiasHoltz";
Prev_Title = AL["Matthias Holtz"];
};
["GCJudgeSutherland"] = {
Title = AL["Judge Sutherland"];
Prev_Page = "GCPackmasterRagetooth";
Prev_Title = AL["Packmaster Ragetooth"];
Next_Page = "GCDustivanBlackcowl";
Next_Title = AL["Dustivan Blackcowl"];
};
["GCDustivanBlackcowl"] = {
Title = AL["Dustivan Blackcowl"];
Prev_Page = "GCJudgeSutherland";
Prev_Title = AL["Judge Sutherland"];
Next_Page = "GCMarshalMagnusGreystone";
Next_Title = AL["Marshal Magnus Greystone"];
};
["GCMarshalMagnusGreystone"] = {
Title = AL["Marshal Magnus Greystone"];
Prev_Page = "GCDustivanBlackcowl";
Prev_Title = AL["Dustivan Blackcowl"];
Next_Page = "GCHorsemasterLevvin";
Next_Title = AL["Horsemaster Levvin"];
};
["GCHorsemasterLevvin"] = {
Title = AL["Horsemaster Levvin"];
Prev_Page = "GCMarshalMagnusGreystone";
Prev_Title = AL["Marshal Magnus Greystone"];
Next_Page = "GCHarlowFamilyChest";
Next_Title = AL["Harlow Family Chest"];
};
["GCHarlowFamilyChest"] = {
Title = AL["Harlow Family Chest"];
Prev_Page = "GCHorsemasterLevvin";
Prev_Title = AL["Horsemaster Levvin"];
Next_Page = "GCGennGreymane";
Next_Title = AL["Genn Greymane"];
};
["GCGennGreymane"] = {
Title = AL["Genn Greymane"];
Prev_Page = "GCHarlowFamilyChest";
Prev_Title = AL["Harlow Family Chest"];
Next_Page = "GCTrash";
Next_Title = AL["Trash Mobs"];
};
["GCTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "GCGennGreymane";
Prev_Title = AL["Genn Greymane"];
Next_Page = "GCMatthiasHoltz";
Next_Title = AL["Matthias Holtz"];
};
["ZGJeklik"] = {
Title = AL["High Priestess Jeklik"];
Next_Page = "ZGVenoxis";
@@ -2450,10 +2547,111 @@ AtlasLoot_ButtonRegistry = {
Prev_Page = "ZFChiefUkorzSandscalp";
Prev_Title = AL["Chief Ukorz Sandscalp"];
};
-- Emerald Sanctum
["ESErennius"] = {
Title = AL["Erennius"];
Next_Page = "ESSolnius1";
Next_Title = AL["Solnius the Awakener"];
Prev_Page = "ESTrash";
Prev_Title = AL["Trash Mobs"];
};
["ESSolnius1"] = {
Title = AL["Solnius the Awakener"];
Next_Page = "ESSolnius2";
Next_Title = AL["Solnius the Awakener (Page 2)"];
Prev_Page = "ESErennius";
Prev_Title = AL["Erennius"];
};
["ESSolnius2"] = {
Title = AL["Solnius the Awakener (Page 2)"];
Next_Page = "ESHardMode";
Next_Title = AL["Favor of Erennius (ES Hard Mode)"];
Prev_Page = "ESSolnius1";
Prev_Title = AL["Solnius the Awakener"];
};
["ESHardMode"] = {
Title = AL["Favor of Erennius (ES Hard Mode)"];
Next_Page = "ESTrash";
Next_Title = AL["Trash Mobs"];
Prev_Page = "ESSolnius2";
Prev_Title = AL["Solnius the Awakener"];
};
["ESTrash"] = {
Title = AL["Trash Mobs"];
Next_Page = "ESErennius";
Next_Title = AL["Erennius"];
Prev_Page = "ESSolnius2";
Prev_Title = AL["Solnius the Awakener (Page 2)"];
};
-- Lower Karazhan Halls
["LKHRolfen"] = {
Title = AL["Master Blacksmith Rolfen"];
Next_Page = "LKHBroodQueenAraxxna";
Next_Title = AL["Brood Queen Araxxna"];
Prev_Page = "LKHEnchants";
Prev_Title = AL["LKH Enchants"];
};
["LKHBroodQueenAraxxna"] = {
Title = AL["Brood Queen Araxxna"];
Next_Page = "LKHGrizikil";
Next_Title = AL["Grizikil"];
Prev_Page = "LKHRolfen";
Prev_Title = AL["Master Blacksmith Rolfen"];
};
["LKHGrizikil"] = {
Title = AL["Grizikil"];
Next_Page = "LKHClawlordHowlfang";
Next_Title = AL["Clawlord Howlfang"];
Prev_Page = "LKHBroodQueenAraxxna";
Prev_Title = AL["Brood Queen Araxxna"];
};
["LKHClawlordHowlfang"] = {
Title = AL["Clawlord Howlfang"];
Next_Page = "LKHLordBlackwaldII";
Next_Title = AL["Lord Blackwald II"];
Prev_Page = "LKHGrizikil";
Prev_Title = AL["Grizikil"];
};
["LKHLordBlackwaldII"] = {
Title = AL["Lord Blackwald II"];
Next_Page = "LKHMoroes";
Next_Title = AL["Moroes"];
Prev_Page = "LKHClawlordHowlfang";
Prev_Title = AL["Clawlord Howlfang"];
};
["LKHMoroes"] = {
Title = AL["Moroes"];
Next_Page = "LKHTrash";
Next_Title = AL["Trash Mobs"];
Prev_Page = "LKHLordBlackwaldII";
Prev_Title = AL["Lord Blackwald II"];
};
["LKHTrash"] = {
Title = AL["Trash Mobs"];
Next_Page = "LKHEnchants";
Next_Title = AL["LKH Enchants"];
Prev_Page = "LKHMoroes";
Prev_Title = AL["Moroes"];
};
["LKHEnchants"] = {
Title = AL["LKH Enchants"];
Next_Page = "LKHRolfen";
Next_Title = AL["Master Blacksmith Rolfen"];
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 = "There Is No Cow Level";
};
["DEmeriss"] = {
Title = AL["Emeriss"];
@@ -2485,8 +2683,8 @@ AtlasLoot_ButtonRegistry = {
};
["KKazzak"] = {
Title = AL["Lord Kazzak"];
Next_Page = "Turtlhu";
Next_Title = "Turtlhu, the Black Turtle of Doom";
Next_Page = "Nerubian";
Next_Title = "Nerubian Overseer";
Prev_Page = "DYsondre";
Prev_Title = AL["Ysondre"];
};
@@ -2501,8 +2699,8 @@ AtlasLoot_ButtonRegistry = {
Title = "Nerubian Overseer";
Next_Page = "Reaver";
Next_Title = "Dark Reaver of Karazhan";
Prev_Page = "Turtlhu";
Prev_Title = "Turtlhu, the Black Turtle of Doom";
Prev_Page = "KKazzak";
Prev_Title = AL["Lord Kazzak"];
};
["Reaver"] = {
Title = "Dark Reaver of Karazhan";
@@ -2527,81 +2725,257 @@ AtlasLoot_ButtonRegistry = {
};
["CowKing"] = {
Title = "There Is No Cow Level";
Next_Page = "AAzuregos";
Next_Title = AL["Azuregos"];
Prev_Page = "Concavius";
Prev_Title = "Concavius";
};
["Tarangos"] = {
Title = "Tarangos The Dampener";
Next_Page = "Kargron";
Next_Title = "Blademaster Kargron";
--Rare Spawns
["EarthcallerRezengal"] = {
Title = "Earthcaller Rezengal";
Next_Page = "ShadeMage";
Next_Title = "Shade Mage";
Prev_Page = "M0L1Y";
Prev_Title = "M-0L1Y";
};
["Kargron"] = {
Title = "Blademaster Kargron";
Next_Page = "Xalvic";
Next_Title = "Xalvic Blackclaw";
Prev_Page = "Tarangos";
Prev_Title = "Tarangos The Dampener";
["ShadeMage"] = {
Title = "Shade Mage";
Next_Page = "GraypawAlpha";
Next_Title = "Graypaw Alpha";
Prev_Page = "EarthcallerRezengal";
Prev_Title = "Earthcaller Rezengal";
};
["Xalvic"] = {
Title = "Xalvic Blackclaw";
Next_Page = "Mallon";
Next_Title = "Mallon The Moontouched";
Prev_Page = "Kargron";
Prev_Title = "Blademaster Kargron";
["GraypawAlpha"] = {
Title = "Graypaw Alpha";
Next_Page = "Blazespark";
Next_Title = "Blazespark";
Prev_Page = "ShadeMage";
Prev_Title = "Shade Mage";
};
["Mallon"] = {
Title = "Mallon The Moontouched";
["Blazespark"] = {
Title = "Blazespark";
Next_Page = "WitchDoctorTanzo";
Next_Title = "Witch Doctor Tan'zo";
Prev_Page = "GraypawAlpha";
Prev_Title = "Graypaw Alpha";
};
["WitchDoctorTanzo"] = {
Title = "Witch Doctor Tan'zo";
Next_Page = "Dawnhowl";
Next_Title = "Dawnhowl";
Prev_Page = "Blazespark";
Prev_Title = "Blazespark";
};
["Dawnhowl"] = {
Title = "Dawnhowl";
Next_Page = "MaltimorsPrototype";
Next_Title = "Maltimor's Prototype";
Prev_Page = "WitchDoctorTanzo";
Prev_Title = "Witch Doctor Tan'zo";
};
["MaltimorsPrototype"] = {
Title = "Maltimor's Prototype";
Next_Page = "Bonecruncher";
Next_Title = "Bonecruncher";
Prev_Page = "Dawnhowl";
Prev_Title = "Dawnhowl";
};
["Bonecruncher"] = {
Title = "Bonecruncher";
Next_Page = "Duskskitter";
Next_Title = "Duskskitter";
Prev_Page = "MaltimorsPrototype";
Prev_Title = "Maltimor's Prototype";
};
["Duskskitter"] = {
Title = "Duskskitter";
Next_Page = "BaronPerenolde";
Next_Title = "Baron Perenolde";
Prev_Page = "Bonecruncher";
Prev_Title = "Bonecruncher";
};
["BaronPerenolde"] = {
Title = "Baron Perenolde";
Next_Page = "Grugthok";
Next_Title = "Grug'thok the Seer";
Prev_Page = "Xalvic";
Prev_Title = "Xalvic Blackclaw";
Prev_Page = "Duskskitter";
Prev_Title = "Duskskitter";
};
["Grugthok"] = {
Title = "Grug'thok the Seer";
Next_Page = "WanderingKnight";
Next_Title = "The Wandering Knight";
Prev_Page = "Mallon";
Prev_Title = "Mallon The Moontouched";
Next_Page = "Ashbeard";
Next_Title = "Explorer Ashbeard";
Prev_Page = "BaronPerenolde";
Prev_Title = "Baron Perenolde";
};
["WanderingKnight"] = {
Title = "The Wandering Knight";
Next_Page = "CrusaderLarsarius";
Next_Title = "Crusader Larsarius The Scarlet Crusade";
["Ashbeard"] = {
Title = "Explorer Ashbeard";
Next_Page = "Jalakar";
Next_Title = "Jal'akar";
Prev_Page = "Grugthok";
Prev_Title = "Grug'thok the Seer";
};
["CrusaderLarsarius"] = {
Title = "Crusader Larsarius The Scarlet Crusade";
["Jalakar"] = {
Title = "Jal'akar";
Next_Page = "Embereye";
Next_Title = "Embereye";
Prev_Page = "Ashbeard";
Prev_Title = "Explorer Ashbeard";
};
["Embereye"] = {
Title = "Embereye";
Next_Page = "Rukthok";
Next_Title = "Ruk'thok the Pyromancer";
Prev_Page = "Jalakar";
Prev_Title = "Jal'akar";
};
["Rukthok"] = {
Title = "Ruk'thok the Pyromancer";
Next_Page = "Tarangos";
Next_Title = "Tarangos";
Prev_Page = "Embereye";
Prev_Title = "Embereye";
};
["Tarangos"] = {
Title = "Tarangos";
Next_Page = "Ripjaw";
Next_Title = "Ripjaw";
Prev_Page = "Rukthok";
Prev_Title = "Ruk'thok the Pyromancer";
};
["Ripjaw"] = {
Title = "Ripjaw";
Next_Page = "Xalvic";
Next_Title = "Xalvic Blackclaw";
Prev_Page = "Tarangos";
Prev_Title = "Tarangos";
};
["Xalvic"] = {
Title = "Xalvic Blackclaw";
Next_Page = "Aquitus";
Next_Title = "Aquitus";
Prev_Page = "Ripjaw";
Prev_Title = "Ripjaw";
};
["Aquitus"] = {
Title = "Aquitus";
Next_Page = "FirstbornofArugal";
Next_Title = "Firstborn of Arugal";
Prev_Page = "Xalvic";
Prev_Title = "Xalvic Blackclaw";
};
["FirstbornofArugal"] = {
Title = "Firstborn of Arugal";
Next_Page = "Letashaz";
Next_Title = "Letashaz";
Prev_Page = "Aquitus";
Prev_Title = "Aquitus";
};
["Letashaz"] = {
Title = "Letashaz";
Next_Page = "MargontheMighty";
Next_Title = "Margon the Mighty";
Prev_Page = "FirstbornofArugal";
Prev_Title = "Firstborn of Arugal";
};
["MargontheMighty"] = {
Title = "Margon the Mighty";
Next_Page = "WanderingKnight";
Next_Title = "The Wandering Knight";
Prev_Page = "Letashaz";
Prev_Title = "Letashaz";
};
["WanderingKnight"] = {
Title = "The Wandering Knight";
Next_Page = "Stoneshell";
Next_Title = "Stoneshell";
Prev_Page = "MargontheMighty";
Prev_Title = "Margon the Mighty";
};
["Stoneshell"] = {
Title = "Stoneshell";
Next_Page = "Zareth";
Next_Title = "Zareth Terrorblade Demon Hunter";
Next_Title = "Zareth Terrorblade";
Prev_Page = "WanderingKnight";
Prev_Title = "The Wandering Knight";
};
["Zareth"] = {
Title = "Zareth Terrorblade Demon Hunter";
Next_Page = "Jalakar";
Next_Title = "Jal'akar Dire Troll";
Prev_Page = "CrusaderLarsarius";
Prev_Title = "Crusader Larsarius The Scarlet Crusade";
Title = "Zareth Terrorblade";
Next_Page = "HighvaleSilverback";
Next_Title = "Highvale Silverback";
Prev_Page = "Stoneshell";
Prev_Title = "Stoneshell";
};
["Jalakar"] = {
Title = "Jal'akar Dire Troll";
Next_Page = "Ashbeard";
Next_Title = "Explorer Ashbeard";
["HighvaleSilverback"] = {
Title = "Highvale Silverback";
Next_Page = "Mallon";
Next_Title = "Mallon The Moontouched";
Prev_Page = "Zareth";
Prev_Title = "Zareth Terrorblade Demon Hunter";
Prev_Title = "Zareth Terrorblade";
};
["Ashbeard"] = {
Title = "Explorer Ashbeard";
["Mallon"] = {
Title = "Mallon The Moontouched";
Next_Page = "Kargron";
Next_Title = "Blademaster Kargron";
Prev_Page = "HighvaleSilverback";
Prev_Title = "Highvale Silverback";
};
["Kargron"] = {
Title = "Blademaster Kargron";
Next_Page = "AdmiralBareanWestwind";
Next_Title = "Admiral Barean Westwind";
Prev_Page = "Jalakar";
Prev_Title = "Jal'akar Dire Troll";
Prev_Page = "Mallon";
Prev_Title = "Mallon The Moontouched";
};
["AdmiralBareanWestwind"] = {
Title = "Admiral Barean Westwind";
Prev_Page = "Ashbeard";
Prev_Title = "Explorer Ashbeard";
Next_Page = "Azurebeak";
Next_Title = "Azurebeak";
Prev_Page = "Kargron";
Prev_Title = "Blademaster Kargron";
};
["Azurebeak"] = {
Title = "Azurebeak";
Next_Page = "BarkskinFisher";
Next_Title = "Barkskin Fisher";
Prev_Page = "AdmiralBareanWestwind";
Prev_Title = "Admiral Barean Westwind";
};
["BarkskinFisher"] = {
Title = "Barkskin Fisher";
Next_Page = "CrusaderLarsarius";
Next_Title = "Crusader Larsarius";
Prev_Page = "Azurebeak";
Prev_Title = "Azurebeak";
};
["CrusaderLarsarius"] = {
Title = "Crusader Larsarius";
Next_Page = "ShadeflayerGoliath";
Next_Title = "Shadeflayer Goliath";
Prev_Page = "BarkskinFisher";
Prev_Title = "Barkskin Fisher";
};
["ShadeflayerGoliath"] = {
Title = "Shadeflayer Goliath";
Next_Page = "WidowoftheWoods";
Next_Title = "Widow of the Woods";
Prev_Page = "CrusaderLarsarius";
Prev_Title = "Crusader Larsarius";
};
["WidowoftheWoods"] = {
Title = "Widow of the Woods";
Next_Page = "M0L1Y";
Next_Title = "M-0L1Y";
Prev_Page = "ShadeflayerGoliath";
Prev_Title = "Shadeflayer Goliath";
};
["M0L1Y"] = {
Title = "M-0L1Y";
Next_Page = "EarthcallerRezengal";
Next_Title = "Earthcaller Rezengal";
Prev_Page = "WidowoftheWoods";
Prev_Title = "Widow of the Woods";
};
@@ -2823,6 +3197,11 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "REPMENU";
Back_Title = AL["Factions"];
};
["Wildhammer"] = {
Title = AL["Wildhammer Clan"];
Back_Page = "REPMENU";
Back_Title = AL["Factions"];
};
["Wintersaber1"] = {
Title = AL["Wintersaber Trainers"];
Back_Page = "REPMENU";
@@ -2864,75 +3243,65 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "BRRepMenu";
Prev_Page = "BRRepRevered";
};
["ABRepFriendly2029"] = {
Title = "AB 20-29 Friendly Rewards";
["ABRepFriendly"] = {
Back_Page = "ABRepMenu";
Next_Page = "ABRepFriendly3039";
};
["ABRepFriendly3039"] = {
Title = "AB 30-39 Friendly Rewards";
Back_Page = "ABRepMenu";
Next_Page = "ABRepFriendly4049";
Prev_Page = "ABRepFriendly2029";
};
["ABRepFriendly4049"] = {
Title = "AB 40-49 Friendly Rewards";
Back_Page = "ABRepMenu";
Next_Page = "ABRepFriendly5059";
Prev_Page = "ABRepFriendly3039";
};
["ABRepFriendly5059"] = {
Title = "AB 50-59 Friendly Rewards";
Back_Page = "ABRepMenu";
Prev_Page = "ABRepFriendly4049";
Title = "AB Friendly Rewards";
Next_Page = "ABRepHonored2029";
Prev_Page = "ABRepExalted";
};
["ABRepHonored2029"] = {
Title = "AB 20-29 Honored Rewards";
Back_Page = "ABRepMenu";
Title = "AB 20-29 Honored Rewards";
Next_Page = "ABRepHonored3039";
Prev_Page = "ABRepFriendly";
};
["ABRepHonored3039"] = {
Title = "AB 30-39 Honored Rewards";
Back_Page = "ABRepMenu";
Title = "AB 30-39 Honored Rewards";
Next_Page = "ABRepHonored4049";
Prev_Page = "ABRepHonored2029";
};
["ABRepHonored4049"] = {
Title = "AB 40-49 Honored Rewards";
Back_Page = "ABRepMenu";
Title = "AB 40-49 Honored Rewards";
Next_Page = "ABRepHonored5059";
Prev_Page = "ABRepHonored3039";
};
["ABRepHonored5059"] = {
Title = "AB 50-59 Honored Rewards";
Back_Page = "ABRepMenu";
Title = "AB 50-59 Honored Rewards";
Next_Page = "ABRepRevered2029";
Prev_Page = "ABRepHonored4049";
};
["ABRepRevered2029"] = {
Title = "AB 20-29 Revered Rewards";
Back_Page = "ABRepMenu";
Title = "AB 20-29 Revered Rewards";
Next_Page = "ABRepRevered3039";
Prev_Page = "ABRepHonored5059";
};
["ABRepRevered3039"] = {
Title = "AB 30-39 Revered Rewards";
Back_Page = "ABRepMenu";
Title = "AB 30-39 Revered Rewards";
Next_Page = "ABRepRevered4049";
Prev_Page = "ABRepRevered2029";
};
["ABRepRevered4049"] = {
Title = "AB 40-49 Revered Rewards";
Back_Page = "ABRepMenu";
Title = "AB 40-49 Revered Rewards";
Next_Page = "ABRepRevered5059";
Prev_Page = "ABRepRevered3039";
};
["ABRepRevered5059"] = {
Title = "AB 50-59 Revered Rewards";
Back_Page = "ABRepMenu";
Title = "AB 50-59 Revered Rewards";
Next_Page = "ABRepExalted";
Prev_Page = "ABRepRevered4049";
};
["ABRepExalted"] = {
Title = "AB Exalted Rewards";
Back_Page = "ABRepMenu";
Title = "AB Exalted Rewards";
Prev_Page = "ABRepExalted5059";
Next_Page = "ABRepFriendly";
};
["AVRepFriendly"] = {
Title = "AV Friendly Rewards";
@@ -2956,26 +3325,17 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "AVRepMenu";
Prev_Page = "AVRepRevered";
};
["WSGRepFriendly2029"] = {
["WSGRepFriendly"] = {
Back_Page = "WSGRepMenu";
Title = "WSG 20-29 Friendly Rewards";
Next_Page = "WSGRepFriendly3039";
};
["WSGRepFriendly3039"] = {
Back_Page = "WSGRepMenu";
Title = "WSG 30-39 Friendly Rewards";
Next_Page = "WSGRepFriendly4049";
Prev_Page = "WSGRepFriendly2029";
};
["WSGRepFriendly4049"] = {
Back_Page = "WSGRepMenu";
Title = "WSG 40-49 Friendly Rewards";
Prev_Page = "WSGRepFriendly3039";
Title = "WSG Friendly Rewards";
Next_Page = "WSGRepHonored1019";
Prev_Page = "WSGRepExalted60";
};
["WSGRepHonored1019"] = {
Back_Page = "WSGRepMenu";
Title = "WSG 10-19 Honored Rewards";
Next_Page = "WSGRepHonored2029";
Prev_Page = "WSGRepFriendly";
};
["WSGRepHonored2029"] = {
Back_Page = "WSGRepMenu";
@@ -2998,12 +3358,14 @@ AtlasLoot_ButtonRegistry = {
["WSGRepHonored5059"] = {
Back_Page = "WSGRepMenu";
Title = "WSG 50-59 Honored Rewards";
Next_Page = "WSGRepRevered1019";
Prev_Page = "WSGRepHonored4049";
};
["WSGRepRevered1019"] = {
Back_Page = "WSGRepMenu";
Title = "WSG 10-19 Revered Rewards";
Next_Page = "WSGRepRevered2029";
Prev_Page = "WSGRepHonored5059";
};
["WSGRepRevered2029"] = {
Back_Page = "WSGRepMenu";
@@ -3026,12 +3388,14 @@ AtlasLoot_ButtonRegistry = {
["WSGRepRevered5059"] = {
Back_Page = "WSGRepMenu";
Title = "WSG 50-59 Revered Rewards";
Next_Page = "WSGRepExalted4049";
Prev_Page = "WSGRepRevered4049";
};
["WSGRepExalted4049"] = {
Back_Page = "WSGRepMenu";
Title = "WSG 40-49 Exalted Rewards";
Next_Page = "WSGRepExalted5059";
Prev_Page = "WSGRepRevered5059";
};
["WSGRepExalted5059"] = {
Back_Page = "WSGRepMenu";
@@ -3043,6 +3407,7 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "WSGRepMenu";
Title = "WSG 60 Exalted Rewards";
Prev_Page = "WSGRepExalted5059";
Next_Page = "WSGRepFriendly";
};
["PvP60Accessories1"] = {
Title = AL["PvP Trinkets"];
@@ -3925,6 +4290,15 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Blacksmithing"];
Prev_Page = "SmithingExpert1";
Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"];
Next_Page = "SmithingExpert3";
Next_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"];
};
["SmithingExpert3"] = {
Title = AL["Blacksmithing"] .. ": " .. AL["Expert"];
Back_Page = "SMITHINGMENU";
Back_Title = AL["Blacksmithing"];
Prev_Page = "SmithingExpert2";
Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"];
Next_Page = "SmithingArtisan1";
Next_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"];
};
@@ -3932,7 +4306,7 @@ AtlasLoot_ButtonRegistry = {
Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"];
Back_Page = "SMITHINGMENU";
Back_Title = AL["Blacksmithing"];
Prev_Page = "SmithingExpert2";
Prev_Page = "SmithingExpert3";
Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"];
Next_Page = "SmithingArtisan2";
Next_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"];
@@ -4351,6 +4725,15 @@ AtlasLoot_ButtonRegistry = {
Back_Title = AL["Tailoring"];
Prev_Page = "TailoringArtisan3";
Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"];
Next_Page = "TailoringArtisan5";
Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"];
};
["TailoringArtisan5"] = {
Title = AL["Tailoring"] .. ": " .. AL["Artisan"];
Back_Page = "TAILORINGMENU";
Back_Title = AL["Tailoring"];
Prev_Page = "TailoringArtisan4";
Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"];
};
["CookingApprentice1"] = {
Title = AL["Cooking"] .. ": " .. AL["Apprentice"];
@@ -4391,8 +4774,21 @@ AtlasLoot_ButtonRegistry = {
};
["Survival1"] = {
Title = AL["Survival"];
Back_Page = "CRAFTINGMENU";
Back_Title = AL["Crafting"];
Back_Page = "SURVIVALMENU";
Back_Title = AL["Survival"];
Prev_Page = "Survival2";
Prev_Title = AL["Garderning"];
Next_Page = "Survival2";
Next_Title = AL["Garderning"];
};
["Survival2"] = {
Title = AL["Garderning"];
Back_Page = "SURVIVALMENU";
Back_Title = AL["Survival"];
Prev_Page = "Survival1";
Prev_Title = AL["Survival"];
Next_Page = "Survival1";
Next_Title = AL["Survival"];
};
["Poisons1"] = {
Title = AL["Poisons"];
+28 -1
View File
@@ -80,7 +80,7 @@ function AtlasLoot_CraftingMenu()
AtlasLootMenuItem_13_Name:SetText(AL["Survival"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Survival");
AtlasLootMenuItem_13.lootpage="Survival1";
AtlasLootMenuItem_13.lootpage="SURVIVALMENU";
AtlasLootMenuItem_13:Show();
--Poisons
AtlasLootMenuItem_15_Name:SetText(AL["Poisons"]);
@@ -683,3 +683,30 @@ function AtlasLoot_MiningMenu()
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["Garderning"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\trade_herbalism");
AtlasLootMenuItem_3.lootpage = "Survival2";
AtlasLootMenuItem_3:Show();
end
+179 -33
View File
@@ -1,5 +1,6 @@
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
local RED = "|cffff0000";
local ORANGE = "|cffFF8400";
function AtlasLootPvPMenu()
@@ -126,30 +127,115 @@ function AtlasLootWSGRepMenu()
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootServerQueryButton"):Hide();
--Friendly
AtlasLootMenuItem_2_Name:SetText("Friendly Reputation Rewards");
--Friendly Header
AtlasLootMenuItem_2_Name:SetText(RED..AL["Friendly"]);
AtlasLootMenuItem_2_Extra:SetText("");
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_2.lootpage="WSGRepFriendly4049";
AtlasLootMenuItem_2.isheader = true;
AtlasLootMenuItem_2:Show();
--Honored
AtlasLootMenuItem_3_Name:SetText("Honored Reputation Rewards");
--Friendly
AtlasLootMenuItem_3_Name:SetText("10-60");
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_3.lootpage="WSGRepHonored5059";
AtlasLootMenuItem_3.lootpage="WSGRepFriendly";
AtlasLootMenuItem_3:Show();
--Revered
AtlasLootMenuItem_4_Name:SetText("Revered Reputation Rewards");
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_4.lootpage="WSGRepRevered5059";
AtlasLootMenuItem_4:Show();
--Exalted
AtlasLootMenuItem_5_Name:SetText("Exalted Reputation Rewards");
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_5.lootpage="WSGRepExalted60";
AtlasLootMenuItem_5:Show();
--Honored Header
AtlasLootMenuItem_7_Name:SetText(RED..AL["Honored"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_7.isheader = true;
AtlasLootMenuItem_7:Show();
--Honored 10-19
AtlasLootMenuItem_8_Name:SetText("10-19");
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_8.lootpage="WSGRepHonored1019";
AtlasLootMenuItem_8:Show();
--Honored 20-29
AtlasLootMenuItem_9_Name:SetText("20-29");
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_9.lootpage="WSGRepHonored2029";
AtlasLootMenuItem_9:Show();
--Honored 30-39
AtlasLootMenuItem_10_Name:SetText("30-39");
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_10.lootpage="WSGRepHonored3039";
AtlasLootMenuItem_10:Show();
--Honored 40-49
AtlasLootMenuItem_11_Name:SetText("40-49");
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_11.lootpage="WSGRepHonored4049";
AtlasLootMenuItem_11:Show();
--Honored 50-59
AtlasLootMenuItem_12_Name:SetText("50-59");
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_12.lootpage="WSGRepHonored5059";
AtlasLootMenuItem_12:Show();
--Exalted Header
AtlasLootMenuItem_17_Name:SetText(RED..AL["Exalted"]);
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");
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_18.lootpage="WSGRepExalted4049";
AtlasLootMenuItem_18:Show();
--Exalted 50-59
AtlasLootMenuItem_19_Name:SetText("50-59");
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_19.lootpage="WSGRepExalted5059";
AtlasLootMenuItem_19:Show();
--Exalted 60-60
AtlasLootMenuItem_20_Name:SetText("60");
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_20.lootpage="WSGRepExalted60";
AtlasLootMenuItem_20:Show();
--Revered Header
AtlasLootMenuItem_22_Name:SetText(RED..AL["Revered"]);
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_22.isheader = true;
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
@@ -170,30 +256,90 @@ function AtlasLootABRepMenu()
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootServerQueryButton"):Hide();
--Friendly
AtlasLootMenuItem_2_Name:SetText(AL["Friendly Reputation Rewards"]);
--Friendly Header
AtlasLootMenuItem_2_Name:SetText(RED..AL["Friendly"]);
AtlasLootMenuItem_2_Extra:SetText("");
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_2.lootpage="ABRepFriendly5059";
AtlasLootMenuItem_2.isheader = true;
AtlasLootMenuItem_2:Show();
--Honored
AtlasLootMenuItem_3_Name:SetText(AL["Honored Reputation Rewards"]);
--Friendly
AtlasLootMenuItem_3_Name:SetText("10-60");
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_3.lootpage="ABRepHonored5059";
AtlasLootMenuItem_3.lootpage="ABRepFriendly";
AtlasLootMenuItem_3:Show();
--Revered
AtlasLootMenuItem_4_Name:SetText(AL["Revered Reputation Rewards"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_4.lootpage="ABRepRevered5059";
AtlasLootMenuItem_4:Show();
--Exalted
AtlasLootMenuItem_5_Name:SetText(AL["Exalted Reputation Rewards"]);
--Honored Header
AtlasLootMenuItem_5_Name:SetText(RED..AL["Honored"]);
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_5.lootpage="ABRepExalted";
AtlasLootMenuItem_5.isheader = true;
AtlasLootMenuItem_5:Show();
--Honored 20-29
AtlasLootMenuItem_6_Name:SetText("20-29");
AtlasLootMenuItem_6_Extra:SetText("");
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_6.lootpage="ABRepHonored2029";
AtlasLootMenuItem_6:Show();
--Honored 30-39
AtlasLootMenuItem_7_Name:SetText("30-39");
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_7.lootpage="ABRepHonored3039";
AtlasLootMenuItem_7:Show();
--Honored 40-49
AtlasLootMenuItem_8_Name:SetText("40-49");
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_8.lootpage="ABRepHonored4049";
AtlasLootMenuItem_8:Show();
--Honored 50-59
AtlasLootMenuItem_9_Name:SetText("50-59");
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_9.lootpage="ABRepHonored5059";
AtlasLootMenuItem_9:Show();
--Exalted Header
AtlasLootMenuItem_17_Name:SetText(RED..AL["Exalted"]);
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");
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_18.lootpage="ABRepExalted";
AtlasLootMenuItem_18:Show();
--Revered Header
AtlasLootMenuItem_20_Name:SetText(RED..AL["Revered"]);
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_20.isheader = true;
AtlasLootMenuItem_20:Show();
--Revered 20-29
AtlasLootMenuItem_21_Name:SetText("20-29");
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();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
+6 -6
View File
@@ -95,17 +95,17 @@ function AtlasLoot:Search(Text)
end
function AtlasLoot:ShowSearchOptions(button)
local dewdrop = AceLibrary("Dewdrop-2.0");
if dewdrop:IsOpen(button) then
dewdrop:Close(1);
local Hewdrop = AceLibrary("Hewdrop-2.0");
if Hewdrop:IsOpen(button) then
Hewdrop:Close(1);
else
local setOptions = function()
dewdrop:AddLine(
Hewdrop:AddLine(
"text", AL["Search options"],
"isTitle", true,
"notCheckable", true
);
dewdrop:AddLine(
Hewdrop:AddLine(
"text", AL["Partial matching"],
"checked", AtlasLootCharDB.PartialMatching,
"tooltipTitle", AL["Partial matching"],
@@ -113,7 +113,7 @@ function AtlasLoot:ShowSearchOptions(button)
"func", function() AtlasLootCharDB.PartialMatching = not AtlasLootCharDB.PartialMatching end
);
end;
dewdrop:Open(button,
Hewdrop:Open(button,
'point', function(parent)
return "BOTTOMLEFT", "BOTTOMRIGHT";
end,
+755 -1
View File
@@ -641,6 +641,50 @@ GetSpellInfoVanillaDB = {
["name"] = "Enchant Bracer - Spell Power",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[57142] = {
["name"] = "Enchant Boots - Greater Spirit",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[57518] = {
["name"] = "Eternal Dreamstone Shard",
["icon"] = "Interface\\Icons\\inv_misc_gem_pearl_04",
},
[57127] = {
["name"] = "Enchant Boots - Superior Stamina",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[57148] = {
["name"] = "Enchant Boots - Vampirism",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[57144] = {
["name"] = "Enchant Bracer - Greater Deflection",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[57119] = {
["name"] = "Enchant Chest - Mighty Mana",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[57117] = {
["name"] = "Enchant Cloak - Greater Arcane Resistance",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[46601] = {
["name"] = "Enchant Gloves - Arcane Power",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[46602] = {
["name"] = "Enchant Gloves - Nature Power",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[46086] = {
["name"] = "Enchant Gloves - Major Strength",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
[57146] = {
["name"] = "Enchant Bracer - Vampirism",
["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal",
},
},
["craftspells"] = {
[6510] = {
@@ -740,6 +784,20 @@ GetSpellInfoVanillaDB = {
[2] = {8925},
},
},
[65032] = {
["name"] = "Poisons: Agitating Poison I",
["requires"] = "",
["tools"] = "",
["castTime"] = 3,
["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy which instantly inflicts 67 to 86 Nature damage, and causes additional threat. 115 charges.",
["craftItem"] = 65032,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {2931, 2},
[2] = {3372},
},
},
[3420] = {
["name"] = "Poisons: Crippling Poison",
["requires"] = "",
@@ -1112,6 +1170,21 @@ GetSpellInfoVanillaDB = {
[1] = {19441},
},
},
[10844] = {
["name"] = "First Aid: Powerful Anti-Venom",
["requires"] = "",
["tools"] = "",
["castTime"] = 3,
["text"] = "Creates a Vial of Powerful Anti-Venom.",
["craftItem"] = 8546,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {8150, 4},
[2] = {7078, 2},
[3] = {18512},
},
},
[818] = {
["name"] = "Basic Campfire",
["requires"] = "",
@@ -5621,6 +5694,109 @@ GetSpellInfoVanillaDB = {
[7] = {20520, 10},
},
},
[54011] = {
["name"] = "Tailoring: Flarecore Boots",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 65035,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {14342, 6},
[2] = {17010, 5},
[3] = {17011, 4},
[4] = {7078, 10},
[5] = {14227, 4},
},
},
[45485] = {
["name"] = "Tailoring: Gloves of Unwinding Mystery",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61186,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {14048, 14},
[2] = {9210, 10},
[3] = {14344},
[4] = {12810},
[5] = {8846, 24},
},
},
[45459] = {
["name"] = "Tailoring: Dreamthread Kilt",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61361,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61230, 14},
[2] = {14342, 4},
[3] = {14048, 24},
[4] = {7082, 4},
[5] = {7080, 4},
[6] = {12803, 4},
},
},
[45461] = {
["name"] = "Tailoring: Dreamthread Bracers",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61362,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61230, 8},
[2] = {14342, 2},
[3] = {7080, 2},
[4] = {7082, 2},
},
},
[45463] = {
["name"] = "Tailoring: Dreamthread Gloves",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61363,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61230, 8},
[2] = {14342, 4},
[3] = {14048, 12},
[4] = {7082, 4},
[5] = {12803, 4},
},
},
[45457] = {
["name"] = "Tailoring: Dreamthread Mantle",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61360,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61230, 20},
[2] = {14342, 6},
[3] = {12810, 4},
[4] = {14048, 40},
[5] = {7082, 6},
[6] = {12803, 6},
},
},
[23665] = {
["name"] = "Tailoring: Argent Shoulders",
["requires"] = "",
@@ -5768,6 +5944,38 @@ GetSpellInfoVanillaDB = {
[3] = {7910, 2},
[4] = {14341, 2},
},
},
[57024] = {
["name"] = "Tailoring: Windbinder Gloves",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60907,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {14048, 10},
[2] = {14344, 2},
[3] = {7069, 16},
[4] = {7082, 6},
},
},
[57020] = {
["name"] = "Tailoring: Dustguider Sash",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60909,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {14048, 10},
[2] = {12810, 6},
[3] = {7076, 6},
[4] = {14344},
},
},
[23663] = {
["name"] = "Tailoring: Mantle of the Timbermaw",
@@ -8150,6 +8358,21 @@ GetSpellInfoVanillaDB = {
[1] = {10620},
},
},
[57121] = {
["name"] = "Smelting: Smelt Dreamsteel",
["requires"] = AL["Forge"],
["tools"] = "",
["castTime"] = 5,
["text"] = "Allows the miner to smelt a bright dream shard into a dreamsteel bar. Smelting dreamsteel requires a forge.",
["craftItem"] = 61216,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61199},
[2] = {3859},
[3] = {20381},
},
},
[22967] = {
["name"] = "Smelting: Smelt Elementium",
["requires"] = AL["Forge"],
@@ -8833,6 +9056,38 @@ GetSpellInfoVanillaDB = {
[2] = {1210, 2},
},
},
[47027] = {
["name"] = "Engineering: Portable Wormhole Generator - Stormwind",
["requires"] = AL["Anvil"],
["tools"] = {5956, 6219},
["castTime"] = 10,
["text"] = "",
["craftItem"] = 51312,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {1206},
[2] = {4375, 2},
[3] = {2841, 2},
[4] = {10998},
},
},
[47028] = {
["name"] = "Engineering: Portable Wormhole Generator - Orgrimmar",
["requires"] = AL["Anvil"],
["tools"] = {5956, 6219},
["castTime"] = 10,
["text"] = "",
["craftItem"] = 51313,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {1206},
[2] = {4375, 2},
[3] = {2841, 2},
[4] = {10998},
},
},
[3947] = {
["name"] = "Engineering: Crafted Solid Shot",
["requires"] = "",
@@ -11054,6 +11309,24 @@ GetSpellInfoVanillaDB = {
[4] = {12810, 4},
},
},
[46661] = {
["name"] = "Blacksmithing: Dream's Herald",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 65008,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12360, 14},
[2] = {20002, 10},
[3] = {9197, 20},
[4] = {12803, 10},
[5] = {12364, 10},
[6] = {12644, 4},
},
},
[23652] = {
["name"] = "Blacksmithing: Blackguard",
["requires"] = AL["Black Anvil"],
@@ -11705,6 +11978,19 @@ GetSpellInfoVanillaDB = {
[3] = {3470, 3},
},
},
[2671] = {
["name"] = "Blacksmithing: Rough Bronze Bracers",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 12.5,
["text"] = "",
["craftItem"] = 2867,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {2841, 4},
},
},
[3491] = {
["name"] = "Blacksmithing: Big Bronze Knife",
["requires"] = AL["Anvil"],
@@ -13470,6 +13756,21 @@ GetSpellInfoVanillaDB = {
[3] = {4304, 6},
},
},
[9942] = {
["name"] = "Blacksmithing: Mithril Scale Gloves",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 7925,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {3860, 8},
[2] = {4234, 6},
[3] = {4338, 4},
},
},
[9997] = {
["name"] = "Blacksmithing: Wicked Mithril Blade",
["requires"] = AL["Anvil"],
@@ -13857,6 +14158,143 @@ GetSpellInfoVanillaDB = {
[3] = {7910},
},
},
[16965] = {
["name"] = "Blacksmithing: Bleakwood Hew",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 12769,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12359, 30},
[2] = {12803, 6},
[3] = {8153, 6},
[4] = {12799, 6},
[5] = {12644, 2},
[6] = {8170, 8},
},
},
[16986] = {
["name"] = "Blacksmithing: Blood Talon",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 12795,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12655, 10},
[2] = {12360, 10},
[3] = {12662, 8},
[4] = {7910, 10},
[5] = {12644, 2},
[6] = {8170, 8},
},
},
[47032] = {
["name"] = "Blacksmithing: Hateforge Belt",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60576,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12359, 12},
[2] = {7078, 2},
[3] = {11754, 5},
[4] = {12810},
},
},
[47034] = {
["name"] = "Blacksmithing: Hateforge Boots",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60578,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12359, 12},
[2] = {7077, 7},
[3] = {11754, 5},
[4] = {12810, 3},
[5] = {7078, 2},
},
},
[47030] = {
["name"] = "Blacksmithing: Hateforge Cuirass",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60574,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12359, 24},
[2] = {11371},
[3] = {11754, 12},
[4] = {8170, 6},
[5] = {20520, 2},
[6] = {7078, 2},
},
},
[47033] = {
["name"] = "Blacksmithing: Hateforge Grips",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60577,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12359, 40},
[2] = {11371, 8},
[3] = {11754, 18},
[4] = {12810, 8},
[5] = {7078, 8},
},
},
[47029] = {
["name"] = "Blacksmithing: Hateforge Helmet",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60573,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12359, 16},
[2] = {11371},
[3] = {11754, 6},
[4] = {7078},
},
},
[47031] = {
["name"] = "Blacksmithing: Hateforge Leggings",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60575,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12359, 16},
[2] = {11371},
[3] = {11754, 6},
[4] = {7078, 2},
[5] = {8170, 2},
},
},
[20201] = {
["name"] = "Blacksmithing: Arcanite Rod",
["requires"] = AL["Anvil"],
@@ -14049,6 +14487,23 @@ GetSpellInfoVanillaDB = {
[2] = {12810, 4},
},
},
[57026] = {
["name"] = "Blacksmithing: Mantle of Centaur Authority",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60908,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12359, 40},
[2] = {12810, 6},
[2] = {7082, 6},
[2] = {7076, 6},
[2] = {3577, 2},
},
},
[27589] = {
["name"] = "Blacksmithing: Black Grasp of the Destroyer",
["requires"] = AL["Anvil"],
@@ -14163,6 +14618,104 @@ GetSpellInfoVanillaDB = {
[5] = {12364, 4},
},
},
[54009] = {
["name"] = "Blacksmithing: Fiery Chain Breastplate",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 65039,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {11371, 14},
[2] = {17010, 6},
[3] = {17011, 5},
},
},
[57181] = {
["name"] = "Blacksmithing: Dreamsteel Belt Buckle",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61785,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61216, 2},
[2] = {12644, 2},
[3] = {7076},
[4] = {12803},
},
},
[45471] = {
["name"] = "Blacksmithing: Dreamsteel Boots",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61367,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61216, 8},
[2] = {12810, 8},
[3] = {12655, 8},
[4] = {12644, 2},
[5] = {12800, 2},
},
},
[45469] = {
["name"] = "Blacksmithing: Dreamsteel Bracers",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61366,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61216, 8},
[2] = {12810, 4},
[3] = {12655, 4},
[4] = {12644, 4},
},
},
[45467] = {
["name"] = "Blacksmithing: Dreamsteel Leggings",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61365,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61216, 14},
[2] = {12810, 8},
[3] = {12655, 8},
[4] = {12364, 8},
},
},
[45465] = {
["name"] = "Blacksmithing: Dreamsteel Mantle",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61364,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61216, 20},
[2] = {12810, 12},
[3] = {12360, 8},
[4] = {12799, 8},
[5] = {12644, 8},
[6] = {12800, 2},
},
},
[16654] = {
["name"] = "Blacksmithing: Radiant Gloves",
["requires"] = AL["Anvil"],
@@ -14597,6 +15150,23 @@ GetSpellInfoVanillaDB = {
[3] = {12811},
},
},
[16987] = {
["name"] = "Blacksmithing: Darkspear",
["requires"] = AL["Anvil"],
["tools"] = {5956},
["castTime"] = 60,
["text"] = "",
["craftItem"] = 12802,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12655, 20},
[2] = {12804, 20},
[3] = {12364, 2},
[4] = {12800, 2},
[5] = {12644, 2},
},
},
[27585] = {
["name"] = "Blacksmithing: Heavy Obsidian Belt",
["requires"] = AL["Anvil"],
@@ -17193,6 +17763,158 @@ GetSpellInfoVanillaDB = {
[5] = {14227, 4},
},
},
[57115] = {
["name"] = "Leatherworking: Enchanted Armor Kit",
["requires"] = "",
["tools"] = "",
["castTime"] = 25,
["text"] = "",
["craftItem"] = 61183,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12810, 3},
[2] = {61673, 3},
[3] = {14341, 2},
},
},
[45483] = {
["name"] = "Leatherworking: Inscribed Runic Bracers",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61188,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {12810, 12},
[2] = {15407, 4},
[3] = {12803, 4},
[4] = {7076, 8},
[5] = {14341, 8},
},
},
[45473] = {
["name"] = "Leatherworking: Dreamhide Mantle",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61356,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61229, 22},
[2] = {12810, 20},
[3] = {15407, 6},
[4] = {12803, 6},
},
},
[45475] = {
["name"] = "Leatherworking: Dreamhide Bracers",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61357,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61229, 8},
[2] = {12810, 6},
[3] = {15407},
[4] = {12803, 2},
},
},
[45477] = {
["name"] = "Leatherworking: Dreamhide Leggings",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61358,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61229, 12},
[2] = {12810, 12},
[3] = {15407, 4},
[4] = {12803, 6},
[5] = {7082, 6},
},
},
[45479] = {
["name"] = "Leatherworking: Dreamhide Belt",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 61359,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {61229, 8},
[2] = {12810, 12},
[3] = {15407, 2},
[4] = {14341, 8},
[5] = {7082, 8},
},
},
[54013] = {
["name"] = "Leatherworking: Chromatic Leggings",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 65036,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {17012, 6},
[2] = {17010, 5},
[3] = {17011, 3},
[4] = {12607, 6},
[5] = {15407, 5},
[6] = {14227, 4},
},
},
[54015] = {
["name"] = "Leatherworking: Chromatic Leggings",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 65037,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {17011, 6},
[2] = {17010, 3},
[3] = {14227, 4},
[4] = {7076, 6},
[5] = {12607, 6},
[6] = {15407, 4},
},
},
[54007] = {
["name"] = "Leatherworking: Corehound Gloves",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 65038,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {17010, 9},
[2] = {17012, 12},
[3] = {12810, 12},
[4] = {12607, 6},
[5] = {15407, 5},
[6] = {14227, 4},
},
},
[24124] = {
["name"] = "Leatherworking: Blood Tiger Breastplate",
["requires"] = "",
@@ -17430,6 +18152,22 @@ GetSpellInfoVanillaDB = {
[4] = {15407, 2},
},
},
[57022] = {
["name"] = "Leatherworking: Centaur Battle Harness",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 60910,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {8170, 20},
[2] = {12810, 8},
[3] = {7082, 2},
[4] = {7076},
},
},
[24850] = {
["name"] = "Leatherworking: Sandstalker Gauntlets",
["requires"] = "",
@@ -18041,6 +18779,22 @@ GetSpellInfoVanillaDB = {
[5] = {8343, 4},
},
},
[57010] = {
["name"] = "Leatherworking: Boots of the Wind",
["requires"] = "",
["tools"] = "",
["castTime"] = 60,
["text"] = "",
["craftItem"] = 65023,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
[1] = {4304, 20},
[2] = {7081, 10},
[3] = {8172},
[4] = {8343, 4},
},
},
[19059] = {
["name"] = "Leatherworking: Volcanic Leggings",
["requires"] = "",
@@ -18610,7 +19364,7 @@ GetSpellInfoVanillaDB = {
[2] = {17012, 12},
[3] = {12810, 10},
[4] = {15407, 4},
[5] = {14341, 4},
[5] = {14227, 4},
},
},
[22927] = {
+5 -2
View File
@@ -49,6 +49,7 @@ function AtlasLoot_FixText(text)
text = gsub(text, "#w12#", AL["Wand"]);
text = gsub(text, "#w13#", AL["Fist Weapon"]);
text = gsub(text, "#w14#", AL["Fishing Pole"]);
text = gsub(text, "#w15#", AL["Spear"]);
-- Misc. Equipment
text = gsub(text, "#e1#", AL["Potion"]);
@@ -82,6 +83,7 @@ function AtlasLoot_FixText(text)
text = gsub(text, "#e31#", AL["random stats"]);
text = gsub(text, "#e32#", AL["random resistance"]);
text = gsub(text, "#e33#", AL["random colour"]);
text = gsub(text, "#e34#", AL["toy"]);
-- Classes
text = gsub(text, "#c1#", AL["Druid"]); -- =q13=#c1#
@@ -116,6 +118,7 @@ function AtlasLoot_FixText(text)
text = gsub(text, "#p14#", AL["Gnomish Engineering"]);
text = gsub(text, "#p15#", AL["Goblin Engineering"]);
text = gsub(text, "#p16#", AL["Survival"]);
text = gsub(text, "#p17#", AL["Garderning"]);
--Reputation
text = gsub(text, "#r1#", AL["Neutral"]);
@@ -125,8 +128,8 @@ function AtlasLoot_FixText(text)
text = gsub(text, "#r5#", AL["Exalted"]);
--Battleground Factions
text = gsub(text, "#b1#", AL["Stormpike Guard"]);
text = gsub(text, "#b2#", AL["Frostwolf Clan"]);
text = gsub(text, "#b1#", "Stormpike Guard");
text = gsub(text, "#b2#", "Frostwolf Clan");
text = gsub(text, "#b3#", AL["Silverwing Sentinels"]);
text = gsub(text, "#b4#", AL["Warsong Outriders"]);
text = gsub(text, "#b5#", AL["The League of Arathor"]);
+11 -4
View File
@@ -155,7 +155,7 @@ end
--[[
local RecursiveSearchZoneName(dataTable, zoneID):
A recursive function iterate AtlasLoot_DewDropDown table for the zone name
A recursive function iterate AtlasLoot_HewdropDown table for the zone name
]]
local function RecursiveSearchZoneName(dataTable, zoneID)
if(dataTable[2] == zoneID) then
@@ -174,9 +174,9 @@ AtlasLoot_GetWishListSubheading(dataID):
Iterating through dropdown data tables to search backward for zone name with specified dataID
]]
function AtlasLoot_GetWishListSubheading(dataID)
if not AtlasLoot_DewDropDown or not AtlasLoot_DewDropDown_SubTables then return end
if not AtlasLoot_HewdropDown or not AtlasLoot_HewdropDown_SubTables then return end
local zoneID;
for subKey, subTable in pairs(AtlasLoot_DewDropDown_SubTables) do
for subKey, subTable in pairs(AtlasLoot_HewdropDown_SubTables) do
for _, t in ipairs(subTable) do
if t[2] == dataID then
zoneID = subKey;
@@ -185,7 +185,7 @@ function AtlasLoot_GetWishListSubheading(dataID)
end
if zoneID then break end
end
return RecursiveSearchZoneName(AtlasLoot_DewDropDown, zoneID or dataID);
return RecursiveSearchZoneName(AtlasLoot_HewdropDown, zoneID or dataID);
end
function AtlasLoot_GetWishListSubheadingBoss(dataID)
@@ -256,6 +256,13 @@ function AtlasLoot_CategorizeWishList(wlTable)
-- If a subheading is on the last row of a column, push it to next column
if ((table.getn(result) + 1) - math.floor((table.getn(result) + 1)/15)*15) == 0 then table.insert(result, { 0, "", "", "" }) end
-- Subheading
--[[ some debug code that I've used to fix WishList errors before due to people adding drops to AtlasLoot incorrectly.
local box = k or "Unknown"
local cat = categories[k][1][5] or "Unknown"
print("box: "..box.." - cat: "..cat)
table.insert(result, { 0, "INV_Box_01", "=q6="..box, "=q0="..GetLootTableParent(strsplit("|", cat)) });]]--
table.insert(result, { 0, "INV_Box_01", "=q6="..k, "=q0="..GetLootTableParent(strsplit("|", categories[k][1][5])) });
-- Sort first then add items
table.sort(v, AtlasLoot_WishListSortCheck); -- not works?
+101 -12
View File
@@ -467,6 +467,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "e13661", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracer - Strength", "=ds=#sr# =so1=180 =so2=200 =so3=220 =so4=240" },
{ "e13659", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Spirit", "=ds=#sr# =so1=180 =so2=200 =so3=220 =so4=240" },
{ "e13663", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Greater Mana", "=ds=#sr# =so1=185 =so2=205 =so3=225 =so4=245" },
{ "e57146", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracer - Vampirism", "=ds=#sr# =so1=185 =so2=205 =so3=225 =so4=245" },
{ "e13687", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Lesser Spirit", "=ds=#sr# =so1=190 =so2=210 =so3=230 =so4=250" },
{ "e21931", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Winter's Might", "=ds=#sr# =so1=190 =so2=210 =so3=230 =so4=250" },
{ "e13689", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Block", "=ds=#sr# =so1=195 =so2=215 =so3=235 =so4=255" },
@@ -480,10 +481,11 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "e13794", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Resistance", "=ds=#sr# =so1=205 =so2=225 =so3=245 =so4=265" },
{ "e13822", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracer - Intellect", "=ds=#sr# =so1=210 =so2=230 =so3=250 =so4=270" },
{ "e13815", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Agility", "=ds=#sr# =so1=210 =so2=230 =so3=250 =so4=270" },
{ "e13817", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Stamina", "=ds=#sr# =so1=210 =so2=230 =so3=250 =so4=270" },
};
EnchantingExpert2 = {
{ "e13817", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Stamina", "=ds=#sr# =so1=210 =so2=230 =so3=250 =so4=270" },
{ "e13836", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Stamina", "=ds=#sr# =so1=215 =so2=235 =so3=255 =so4=275" },
{ "e13841", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Advanced Mining", "=ds=#sr# =so1=215 =so2=235 =so3=255 =so4=275" },
{ "e13846", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracer - Greater Spirit", "=ds=#sr# =so1=220 =so2=240 =so3=260 =so4=280" },
@@ -569,6 +571,16 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "e20031", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Superior Striking", "=ds=#sr# =so1=300 =so2=320 =so3=340 =so4=360" },
{ "e57030", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracer - Greater Agility", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e57028", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracer - Spell Power", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e57142", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Greater Spirit", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e57127", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Superior Stamina", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e57148", "Spell_Holy_GreaterHeal", "=ds=Enchant Boots - Vampirism", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e57144", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracer - Greater Deflection", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e57119", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Mighty Mana", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e57117", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Greater Arcane Resistance", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e46601", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Arcane Power", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e46602", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Nature Power", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e46086", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Major Strength", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "e57518", "inv_misc_gem_pearl_04", "=ds=Eternal Dreamstone Shard", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
};
---------------------
@@ -610,6 +622,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s7818", "inv_staff_01", "=q1=Silver Rod", "=ds=#sr# =so1=100 =so2=105 =so3=107 =so4=110" },
{ "s19666", "inv_misc_key_03", "=q2=Silver Skeleton Key", "=ds=#sr# =so1=100 =so2=100 =so3=110 =so4=120" },
{ "s8367", "inv_chest_plate05", "=q2=Ironforge Breastplate", "=ds=#sr# =so1=100 =so2=140 =so3=160 =so4=180" },
{ "s2671", "inv_bracer_05", "=q2=Rough Bronze Bracers", "=ds=#sr# =so1=100 =so2=140 =so3=160 =so4=180" },
{ "s3491", "inv_weapon_shortblade_04", "=q2=Big Bronze Knife", "=ds=#sr# =so1=105 =so2=135 =so3=150 =so4=165" },
{ "s2670", "inv_chest_chain_08", "=q1=Rough Bronze Cuirass", "=ds=#sr# =so1=105 =so2=145 =so3=160 =so4=175" },
{ "s2668", "inv_pants_03", "=q2=Rough Bronze Leggings", "=ds=#sr# =so1=105 =so2=145 =so3=160 =so4=175" },
@@ -632,10 +645,10 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s9987", "inv_axe_21", "=q1=Bronze Battle Axe", "=ds=#sr# =so1=135 =so2=165 =so3=180 =so4=195" },
{ "s3333", "inv_gauntlets_05", "=q2=Silvered Bronze Gauntlets", "=ds=#sr# =so1=135 =so2=165 =so3=180 =so4=195" },
{ "s6518", "inv_hammer_05", "=q2=Iridescent Hammer", "=ds=#sr# =so1=140 =so2=170 =so3=185 =so4=200" },
{ "s3334", "inv_boots_01", "=q2=Green Iron Boots", "=ds=#sr# =so1=145 =so2=175 =so3=190 =so4=205" },
};
SmithingJourneyman2 = {
{ "s3334", "inv_boots_01", "=q2=Green Iron Boots", "=ds=#sr# =so1=145 =so2=175 =so3=190 =so4=205" },
{ "s3297", "inv_hammer_04", "=q2=Mighty Iron Hammer", "=ds=#sr# =so1=145 =so2=175 =so3=190 =so4=205" },
{ "s2675", "inv_chest_plate15", "=q3=Shining Silver Breastplate", "=ds=#sr# =so1=145 =so2=175 =so3=190 =so4=205" },
{ "s8768", "inv_misc_armorkit_12", "=q1=Iron Buckle", "=ds=#sr# =so1=150 =so2=150 =so3=152 =so4=155" },
@@ -705,9 +718,13 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s9995", "inv_axe_03", "=q2=Blue Glittering Axe", "=ds=#sr# =so1=220 =so2=245 =so3=257 =so4=270" },
{ "s46626", "inv_boots_plate_01", "=q2=Steel Plate Boots", "=ds=#sr# =so1=220 =so2=220 =so3=220 =so4=220" },
{ "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" },
{ "s9952", "inv_shoulder_09", "=q2=Ornate Mithril Shoulders", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
{ "s9997", "inv_sword_10", "=q2=Wicked Mithril Blade", "=ds=#sr# =so1=225 =so2=250 =so3=262 =so4=275" },
{ "s46629", "inv_chest_chain_10", "=q2=Steel Plate Armor", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" },
};
SmithingExpert3 = {
{ "s46628", "inv_pants_04", "=q2=Steel Plate Legguards", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" },
};
@@ -736,18 +753,25 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s15293", "inv_chest_chain_16", "=q2=Dark Iron Mail", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
{ "s16649", "inv_bracer_19", "=q2=Imperial Plate Bracers", "=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" },
{ "s16965", "inv_axe_24", "=q2=Bleakwood Hew", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
{ "s20201", "inv_staff_19", "=q1=Arcanite Rod", "=ds=#sr# =so1=275 =so2=275 =so3=280 =so4=285" },
{ "s19669", "inv_misc_key_08", "=q2=Arcanite Skeleton Key", "=ds=#sr# =so1=275 =so2=275 =so3=280 =so4=285" },
{ "s16651", "inv_misc_armorkit_20", "=q2=Thorium Shield Spike", "=ds=#sr# =so1=275 =so2=295 =so3=305 =so4=315" },
{ "s16969", "inv_axe_12", "=q2=Ornate Thorium Handaxe", "=ds=#sr# =so1=275 =so2=300 =so3=312 =so4=325" },
{ "s15295", "inv_shoulder_09", "=q2=Dark Iron Shoulders", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
{ "s16652", "inv_boots_plate_08", "=q2=Thorium Boots", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
{ "s47032", "inv_belt_04", "=q2=Hateforge Belt", "=ds=#sr# =so1=275 =so2=300 =so3=312 =so4=325" },
};
SmithingArtisan2 = {
{ "s47034", "inv_boots_01", "=q2=Hateforge Boots", "=ds=#sr# =so1=275 =so2=300 =so3=310 =so4=320" },
{ "s15295", "inv_shoulder_09", "=q2=Dark Iron Shoulders", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
{ "s16652", "inv_boots_plate_08", "=q2=Thorium Boots", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
{ "s16653", "inv_helmet_23", "=q2=Thorium Helm", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" },
{ "s16971", "inv_weapon_halberd_11", "=q2=Huge Thorium Battleaxe", "=ds=#sr# =so1=280 =so2=305 =so3=317 =so4=330" },
{ "s47033", "inv_gauntlets_04", "=q2=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" },
{ "s47029", "inv_helmet_10", "=q2=Hateforge Helmet", "=ds=#sr# =so1=290 =so2=300 =so3=310 =so4=320" },
{ "s47030", "inv_chest_chain_09", "=q2=Hateforge Cuirass", "=ds=#sr# =so1=290 =so2=300 =so3=310 =so4=320" },
{ "s47031", "inv_pants_03", "=q2=Hateforge Leggings", "=ds=#sr# =so1=290 =so2=300 =so3=310 =so4=320" },
{ "s16656", "inv_boots_plate_03", "=q2=Radiant Boots", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
{ "s16660", "inv_shoulder_20", "=q3=Dawnbringer Shoulders", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
{ "s23632", "inv_belt_11", "=q3=Girdle of the Dawn", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
@@ -769,15 +793,17 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s24136", "inv_chest_chain_14", "=q3=Bloodsoul Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s24138", "inv_gauntlets_31", "=q3=Bloodsoul Gauntlets", "=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" },
};
SmithingArtisan3 = {
{ "s24914", "inv_chest_plate06", "=q3=Darkrune Breastplate", "=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" },
{ "s24913", "inv_helmet_10", "=q3=Darkrune Helm", "=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" },
{ "s24140", "inv_pants_plate_21", "=q3=Darksoul Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16986", "inv_weapon_shortblade_27", "=q3=Blood Talon", "=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" },
};
SmithingArtisan3 = {
{ "s16987", "inv_spear_08", "=q3=Darkspear", "=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" },
{ "s27585", "inv_belt_16", "=q3=Heavy Obsidian Belt", "=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" },
@@ -785,6 +811,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s28461", "inv_chest_plate07", "=q3=Ironvine Breastplate", "=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" },
{ "s27588", "inv_belt_16", "=q3=Light Obsidian Belt", "=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" },
{ "s27589", "inv_gauntlets_31", "=q4=Black Grasp of the Destroyer", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s28244", "inv_bracer_07", "=q4=Icebane Bracers", "=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" },
@@ -793,6 +820,12 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "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" },
{ "s21161", "inv_hammer_unique_sulfuras", "=q4=Sulfuron Hammer", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
{ "s54009", "inv_chest_plate16", "=q4=Fiery Chain Breastplate", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
{ "s57181", "INV_Misc_Buckle_07", "=q4=Dreamsteel Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
{ "s45471", "INV_Boots_01", "=q4=Dreamsteel Boots", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
{ "s45469", "INV_Bracer_03", "=q4=Dreamsteel Bracers", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
{ "s45467", "INV_Pants_03", "=q4=Dreamsteel Leggings", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" },
};
Armorsmith1 = {
@@ -858,6 +891,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s20890", "inv_sword_48", "=q3=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" },
};
--------------------
@@ -1070,12 +1104,14 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
};
LeatherArtisan3 = {
{ "s57022", "inv_chest_leather_04", "=q3=Centaur Battle Harness", "=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" },
{ "s24846", "inv_bracer_05", "=q3=Spitfire Bracers", "=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" },
{ "s24847", "inv_gauntlets_11", "=q3=Spitfire Gauntlets", "=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" },
{ "s23704", "inv_gauntlets_26", "=q3=Timbermaw Brawlers", "=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" },
{ "s28224", "inv_bracer_07", "=q4=Icy Scale Bracers", "=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" },
{ "s28223", "inv_gauntlets_28", "=q4=Icy Scale Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
@@ -1083,6 +1119,11 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s28221", "inv_bracer_07", "=q4=Polar Bracers", "=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" },
{ "s28219", "inv_chest_cloth_08", "=q4=Polar Tunic", "=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" },
{ "s45477", "inv_pants_07", "=q4=Dreamhide Leggings", "=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" },
{ "s45473", "inv_shoulder_18", "=q4=Dreamhide Mantle", "=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" },
};
Dragonscale1 = {
@@ -1107,11 +1148,13 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s23708", "inv_gauntlets_22", "=q4=Chromatic Gauntlets", "=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" },
{ "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" },
};
Elemental1 = {
{ "s10630", "inv_gauntlets_30", "=q3=Gauntlets of the Sea", "=ds=#sr# =so1=230 =so2=250 =so3=260 =so4=270" },
{ "s10632", "inv_helmet_08", "=q3=Helm of Fire", "=ds=#sr# =so1=250 =so2=270 =so3=280 =so4=290" },
{ "s57010", "inv_boots_05", "=q3=Boots of the Wind", "=ds=#sr# =so1=255 =so2=255 =so3=255 =so4=255" },
{ "s19059", "inv_pants_06", "=q2=Volcanic Leggings", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" },
{ "s19061", "inv_shoulder_18", "=q3=Living Shoulders", "=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" },
@@ -1129,7 +1172,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s57012", "inv_chest_leather_08", "=q4=Earthguard Tunic", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "s57014", "inv_pants_06", "=q4=Flamewrath Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "s57018", "inv_boots_05", "=q4=Windwalker Boots", "=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" },
};
Tribal1 = {
@@ -1152,6 +1195,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s23709", "inv_belt_24", "=q4=Corehound Belt", "=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" },
{ "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" },
};
---------------
@@ -1226,7 +1270,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
TailoringJourneyman2 = {
{ "s3856", "inv_boots_03", "=q2=Spider Silk Slippers", "=ds=#sr# =so1=140 =so2=160 =so3=175 =so4=190" },
{ "s8760", "inv_helmet_29", "=q1=Azure Silk Hood", "=ds=#sr# =so1=145 =so2=155 =so3=160 =so4=165" },
{ "s8760", "inv_helmet_29", "=q2=Azure Silk Hood", "=ds=#sr# =so1=145 =so2=155 =so3=160 =so4=165" },
{ "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" },
{ "s3813", "inv_misc_bag_07", "=q1=Small Silk Pack", "=ds=#sr# =so1=150 =so2=170 =so3=185 =so4=200" },
@@ -1400,6 +1444,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
};
TailoringArtisan4 = {
{ "s57024", "inv_gauntlets_12", "=q3=Windbinder Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s57020", "inv_belt_01", "=q3=Dustguider Sash", "=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" },
{ "s18452", "inv_misc_bandana_01", "=q3=Mooncloth Circlet", "=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" },
@@ -1429,6 +1475,14 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "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" },
};
TailoringArtisan5 = {
{ "s54011", "inv_boots_05", "=q4=Flarecore Boots", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "s45485", "inv_gauntlets_25", "=q4=Gloves of Unwinding Mystery", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "s45459", "inv_pants_14", "=q4=Dreamthread Kilt", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
{ "s45461", "inv_bracer_06", "=q4=Dreamthread Bracers", "=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" },
{ "s45457", "INV_Shoulder_05", "=q4=Dreamthread Gloves", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
};
-----------------
-- Engineering --
@@ -1465,6 +1519,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s3941", "inv_misc_bomb_09", "=q1=Small Bronze Bomb", "=ds=#sr# =so1=120 =so2=120 =so3=145 =so4=170" },
{ "s3939", "inv_weapon_rifle_07", "=q2=Lovingly Crafted Boomstick", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
{ "s3940", "inv_helmet_47", "=q2=Shadow Goggles", "=ds=#sr# =so1=120 =so2=145 =so3=157 =so4=170" },
{ "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" },
{ "s3947", "inv_ammo_bullet_02", "=q1=Crafted Solid Shot", "=ds=#sr# =so1=125 =so2=125 =so3=135 =so4=145" },
{ "s3945", "inv_misc_dust_06", "=q1=Heavy Blasting Powder", "=ds=#sr# =so1=125 =so2=125 =so3=135 =so4=145" },
{ "s3946", "inv_misc_bomb_06", "=q1=Heavy Dynamite", "=ds=#sr# =so1=125 =so2=125 =so3=135 =so4=145" },
@@ -1480,11 +1536,11 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s3952", "inv_gizmo_07", "=q2=Minor Recombobulator", "=ds=#sr# =so1=140 =so2=165 =so3=177 =so4=190" },
{ "s3953", "inv_gizmo_bronzeframework_01", "=q1=Bronze Framework", "=ds=#sr# =so1=145 =so2=145 =so3=170 =so4=195" },
{ "s3954", "inv_weapon_rifle_06", "=q2=Moonsight Rifle", "=ds=#sr# =so1=145 =so2=170 =so3=182 =so4=195" },
{ "s9271", "inv_misc_food_26", "=q1=Aquadynamic Fish Attractor", "=ds=#sr# =so1=150 =so2=150 =so3=160 =so4=170" },
{ "s23067", "spell_ice_magicdamage", "=q1=Blue Firework", "=ds=#sr# =so1=150 =so2=150 =so3=162 =so4=175" },
};
EngineeringJourneyman2 = {
{ "s9271", "inv_misc_food_26", "=q1=Aquadynamic Fish Attractor", "=ds=#sr# =so1=150 =so2=150 =so3=160 =so4=170" },
{ "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" },
{ "s12584", "inv_battery_02", "=q1=Gold Power Core", "=ds=#sr# =so1=150 =so2=150 =so3=170 =so4=190" },
@@ -1686,6 +1742,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s14891", "inv_ingot_mithril", "=q1=Smelt Dark Iron", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" },
{ "s10098", "inv_ingot_08", "=q2=Smelt Truesilver", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" },
{ "s16153", "inv_ingot_07", "=q1=Smelt Thorium", "=ds=#sr# =so1=250 =so2=250 =so3=250 =so4=250" },
{ "s57121", "INV_Ingot_DreamSteel", "=q5=Smelt Dreamsteel", "=ds=#sr# =so1=300 =so2=350 =so3=362 =so4=375" },
{ "s22967", "inv_ingot_thorium", "=q5=Smelt Elementium", "=ds=#sr# =so1=300 =so2=350 =so3=362 =so4=375" },
};
@@ -1865,10 +1922,11 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s18629", "inv_misc_bandage_11", "=q1=Runecloth Bandage", "=ds=#sr# =so1=260 =so2=260 =so3=290 =so4=320" },
{ "s18630", "inv_misc_bandage_12", "=q1=Heavy Runecloth Bandage", "=ds=#sr# =so1=290 =so2=290 =so3=320 =so4=350" },
{ "s23787", "inv_drink_14", "=q1=Powerful Anti-Venom", "=ds=#sr# =so1=300 =so2=300 =so3=330 =so4=360" },
{ "s10844", "inv_misc_ammo_gunpowder_02", "=q1=Powerful Smelling Salts", "=ds=#sr# =so1=300 =so2=300 =so3=330 =so4=360" },
};
--------------
-- FirstAid --
-- Survival --
--------------
Survival1 = {
@@ -1887,6 +1945,35 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s46077", "inv_misc_lantern_01", "=q3=Repaired Electro-Lantern", "=ds=#sr# =so1=90 =so2=120 =so3=135 =so4=150" },
};
Survival2 = {
{ 0, "", "", "" },
{ 0, "trade_herbalism", "=q6=#p17#", "" },
{ 0, "", "", "" },
{ 51706, "inv_misc_bag_03", "=q1=Country Pumpkin Seeds", "", "" },
{ 51713, "inv_misc_food_25", "=q1=Plump Country Pumpkin", "3-8", "" },
{ 51710, "inv_misc_food_25", "=q1=Plump Country Pumpkin", "3-8", "" },
{ 0, "", "", "" },
{ 51707, "inv_misc_bag_04", "=q1=Mountain Berry Bush Seeds", "3-8", "" },
{ 51711, "inv_misc_food_40", "=q1=Sweet Mountain Berry", "3-8", "" },
{ 51714, "inv_misc_food_40", "=q1=Sweet Mountain Berry", "3-8", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 51708, "inv_misc_bag_06", "=q1=Striped Melon Seeds", "", "" },
{ 51718, "inv_misc_food_22", "=q1=Juicy Striped Melon", "3-8", "" },
{ 51712, "inv_misc_food_22", "=q1=Juicy Striped Melon", "3-8", "" },
{ 0, "", "", "" },
{ 51716, "inv_misc_bag_04", "=q1=Magic Mushroom Spores", "", "" },
{ 51720, "inv_mushroom_11", "=q1=Power Mushroom", "2-6", "" },
{ 51717, "inv_mushroom_11", "=q1=Hardened Mushroom", "2-6", "" },
};
Poisons1 = {
{ 0, "Trade_BrewPoison", "=q6=#rp1#", "" },
{ "s8681", "ability_poisons", "=q1=Instant Poison", "=ds=#lr#=q1= 20 =ds=#sr# =so1=1 =so2=125 =so3=150 =so4=175" },
@@ -1914,6 +2001,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s13230", "ability_poisonsting", "=q1=Wound Poison IV", "=ds=#lr#=q1= 56 =ds=#sr# =so1=1 =so2=305 =so3=330 =so4=355" },
{ "s25347", "ability_rogue_dualweild", "=q1=Deadly Poison V", "=ds=#lr#=q1= 60 =ds=#sr# =so1=1 =so2=300 =so3=325 =so4=350" },
{ "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=?" },
};
}
+277 -240
View File
@@ -168,9 +168,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "INV_Ingot_Mithril", "=q6=#r5#", "" },
{ 20040, "INV_Scroll_03", "=q1=Plans: Dark Iron Boots", "=ds=#p2# #m14#" },
{ 62004, "INV_Scroll_03", "=q1=Plans: Fiery Chain Breastplate", "=ds=#p2# #m14#" },
{ 19210, "INV_Scroll_03", "=q1=Plans: Ebon Hand", "=ds=#p2# #m14#" },
{ 19211, "INV_Scroll_03", "=q1=Plans: Blackguard", "=ds=#p2# #m14#" },
{ 19212, "INV_Scroll_03", "=q1=Plans: Nightfall", "=ds=#p2# #m14#" },
{ 62005, "INV_Scroll_03", "=q1=Pattern: Flarecore Boots", "=ds=#p8# #m14#" },
{ 62006, "INV_Scroll_03", "=q1=Pattern: Chromatic Leggings", "=ds=#p7# #m14#" },
{ 62007, "INV_Scroll_03", "=q1=Pattern: Molten Leggings", "=ds=#p7# #m14#" },
{ 62003, "INV_Scroll_03", "=q1=Pattern: Corehound Gloves", "=ds=#p7# #m14#" },
};
Cenarion1 = {
{ 0, "", "", "" },
@@ -240,7 +245,7 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 20382, "INV_Scroll_03", "=q1=Pattern: Dreamscale Breastplate", "=ds=#p7# #m14#" },
{ 22221, "INV_Scroll_03", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# #m14#" },
{ 0, "", "", "" },
{ 83548, "INV_Scroll_04", "=q1=Plans: Dream's Herald", "=ds=#p2# #m14#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
@@ -370,7 +375,7 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 12185, "INV_Helmet_66", "=q2=Bloodsail Admiral's Hat", "=ds=#s1#, #a1#" },
{ 0, "", "", "" },
{ 0, "INV_Helmet_66", "=q6=#r4#", "" },
{ 83494, "", "=q2=Captain's Overcoat", "=ds=#s5#, #a2#" },
{ 83494, "inv_chest_leather_10", "=q3=Captain's Overcoat", "=ds=#s5#, #a2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
@@ -383,29 +388,29 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
};
Warderns1 = {
{ 0, "inv_misc_head_dragon_01", "=q6=#r2#", "" },
{ 61000, "", "=q1=Time-Worn Rune", "" },
{ 61000, "inv_misc_rune_08", "=q1=Time-Worn Rune", "" },
{ 0, "", "", "" },
{ 0, "inv_misc_head_dragon_01", "=q6=#r4#", "" },
{ 61001, "", "=q3=Claw of the Infinite", "=ds=#h1#, #w4#" },
{ 61013, "", "=q3=Gauntlets of Temporal Guidance", "=ds=#a3#, #s9#" },
{ 61002, "", "=q3=Robe of the Custodian", "=ds=#a1#, #s5#" },
{ 61004, "", "=q3=Sandswept Ring of Arcanum", "=ds=#s13#" },
{ 61003, "", "=q3=Timeskipper's Helm of Alacrity", "=ds=#a4#, #s1#" },
{ 51043, "", "=q2=Void-Linked Satchel", "=ds=#e10#" },
{ 50070, "", "=q1=Bronze Whelpling", "=ds=#e15#" },
{ 61001, "inv_sword_34", "=q3=Claw of the Infinite", "=ds=#h1#, #w4#" },
{ 61013, "inv_gauntlets_10", "=q3=Gauntlets of Temporal Guidance", "=ds=#a3#, #s9#" },
{ 61002, "inv_chest_cloth_30", "=q3=Robe of the Custodian", "=ds=#a1#, #s5#" },
{ 61004, "inv_jewelry_ring_33", "=q3=Sandswept Ring of Arcanum", "=ds=#s13#" },
{ 61003, "inv_helmet_09", "=q3=Timeskipper's Helm of Alacrity", "=ds=#a4#, #s1#" },
{ 51043, "inv_misc_bag_enchantedrunecloth", "=q2=Void-Linked Satchel", "=ds=#e10#" },
{ 50070, "INV_Misc_Head_Dragon_01", "=q1=Bronze Whelpling", "=ds=#e15#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "inv_misc_head_dragon_01", "=q6=#r5#", "" },
{ 61007, "", "=q4=Temporal Bronze Boots", "=ds=#a4#, #s12#" },
{ 61009, "", "=q4=Time-Shifting Wheel", "=ds=#h4#, #w8#" },
{ 61010, "", "=q4=Wing of the Time-Lord", "=ds=#s4#" },
{ 61006, "", "=q4=Blade of Infinite Mysteries", "=ds=#w10#, #h3#" },
{ 61007, "inv_boots_plate_03", "=q4=Temporal Bronze Boots", "=ds=#a4#, #s12#" },
{ 61009, "inv_shield_10", "=q4=Time-Shifting Wheel", "=ds=#h4#, #w8#" },
{ 61010, "inv_misc_cape_14", "=q4=Wing of the Time-Lord", "=ds=#s4#" },
{ 61006, "inv_sword_22", "=q4=Blade of Infinite Mysteries", "=ds=#w10#, #h3#" },
{ 61011, "INV_Weapon_Rifle_09", "=q4=Flintlocke's Hand Cannon", "=ds=#w5#" },
{ 61012, "", "=q4=Shard of Eternity", "=ds=#s2#" },
{ 51252, "", "=q4=Bronze Drake", "=ds=#e7#" },
{ 80300, "", "=q1=Time Warden's Tabard", "=ds=#s7#" },
{ 61012, "inv_archaeology_70_highborne_inertleystonecharm", "=q4=Shard of Eternity", "=ds=#s2#" },
{ 51252, "inv_misc_head_dragon_01", "=q4=Bronze Drake", "=ds=#e7#" },
{ 80300, "inv_shirt_guildtabard_01", "=q1=Time Warden's Tabard", "=ds=#s7#" },
};
Defilers = {
{ 0, "", "", "" },
@@ -413,7 +418,7 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "=q1=#m4#: =ds=#s7#" },
};
GelkisClan1 = {
{ 5748, "", "=q2=Centaur Longbow", "=ds=#w2#"},
{ 5748, "inv_weapon_bow_07", "=q2=Centaur Longbow", "=ds=#w2#"},
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Centaur_01", "=q6=#r2#", "" },
{ 6773, "INV_Chest_Chain_07", "=q2=Gelkis Marauder Chain", "=q1=#m4#: =ds=#s5#, #a3#" },
@@ -421,25 +426,27 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Centaur_01", "=q6=#r3#", "" },
{ 60899, "", "=q2=Grips of the Unified Storm", "=ds=#s9#, #a1#"},
{ 60900, "", "=q2=Warleader Sash", "=ds=#s8#, #a2#"},
{ 60901, "", "=q2=Centaur Skullcap", "=ds=#s1#, #a3#"},
{ 60899, "inv_gauntlets_21", "=q2=Grips of the Unified Storm", "=ds=#s9#, #a1#"},
{ 60900, "inv_belt_12", "=q2=Warleader Sash", "=ds=#s8#, #a2#"},
{ 60901, "inv_helmet_36", "=q2=Centaur Skullcap", "=ds=#s1#, #a3#"},
{ 0, "", "", "" },
{ 60854, "", "=q2=Blood of the First Khan", "=q1=#m4#"},
{ 60860, "", "=q2=Triskelion of Roving Elements", "=q1=#m4#"},
{ 60854, "inv_potion_50", "=q2=Blood of the First Khan", "=q1=#m4#"},
{ 60860, "spell_frost_windwalkon", "=q2=Triskelion of Roving Elements", "=q1=#m4#"},
{ 60859, "INV_Misc_Gem_CystalCut_01", "=q2=Theradras' Shed Tear", "=q1=#m4#"},
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Centaur_01", "=q6=#r4#", "" },
{ 60902, "", "=q3=Gelkis Earthbinder", "=ds=#h3#, #w6#"},
{ 60903, "", "=q3=Ceremonial Centaur Ring", "=ds=#s13#"},
{ 60904, "", "=q3=Maraudine Oath Pauldrons", "=ds=#s1#, #a4#"},
{ 60902, "inv_mace_11", "=q3=Gelkis Earthbinder", "=ds=#h3#, #w6#"},
{ 60903, "inv_belt_27", "=q3=Ceremonial Centaur Ring", "=ds=#s13#"},
{ 60904, "inv_shoulder_28", "=q3=Maraudine Oath Pauldrons", "=ds=#s1#, #a4#"},
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Centaur_01", "=q6=#r5#", "" },
{ 60905, "", "=q4=Batu'kar of the Second Khan", "=ds=#w9#"},
{ 60964, "", "=q3=Plans: Mantle of Centaur Authority", "=ds=#p2# (300)"},
{ 60965, "", "=q3=Pattern: Windbinder Gloves", "=ds=#p8# (300)"},
{ 60966, "", "=q3=Formula: Enchant Bracer - Spell Power", "=ds=#p4# (300)"},
{ 60905, "inv_wand_07", "=q4=Batu'kar of the Second Khan", "=ds=#w9#"},
{ 60964, "inv_scroll_04", "=q3=Plans: Mantle of Centaur Authority", "=ds=#p2# (300)"},
{ 60908, "inv_shoulder_13", "=q3=Mantle of Centaur Authority", "=ds=#s3#, #a4#"},
{ 60965, "inv_scroll_05", "=q3=Pattern: Windbinder Gloves", "=ds=#p8# (300)"},
{ 60907, "inv_gauntlets_12", "=q3=Windbinder Gloves", "=ds=#s9#, #a1#"},
{ 60966, "inv_misc_note_01", "=q3=Formula: Enchant Bracer - Spell Power", "=ds=#p4# (300)"},
};
LeagueofArathor = {
@@ -448,7 +455,7 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 20132, "INV_Shirt_GuildTabard_01", "=q1=Arathor Battle Tabard", "=q1=#m4#: =ds=#s7#" },
};
MagramClan1 = {
{ 5748, "", "=q2=Centaur Longbow", "=ds=#w2#"},
{ 5748, "inv_weapon_bow_07", "=q2=Centaur Longbow", "=ds=#w2#"},
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Centaur_01", "=q6=#r2#", "" },
{ 6789, "INV_Misc_Cape_12", "=q2=Ceremonial Centaur Blanket", "=q1=#m4#: =ds=#s4#" },
@@ -456,293 +463,323 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Centaur_01", "=q6=#r3#", "" },
{ 60879, "", "=q2=Centaur Stompers", "=ds=#s12#, #a2#"},
{ 60880, "", "=q2=Packrunner Harness", "=ds=#s5#, #a3#"},
{ 60881, "", "=q2=Windwatcher Sash", "=ds=#s10#, #a1#"},
{ 60879, "inv_boots_07", "=q2=Centaur Stompers", "=ds=#s12#, #a2#"},
{ 60880, "inv_chest_leather_07", "=q2=Packrunner Harness", "=ds=#s5#, #a3#"},
{ 60881, "inv_belt_01", "=q2=Windwatcher Sash", "=ds=#s10#, #a1#"},
{ 0, "", "", "" },
{ 60853, "", "=q2=Dyad of Twitching Elven Ears", "=q1=#m4#"},
{ 60854, "", "=q2=Blood of the First Khan", "=q1=#m4#"},
{ 60855, "", "=q2=Ritual Dust of Satiation", "=q1=#m4#"},
{ 60853, "inv_misc_ear_nightelf_01", "=q2=Dyad of Twitching Elven Ears", "=q1=#m4#"},
{ 60854, "inv_potion_50", "=q2=Blood of the First Khan", "=q1=#m4#"},
{ 60855, "inv_misc_powder_black", "=q2=Ritual Dust of Satiation", "=q1=#m4#"},
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Centaur_01", "=q6=#r4#", "" },
{ 60884, "", "=q3=Ceremonial Magram Dagger", "=ds=#h1#, #w4#"},
{ 60883, "", "=q3=Gauntlets of the Khan", "=ds=#s9#, #a4#"},
{ 60882, "", "=q3=Magram Windstriker", "=ds=#w2#"},
{ 60884, "inv_weapon_shortblade_15", "=q3=Ceremonial Magram Dagger", "=ds=#h1#, #w4#"},
{ 60883, "inv_gauntlets_30", "=q3=Gauntlets of the Khan", "=ds=#s9#, #a4#"},
{ 60882, "inv_weapon_bow_01", "=q3=Magram Windstriker", "=ds=#w2#"},
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Centaur_01", "=q6=#r5#", "" },
{ 60885, "", "=q4=Dar'kar of the Third Khan", "=ds=#h2#, #w1#"},
{ 60968, "", "=q3=Pattern: Centaur Battle Harness", "=ds=#p7# (300)"},
{ 60967, "", "=q3=Pattern: Dustguider Sash", "=ds=#p8# (300)"},
{ 60969, "", "=q3=Formula: Enchant Bracer - Greater Agility", "=ds=#p4# (300)"},
{ 60885, "inv_axe_04", "=q4=Dar'kar of the Third Khan", "=ds=#h2#, #w1#"},
{ 60968, "inv_scroll_04", "=q3=Pattern: Centaur Battle Harness", "=ds=#p7# (300)"},
{ 60910, "inv_chest_leather_04", "=q3=Centaur Battle Harness", "=ds=#s5#, #a2#"},
{ 60967, "inv_scroll_06", "=q3=Pattern: Dustguider Sash", "=ds=#p8# (300)"},
{ 60909, "inv_belt_01", "=q3=Dustguider Sash", "=ds=#s10#, #a1#"},
{ 60969, "inv_misc_note_01", "=q3=Formula: Enchant Bracer - Greater Agility", "=ds=#p4# (300)"},
};
Helf = {
{ 0, "INV_Staff_13", "=q2=Cloaks", "" },
{ 80505, "", "=q2=", "" },
{ 80506, "", "=q2=", "" },
{ 80527, "", "=q2=", "" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Cloth Armor", "" },
{ 80512, "", "=q2=", "" },
{ 80513, "", "=q2=", "" },
{ 80514, "", "=q2=", "" },
{ 80515, "", "=q2=", "" },
{ 80516, "", "=q2=", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 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", "" },
{ 80517, "", "=q2=", "" },
{ 80518, "", "=q2=", "" },
{ 80519, "", "=q2=", "" },
{ 80520, "", "=q2=", "" },
{ 80521, "", "=q2=", "" },
};
Helf2 = {
{ 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#" },
{ 80520, "inv_gauntlets_15", "=q3=Quel'dorei Assassin's Vices", "=ds=#s9#, #a2#" },
{ 80521, "INV_Pants_02", "=q3=Quel'dorei Assassin's Leggings", "=ds=#s11#, #a2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Mail Armor", "" },
{ 80522, "", "=q2=", "" },
{ 80523, "", "=q2=", "" },
{ 80524, "", "=q2=", "" },
{ 80525, "", "=q2=", "" },
{ 80526, "", "=q2=", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 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", "" },
{ 80507, "", "=q2=", "" },
{ 80508, "", "=q2=", "" },
{ 80509, "", "=q2=", "" },
{ 80510, "", "=q2=", "" },
{ 80511, "", "=q2=", "" },
{ 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#" },
{ 80510, "Inv_gauntlets_10", "=q3=Quel'dorei Guardian's Handguards", "=ds=#s9#, #a4#" },
{ 80511, "inv_pants_03", "=q3=Quel'dorei Guardian's Legplates", "=ds=#s11#, #a4#" },
};
Helf2 = {
{ 0, "INV_Staff_13", "=q3=Cloaks", "" },
{ 80505, "inv_misc_cape_10", "=q3=Quel'dorei Hero's Cape", "=ds=#s4#" },
{ 80506, "inv_misc_cape_16", "=q3=Quel'dorei Hero's Cloak", "=ds=#s4#" },
{ 80527, "inv_misc_cape_16", "=q3=Quel'dorei Hero's Drape", "=ds=#s4#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=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#" },
{ 80500, "INV_Mace_30", "=q2=Tempered Argus Mace", "=ds=#h1#, #w6#" },
{ 80503, "INV_Weapon_Bow_02", "=q2=Well-balanced Short Bow", "=ds=#w2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 80317, "inv_misc_tournaments_tabard_bloodelf", "=q1=Quel'Thalas Tabard", "=ds=#s7#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q1=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, "INV_Staff_13", "=q2=Weapons", "" },
{ 80502, "", "=q1=", "" },
{ 80504, "", "=q1=", "" },
{ 80501, "", "=q1=", "" },
{ 80500, "", "=q1=", "" },
{ 80503, "", "=q1=", "" },
{ 0, "", "", "" },
{ 80529, "", "=q2=", "" },
{ 80530, "", "=q2=", "" },
{ 80531, "", "=q2=", "" },
{ 80532, "", "=q2=", "" },
{ 80533, "", "=q2=", "" },
{ 80534, "", "=q2=", "" },
{ 80535, "", "=q2=", "" },
{ 80536, "", "=q2=", "" },
{ 80537, "", "=q2=", "" },
{ 80538, "", "=q2=", "" },
{ 80539, "", "=q2=", "" },
{ 80540, "", "=q2=", "" },
{ 80541, "", "=q2=", "" },
{ 80542, "", "=q2=", "" },
{ 80543, "", "=q2=", "" },
{ 80544, "", "=q2=", "" },
{ 80545, "", "=q2=", "" },
{ 80546, "", "=q2=", "" },
{ 80547, "", "=q2=", "" },
{ 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#" },
{ 80544, "INV_Staff_06", "=q3=Quel'dorei Magister's Spellflinger", "=ds=#w12#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 80532, "INV_Mace_02", "=q3=Quel'dorei Cleric's Hammer", "=ds=#h3#, #w6#" },
{ 80540, "INV_Misc_Book_09", "=q3=Quel'dorei Cleric's Tome", "=ds=#s15#" },
{ 80542, "INV_Staff_39", "=q3=Quel'dorei Cleric's Staff", "=ds=#h2#, #w9#" },
{ 80545, "INV_WAND_07", "=q2=Quel'dorei Cleric's Wand", "=ds=#w12#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 80546, "INV_Weapon_Bow_17", "=q3=Quel'dorei Ranger's Longbow", "=ds=#w2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 80530, "INV_Hammer_02", "=q3=Quel'dorei Guardian's Mace", "=ds=#h1#, #w6#" },
{ 80531, "INV_Mace_30", "=q3=Quel'dorei Guardian's Warhammer", "=ds=#h2#, #w6#" },
{ 0, "", "", "" },
{ 80533, "INV_Axe_30", "=q3=Quel'dorei Guardian's Handaxe", "=ds=#h1#, #w1#" },
{ 80547, "INV_Axe_04", "=q3=Quel'dorei Guardian's Battle Axe", "=ds=#h2#, #w1#" },
{ 0, "", "", "" },
{ 80535, "INV_Sword_04", "=q3=Quel'dorei Defender's Deflector", "=ds=#h3#, #w10#" },
{ 80536, "INV_Sword_BloodElf_03", "=q3=Quel'dorei Assassin's Sword", "=ds=#h1#, #w10#" },
{ 80534, "INV_Spear_08", "=q3=Quel'dorei Guardian's Battle Glaive", "=ds=#h2#, #w10#" },
{ 80537, "INV_Sword_2H_Blood_C_01", "=q3=Quel'dorei Guardian's Twinblade", "=ds=#h2#, #w10#" },
{ 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#" },
};
Revantusk = {
{ 0, "INV_Misc_Head_Troll_01", "=q2=Cloaks", "" },
{ 80605, "", "=q2=", "" },
{ 80606, "", "=q2=", "" },
{ 80627, "", "=q2=", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q2=Cloth Armor", "" },
{ 80612, "", "=q2=", "" },
{ 80613, "", "=q2=", "" },
{ 80614, "", "=q2=", "" },
{ 80615, "", "=q2=", "" },
{ 80616, "", "=q2=", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 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", "" },
{ 80617, "", "=q2=", "" },
{ 80618, "", "=q2=", "" },
{ 80619, "", "=q2=", "" },
{ 80620, "", "=q2=", "" },
{ 80621, "", "=q2=", "" },
};
Revantusk2 = {
{ 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#" },
{ 80620, "Inv_gauntlets_25", "=q3=Revantusk Stalker's Vices", "=ds=#s9#, #a2#" },
{ 80621, "Inv_pants_mail_04", "=q3=Revantusk Stalker's Leggings", "=ds=#s11#, #a2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q2=Mail Armor", "" },
{ 80622, "", "=q2=", "" },
{ 80623, "", "=q2=", "" },
{ 80624, "", "=q2=", "" },
{ 80625, "", "=q2=", "" },
{ 80626, "", "=q2=", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 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", "" },
{ 80607, "", "=q2=", "" },
{ 80608, "", "=q2=", "" },
{ 80609, "", "=q2=", "" },
{ 80610, "", "=q2=", "" },
{ 80611, "", "=q2=", "" },
{ 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#" },
{ 80610, "Inv_gauntlets_21", "=q3=Revantusk Watcher's Handguards", "=ds=#s9#, #a4#" },
{ 80611, "Inv_pants_leather_07", "=q3=Revantusk Watcher's Legplates", "=ds=#s11#, #a4#" },
};
Revantusk2 = {
{ 0, "INV_Misc_Head_Troll_01", "=q2=Cloaks", "" },
{ 80605, "INV_Misc_Cape_15", "=q3=Revantusk Hero's Cape", "=ds=#s4#, #a1#" },
{ 80606, "INV_Misc_Cape_18", "=q3=Revantusk Hero's Cloak", "=ds=#s4#, #a1#" },
{ 80627, "INV_Misc_Cape_17", "=q3=Revantusk Hero's Drape", "=ds=#s4#, #a1#" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q2=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#" },
{ 80603, "INV_Weapon_Bow_02", "=q2=Sturdy Short Bow", "=ds=#w2#" },
{ 80604, "INV_Staff_25", "=q2=Withered Root Staff", "=ds=#h2#, #w9#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 81098, "inv_misc_tournaments_tabard_troll", "=q1=Revantusk Tabard", "=ds=#s7#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q1=Pets", "" },
{ 80878, "INV_Feather_14", "=q1=Amani Eagle", "=ds=#e15#" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q1=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#" },
};
Revantusk3 = {
{ 0, "INV_Misc_Head_Troll_01", "=q2=Weapons", "" },
{ 80602, "", "=q1=", "" },
{ 80601, "", "=q1=", "" },
{ 80600, "", "=q1=", "" },
{ 80603, "", "=q1=", "" },
{ 80604, "", "=q1=", "" },
{ 0, "", "", "" },
{ 80629, "", "=q2=", "" },
{ 80630, "", "=q2=", "" },
{ 80631, "", "=q2=", "" },
{ 80632, "", "=q2=", "" },
{ 80633, "", "=q2=", "" },
{ 80634, "", "=q2=", "" },
{ 80635, "", "=q2=", "" },
{ 80636, "", "=q2=", "" },
{ 80637, "", "=q2=", "" },
{ 80638, "", "=q2=", "" },
{ 80639, "", "=q2=", "" },
{ 80640, "", "=q2=", "" },
{ 80641, "", "=q2=", "" },
{ 80642, "", "=q2=", "" },
{ 80643, "", "=q2=", "" },
{ 80644, "", "=q2=", "" },
{ 80645, "", "=q2=", "" },
{ 80646, "", "=q2=", "" },
--{ 80647, "", "=q2=", "" },
{ 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, "", "", "" },
{ 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#" },
{ 80645, "INV_Wand_01", "=q3=Revantusk Mender's Wand", "=ds=#w12#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 80646, "INV_Weapon_Bow_08", "=q3=Revantusk Shadow Hunter's Longbow", "=ds=#w2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 80630, "INV_Mace_01", "=q3=Revantusk Watcher's Mace", "=ds=#h1#, #w6#" },
{ 80631, "INV_Hammer_09", "=q3=Revantusk Watcher's Maul", "=ds=#h2#, #w6#" },
{ 0, "", "", "" },
{ 80633, "INV_Axe_01", "=q3=Revantusk Watcher's Slicer", "=ds=#h1#, #w1#" },
{ 80635, "INV_Axe_18", "=q3=Revantusk Defender's Deflector", "=ds=#h3#, #w1#" },
{ 80634, "INV_Axe_04", "=q3=Revantusk Watcher's Carver", "=ds=#h2#, #w1#" },
{ 0, "", "", "" },
{ 80636, "INV_Sword_18", "=q3=Revantusk Stalker's Blade", "=ds=#h1#, #w10#" },
{ 80637, "INV_Sword_02", "=q3=Revantusk Watcher's Warblade", "=ds=#h2#, #w10#" },
{ 0, "", "", "" },
{ 80638, "INV_Spear_02", "=q3=Revantusk Shadow Hunter's Striker", "=ds=#w7#" },
{ 80643, "INV_Shield_16", "=q3=Revantusk Defender's Bulwark", "=ds=#w8#, #h4#" },
};
Ironforge = {
{ 0, "inv_drink_08", "=q6=#r3#", "" },
{ 81214, "", "=q2=", "" },
{ 81211, "", "=q2=", "" },
{ 81212, "", "=q2=", "" },
{ 81215, "", "=q2=", "" },
{ 81213, "", "=q2=", "" },
{ 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#", "" },
{ 80303, "", "=q2=", "" },
{ 81233, "", "=q2=", "" },
{ 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", "" },
{ 60746, "", "=q2=", "" },
{ 60747, "", "=q2=", "" },
{ 60748, "", "=q2=", "" },
{ 60749, "", "=q2=", "" },
{ 60750, "", "=q2=", "" },
{ 60751, "", "=q2=", "" },
{ 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#" },
{ 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", "" },
{ 60752, "", "=q2=", "" },
{ 60752, "INV_Spear_08", "=q3=Sentinel's Glaive", "=ds=#h1#, #w10#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 80305, "", "=q2=", "" },
{ 80305, "inv_misc_tournaments_tabard_nightelf", "=q1=Darnassus Tabard", "=ds=#s7#" },
};
Stormwind = {
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 80320, "", "=q2=", "" },
{ 80320, "INV_Shirt_GuildTabard_01", "=q1=Stormwind Tabard", "=ds=#s7#" },
};
GnomereganExiles = {
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 81192, "", "=q2=", "" },
{ 81193, "", "=q2=", "" },
{ 81194, "", "=q2=", "" },
{ 81195, "", "=q2=", "" },
{ 80306, "", "=q2=", "" },
{ 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#" },
{ 81195, "INV_Misc_Gear_01", "=q4=Red Scrapforged Mechaspider", "=ds=#e7#" },
{ 80306, "inv_misc_tournaments_tabard_gnome", "=q1=Gnomeregan Tabard", "=ds=#s7#" },
};
DarkspearTrolls = {
{ 0, "inv_misc_head_troll_01", "=q6=#r4#", "" },
{ 80806, "", "=q3=", "" },
{ 80785, "", "=q3=", "" },
{ 80797, "", "=q3=", "" },
{ 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#", "" },
{ 83064, "", "=q3=", "" },
{ 81183, "", "=q1=", "" },
{ 80304, "", "=q1=", "" },
{ 81182, "", "=q4=", "" },
{ 83064, "spell_nature_agitatingtotem", "=q3=Hexed Voodoo Pads", "=ds=#s3#, #a1#" },
{ 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", "" },
{ 50068, "", "=q2=", "" },
{ 50068, "Spell_Nature_GuardianWard", "=q1=Green Water Snake", "=ds=#e15#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Revered", "" },
{ 81196, "", "=q2=", "" },
{ 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", "" },
{ 81190, "", "=q2=", "" },
{ 81191, "", "=q2=", "" },
{ 81089, "", "=q2=", "" },
{ 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#" },
};
Undercity = {
{ 0, "inv_misc_head_undead_02", "=q6=#r5#", "" },
{ 81244, "", "=q2=", "" },
{ 81245, "", "=q2=", "" },
{ 81246, "", "=q2=", "" },
{ 81247, "", "=q2=", "" },
{ 80309, "", "=q2=", "" },
{ 81244, "Ability_Mount_Undeadhorse", "=q4=Armored Ebon 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", "" },
{ 81216, "", "=q2=", "" },
{ 81217, "", "=q2=", "" },
{ 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", "" },
{ 81241, "", "=q2=", "" },
{ 80307, "", "=q2=", "" },
{ 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", "" },
{ 81199, "", "=q2=", "" },
{ 81218, "", "=q2=", "" },
{ 81219, "", "=q2=", "" },
{ 81220, "", "=q2=", "" },
{ 81221, "", "=q2=", "" },
{ 81222, "", "=q2=", "" },
{ 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#" },
{ 81220, "inv_pants_04", "=q2=Chieftain's Ceremonial Legwraps", "=ds=#s11#, #a2#" },
{ 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", "" },
{ 81167, "", "=q2=", "" },
{ 81223, "", "=q2=", "" },
{ 81198, "", "=q2=", "" },
{ 81237, "", "=q2=", "" },
{ 80308, "", "=q2=", "" },
{ 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#" },
{ 81237, "Ability_Mount_Kodo_01", "=q4=Chieftain's Kodo", "=ds=#e7#" },
{ 80308, "inv_misc_tournaments_tabard_tauren", "=q1=Thunder Bluff Tabard", "=ds=#s7#" },
};
Dalaran = {
{ 0, "INV_Staff_13", "=q2=Revered", "" },
{ 60728, "", "=q2=", "" },
{ 60730, "", "=q2=", "" },
{ 60727, "", "=q2=", "" },
{ 60729, "", "=q2=", "" },
{ 60729, "", "=q2=", "" },
{ 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", "" },
{ 60724, "", "=q2=", "" },
{ 60725, "", "=q2=", "" },
{ 60724, "INV_Helmet_11", "=q4=Dalarani Conjurer's Hat", "=ds=#s1#, #a1#" },
{ 60725, "INV_Jewelry_Ring_34", "=q4=Ring of Flowing Leylines", "=ds=#s13#" },
};
Wildhammer = {
{ 0, "inv_misc_tabard_wildhammerclan", "=q3=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#" },
{ 80312, "inv_misc_tabard_wildhammerclan", "=q1=Wildhammer Tabard", "=ds=#s7#" },
};
};
Binary file not shown.
BIN
View File
Binary file not shown.
+2679 -2170
View File
File diff suppressed because it is too large Load Diff
+9 -9
View File
@@ -120,7 +120,7 @@ local AceDB = Mixin {
"IsActive",
"AcquireDBNamespace",
}
local Dewdrop = AceLibrary:HasInstance("Dewdrop-2.0") and AceLibrary("Dewdrop-2.0")
local Hewdrop = AceLibrary:HasInstance("Hewdrop-2.0") and AceLibrary("Hewdrop-2.0")
local _G = getfenv(0)
@@ -1027,12 +1027,12 @@ function AceDB:SetProfile(name, copyFrom)
self['acedb-profile-list'][name] = name
end
end
if Dewdrop then
Dewdrop:Refresh(1)
Dewdrop:Refresh(2)
Dewdrop:Refresh(3)
Dewdrop:Refresh(4)
Dewdrop:Refresh(5)
if Hewdrop then
Hewdrop:Refresh(1)
Hewdrop:Refresh(2)
Hewdrop:Refresh(3)
Hewdrop:Refresh(4)
Hewdrop:Refresh(5)
end
end
@@ -1418,8 +1418,8 @@ local function external(self, major, instance)
self:RegisterEvent("ADDON_LOADED")
self:RegisterEvent("PLAYER_LOGOUT")
elseif major == "Dewdrop-2.0" then
Dewdrop = instance
elseif major == "Hewdrop-2.0" then
Hewdrop = instance
end
end
File diff suppressed because it is too large Load Diff
+87 -57
View File
@@ -36,7 +36,7 @@ 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,
["If you find anything missing, please /w Lexie or message me on Discord Lexie#4024"] = true,
["NoticeFrame"] = "If you find anything missing, please report it at |cff3366CChttps://github.com/Lexiebean/AtlasLoot/issues|r or mail |cffbe5effLexie|r.",
["Toggle AL Panel"] = true,
[" is safe."] = true,
["Server queried for "] = true,
@@ -239,6 +239,7 @@ AL:RegisterTranslations("enUS", function() return {
["random stats"] = true,
["random resistance"] = true,
["random colour"] = true,
["toy"] = true,
["Heroic"] = true,
["Summon"] = true,
["Random"] = true,
@@ -327,7 +328,7 @@ AL:RegisterTranslations("enUS", function() return {
["Thick Draenic Armor"] = true,
["Fel Skin"] = true,
["Strength of the Clefthoof"] = true,
["Dalaran"] = true,
["Dalaran"] = "|cff2773ffDalaran",
["Red Dragon Mail"] = true,
["Green Dragon Mail"] = true,
["Blue Dragon Mail"] = true,
@@ -584,7 +585,7 @@ AL:RegisterTranslations("enUS", function() return {
["Scarshield Warlock"] = true,
["Olaf"] = true,
["Eric 'The Swift'"] = true,
["The Sunken Temple"] = true,
["The Sunken Temple"] = "|cffffffff[50-60]|cffffd200 The Sunken Temple",
["Spawn of Hakkar"] = true,
["Balcony Minibosses"] = true,
["Shadow of Doom"] = true,
@@ -842,7 +843,7 @@ AL:RegisterTranslations("enUS", function() return {
["Magistrate Barthilas"] = true,
["Ramstein the Gorger"] = true,
["Keys"] = true,
["Blackfathom Deeps"] = true,
["Blackfathom Deeps"] = "|cffffffff[23-32]|cffffd200 Blackfathom Deeps",
["Lady Sarevess"] = true,
["Gelihast"] = true,
["Ghamoo-ra"] = true,
@@ -866,8 +867,8 @@ AL:RegisterTranslations("enUS", function() return {
["Magmus"] = true,
["Princess Moira Bronzebeard"] = true,
["Emperor Dagran Thaurissan"] = true,
["Blackrock Depths"] = true,
["Lower Blackrock Spire"] = true,
["Blackrock Depths"] = "|cffffffff[52-60]|cffffd200 Blackrock Depths",
["Lower Blackrock Spire"] = "|cffffffff[55-60]|cffffd200 Lower Blackrock Spire",
["Spirestone Butcher"] = true,
["Highlord Omokk"] = true,
["Spirestone Battle Lord"] = true,
@@ -887,7 +888,7 @@ AL:RegisterTranslations("enUS", function() return {
["Burning Felguard"] = true,
["Pyroguard Emberseer"] = true,
["Solakar Flamewreath"] = true,
["Upper Blackrock Spire"] = true,
["Upper Blackrock Spire"] = "|cffffffff[58-60]|cffffd200 Upper Blackrock Spire",
["Jed Runewatcher"] = true,
["Goraluk Anvilcrack"] = true,
["Warchief Rend Blackhand"] = true,
@@ -903,20 +904,20 @@ AL:RegisterTranslations("enUS", function() return {
["Flamegor"] = true,
["Chromaggus"] = true,
["Nefarian"] = true,
["Blackwing Lair"] = true,
["Hateforge Quarry"] = true,
["Blackwing Lair"] = "|cffff0000[RAID]|cffffd200 Blackwing Lair",
["Hateforge Quarry"] = "|cffffffff[50-60]|cffffd200 Hateforge Quarry",
["High Foreman Bargul Blackhammer"] = true,
["Engineer Figgles"] = true,
["Corrosis"] = true,
["Hatereaver Annihilator"] = true,
["Hargesh Doomcaller"] = true,
["The Crescent Grove"] = true,
["The Crescent Grove"] = "|cffffffff[32-38]|cffffd200 The Crescent Grove",
["Grovetender Engryss"] = true,
["Keeper Ranathos"] = true,
["High Priestess A'lathea"] = true,
["Fenektis the Deceiver"] = true,
["Master Raxxieth"] = true,
["Karazhan Crypt"] = true,
["Karazhan Crypt"] = "|cffffffff[58-60]|cffffd200 Karazhan Crypt",
["Marrowspike"] = true,
["Hivaxxis"] = true,
["Corpsemuncher"] = true,
@@ -925,21 +926,24 @@ AL:RegisterTranslations("enUS", function() return {
["Commander Anderson"] = true,
["Alarus"] = true,
["Half-Buried Treasure Chest"] = true,
["Caverns of Time: Black Morass"] = true,
["Caverns of Time: Black Morass"] = "|cffffffff[60]|cffffd200 Caverns of Time: Black Morass",
["Chronar"] = true,
["Harbinger Aph'ygth"] = true,
["Epidamu"] = true,
["Drifting Avatar of Time"] = true,
["Time-Lord Epochronos"] = true,
["Mossheart"] = true,
["Rotmaw"] = true,
["Antnormi"] = true,
["Infinite Chromie"] = true,
["Stormwind Vault"] = true,
["Stormwind Vault"] = "|cffffffff[60]|cffffd200 Stormwind Vault",
["Aszosh Grimflame"] = true,
["Tham'Grarr"] = true,
["Black Bride"] = true,
["Damian"] = true,
["Volkan Cruelblade"] = true,
["Arc'tiras"] = true,
["Vault Armory Equipment"] = true,
["The Deadmines"] = true,
["Arc'tiras / Vault Armory Equipment"] = true,
["The Deadmines"] = "|cffffffff[17-24]|cffffd200 The Deadmines",
["Pusillin"] = true,
["Zevrim Thornhoof"] = true,
["Hydrospawn"] = true,
@@ -947,8 +951,8 @@ AL:RegisterTranslations("enUS", function() return {
["Pimgib"] = true,
["Alzzin the Wildshaper"] = true,
["Isalien"] = true,
["Dire Maul (East)"] = true,
["Dire Maul (North)"] = true,
["Dire Maul (East)"] = "|cffffffff[55-60]|cffffd200 Dire Maul (East)",
["Dire Maul (North)"] = "|cffffffff[57-60]|cffffd200 Dire Maul (North)",
["Guard Mol'dar"] = true,
["Stomper Kreeg"] = true,
["Guard Fengus"] = true,
@@ -963,7 +967,7 @@ AL:RegisterTranslations("enUS", function() return {
["Immol'thar"] = true,
["Lord Hel'nurath"] = true,
["Prince Tortheldrin"] = true,
["Dire Maul (West)"] = true,
["Dire Maul (West)"] = "|cffffffff[57-60]|cffffd200 Dire Maul (West)",
["Techbot"] = true,
["Grubbis"] = true,
["Viscous Fallout"] = true,
@@ -971,7 +975,7 @@ AL:RegisterTranslations("enUS", function() return {
["Crowd Pummeler 9-60"] = true,
["Dark Iron Ambassador"] = true,
["Mekgineer Thermaplugg"] = true,
["Gnomeregan"] = true,
["Gnomeregan"] = "|cffffffff[29-38]|cffffd200 Gnomeregan",
["Kolk"] = true,
["Gelk"] = true,
["Magra"] = true,
@@ -986,7 +990,7 @@ AL:RegisterTranslations("enUS", function() return {
["Tinkerer Gizlock"] = true,
["Rotgrip"] = true,
["Princess Theradras"] = true,
["Maraudon"] = true,
["Maraudon"] = "|cffffffff[45-55]|cffffd200 Maraudon",
["Lucifron"] = true,
["Magmadar"] = true,
["Gehennas"] = true,
@@ -997,7 +1001,7 @@ AL:RegisterTranslations("enUS", function() return {
["Sulfuron Harbinger"] = true,
["Majordomo Executus"] = true,
["Ragnaros"] = true,
["Molten Core"] = true,
["Molten Core"] = "|cffff0000[RAID]|cffffd200 Molten Core",
["Patchwerk"] = true,
["Grobbulus"] = true,
["Gluth"] = true,
@@ -1013,25 +1017,25 @@ AL:RegisterTranslations("enUS", function() return {
["Loatheb"] = true,
["Sapphiron"] = true,
["Kel'Thuzad"] = true,
["Naxxramas"] = true,
["Naxxramas"] = "|cffff0000[RAID]|cffffd200 Naxxramas",
["Onyxia"] = true,
["Onyxia's Lair"] = true,
["Ragefire Chasm"] = true,
["Onyxia's Lair"] = "|cffff0000[RAID]|cffffd200 Onyxia's Lair",
["Ragefire Chasm"] = "|cffffffff[13-18]|cffffd200 Ragefire Chasm",
["Tuten'kash"] = true,
["Mordresh Fire Eye"] = true,
["Glutton"] = true,
["Ragglesnout"] = true,
["Amnennar the Coldbringer"] = true,
["Plaguemaw the Rotting"] = true,
["Razorfen Downs"] = true,
["Razorfen Downs"] = "|cffffffff[36-46]|cffffd200 Razorfen Downs",
["Death Speaker Jargba"] = true,
["Overlord Ramtusk"] = true,
["Agathelos the Raging"] = true,
["Blind Hunter"] = true,
["Charlga Razorflank"] = true,
["Earthcaller Halmgar"] = true,
["Razorfen Kraul"] = true,
["Ruins of Ahn'Qiraj"] = true,
["Razorfen Kraul"] = "|cffffffff[29-38]|cffffd200 Razorfen Kraul",
["Ruins of Ahn'Qiraj"] = "|cffff0000[RAID]|cffffd200 Ruins of Ahn'Qiraj",
["Kurinnaxx"] = true,
["Lieutenant General Andorov"] = true,
["General Rajaxx"] = true,
@@ -1040,7 +1044,7 @@ AL:RegisterTranslations("enUS", function() return {
["Ayamiss the Hunter"] = true,
["Ossirian the Unscarred"] = true,
["Herod"] = true,
["Scarlet Monastery"] = true,
["Scarlet Monastery"] = "|cffffffff[27-45]|cffffd200 Scarlet Monastery",
["High Inquisitor Fairbanks"] = true,
["Scarlet Commander Mograine"] = true,
["High Inquisitor Whitemane"] = true,
@@ -1067,7 +1071,7 @@ AL:RegisterTranslations("enUS", function() return {
["Lord Alexei Barov"] = true,
["Lady Illucia Barov"] = true,
["Darkmaster Gandling"] = true,
["Scholomance"] = true,
["Scholomance"] = "|cffffffff[58-60]|cffffd200 Scholomance",
["Razorclaw the Butcher"] = true,
["Baron Silverlaine"] = true,
["Commander Springvale"] = true,
@@ -1077,8 +1081,8 @@ AL:RegisterTranslations("enUS", function() return {
["Wolf Master Nandos"] = true,
["Archmage Arugal"] = true,
["Deathsworn Captain"] = true,
["Shadowfang Keep"] = true,
["The Stockade"] = true,
["Shadowfang Keep"] = "|cffffffff[22-30]|cffffd200 Shadowfang Keep",
["The Stockade"] = "|cffffffff[22-30]|cffffd200 The Stockade",
["Skul"] = true,
["Fras Siabi"] = true,
["Hearthsinger Forresten"] = true,
@@ -1096,7 +1100,7 @@ AL:RegisterTranslations("enUS", function() return {
["Magistrate Barthilas"] = true,
["Ramstein the Gorger"] = true,
["Baron Rivendare"] = true,
["Stratholme"] = true,
["Stratholme"] = "|cffffffff[58-60]|cffffd200 Stratholme",
["Atal'alarion"] = true,
["Dreamscythe"] = true,
["Weaver"] = true,
@@ -1107,7 +1111,7 @@ AL:RegisterTranslations("enUS", function() return {
["Hazzas"] = true,
["Shade of Eranikus"] = true,
["The Temple of Atal'Hakkar"] = true,
["Temple of Ahn'Qiraj"] = true,
["Temple of Ahn'Qiraj"] = "|cffff0000[RAID]|cffffd200 Temple of Ahn'Qiraj",
["The Prophet Skeram"] = true,
["The Bug Family"] = true,
["Battleguard Sartura"] = true,
@@ -1126,8 +1130,8 @@ AL:RegisterTranslations("enUS", function() return {
["Galgann Firehammer"] = true,
["Grimlok"] = true,
["Archaedas"] = true,
["Uldaman"] = true,
["Wailing Caverns"] = true,
["Uldaman"] = "|cffffffff[40-51]|cffffd200 Uldaman",
["Wailing Caverns"] = "|cffffffff[17-24]|cffffd200 Wailing Caverns",
["Mad Magglish"] = true,
["Trigore the Lasher"] = true,
["Boahn"] = true,
@@ -1152,7 +1156,7 @@ AL:RegisterTranslations("enUS", function() return {
["Gahz'rilla"] = true,
["Chief Ukorz Sandscalp"] = true,
["Zerillis"] = true,
["Zul'Farrak"] = true,
["Zul'Farrak"] = "|cffffffff[44-54]|cffffd200 Zul'Farrak",
["High Priestess Jeklik"] = true,
["High Priest Venoxis"] = true,
["High Priestess Mar'li"] = true,
@@ -1166,7 +1170,7 @@ AL:RegisterTranslations("enUS", function() return {
["High Priestess Arlokk"] = true,
["Jin'do the Hexxer"] = true,
["Hakkar"] = true,
["Zul'Gurub"] = true,
["Zul'Gurub"] = "|cffff0000[RAID]|cffffd200 Zul'Gurub",
["Emerald Dragons"] = true,
["Druid"] = true,
["Hunter"] = true,
@@ -1239,6 +1243,7 @@ AL:RegisterTranslations("enUS", function() return {
["Skinning Knife"] = true,
["Herbalism Knife"] = true,
["Fishing Pole"] = true,
["Spear"] = true,
["Fish"] = true,
["Combat Pet"] = true,
["Fireworks"] = true,
@@ -1296,10 +1301,10 @@ AL:RegisterTranslations("enUS", function() return {
["Silithus"] = true,
["Azeroth"] = true,
["Outland"] = true,
["Graveyard"] = true,
["Armory"] = true,
["Cathedral"] = true,
["Library"] = true,
["Scarlet Monastery (Graveyard)"] = "|cffffffff[27-36]|cffffd200 Scarlet Monastery (Graveyard)",
["Scarlet Monastery (Armory)"] = "|cffffffff[32-41]|cffffd200 Scarlet Monastery (Armory)",
["Scarlet Monastery (Cathedral)"] = "|cffffffff[35-45]|cffffd200 Scarlet Monastery (Cathedral)",
["Scarlet Monastery (Library)"] = "|cffffffff[28-39]|cffffd200 Scarlet Monastery (Library)",
["Blade's Edge Mountains"] = true,
["Stranglethorn Vale"] = true,
["Spirit of Azuregos"] = true,
@@ -1321,16 +1326,16 @@ AL:RegisterTranslations("enUS", function() return {
["Cenarion Circle"] = true,
["Darkmoon Faire"] = true,
["The Defilers"] = true,
["Frostwolf Clan"] = true,
["Frostwolf Clan"] = "|cffff0000Frostwolf Clan",
["Hydraxian Waterlords"] = true,
["Gelkis Clan Centaur"] = true,
["The League of Arathor"] = true,
["Magram Clan Centaur"] = true,
["Stormpike Guard"] = true,
["Stormpike Guard"] = "|cff2773ffStormpike Guard",
["Thorium Brotherhood"] = true,
["Timbermaw Hold"] = true,
["Wardens of Time"] = true,
["Wintersaber Trainers"] = true,
["Wintersaber Trainers"] = "|cff2773ffWintersaber Trainers",
["Zandalar Tribe"] = true,
["Apprentice"] = true,
["Journeyman"] = true,
@@ -1360,6 +1365,7 @@ AL:RegisterTranslations("enUS", function() return {
["Cooking"] = true,
["First Aid"] = true,
["Survival"] = true,
["Garderning"] = true,
["Alterac Valley"] = true,
["Arathi Basin"] = true,
["Warsong Gulch"] = true,
@@ -1372,7 +1378,7 @@ AL:RegisterTranslations("enUS", function() return {
["Leather"] = true,
["Mail"] = true,
["Plate"] = true,
["Dire Maul"] = true,
["Dire Maul"] = "|cffffffff[55-60]|cffffd200 Dire Maul",
["Auchindoun"] = true,
["Caverns of Time"] = true,
["Coilfang Reservoir"] = true,
@@ -1455,15 +1461,39 @@ AL:RegisterTranslations("enUS", function() return {
["Huge Emerald"] = true,
["Dust of Deterioration"] = true,
["Leaded Vial"] = true,
["Silvermoon Remnant"] = true,
["Revantusk Trolls"] = true,
["Ironforge"] = true,
["Darnassus"] = true,
["Stormwind"] = true,
["Gnomeregan Exiles"] = true,
["Darkspear Trolls"] = true,
["Durotar Labor Union"] = true,
["Undercity"] = true,
["Orgrimmar"] = true,
["Thunder Bluff"] = 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",
["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,
["Marshal Magnus Greystone"] = true,
["Horsemaster Levvin"] = true,
["Harlow Family Chest"] = true,
["Genn Greymane"] = true,
["Erennius"] = true,
["Solnius the Awakener"] = true,
["Solnius the Awakener (Page 2)"] = true,
["Favor of Erennius (ES Hard Mode)"] = true,
["Master Blacksmith Rolfen"] = true,
["Brood Queen Araxxna"] = true,
["Lord Blackwald II"] = true,
["Clawlord Howlfang"] = true,
["Grizikil"] = true,
["Moroes"] = true,
["LKH Enchants"] = true,
} end)
+84 -115
View File
@@ -210,7 +210,7 @@ AtlasLootBattlegrounds = {
"";
"";
"";
"ABRepFriendly5059";
"ABRepFriendly";
"ABRepHonored5059";
"ABRepRevered5059";
"ABRepExalted";
@@ -234,56 +234,56 @@ AtlasLootBattlegrounds = {
AtlasLoot_Data["AtlasLootBGItems"] = {
EmptyInstance = {};
BRRepFriendly = {
{ 60366, "", "=q3=Gore Ring of the Gladiator", "=ds=#s13#" },
{ 60368, "", "=q3=Loop of Field Medicine", "=ds=#s13#" },
{ 60367, "", "=q3=Auspicious Ring of the Seer", "=ds=#s13#" },
{ 60366, "INV_Jewelry_Ring_39", "=q3=Gore Ring of the Gladiator", "=ds=#s13#" },
{ 60368, "INV_Jewelry_Ring_30", "=q3=Loop of Field Medicine", "=ds=#s13#" },
{ 60367, "INV_Jewelry_Ring_15", "=q3=Auspicious Ring of the Seer", "=ds=#s13#" },
};
BRRepHonored = {
{ 83421, "", "=q3=Bloody Gladiator's Handwraps", "=ds=#a1#, #s9#" },
{ 83420, "", "=q3=Bloody Gladiator's Sash", "=ds=#a1#, #s10#" },
{ 83421, "INV_Gauntlets_05", "=q3=Bloody Gladiator's Handwraps", "=ds=#a1#, #s9#" },
{ 83420, "INV_Belt_04", "=q3=Bloody Gladiator's Sash", "=ds=#a1#, #s10#" },
{ "", "", "", "" },
{ 83430, "", "=q3=Bloody Gladiator's Gloves", "=ds=#a2#, #s9#" },
{ 83429, "", "=q3=Bloody Gladiator's Belt", "=ds=#a2#, #s10#" },
{ 83430, "INV_Gauntlets_21", "=q3=Bloody Gladiator's Gloves", "=ds=#a2#, #s9#" },
{ 83429, "INV_Belt_16", "=q3=Bloody Gladiator's Belt", "=ds=#a2#, #s10#" },
{ "", "", "", "" },
{ 60351, "", "=q3=Bloody Gladiator's Handguards", "=ds=#a3#, #s9#" },
{ 60350, "", "=q3=Bloody Gladiator's Cord", "=ds=#a3#, #s10#" },
{ 60351, "INV_Gauntlets_11", "=q3=Bloody Gladiator's Handguards", "=ds=#a3#, #s9#" },
{ 60350, "INV_Belt_23", "=q3=Bloody Gladiator's Cord", "=ds=#a3#, #s10#" },
{ "", "", "", "" },
{ 60359, "", "=q3=Bloody Gladiator's Gauntlets", "=ds=#a4#, #s9#" },
{ 60358, "", "=q3=Bloody Gladiator's Girdle", "=ds=#a4#, #s10#" },
{ 60359, "INV_Gauntlets_31", "=q3=Bloody Gladiator's Gauntlets", "=ds=#a4#, #s9#" },
{ 60358, "INV_Belt_12", "=q3=Bloody Gladiator's Girdle", "=ds=#a4#, #s10#" },
};
BRRepRevered = {
{ 83425, "", "=q3=Bloody Gladiator's Wraps", "=ds=#a1#, #s8#" },
{ 83423, "", "=q3=Bloody Gladiator's Britches", "=ds=#a1#, #s11#" },
{ 83424, "", "=q3=Bloody Gladiator's Footwraps", "=ds=#a1#, #s12#" },
{ 83425, "INV_Bracer_07", "=q3=Bloody Gladiator's Wraps", "=ds=#a1#, #s8#" },
{ 83423, "INV_Pants_01", "=q3=Bloody Gladiator's Britches", "=ds=#a1#, #s11#" },
{ 83424, "INV_Boots_03", "=q3=Bloody Gladiator's Footwraps", "=ds=#a1#, #s12#" },
{ "", "", "", "" },
{ 83433, "", "=q3=Bloody Gladiator's Bands", "=ds=#a2#, #s8#" },
{ 83431, "", "=q3=Bloody Gladiator's Pants", "=ds=#a2#, #s11#" },
{ 83432, "", "=q3=Bloody Gladiator's Boots", "=ds=#a2#, #s12#" },
{ 83433, "INV_Bracer_04", "=q3=Bloody Gladiator's Bands", "=ds=#a2#, #s8#" },
{ 83431, "INV_Pants_06", "=q3=Bloody Gladiator's Pants", "=ds=#a2#, #s11#" },
{ 83432, "INV_Boots_03", "=q3=Bloody Gladiator's Boots", "=ds=#a2#, #s12#" },
{ "", "", "", "" },
{ 60354, "", "=q3=Bloody Gladiator's Wristguards", "=ds=#a3#, #s8#" },
{ 60352, "", "=q3=Bloody Gladiator's Leggings", "=ds=#a3#, #s11#" },
{ 60353, "", "=q3=Bloody Gladiator's Trudgeons", "=ds=#a3#, #s12#" },
{ 60354, "INV_Bracer_03", "=q3=Bloody Gladiator's Wristguards", "=ds=#a3#, #s8#" },
{ 60352, "INV_Pants_03", "=q3=Bloody Gladiator's Leggings", "=ds=#a3#, #s11#" },
{ 60353, "INV_Boots_Plate_09", "=q3=Bloody Gladiator's Trudgeons", "=ds=#a3#, #s12#" },
{ "", "", "", "" },
{ 60362, "", "=q3=Bloody Gladiator's Bracers", "=ds=#a4#, #s8#" },
{ 60360, "", "=q3=Bloody Gladiator's Legguards", "=ds=#a4#, #s11#" },
{ 60361, "", "=q3=Bloody Gladiator's Greaves", "=ds=#a4#, #s12#" },
{ 60362, "INV_Bracer_07", "=q3=Bloody Gladiator's Bracers", "=ds=#a4#, #s8#" },
{ 60360, "INV_Pants_Plate_20", "=q3=Bloody Gladiator's Legguards", "=ds=#a4#, #s11#" },
{ 60361, "INV_Boots_Plate_04", "=q3=Bloody Gladiator's Greaves", "=ds=#a4#, #s12#" },
};
BRRepExalted = {
{ 83428, "", "=q4=Bloody Gladiator's Circlet", "=ds=#a1#, #s1#" },
{ 83427, "", "=q4=Bloody Gladiator's Amice", "=ds=#a1#, #s3#" },
{ 83426, "", "=q4=Bloody Gladiator's Vestments", "=ds=#a1#, #s5#" },
{ 83428, "INV_Belt_26", "=q4=Bloody Gladiator's Circlet", "=ds=#a1#, #s1#" },
{ 83427, "INV_Shoulder_05", "=q4=Bloody Gladiator's Amice", "=ds=#a1#, #s3#" },
{ 83426, "INV_Shirt_05", "=q4=Bloody Gladiator's Vestments", "=ds=#a1#, #s5#" },
{ "", "", "", "" },
{ 83436, "", "=q4=Bloody Gladiator's Headband", "=ds=#a2#, #s1#" },
{ 83435, "", "=q4=Bloody Gladiator's Shoulders", "=ds=#a2#, #s3#" },
{ 83434, "", "=q4=Bloody Gladiator's Tunic", "=ds=#a2#, #s5#" },
{ 83436, "INV_Misc_Bandage_13", "=q4=Bloody Gladiator's Headband", "=ds=#a2#, #s1#" },
{ 83435, "INV_Shoulder_23", "=q4=Bloody Gladiator's Shoulders", "=ds=#a2#, #s3#" },
{ 83434, "INV_Chest_Leather_05", "=q4=Bloody Gladiator's Tunic", "=ds=#a2#, #s5#" },
{ "", "", "", "" },
{ 60357, "", "=q4=Bloody Gladiator's Helmet", "=ds=#a3#, #s1#" },
{ 60356, "", "=q4=Bloody Gladiator's Pauldrons", "=ds=#a3#, #s3#" },
{ 60355, "", "=q4=Bloody Gladiator's Armor", "=ds=#a3#, #s5#" },
{ 60357, "INV_Helmet_02", "=q4=Bloody Gladiator's Helmet", "=ds=#a3#, #s1#" },
{ 60356, "INV_Shoulder_13", "=q4=Bloody Gladiator's Pauldrons", "=ds=#a3#, #s3#" },
{ 60355, "INV_Chest_Plate01", "=q4=Bloody Gladiator's Armor", "=ds=#a3#, #s5#" },
{ "", "", "", "" },
{ 60365, "", "=q4=Bloody Gladiator's Helm", "=ds=#a4#, #s1#" },
{ 60364, "", "=q4=Bloody Gladiator's Spaulders", "=ds=#a4#, #s3#" },
{ 60363, "", "=q4=Bloody Gladiator's Breastplate", "=ds=#a4#, #s5#" },
{ 60365, "INV_Helmet_20", "=q4=Bloody Gladiator's Helm", "=ds=#a4#, #s1#" },
{ 60364, "INV_Shoulder_13", "=q4=Bloody Gladiator's Spaulders", "=ds=#a4#, #s3#" },
{ 60363, "INV_Chest_Chain_17", "=q4=Bloody Gladiator's Breastplate", "=ds=#a4#, #s5#" },
};
AVRepFriendly = {
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b1#" },
@@ -399,101 +399,38 @@ AtlasLoot_Data["AtlasLootBGItems"] = {
{ 19324, "INV_Sword_29", "=q4=The Lobotomizer", "=ds=#h1#, #w4#" },
{ 19323, "INV_Hammer_13", "=q4=The Unstoppable Force", "=ds=#h2#, #w6#" },
};
ABRepFriendly2029 = {
{ 0, "", "", "" },
ABRepFriendly = {
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b5#" },
{ 0, "", "", "" },
{ 21119, "INV_Jewelry_Talisman_05", "=q3=Talisman of Arathor", "=ds=#s14#" },
{ 21118, "INV_Jewelry_Talisman_05", "=q3=Talisman of Arathor", "=ds=#s14#" },
{ 21117, "INV_Jewelry_Talisman_05", "=q3=Talisman of Arathor", "=ds=#s14#" },
{ 20071, "INV_Jewelry_Talisman_05", "=q3=Talisman of Arathor", "=ds=#s14#" },
{ 0, "", "", "" },
{ 20226, "INV_Misc_Food_09", "=q1=Highlander's Field Ration", "=ds=#e2#" },
{ 20227, "INV_Misc_Food_08", "=q1=Highlander's Iron Ration", "=ds=#e2#" },
{ 20225, "INV_Misc_Food_33", "=q1=Highlander's Enriched Ration", "=ds=#e2#" },
{ 20244, "INV_Misc_Bandage_02", "=q1=Highlander's Silk Bandage", "=ds=#e4#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 20237, "INV_Misc_Bandage_20", "=q1=Highlander's Mageweave Bandage", "=ds=#e4#" },
{ 20243, "INV_Misc_Bandage_12", "=q1=Highlander's Runecloth Bandage", "=ds=#e4#" },
{ 17349, "INV_Potion_39", "=q1=Superior Healing Draught", "=ds=#e1#" },
{ 17352, "INV_Potion_81", "=q1=Superior Mana Draught", "=ds=#e1#" },
{ 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b6#" },
{ 0, "", "", "" },
{ 21120, "INV_Jewelry_Talisman_05", "=q3=Defiler's Talisman", "=ds=#s14#" },
{ 21116, "INV_Jewelry_Talisman_05", "=q3=Defiler's Talisman", "=ds=#s14#" },
{ 21115, "INV_Jewelry_Talisman_05", "=q3=Defiler's Talisman", "=ds=#s14#" },
{ 20072, "INV_Jewelry_Talisman_05", "=q3=Defiler's Talisman", "=ds=#s14#" },
{ 0, "", "", "" },
{ 20223, "INV_Misc_Food_09", "=q1=Defiler's Field Ration", "=ds=#e2#" },
{ 20235, "INV_Misc_Bandage_02", "=q1=Defiler's Silk Bandage", "=ds=#e4#" },
};
ABRepFriendly3039 = {
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b5#" },
{ 0, "", "", "" },
{ 21118, "INV_Jewelry_Talisman_05", "=q3=Talisman of Arathor", "=ds=#s14#" },
{ 0, "", "", "" },
{ 20227, "INV_Misc_Food_08", "=q1=Highlander's Iron Ration", "=ds=#e2#" },
{ 20237, "INV_Misc_Bandage_20", "=q1=Highlander's Mageweave Bandage", "=ds=#e4#" },
{ 17349, "INV_Potion_39", "=q1=Superior Healing Draught", "=ds=#e1#" },
{ 17352, "INV_Potion_81", "=q1=Superior Mana Draught", "=ds=#e1#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b6#" },
{ 0, "", "", "" },
{ 21116, "INV_Jewelry_Talisman_05", "=q3=Defiler's Talisman", "=ds=#s14#" },
{ 0, "", "", "" },
{ 20224, "INV_Misc_Food_08", "=q1=Defiler's Iron Ration", "=ds=#e2#" },
{ 20222, "INV_Misc_Food_33", "=q1=Defiler's Enriched Ration", "=ds=#e2#" },
{ 20235, "INV_Misc_Bandage_02", "=q1=Defiler's Silk Bandage", "=ds=#e4#" },
{ 20232, "INV_Misc_Bandage_20", "=q1=Defiler's Mageweave Bandage", "=ds=#e4#" },
{ 20234, "INV_Misc_Bandage_12", "=q1=Defiler's Runecloth Bandage", "=ds=#e4#" },
{ 17349, "INV_Potion_39", "=q1=Superior Healing Draught", "=ds=#e1#" },
{ 17352, "INV_Potion_81", "=q1=Superior Mana Draught", "=ds=#e1#" },
};
ABRepFriendly4049 = {
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b5#" },
{ 0, "", "", "" },
{ 21117, "INV_Jewelry_Talisman_05", "=q3=Talisman of Arathor", "=ds=#s14#" },
{ 0, "", "", "" },
{ 20225, "INV_Misc_Food_33", "=q1=Highlander's Enriched Ration", "=ds=#e2#" },
{ 20243, "INV_Misc_Bandage_12", "=q1=Highlander's Runecloth Bandage", "=ds=#e4#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b6#" },
{ 0, "", "", "" },
{ 21115, "INV_Jewelry_Talisman_05", "=q3=Defiler's Talisman", "=ds=#s14#" },
{ 0, "", "", "" },
{ 20222, "INV_Misc_Food_33", "=q1=Defiler's Enriched Ration", "=ds=#e2#" },
{ 20234, "INV_Misc_Bandage_12", "=q1=Defiler's Runecloth Bandage", "=ds=#e4#" },
};
ABRepFriendly5059 = {
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b5#" },
{ 0, "", "", "" },
{ 20071, "INV_Jewelry_Talisman_05", "=q3=Talisman of Arathor", "=ds=#s14#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b6#" },
{ 0, "", "", "" },
{ 20072, "INV_Jewelry_Talisman_05", "=q3=Defiler's Talisman", "=ds=#s14#" },
};
ABRepHonored2029 = {
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b5#" },
@@ -735,6 +672,38 @@ AtlasLoot_Data["AtlasLootBGItems"] = {
{ 0, "", "", "" },
{ 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#" },
{ 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, "", "", "" },
{ 21568, "INV_Misc_Rune_02", "=q3=Rune of Duty", "=ds=#s14# =q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#" },
{ 21567, "INV_Misc_Rune_02", "=q3=Rune of Duty", "=ds=#s14# =q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#" },
{ 0, "", "", "" },
{ 19062, "INV_Misc_Food_09", "=q1=Warsong Gulch Field Ration", "=ds=#e2#" },
{ 19061, "INV_Misc_Food_08", "=q1=Warsong Gulch Iron Ration", "=ds=#e2#" },
{ 19060, "INV_Misc_Food_33", "=q1=Warsong Gulch Enriched Ration", "=ds=#e2#" },
{ 0, "", "", "" },
{ 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#" },
{ 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, "", "", "" },
{ 21568, "INV_Misc_Rune_02", "=q3=Rune of Duty", "=ds=#s14# =q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#" },
{ 21567, "INV_Misc_Rune_02", "=q3=Rune of Duty", "=ds=#s14# =q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#" },
{ 0, "", "", "" },
{ 19062, "INV_Misc_Food_09", "=q1=Warsong Gulch Field Ration", "=ds=#e2#" },
{ 19061, "INV_Misc_Food_08", "=q1=Warsong Gulch Iron Ration", "=ds=#e2#" },
{ 19060, "INV_Misc_Food_33", "=q1=Warsong Gulch Enriched Ration", "=ds=#e2#" },
{ 0, "", "", "" },
{ 17349, "INV_Potion_39", "=q1=Superior Healing Draught", "=ds=#e1#" },
{ 17352, "INV_Potion_81", "=q1=Superior Mana Draught", "=ds=#e1#" },
};
WSGRepFriendly2029 = {
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b3#" },
-3
View File
@@ -1,5 +1,2 @@
# AtlasLoot
AtlasLoot Turtle WoW Edition
Want to help support my ability to work on this project?
https://ko-fi.com/lexiebean
+2 -1
View File
@@ -20,7 +20,7 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 10412, "INV_Belt_30", "=q2=Belt of the Fang", "=ds=#s10#, #a2# =q7=#x2#", "8.64%" },
{ 10410, "INV_Pants_11", "=q3=Leggings of the Fang", "=ds=#s11#, #a2# =q7=#x1#", "16.03%" },
{ 10411, "INV_Boots_04", "=q2=Footpads of the Fang", "=ds=#s12#, #a2# =q7=#x3#", "19.08%" },
{ 81006, "", "=q2=Cowl of the Fang", "=ds=#s1#, #a1#", "5%" },
{ 81006, "INV_HELMET_27", "=q2=Cowl of the Fang", "=ds=#s1#, #a1#", "5%" },
};
SCARLET = {
{ 0, "", "", "" },
@@ -1242,6 +1242,7 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
};
WorldEpics2 = {
{ 0, "", "", "" },
{ 14550, "inv_bracer_09", "=q4=Bladebane Armguards", "=ds=#s8#, #a2#", "" },
{ 3075, "INV_Helmet_44", "=q4=Eye of Flame", "=ds=#s1#, #a1#", "" },
{ 1315, "INV_Misc_Flower_01", "=q4=Lei of Lilies", "=ds=#s2#", "" },
{ 940, "INV_Chest_Cloth_26", "=q4=Robes of Insight", "=ds=#s5#, #a1#", "" },
+165 -26
View File
@@ -251,12 +251,12 @@ AtlasLoot_TableNames = {
["AQEnchants"] = { "AQ Enchants", "AtlasLootItems" },
--Scarlet Monestery - Armory
["SMHerod"] = { AL["Herod"], "AtlasLootItems" },
["SMATrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery"] .. " " .. AL["Armory"] .. ")", "AtlasLootItems" },
["SMATrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Armory)"] .. ")", "AtlasLootItems" },
--Scarlet Monestery - Cathedral
["SMFairbanks"] = { AL["High Inquisitor Fairbanks"], "AtlasLootItems" },
["SMMograine"] = { AL["Scarlet Commander Mograine"], "AtlasLootItems" },
["SMWhitemane"] = { AL["High Inquisitor Whitemane"], "AtlasLootItems" },
["SMCTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery"] .. " " .. AL["Cathedral"] .. ")", "AtlasLootItems" },
["SMCTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Cathedral)"] .. ")", "AtlasLootItems" },
--Scarlet Monestery - Graveyard
["SMVishas"] = { AL["Interrogator Vishas"], "AtlasLootItems" },
["SMScorn"] = { AL["Scorn"] .. " (" .. AL["Scourge Invasion"] .. ")", "AtlasLootItems" },
@@ -264,12 +264,12 @@ AtlasLoot_TableNames = {
["SMAzshir"] = { AL["Azshir the Sleepless"] .. " (" .. AL["Rare"] .. ")", "AtlasLootItems" },
["SMFallenChampion"] = { AL["Fallen Champion"] .. " (" .. AL["Rare"] .. ")", "AtlasLootItems" },
["SMBloodmageThalnos"] = { AL["Bloodmage Thalnos"], "AtlasLootItems" },
["SMGTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery"] .. " " .. AL["Graveyard"] .. ")", "AtlasLootItems" },
["SMGTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Graveyard)"] .. ")", "AtlasLootItems" },
--Scarlet Monestery - Library
["SMHoundmasterLoksey"] = { AL["Houndmaster Loksey"], "AtlasLootItems" },
["SMDoan"] = { AL["Arcanist Doan"], "AtlasLootItems" },
["SMDoansBox"] = { AL["Doan's Strongbox"], "AtlasLootItems" },
["SMLTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery"] .. " " .. AL["Library"] .. ")", "AtlasLootItems" },
["SMLTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Library)"] .. ")", "AtlasLootItems" },
--Scholomance
["SCHOLOBlood"] = { AL["Blood Steward of Kirtonos"], "AtlasLootItems" },
["SCHOLOKirtonostheHerald"] = { AL["Kirtonos the Herald"], "AtlasLootItems" },
@@ -377,10 +377,15 @@ AtlasLoot_TableNames = {
["KCCommanderAnderson"] = { AL["Commander Anderson"], "AtlasLootItems" },
["KCAlarus"] = { AL["Alarus"], "AtlasLootItems" },
["KCTreasure"] = { AL["Half-Buried Treasure Chest"], "AtlasLootItems" },
["KCTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
-- Caverns of Time: Black Morass
["COTBMChronar"] = { AL["Chronar"], "AtlasLootItems" },
["COTBMHarbingerAphygth"] = { AL["Harbinger Aph'ygth"], "AtlasLootItems" },
["COTBMEpidamu"] = { AL["Epidamu"], "AtlasLootItems" },
["COTBMDriftingAvatar"] = { AL["Drifting Avatar of Time"], "AtlasLootItems" },
["COTBMTimeLordEpochronos"] = { AL["Time-Lord Epochronos"], "AtlasLootItems" },
["COTBMMossheart"] = { AL["Mossheart"], "AtlasLootItems" },
["COTBMRotmaw"] = { AL["Rotmaw"], "AtlasLootItems" },
["COTBMAntnormi"] = { AL["Antnormi"], "AtlasLootItems" },
["COTBMInfiniteChromie"] = { AL["Infinite Chromie"], "AtlasLootItems" },
-- Stormwind Vault
@@ -389,8 +394,7 @@ AtlasLoot_TableNames = {
["SWVBlackBride"] = { AL["Black Bride"], "AtlasLootItems" },
["SWVDamian"] = { AL["Damian"], "AtlasLootItems" },
["SWVVolkanCruelblade"] = { AL["Volkan Cruelblade"], "AtlasLootItems" },
["SWVArctiras"] = { AL["Arc'tiras"], "AtlasLootItems" },
["SWVVaultArmoryEquipment"] = { AL["Vault Armory Equipment"], "AtlasLootItems" },
["SWVVaultArmoryEquipment"] = { AL["Arc'tiras / Vault Armory Equipment"], "AtlasLootItems" },
--Temple of Ahn'Qiraj
["AQ40Skeram"] = { AL["The Prophet Skeram"], "AtlasLootItems" },
["AQ40Trio"] = { AL["The Bug Family"], "AtlasLootItems" },
@@ -424,6 +428,16 @@ AtlasLoot_TableNames = {
["UldGrimlok"] = { AL["Grimlok"], "AtlasLootItems" },
["UldArchaedas"] = { AL["Archaedas"], "AtlasLootItems" },
["UldTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Uldaman"] .. ")", "AtlasLootItems" },
--Gilneas City
["GCMatthiasHoltz"] = { AL["Matthias Holtz"], "AtlasLootItems" },
["GCPackmasterRagetooth"] = { AL["Packmaster Ragetooth"], "AtlasLootItems" },
["GCJudgeSutherland"] = { AL["Judge Sutherland"], "AtlasLootItems" },
["GCDustivanBlackcowl"] = { AL["Dustivan Blackcowl"], "AtlasLootItems" },
["GCMarshalMagnusGreystone"] = { AL["Marshal Magnus Greystone"], "AtlasLootItems" },
["GCHorsemasterLevvin"] = { AL["Horsemaster Levvin"], "AtlasLootItems" },
["GCHarlowFamilyChest"] = { AL["Harlow Family Chest"], "AtlasLootItems" },
["GCGennGreymane"] = { AL["Genn Greymane"], "AtlasLootItems" },
["GCTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
--Wailing Caverns
["WCKalldanFelmoon"] = { AL["Kalldan Felmoon"], "AtlasLootItems" },
["WCMadMagglish"] = { AL["Mad Magglish"], "AtlasLootItems" },
@@ -473,6 +487,21 @@ AtlasLoot_TableNames = {
["ZGTrash1"] = { AL["Trash Mobs"] .. " (" .. AL["Zul'Gurub"] .. ")", "AtlasLootItems" },
["ZGTrash2"] = { AL["Trash Mobs"] .. " (" .. AL["Zul'Gurub"] .. ")", "AtlasLootItems" },
["ZGEnchants"] = { "ZG Enchants", "AtlasLootItems" },
--Emerald Sanctum
["ESErennius"] = { AL["Erennius"], "AtlasLootItems" },
["ESSolnius1"] = { AL["Solnius the Awakener"], "AtlasLootItems" },
["ESSolnius2"] = { AL["Solnius the Awakener (Page 2)"], "AtlasLootItems" },
["ESHardMode"] = { AL["Favor of Erennius (ES Hard Mode)"], "AtlasLootItems" },
["ESTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
--Lower Karazhan Halls
["LKHRolfen"] = { AL["Master Blacksmith Rolfen"], "AtlasLootItems" },
["LKHBroodQueenAraxxna"] = { AL["Brood Queen Araxxna"], "AtlasLootItems" },
["LKHGrizikil"] = { AL["Grizikil"], "AtlasLootItems" },
["LKHClawlordHowlfang"] = { AL["Clawlord Howlfang"], "AtlasLootItems" },
["LKHLordBlackwaldII"] = { AL["Lord Blackwald II"], "AtlasLootItems" },
["LKHMoroes"] = { AL["Moroes"], "AtlasLootItems" },
["LKHTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
["LKHEnchants"] = { AL["LKH Enchants"], "AtlasLootItems" },
------------
--- Sets ---
@@ -648,6 +677,34 @@ AtlasLoot_TableNames = {
["Ashbeard"] = { "Explorer Ashbeard", "AtlasLootWBItems" },
["AdmiralBareanWestwind"] = { "Admiral Barean Westwind", "AtlasLootWBItems" },
--------------------------
--- Rare Spawns (1.17) ---
--------------------------
["EarthcallerRezengal"] = { "Earthcaller Rezengal", "AtlasLootWBItems" },
["ShadeMage"] = { "Shade Mage", "AtlasLootWBItems" },
["GraypawAlpha"] = { "Graypaw Alpha", "AtlasLootWBItems" },
["Blazespark"] = { "Blazespark", "AtlasLootWBItems" },
["WitchDoctorTanzo"] = { "Witch Doctor Tan'zo", "AtlasLootWBItems" },
["Dawnhowl"] = { "Dawnhowl", "AtlasLootWBItems" },
["MaltimorsPrototype"] = { "Maltimor's Prototype", "AtlasLootWBItems" },
["Bonecruncher"] = { "Bonecruncher", "AtlasLootWBItems" },
["Duskskitter"] = { "Duskskitter", "AtlasLootWBItems" },
["BaronPerenolde"] = { "Baron Perenolde", "AtlasLootWBItems" },
["Embereye"] = { "Embereye", "AtlasLootWBItems" },
["Rukthok"] = { "Ruk'thok the Pyromancer", "AtlasLootWBItems" },
["Ripjaw"] = { "Ripjaw", "AtlasLootWBItems" },
["Aquitus"] = { "Aquitus", "AtlasLootWBItems" },
["FirstbornofArugal"] = { "Firstborn of Arugal", "AtlasLootWBItems" },
["Letashaz"] = { "Letashaz", "AtlasLootWBItems" },
["MargontheMighty"] = { "Margon the Mighty", "AtlasLootWBItems" },
["Stoneshell"] = { "Stoneshell", "AtlasLootWBItems" },
["HighvaleSilverback"] = { "Highvale Silverback", "AtlasLootWBItems" },
["Azurebeak"] = { "Azurebeak", "AtlasLootWBItems" },
["BarkskinFisher"] = { "Barkskin Fisher", "AtlasLootWBItems" },
["ShadeflayerGoliath"] = { "Shadeflayer Goliath", "AtlasLootWBItems" },
["M0L1Y"] = { "M-0L1Y", "AtlasLootWBItems" },
["WidowoftheWoods"] = { "Widow of the Woods", "AtlasLootWBItems" },
--------------
--- Events ---
--------------
@@ -722,7 +779,11 @@ AtlasLoot_TableNames = {
["Zandalar2"] = { AL["Zandalar Tribe"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"], "AtlasLootRepItems" },
["Helf"] = { AL["Silvermoon Remnant"], "AtlasLootRepItems" },
["Helf2"] = { AL["Silvermoon Remnant"], "AtlasLootRepItems" },
["Helf3"] = { AL["Silvermoon Remnant"], "AtlasLootRepItems" },
["Revantusk"] = { AL["Revantusk Trolls"], "AtlasLootRepItems" },
["Revantusk2"] = { AL["Revantusk Trolls"], "AtlasLootRepItems" },
["Revantusk3"] = { AL["Revantusk Trolls"], "AtlasLootRepItems" },
["Ironforge"] = { AL["Ironforge"], "AtlasLootRepItems" },
["Darnassus"] = { AL["Darnassus"], "AtlasLootRepItems" },
["Stormwind"] = { AL["Stormwind"], "AtlasLootRepItems" },
@@ -733,6 +794,7 @@ AtlasLoot_TableNames = {
["Orgrimmar"] = { AL["Orgrimmar"], "AtlasLootRepItems" },
["ThunderBluff"] = { AL["Thunder Bluff"], "AtlasLootRepItems" },
["Dalaran"] = { AL["Dalaran"], "AtlasLootRepItems" },
["Wildhammer"] = { AL["Wildhammer Clan"], "AtlasLootRepItems" },
--------------
--- Trades ---
@@ -750,6 +812,7 @@ AtlasLoot_TableNames = {
["SmithingJourneyman2"] = { AL["Blacksmithing"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
["SmithingExpert1"] = { AL["Blacksmithing"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["SmithingExpert2"] = { AL["Blacksmithing"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["SmithingExpert3"] = { AL["Blacksmithing"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["SmithingArtisan1"] = { AL["Blacksmithing"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["SmithingArtisan2"] = { AL["Blacksmithing"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["SmithingArtisan3"] = { AL["Blacksmithing"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
@@ -805,6 +868,7 @@ AtlasLoot_TableNames = {
["TailoringArtisan2"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan3"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan4"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan5"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
--Cooking
["CookingApprentice1"] = { AL["Cooking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["CookingJourneyman1"] = { AL["Cooking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -814,9 +878,11 @@ AtlasLoot_TableNames = {
["FirstAid1"] = { AL["First Aid"], "AtlasLootCrafting" },
--Survival
["Survival1"] = { AL["Survival"], "AtlasLootCrafting" },
["Survival2"] = { AL["Garderning"], "AtlasLootCrafting" },
--Poisons
["Poisons1"] = { AL["Rogue"] .. ": " .. AL["Poisons"], "AtlasLootCrafting" },
-----------
--- PvP ---
-----------
@@ -833,10 +899,7 @@ AtlasLoot_TableNames = {
["AVRepRevered"] = { AL["Alterac Valley"] .. " " .. AL["51-60 Revered Rewards"], "AtlasLootBGItems" },
["AVRepExalted"] = { AL["Alterac Valley"] .. " " .. AL["51-60 Exalted Rewards"], "AtlasLootBGItems" },
--Arathi Basin
["ABRepFriendly2029"] = { AL["Arathi Basin"] .. " " .. AL["20-29 Friendly Rewards"], "AtlasLootBGItems" },
["ABRepFriendly3039"] = { AL["Arathi Basin"] .. " " .. AL["30-39 Friendly Rewards"], "AtlasLootBGItems" },
["ABRepFriendly4049"] = { AL["Arathi Basin"] .. " " .. AL["40-49 Friendly Rewards"], "AtlasLootBGItems" },
["ABRepFriendly5059"] = { AL["Arathi Basin"] .. " " .. AL["50-59 Friendly Rewards"], "AtlasLootBGItems" },
["ABRepFriendly"] = { AL["Arathi Basin"] .. " " .. AL["Friendly Rewards"], "AtlasLootBGItems" },
["ABRepHonored2029"] = { AL["Arathi Basin"] .. " " .. AL["20-29 Honored Rewards"], "AtlasLootBGItems" },
["ABRepHonored3039"] = { AL["Arathi Basin"] .. " " .. AL["30-39 Honored Rewards"], "AtlasLootBGItems" },
["ABRepHonored4049"] = { AL["Arathi Basin"] .. " " .. AL["40-49 Honored Rewards"], "AtlasLootBGItems" },
@@ -847,9 +910,7 @@ AtlasLoot_TableNames = {
["ABRepRevered5059"] = { AL["Arathi Basin"] .. " " .. AL["50-59 Revered Rewards"], "AtlasLootBGItems" },
["ABRepExalted"] = { AL["Arathi Basin"] .. " " .. AL["60 Exalted Rewards"], "AtlasLootBGItems" },
--Warsong Gulch
["WSGRepFriendly2029"] = { AL["Warsong Gulch"] .. " " .. AL["20-29 Friendly Rewards"], "AtlasLootBGItems" },
["WSGRepFriendly3039"] = { AL["Warsong Gulch"] .. " " .. AL["30-39 Friendly Rewards"], "AtlasLootBGItems" },
["WSGRepFriendly4049"] = { AL["Warsong Gulch"] .. " " .. AL["40-49 Friendly Rewards"], "AtlasLootBGItems" },
["WSGRepFriendly"] = { AL["Warsong Gulch"] .. " " .. AL["Friendly Rewards"], "AtlasLootBGItems" },
["WSGRepHonored1019"] = { AL["Warsong Gulch"] .. " " .. AL["10-19 Honored Rewards"], "AtlasLootBGItems" },
["WSGRepHonored2029"] = { AL["Warsong Gulch"] .. " " .. AL["20-29 Honored Rewards"], "AtlasLootBGItems" },
["WSGRepHonored3039"] = { AL["Warsong Gulch"] .. " " .. AL["30-39 Honored Rewards"], "AtlasLootBGItems" },
@@ -917,6 +978,7 @@ AtlasLoot_TableNames = {
["TAILORINGMENU"] = { "dummy", "dummy" },
["COOKINGMENU"] = { "dummy", "dummy" },
["FIRSTAIDMENU"] = { "dummy", "dummy" },
["SURVIVALMENU"] = { "dummy", "dummy" },
["WishList"] = { AL["WishList"], "AtlasLootCharDB" },
--If all else fails!
["EmptyInstance"] = { "AtlasLoot", "AtlasLootFallback" },
@@ -1037,6 +1099,7 @@ AtlasLoot_TableNamesBoss = {
["TCGHighPriestessAlathea"] = { AL["High Priestess A'lathea"], "AtlasLootItems" },
["TCGFenektistheDeceiver"] = { AL["Fenektis the Deceiver"], "AtlasLootItems" },
["TCGMasterRaxxieth"] = { AL["Master Raxxieth"], "AtlasLootItems" },
["TCGTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
},
["Karazhan Crypt"] = {
["KCMarrowspike"] = { AL["Marrowspike"], "AtlasLootItems" },
@@ -1047,11 +1110,16 @@ AtlasLoot_TableNamesBoss = {
["KCCommanderAnderson"] = { AL["Commander Anderson"], "AtlasLootItems" },
["KCAlarus"] = { AL["Alarus"], "AtlasLootItems" },
["KCTreasure"] = { AL["Half-Buried Treasure Chest"], "AtlasLootItems" },
["KCTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
},
["Caverns of Time: Black Morass"] = {
["COTBMChronar"] = { AL["Chronar"], "AtlasLootItems" },
["COTBMHarbingerAphygth"] = { AL["Harbinger Aph'ygth"], "AtlasLootItems" },
["COTBMEpidamu"] = { AL["Epidamu"], "AtlasLootItems" },
["COTBMDriftingAvatar"] = { AL["Drifting Avatar of Time"], "AtlasLootItems" },
["COTBMTimeLordEpochronos"] = { AL["Time-Lord Epochronos"], "AtlasLootItems" },
["COTBMMossheart"] = { AL["Mossheart"], "AtlasLootItems" },
["COTBMRotmaw"] = { AL["Rotmaw"], "AtlasLootItems" },
["COTBMAntnormi"] = { AL["Antnormi"], "AtlasLootItems" },
["COTBMInfiniteChromie"] = { AL["Infinite Chromie"], "AtlasLootItems" },
},
@@ -1061,8 +1129,7 @@ AtlasLoot_TableNamesBoss = {
["SWVBlackBride"] = { AL["Black Bride"], "AtlasLootItems" },
["SWVDamian"] = { AL["Damian"], "AtlasLootItems" },
["SWVVolkanCruelblade"] = { AL["Volkan Cruelblade"], "AtlasLootItems" },
["SWVArctiras"] = { AL["Arc'tiras"], "AtlasLootItems" },
["SWVVaultArmoryEquipment"] = { AL["Vault Armory Equipment"], "AtlasLootItems" },
["SWVVaultArmoryEquipment"] = { AL["Arc'tiras / Vault Armory Equipment"], "AtlasLootItems" },
},
["The Deadmines"] = {
["DMRhahkZor"] = { AL["Rhahk'Zor"], "AtlasLootItems" },
@@ -1231,13 +1298,13 @@ AtlasLoot_TableNamesBoss = {
},
["Scarlet Monestery - Armory"] = {
["SMHerod"] = { AL["Herod"], "AtlasLootItems" },
["SMATrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery"] .. " " .. AL["Armory"] .. ")", "AtlasLootItems" },
["SMATrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Armory)"] .. ")", "AtlasLootItems" },
},
["Scarlet Monestery - Cathedral"] = {
["SMFairbanks"] = { AL["High Inquisitor Fairbanks"], "AtlasLootItems" },
["SMMograine"] = { AL["Scarlet Commander Mograine"], "AtlasLootItems" },
["SMWhitemane"] = { AL["High Inquisitor Whitemane"], "AtlasLootItems" },
["SMCTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery"] .. " " .. AL["Cathedral"] .. ")", "AtlasLootItems" },
["SMCTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Cathedral)"] .. ")", "AtlasLootItems" },
},
["Scarlet Monestery - Graveyard"] = {
["SMVishas"] = { AL["Interrogator Vishas"], "AtlasLootItems" },
@@ -1246,13 +1313,13 @@ AtlasLoot_TableNamesBoss = {
["SMAzshir"] = { AL["Azshir the Sleepless"] .. " (" .. AL["Rare"] .. ")", "AtlasLootItems" },
["SMFallenChampion"] = { AL["Fallen Champion"] .. " (" .. AL["Rare"] .. ")", "AtlasLootItems" },
["SMBloodmageThalnos"] = { AL["Bloodmage Thalnos"], "AtlasLootItems" },
["SMGTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery"] .. " " .. AL["Graveyard"] .. ")", "AtlasLootItems" },
["SMGTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Graveyard)"] .. ")", "AtlasLootItems" },
},
["Scarlet Monestery - Library"] = {
["SMHoundmasterLoksey"] = { AL["Houndmaster Loksey"], "AtlasLootItems" },
["SMDoan"] = { AL["Arcanist Doan"], "AtlasLootItems" },
["SMDoansBox"] = { AL["Doan's Strongbox"], "AtlasLootItems" },
["SMLTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery"] .. " " .. AL["Library"] .. ")", "AtlasLootItems" },
["SMLTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Scarlet Monastery (Library)"] .. ")", "AtlasLootItems" },
},
["Scholomance"] = {
["SCHOLOBlood"] = { AL["Blood Steward of Kirtonos"], "AtlasLootItems" },
@@ -1376,6 +1443,17 @@ AtlasLoot_TableNamesBoss = {
["UldArchaedas"] = { AL["Archaedas"], "AtlasLootItems" },
["UldTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Uldaman"] .. ")", "AtlasLootItems" },
},
["Gilneas City"] = {
["GCMatthiasHoltz"] = { AL["Matthias Holtz"], "AtlasLootItems" },
["GCPackmasterRagetooth"] = { AL["Packmaster Ragetooth"], "AtlasLootItems" },
["GCJudgeSutherland"] = { AL["Judge Sutherland"], "AtlasLootItems" },
["GCDustivanBlackcowl"] = { AL["Dustivan Blackcowl"], "AtlasLootItems" },
["GCMarshalMagnusGreystone"] = { AL["Marshal Magnus Greystone"], "AtlasLootItems" },
["GCHorsemasterLevvin"] = { AL["Horsemaster Levvin"], "AtlasLootItems" },
["GCHarlowFamilyChest"] = { AL["Harlow Family Chest"], "AtlasLootItems" },
["GCGennGreymane"] = { AL["Genn Greymane"], "AtlasLootItems" },
["GCTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
},
["Wailing Caverns Entrance"] = {
["WCKalldanFelmoon"] = { AL["Kalldan Felmoon"], "AtlasLootItems" },
["WCMadMagglish"] = { AL["Mad Magglish"], "AtlasLootItems" },
@@ -1430,6 +1508,23 @@ AtlasLoot_TableNamesBoss = {
["ZGTrash2"] = { AL["Trash Mobs"] .. " (" .. AL["Zul'Gurub"] .. ")", "AtlasLootItems" },
["ZGEnchants"] = { "ZG Enchants", "AtlasLootItems" },
},
["Emerald Sanctum"] = {
["ESErennius"] = { AL["Erennius"], "AtlasLootItems" },
["ESSolnius1"] = { AL["Solnius the Awakener"], "AtlasLootItems" },
["ESSolnius2"] = { AL["Solnius the Awakener (Page 2)"], "AtlasLootItems" },
["ESHardMode"] = { AL["Favor of Erennius (ES Hard Mode)"], "AtlasLootItems" },
["ESTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
},
["Lower Karazhan Halls"] = {
["LKHRolfen"] = { AL["Master Blacksmith Rolfen"], "AtlasLootItems" },
["LKHBroodQueenAraxxna"] = { AL["Erennius"], "AtlasLootItems" },
["LKHLordBlackwaldII"] = { AL["Lord Blackwald II"], "AtlasLootItems" },
["LKHClawlordHowlfang"] = { AL["Clawlord Howlfang"], "AtlasLootItems" },
["LKHGrizikil"] = { AL["Grizikil"], "AtlasLootItems" },
["LKHMoroes"] = { AL["Moroes"], "AtlasLootItems" },
["LKHTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
["LKHEchants"] = { AL["LKH Enchants"], "AtlasLootItems" },
},
------------
--- Sets ---
@@ -1597,6 +1692,47 @@ AtlasLoot_TableNamesBoss = {
["DTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Emerald Dragons"] .. ")", "AtlasLootWBItems" },
},
--------------------------
--- Rare Spawns (1.16) ---
--------------------------
["Rare Spawns"] = {
["Tarangos"] = { "Tarangos The Dampener", "AtlasLootWBItems" },
["Kargron"] = { "Blademaster Kargron", "AtlasLootWBItems" },
["Xalvic"] = { "Xalvic Blackclaw", "AtlasLootWBItems" },
["Mallon"] = { "Mallon The Moontouched", "AtlasLootWBItems" },
["Grugthok"] = { "Grug'thok the Seer", "AtlasLootWBItems" },
["WanderingKnight"] = { "The Wandering Knight", "AtlasLootWBItems" },
["CrusaderLarsarius"] = { "Crusader Larsarius The Scarlet Crusade", "AtlasLootWBItems" },
["Zareth"] = { "Zareth Terrorblade Demon Hunter", "AtlasLootWBItems" },
["Jalakar"] = { "Jal'akar Dire Troll", "AtlasLootWBItems" },
["Ashbeard"] = { "Explorer Ashbeard", "AtlasLootWBItems" },
["AdmiralBareanWestwind"] = { "Admiral Barean Westwind", "AtlasLootWBItems" },
["EarthcallerRezengal"] = { "Earthcaller Rezengal", "AtlasLootWBItems" },
["ShadeMage"] = { "Shade Mage", "AtlasLootWBItems" },
["GraypawAlpha"] = { "Graypaw Alpha", "AtlasLootWBItems" },
["Blazespark"] = { "Blazespark", "AtlasLootWBItems" },
["WitchDoctorTanzo"] = { "Witch Doctor Tan'zo", "AtlasLootWBItems" },
["Dawnhowl"] = { "Dawnhowl", "AtlasLootWBItems" },
["MaltimorsPrototype"] = { "Maltimor's Prototype", "AtlasLootWBItems" },
["Bonecruncher"] = { "Bonecruncher", "AtlasLootWBItems" },
["Duskskitter"] = { "Duskskitter", "AtlasLootWBItems" },
["BaronPerenolde"] = { "Baron Perenolde", "AtlasLootWBItems" },
["Embereye"] = { "Embereye", "AtlasLootWBItems" },
["Rukthok"] = { "Ruk'thok the Pyromancer", "AtlasLootWBItems" },
["Ripjaw"] = { "Ripjaw", "AtlasLootWBItems" },
["Aquitus"] = { "Aquitus", "AtlasLootWBItems" },
["FirstbornofArugal"] = { "Firstborn of Arugal", "AtlasLootWBItems" },
["Letashaz"] = { "Letashaz", "AtlasLootWBItems" },
["MargontheMighty"] = { "Margon the Mighty", "AtlasLootWBItems" },
["Stoneshell"] = { "Stoneshell", "AtlasLootWBItems" },
["HighvaleSilverback"] = { "Highvale Silverback", "AtlasLootWBItems" },
["Azurebeak"] = { "Azurebeak", "AtlasLootWBItems" },
["BarkskinFisher"] = { "Barkskin Fisher", "AtlasLootWBItems" },
["ShadeflayerGoliath"] = { "Shadeflayer Goliath", "AtlasLootWBItems" },
["M0L1Y"] = { "M-0L1Y", "AtlasLootWBItems" },
["WidowoftheWoods"] = { "Widow of the Woods", "AtlasLootWBItems" },
},
--------------
--- Events ---
--------------
@@ -1673,7 +1809,11 @@ AtlasLoot_TableNamesBoss = {
["Zandalar2"] = { AL["Zandalar Tribe"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"], "AtlasLootRepItems" },
["Helf"] = { AL["Silvermoon Remnant"], "AtlasLootRepItems" },
["Helf2"] = { AL["Silvermoon Remnant"], "AtlasLootRepItems" },
["Helf3"] = { AL["Silvermoon Remnant"], "AtlasLootRepItems" },
["Revantusk"] = { AL["Revantusk Trolls"], "AtlasLootRepItems" },
["Revantusk2"] = { AL["Revantusk Trolls"], "AtlasLootRepItems" },
["Revantusk3"] = { AL["Revantusk Trolls"], "AtlasLootRepItems" },
["Ironforge"] = { AL["Ironforge"], "AtlasLootRepItems" },
["Darnassus"] = { AL["Darnassus"], "AtlasLootRepItems" },
["Stormwind"] = { AL["Stormwind"], "AtlasLootRepItems" },
@@ -1683,6 +1823,7 @@ AtlasLoot_TableNamesBoss = {
["Undercity"] = { AL["Undercity"], "AtlasLootRepItems" },
["Orgrimmar"] = { AL["Orgrimmar"], "AtlasLootRepItems" },
["ThunderBluff"] = { AL["Thunder Bluff"], "AtlasLootRepItems" },
["Wildhammer"] = { AL["Wildhammer Clan"], "AtlasLootRepItems" },
},
--------------
@@ -1702,6 +1843,7 @@ AtlasLoot_TableNamesBoss = {
["SmithingJourneyman2"] = { AL["Blacksmithing"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
["SmithingExpert1"] = { AL["Blacksmithing"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["SmithingExpert2"] = { AL["Blacksmithing"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["SmithingExpert3"] = { AL["Blacksmithing"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["SmithingArtisan1"] = { AL["Blacksmithing"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["SmithingArtisan2"] = { AL["Blacksmithing"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["SmithingArtisan3"] = { AL["Blacksmithing"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
@@ -1757,6 +1899,7 @@ AtlasLoot_TableNamesBoss = {
["TailoringArtisan2"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan3"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan4"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan5"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
--Cooking
["CookingApprentice1"] = { AL["Cooking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["CookingJourneyman1"] = { AL["Cooking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1766,6 +1909,7 @@ AtlasLoot_TableNamesBoss = {
["FirstAid1"] = { AL["First Aid"], "AtlasLootCrafting" },
--Survival
["Survival1"] = { AL["Survival"], "AtlasLootCrafting" },
["Survival2"] = { AL["Garderning"], "AtlasLootCrafting" },
--Poisons
["Poisons1"] = { AL["Rogue"] .. ": " .. AL["Poisons"], "AtlasLootCrafting" },
},
@@ -1786,10 +1930,7 @@ AtlasLoot_TableNamesBoss = {
["AVRepRevered"] = { AL["Alterac Valley"] .. " " .. AL["51-60 Revered Rewards"], "AtlasLootBGItems" },
["AVRepExalted"] = { AL["Alterac Valley"] .. " " .. AL["51-60 Exalted Rewards"], "AtlasLootBGItems" },
--Arathi Basin
["ABRepFriendly2029"] = { AL["Arathi Basin"] .. " " .. AL["20-29 Friendly Rewards"], "AtlasLootBGItems" },
["ABRepFriendly3039"] = { AL["Arathi Basin"] .. " " .. AL["30-39 Friendly Rewards"], "AtlasLootBGItems" },
["ABRepFriendly4049"] = { AL["Arathi Basin"] .. " " .. AL["40-49 Friendly Rewards"], "AtlasLootBGItems" },
["ABRepFriendly5059"] = { AL["Arathi Basin"] .. " " .. AL["50-59 Friendly Rewards"], "AtlasLootBGItems" },
["ABRepFriendly"] = { AL["Arathi Basin"] .. " " .. AL["Friendly Rewards"], "AtlasLootBGItems" },
["ABRepHonored2029"] = { AL["Arathi Basin"] .. " " .. AL["20-29 Honored Rewards"], "AtlasLootBGItems" },
["ABRepHonored3039"] = { AL["Arathi Basin"] .. " " .. AL["30-39 Honored Rewards"], "AtlasLootBGItems" },
["ABRepHonored4049"] = { AL["Arathi Basin"] .. " " .. AL["40-49 Honored Rewards"], "AtlasLootBGItems" },
@@ -1800,9 +1941,7 @@ AtlasLoot_TableNamesBoss = {
["ABRepRevered5059"] = { AL["Arathi Basin"] .. " " .. AL["50-59 Revered Rewards"], "AtlasLootBGItems" },
["ABRepExalted"] = { AL["Arathi Basin"] .. " " .. AL["60 Exalted Rewards"], "AtlasLootBGItems" },
--Warsong Gulch
["WSGRepFriendly2029"] = { AL["Warsong Gulch"] .. " " .. AL["20-29 Friendly Rewards"], "AtlasLootBGItems" },
["WSGRepFriendly3039"] = { AL["Warsong Gulch"] .. " " .. AL["30-39 Friendly Rewards"], "AtlasLootBGItems" },
["WSGRepFriendly4049"] = { AL["Warsong Gulch"] .. " " .. AL["40-49 Friendly Rewards"], "AtlasLootBGItems" },
["WSGRepFriendly"] = { AL["Warsong Gulch"] .. " " .. AL["Friendly Rewards"], "AtlasLootBGItems" },
["WSGRepHonored1019"] = { AL["Warsong Gulch"] .. " " .. AL["10-19 Honored Rewards"], "AtlasLootBGItems" },
["WSGRepHonored2029"] = { AL["Warsong Gulch"] .. " " .. AL["20-29 Honored Rewards"], "AtlasLootBGItems" },
["WSGRepHonored3039"] = { AL["Warsong Gulch"] .. " " .. AL["30-39 Honored Rewards"], "AtlasLootBGItems" },
+248 -95
View File
@@ -60,62 +60,93 @@ AtlasLootWBBossButtons = {
"Jalakar";
"Ashbeard";
"AdmiralBareanWestwind";
"ShadeMage";
"GraypawAlpha";
"EarthcallerRezengal";
"Blazespark";
"WitchDoctorTanzo";
"Dawnhowl";
"MaltimorsPrototype";
"Bonecruncher";
"Duskskitter";
"BaronPerenolde";
"FirstbornofArugal";
"WidowoftheWoods";
"Ripjaw";
"Rukthok";
"MargontheMighty";
"Embereye";
"Aquitus";
"Letashaz";
"Stoneshell";
"HighvaleSilverback";
"Azurebeak";
"BarkskinFisher";
"ShadeflayerGoliath";
"M0L1Y";
};
};
AtlasLoot_Data["AtlasLootWBItems"] = {
EmptyInstance = {};
Reaver = {
{ 51778, "", "=q4=", "", "3.85%" },
{ 51779, "", "=q4=", "", "3.85%" },
{ 51780, "", "=q4=", "", "3.85%" },
{ 51796, "", "=q4=", "", "3.85%" },
{ 51797, "", "=q4=", "", "3.85%" },
{ 51799, "", "=q4=", "", "3.85%" },
{ 51800, "", "=q4=", "", "3.85%" },
{ 51798, "", "=q4=", "", "3.85%" },
{ 51782, "", "=q4=", "", "3.85%" },
{ 51778, "INV_Staff_05", "=q4=Lost Crusader's Artifact", "=ds=#h4#", "4%" },
{ 51779, "inv_axe_14", "=q4=Greataxe of the Decrepit Crypt", "=ds=#h2#, #w1#", "4%" },
{ 51780, "inv_weapon_rifle_11", "=q4=Ghoulslayer Shotgun", "=ds=#w5#", "4%" },
{ 51796, "inv_shield_02", "=q4=Shield of Consuming Darkness", "=ds=#h4#, #w8#", "4%" },
{ 51797, "inv_misc_monsterclaw_03", "=q4=Claw of the Wildshifter", "=ds=#h3#, #w13#", "4%" },
{ 51799, "inv_misc_book_04", "=q4=Libram of Veracity", "=ds=#s16#, #e18# =q16=#c4#", "4%" },
{ 51800, "inv_qirajidol_sage", "=q4=Totem of Earthstorm", "=ds=#s16#, #e17# =q15=#c7#", "4%" },
{ 51798, "inv_gauntlets_08", "=q4=Idol of the Wildshifter", "=ds=#s16#, #e16# =q13=#c1#", "4%" },
{ 51782, "inv_jewelry_ring_15", "=q4=Mindpiercer Band", "=ds=#s13#, #m8#", "4%" },
{ 0, "", "", "", "" },
{ 51777, "", "=q4=", "", "3.85%" },
{ 51789, "", "=q4=", "", "3.85%" },
{ 51781, "", "=q4=", "", "3.85%" },
{ 51784, "", "=q4=", "", "3.85%" },
{ 51788, "", "=q4=", "", "3.85%" },
{ 51787, "", "=q4=", "", "3.85%" },
{ 51783, "", "=q4=", "", "3.85%" },
{ 51776, "", "=q4=", "", "3.85%" },
{ 51777, "inv_helmet_15", "=q4=Necromancer's Visage", "=ds=#s1#, #a1#", "4%" },
{ 51789, "inv_helmet_13", "=q4=Circlet of Forlorn Spirits", "=ds=#s1#, #a1#", "4%" },
{ 51781, "inv_shoulder_02", "=q4=Necrotic Wake Mantle", "=ds=#s3#, #a1#", "4%" },
{ 51784, "inv_belt_22", "=q4=Belt of Archaic Power", "=ds=#s10#, #a1#", "4%" },
{ 51788, "inv_helmet_30", "=q4=Visage of the Forgotten", "=ds=#s1#, #a2#", "4%" },
{ 51787, "inv_shoulder_05", "=q4=Spaulders of Insight", "=ds=#s3#, #a2#", "4%" },
{ 51783, "inv_bracer_07", "=q4=Shadowskin Bracers", "=ds=#s8#, #a2#", "4%" },
{ 51776, "inv_pants_11", "=q4=Plagued Mind Leggings", "=ds=#s11#, #a2#", "4%" },
{ 0, "", "", "", "" },
{ 51786, "", "=q4=", "", "3.85%" },
{ 51785, "", "=q4=", "", "3.85%" },
{ 51786, "inv_chest_chain_17", "=q4=Cryptbone Hauberk", "=ds=#s5#, #a3#", "4%" },
{ 51785, "inv_belt_35", "=q4=Stoneslate Belt", "=ds=#s10#, #a3#", "4%" },
{ 0, "", "", "", "" },
{ 51769, "", "=q4=", "", "3.85%" },
{ 51770, "", "=q4=", "", "3.85%" },
{ 51771, "", "=q4=", "", "3.85%" },
{ 51772, "", "=q4=", "", "3.85%" },
{ 51773, "", "=q4=", "", "3.85%" },
{ 51775, "", "=q4=", "", "3.85%" },
{ 51774, "", "=q4=", "", "3.85%" },
{ 51769, "inv_helmet_06", "=q4=Crown of the Dark Reaver", "=ds=#s1#, #a4#", "4%" },
{ 51770, "inv_shoulder_11", "=q4=Shoulderguards of the Dark Reaver", "=ds=#s3#, #a4#", "4%" },
{ 51771, "inv_chest_plate08", "=q4=Chestplate of the Dark Reaver", "=ds=#s5#, #a4#", "4%" },
{ 51772, "inv_gauntlets_09", "=q4=Grasp of the Dark Reaver", "=ds=#s9#, #a4#", "4%" },
{ 51773, "inv_belt_13", "=q4=Girdle of the Dark Reaver", "=ds=#s10#, #a4#", "4%" },
{ 51775, "inv_pants_04", "=q4=Legguards of the Dark Reaver", "=ds=#s11#, #a4#", "4%" },
{ 51774, "inv_boots_plate_05", "=q4=Sabatons of the Dark Reaver", "=ds=#s12#, #a4#", "4%" },
};
Nerubian = {
{ 51738, "", "=q4=Tunnel Field Carapace", "=ds=#s5#, #a2#", "10%" },
{ 51737, "", "=q4=Vestments of Eternal Autumn", "=ds=#s5#, #a2#", "10%" },
{ 51736, "", "=q4=Plauge-Infected Robe", "=ds=#s5#, #a1#", "10%" },
{ 51738, "inv_chest_leather_05", "=q4=Tunnel Field Carapace", "=ds=#s5#, #a2#", "20%" },
{ 51737, "inv_chest_cloth_02", "=q4=Vestments of Eternal Autumn", "=ds=#s5#, #a2#", "20%" },
{ 51736, "inv_chest_cloth_39", "=q4=Plauge-Infected Robe", "=ds=#s5#, #a1#", "20%" },
{ 0, "", "", "", "" },
{ 51735, "", "=q4=", "=ds=#w12#", "10%" },
{ 51735, "inv_wand_01", "=q4=Scourgelord's Fang", "=ds=#w12#", "20%" },
{ 0, "", "", "", "" },
{ 51740, "", "=q4=", "=ds=#s1#, #a1#", "10%" },
{ 51740, "inv_helmet_06", "=q4=Crown of Skittering Shadows", "=ds=#s1#, #a1#", "20%" },
{ 0, "", "", "", "" },
{ 51734, "", "=q4=", "=ds=#s4#", "10%" },
{ 51733, "", "=q4=", "=ds=#s4#", "10%" },
{ 51732, "", "=q4=", "=ds=#s4#", "10%" },
{ 51731, "", "=q4=", "=ds=#s4#", "10%" },
{ 51730, "", "=q4=", "=ds=#s4#", "10%" },
{ 51734, "inv_misc_cape_21", "=q4=Shawl of Haunted Memories", "=ds=#s4#", "20%" },
{ 51733, "inv_misc_cape_20", "=q4=Shadow-Weaver's Cape", "=ds=#s4#", "20%" },
{ 51732, "inv_misc_cape_11", "=q4=Silken Mantle of Dying Hope", "=ds=#s4#", "20%" },
{ 51731, "inv_misc_cape_01", "=q4=Venom Covered Cloak", "=ds=#s4#", "20%" },
{ 51730, "inv_misc_cape_18", "=q4=Shawl of Nerubian Silk", "=ds=#s4#", "20%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 12717, "", "=q4=", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "5%" },
{ 22388, "", "=q4=", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "5%" },
{ 12717, "inv_scroll_05", "=q4=Plans: Lionheart Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "5%" },
{ 12640, "inv_helmet_36", "=q4=Lionheart Helm", "=ds=#s1#, #a4#" },
{ 0, "", "", "", "" },
{ 51739, "", "=q3=", "=ds=#e15#", "100%" },
{ 22388, "inv_scroll_05", "=q4=Plans: Titanic Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "5%" },
{ 22385, "inv_pants_04", "=q4=Titanic Leggings", "=ds=#s11#, #a4#" },
{ 0, "", "", "", "" },
{ 83547, "inv_scroll_04", "=q4=Plans: Pauldron of Deflection", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "5%" },
{ 65014, "INV_Shoulder_01", "=q4=Pauldron of Deflection", "=ds=#s3#, #a4#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 51739, "inv_fabric_wool_02", "=q1=Little Ball of Spider Web", "=ds=#e15#", "100%" },
};
Turtlhu = {
{ 20633, "INV_Shoulder_29", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "4.76%" },
@@ -173,15 +204,15 @@ AtlasLoot_Data["AtlasLootWBItems"] = {
{ 0,"","","" },
{ 0,"","","" },
{ 83235, "inv_misc_pocketwatch_03", "=q4=Ancient Locking Mechanism", "", "100%" },
{ 17962,"INV_Misc_Bag_10_Blue","=q2=Blue Sack of Gems","=ds=#m23# =q2=#e33#", "25%" },
{ 17962, "INV_Misc_Bag_10_Blue","=q2=Blue Sack of Gems","=ds=#m23# =q2=#e33#", "100%" },
};
Concavius = {
{ 83233, "", "=q4=Charm of Dark Domination", "=ds=#s2#", "17%" },
{ 83234, "", "=q4=Voidclaw Choker", "=ds=#s2#", "17%" },
{ 83237, "", "=q4=Band of Ancient Lethality", "=ds=#s13#", "17%" },
{ 83238, "", "=q4=Ring of the Abyss Watcher", "=ds=#s13#", "17%" },
{ 83239, "", "=q4=Signet of the Voidwalker", "=ds=#s13#", "17%" },
{ 83240, "", "=q4=Ring of the Whispering Mist", "=ds=#s13#", "17%" },
{ 83233, "inv_archaeology_70_highborne_inertleystonecharm", "=q4=Charm of Dark Domination", "=ds=#s2#", "17%" },
{ 83234, "inv_jewelry_necklace_17", "=q4=Voidclaw Choker", "=ds=#s2#", "17%" },
{ 83237, "inv_jewelry_ring_ahnqiraj_01", "=q4=Band of Ancient Lethality", "=ds=#s13#", "17%" },
{ 83238, "inv_jewelry_ring_ahnqiraj_02", "=q4=Ring of the Abyss Watcher", "=ds=#s13#", "17%" },
{ 83239, "inv_jewelry_ring_53naxxramas", "=q4=Signet of the Voidwalker", "=ds=#s13#", "17%" },
{ 83240, "inv_jewelry_ring_48naxxramas", "=q4=Ring of the Whispering Mist", "=ds=#s13#", "17%" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
@@ -191,21 +222,21 @@ AtlasLoot_Data["AtlasLootWBItems"] = {
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 83236, "", "=q4=Void-Linked Satchel of Goods", "=ds=#m23#", "100%" },
{ 7076, "", "=q2=Essence of Earth", "Group 1", "[1-2] 25%" },
{ 7078, "", "=q2=Essence of Fire", "Group 1", "[1-2] 25%" },
{ 7080, "", "=q2=Essence of Water", "Group 1", "[1-2] 25%" },
{ 7082, "", "=q2=Essence of Air", "Group 1", "[1-2] 25%" },
{ 7971, "", "=q2=Black Pearl", "Group 2", "[2-3] 20%" },
{ 12361, "", "=q2=Blue Sapphire", "Group 2", "[1-2] 20%" },
{ 12363, "", "=q2=Arcane Crystal", "Group 2", "[1-2] 20%" },
{ 12364, "", "=q2=Huge Emerald", "Group 2", "[1-2] 20%" },
{ 12800, "", "=q2=Azerothian Diamond", "Group 2", "[1-3] 20%" },
{ 11370, "", "=q1=Dark Iron Ore", "Group 3", "[3-6] 20%" },
{ 13468, "", "=q2=Black Lotus", "Group 3", "[1-3] 20%" },
{ 14256, "", "=q1=Felcloth", "Group 3", "[2-4] 20%" },
{ 15416, "", "=q1=Black Dragonscale", "Group 3", "[2-5] 20%" },
{ 20520, "", "=q2=Dark Rune", "Group 3", "[2-4] 20%" },
{ 83236, "inv_misc_bag_corefelclothbag", "=q4=Void-Linked Satchel of Goods", "=ds=#m23#", "100%" },
{ 7076, "spell_nature_strengthofearthtotem02", "=q2=Essence of Earth", "Group 1", "[1-2] 25%" },
{ 7078, "spell_fire_volcano", "=q2=Essence of Fire", "Group 1", "[1-2] 25%" },
{ 7080, "spell_nature_acid_01", "=q2=Essence of Water", "Group 1", "[1-2] 25%" },
{ 7082, "spell_nature_earthbind", "=q2=Essence of Air", "Group 1", "[1-2] 25%" },
{ 7971, "inv_misc_gem_pearl_01", "=q2=Black Pearl", "Group 2", "[2-3] 20%" },
{ 12361, "inv_misc_gem_sapphire_02", "=q2=Blue Sapphire", "Group 2", "[1-2] 20%" },
{ 12363, "inv_misc_gem_topaz_01", "=q2=Arcane Crystal", "Group 2", "[1-2] 20%" },
{ 12364, "inv_misc_gem_emerald_01", "=q2=Huge Emerald", "Group 2", "[1-2] 20%" },
{ 12800, "inv_misc_gem_diamond_01", "=q2=Azerothian Diamond", "Group 2", "[1-3] 20%" },
{ 11370, "inv_ore_mithril_01", "=q1=Dark Iron Ore", "Group 3", "[3-6] 20%" },
{ 13468, "inv_misc_herb_blacklotus", "=q2=Black Lotus", "Group 3", "[1-3] 20%" },
{ 14256, "inv_fabric_felrag", "=q1=Felcloth", "Group 3", "[2-4] 20%" },
{ 15416, "inv_misc_monsterscales_07", "=q1=Black Dragonscale", "Group 3", "[2-5] 20%" },
{ 20520, "spell_shadow_sealofkings", "=q2=Dark Rune", "Group 3", "[2-4] 20%" },
};
CowKing = {
{ 60486, "inv_misc_fish_02", "=q4=There Is No Cow Level", "There Is No Cow Level", "25%" },
@@ -215,28 +246,31 @@ AtlasLoot_Data["AtlasLootWBItems"] = {
{ 60489, "INV_Helmet_28", "=q4=There Is No Cow Level", "There Is No Cow Level", "50%" },
{ 60490, "INV_Helmet_28", "=q4=There Is No Cow Level", "There Is No Cow Level", "50%" },
{ 0, "", "", "", "" },
{ 4144, "inv_misc_book_07", "=q1=There Is No Cow Level", "There Is No Cow Level", "??%" },
{ 0, "", "", "", "" },
{ 60485, "spell_shadow_curseoftounges", "=q0=There Is No Cow Level", "There Is No Cow Level", "100%" },
{ 60491, "inv_misc_orb_05", "=q0=There Is No Cow Level", "There Is No Cow Level", "100%" },
{ 0, "", "", "", "" },
{ 51261, "inv_misc_bell_01", "=q1=There Is No Cow Level", "There Is No Cow Level", "100%" },
};
KKazzak = {
{ 18546, "INV_Helmet_18", "=q4=Infernal Headcage", "=ds=#s1#, #a3#", "9.39%" },
{ 17111, "INV_Jewelry_Talisman_01", "=q4=Blazefury Medallion", "=ds=#s2#", "10.95%" },
{ 18204, "INV_Misc_Cape_07", "=q4=Eskhandar's Pelt", "=ds=#s4#", "8.77%" },
{ 19135, "INV_Bracer_07", "=q4=Blacklight Bracer", "=ds=#s8#, #a1#", "11.01%" },
{ 18544, "INV_Gauntlets_22", "=q4=Doomhide Gauntlets", "=ds=#s9#, #a2#", "10.05%" },
{ 19134, "INV_Belt_16", "=q4=Flayed Doomguard Belt", "=ds=#s10#, #a2#", "9.75%" },
{ 19133, "INV_Pants_06", "=q4=Fel Infused Leggings", "=ds=#s11#, #a1#", "8.63%" },
{ 18543, "INV_Jewelry_Ring_20", "=q4=Ring of Entropy", "=ds=#s13#", "9.82%" },
{ 17112, "INV_Hammer_05", "=q4=Empyrean Demolisher", "=ds=#h3#, #w6#", "10.84%" },
{ 17113, "INV_Staff_Goldfeathered_01", "=q4=Amberseal Keeper", "=ds=#w9#", "10.50%" },
{ 18546, "INV_Helmet_18", "=q4=Infernal Headcage", "=ds=#s1#, #a3#", "20%" },
{ 17111, "INV_Jewelry_Talisman_01", "=q4=Blazefury Medallion", "=ds=#s2#", "20%" },
{ 18204, "INV_Misc_Cape_07", "=q4=Eskhandar's Pelt", "=ds=#s4#", "20%" },
{ 19135, "INV_Bracer_07", "=q4=Blacklight Bracer", "=ds=#s8#, #a1#", "20%" },
{ 18544, "INV_Gauntlets_22", "=q4=Doomhide Gauntlets", "=ds=#s9#, #a2#", "20%" },
{ 19134, "INV_Belt_16", "=q4=Flayed Doomguard Belt", "=ds=#s10#, #a2#", "20%" },
{ 19133, "INV_Pants_06", "=q4=Fel Infused Leggings", "=ds=#s11#, #a1#", "20%" },
{ 18543, "INV_Jewelry_Ring_20", "=q4=Ring of Entropy", "=ds=#s13#", "20%" },
{ 17112, "INV_Hammer_05", "=q4=Empyrean Demolisher", "=ds=#h3#, #w6#", "20%" },
{ 17113, "INV_Staff_Goldfeathered_01", "=q4=Amberseal Keeper", "=ds=#w9#", "20%" },
{ 0, "", "", "", "" },
{ 18665, "Spell_Shadow_UnholyFrenzy", "=q4=The Eye of Shadow", "=ds=#s14#", "29.98%" },
{ 18665, "Spell_Shadow_UnholyFrenzy", "=q4=The Eye of Shadow", "=ds=#s14#", "100%" },
{ 18608, "INV_Staff_30", "=q4=Benediction", "=q1=#m4# =ds=#w9# =q9=#c5#" },
{ 18609, "INV_Staff_12", "=q4=Anathema", "=q1=#m4# =ds=#w9# =q9=#c5#" },
{ 0, "", "", "", "" },
{ 83545, "", "=q4=", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "40%" },
{ 83545, "inv_scroll_04", "=q4=Pattern: Robe of Sacrifice", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "40%" },
{ 65003, "inv_chest_cloth_09", "=q4=Robe of Sacrifice", "=ds=#s5#, #a1#", "40%" },
};
DTaerar = {
{ 20633, "INV_Shoulder_29", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "17%" },
@@ -367,30 +401,31 @@ AtlasLoot_Data["AtlasLootWBItems"] = {
{ 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" },
};
DTrash = {
{ 21146, "Spell_Shadow_AntiMagicShell", "=q1=Fragment of the Nightmare's Corruption", "=ds=#m3#", "1%" },
{ 21147, "Spell_Shadow_AntiMagicShell", "=q1=Fragment of the Nightmare's Corruption", "=ds=#m3#", "1%" },
{ 21148, "Spell_Shadow_AntiMagicShell", "=q1=Fragment of the Nightmare's Corruption", "=ds=#m3#", "1%" },
{ 21146, "Spell_Shadow_AntiMagicShell", "=q1=Fragment of the Nightmare's Corruption", "=ds=#m3#", "5%" },
{ 21147, "Spell_Shadow_AntiMagicShell", "=q1=Fragment of the Nightmare's Corruption", "=ds=#m3#", "5%" },
{ 21148, "Spell_Shadow_AntiMagicShell", "=q1=Fragment of the Nightmare's Corruption", "=ds=#m3#", "5%" },
{ 21149, "Spell_Shadow_AntiMagicShell", "=q1=Fragment of the Nightmare's Corruption", "=ds=#m3# =q7=#x71#", "100%" },
};
AAzuregos = {
{ 19132, "INV_Crown_01", "=q4=Crystal Adorned Crown", "=ds=#s1#, #a1#", "13.54%" },
{ 18208, "INV_Misc_Cape_04", "=q4=Drape of Benediction", "=ds=#s4#", "11.22%" },
{ 19132, "INV_Crown_01", "=q4=Crystal Adorned Crown", "=ds=#s1#, #a1#", "10%" },
{ 18208, "INV_Misc_Cape_04", "=q4=Drape of Benediction", "=ds=#s4#", "10%" },
{ 18541, "INV_Misc_Cape_06", "=q4=Puissant Cape", "=ds=#s4#", "11.71%" },
{ 18547, "INV_Belt_31", "=q4=Unmelting Ice Girdle", "=ds=#s10#, #a4#", "12.93%" },
{ 18545, "INV_Pants_08", "=q4=Leggings of Arcane Supremacy", "=ds=#s11#, #a1#", "16.39% " },
{ 19131, "INV_Boots_Cloth_14", "=q4=Snowblind Shoes", "=ds=#s12#, #a1#", "12.23%" },
{ 19130, "INV_Wand_01", "=q4=Cold Snap", "=ds=#w12#", "11.89%" },
{ 17070, "INV_Weapon_ShortBlade_06", "=q4=Fang of the Mystics", "=ds=#h1#, #w4#", "13.64%" },
{ 18202, "INV_Misc_MonsterClaw_04", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#", "11.76%" },
{ 18542, "INV_Sword_41", "=q4=Typhoon", "=ds=#h2#, #w10#", "16.89%" },
{ 18547, "INV_Belt_31", "=q4=Unmelting Ice Girdle", "=ds=#s10#, #a4#", "10%" },
{ 18545, "INV_Pants_08", "=q4=Leggings of Arcane Supremacy", "=ds=#s11#, #a1#", "10%" },
{ 19131, "INV_Boots_Cloth_14", "=q4=Snowblind Shoes", "=ds=#s12#, #a1#", "10%" },
{ 19130, "INV_Wand_01", "=q4=Cold Snap", "=ds=#w12#", "10%" },
{ 17070, "INV_Weapon_ShortBlade_06", "=q4=Fang of the Mystics", "=ds=#h1#, #w4#", "10%" },
{ 18202, "INV_Misc_MonsterClaw_04", "=q4=Eskhandar's Left Claw", "=ds=#h4#, #w13#", "10%" },
{ 18542, "INV_Sword_41", "=q4=Typhoon", "=ds=#h2#, #w10#", "10%" },
{ 0, "", "", "", "" },
{ 18704, "INV_Misc_Bandage_04", "=q4=Mature Blue Dragon Sinew", "=ds=#m3#", "51.56%" },
{ 18704, "INV_Misc_Bandage_04", "=q4=Mature Blue Dragon Sinew", "=ds=#m3#", "100%" },
{ 18714, "INV_Misc_Quiver_03", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4# =ds=#m12# #e9# =q14=#c2#" },
{ 0, "", "", "", "" },
{ 83544, "inv_scroll_04", "=q4=Pattern: Stormscale Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "40%" },
{ 65006, "inv_pants_mail_15", "=q4=Pattern: Stormscale Leggings", "=ds=#s11#, #a3#" },
};
ASpiritA = {
{ 20949, "INV_Letter_16", "=q1=Magical Ledger", "=ds=#m2#", "" },
{ 20949, "INV_Letter_16", "=q1=Magical Ledger", "=ds=#m2#" },
};
Tarangos = {
{ 81360, "INV_Weapon_ShortBlade_10", "=q3=Claw of Taranassz", "=ds=#w4#", "25%" },
@@ -461,13 +496,131 @@ AtlasLoot_Data["AtlasLootWBItems"] = {
{ 83279, "Spell_Fire_Fire", "=q3=Everflame Torch", "=ds=#w6#", "25%" },
};
AdmiralBareanWestwind = {
{ 60383, "", "=q3=Fleetmaster's Cane", "=ds=#w9#", "17%" },
{ 60384, "", "=q3=Fleet Scimitar", "=ds=#h3#, #w10#", "17%" },
{ 60385, "", "=q3=Westwind's Bicorne", "=ds=#a1#, #s1#", "17%" },
{ 60386, "", "=q3=Sash of the Northrend Expedition", "=ds=#a1#, #s10#", "17%" },
{ 60387, "", "=q3=Sivaxis Tundra Shard", "=ds=#h4#", "17%" },
{ 60388, "", "=q3=Mariner's Cuffs", "=ds=#a3#, #s8#", "17%" },
{ 60389, "", "=q4=The Frigid Star Ring", "=ds=#s13#", "15%" },
{ 60390, "", "=q4=Jacket of the Scarlet Admiral", "=ds=#a2#, #s5#", "15%" },
{ 60383, "inv_staff_08", "=q3=Fleetmaster's Cane", "=ds=#w9#", "17%" },
{ 60384, "inv_sword_24", "=q3=Fleet Scimitar", "=ds=#h3#, #w10#", "17%" },
{ 60385, "inv_helmet_30", "=q3=Westwind's Bicorne", "=ds=#a1#, #s1#", "17%" },
{ 60386, "inv_belt_04", "=q3=Sash of the Northrend Expedition", "=ds=#a1#, #s10#", "17%" },
{ 60387, "inv_ore_arcanite_02", "=q3=Sivaxis Tundra Shard", "=ds=#h4#", "17%" },
{ 60388, "inv_bracer_19", "=q3=Mariner's Cuffs", "=ds=#a3#, #s8#", "17%" },
{ 60389, "inv_jewelry_ring_04", "=q4=The Frigid Star Ring", "=ds=#s13#", "15%" },
{ 60390, "inv_chest_leather_10", "=q4=Jacket of the Scarlet Admiral", "=ds=#a2#, #s5#", "15%" },
};
ShadeMage = {
{ 61500, "INV_Staff_11", "=q2=Shadestaff", "=ds=#h2#, #w9#", "50%" },
{ 61501, "INV_Boots_05", "=q2=Silent Sneakers", "=ds=#s12#, #a2#", "50%" },
};
GraypawAlpha = {
{ 60492, "INV_Pants_02", "=q2=Graypaw Leggings", "=ds=#s11#, #a2#", "50%" },
{ 60493, "INV_Boots_05", "=q2=Graypaw Boots", "=ds=#s12#, #a1#", "50%" },
};
EarthcallerRezengal = {
{ 61502, "INV_Staff_17", "=q2=Earthcaller Staff", "=ds=#h2#, #w9#", "50%" },
{ 61503, "INV_Chest_Cloth_15", "=q2=Rezengal's Robe", "=ds=#s5#, #a1#", "50%" },
};
Blazespark = {
{ 61504, "INV_Belt_13", "=q2=Wildfire Girdle", "=ds=#s10#, #a3#", "50%" },
{ 61505, "INV_Pants_06", "=q2=Leggings of Fiery Temper", "=ds=#s11#, #a2#", "50%" },
};
WitchDoctorTanzo = {
{ 61507, "INV_Jewelry_Necklace_01", "=q2=Pendant of Wilderness", "=ds=#s2#", "50%" },
{ 61508, "Ability_Creature_Poison_04", "=q2=Thorned Branch", "=ds=#s14#", "50%" },
};
Dawnhowl = {
{ 61580, "Ability_Mount_WhiteDireWolf", "=q2=Wolf's Skull", "=ds=#s1#, #a3#", "33%" },
{ 61581, "INV_Chest_Leather_02", "=q2=Wolffur Armor", "=ds=#s5#, #a2#", "33%" },
{ 61582, "INV_Jewelry_Necklace_22", "=q2=Sharp Teeth Necklace", "=ds=#s2#", "33%" },
};
MaltimorsPrototype = {
{ 61573, "INV_Helmet_25", "=q2=Scrapmetal Helm", "=ds=#s1#, #a4#", "40%" },
{ 61574, "INV_Misc_Gear_01", "=q2=Polished Gear", "=ds=#s13#", "40%" },
{ 0, "", "", "", "" },
{ 61572, "INV_Misc_Wrench_01", "=q3=Gartside Family Wrench", "=ds=#h3#, #w6#", "20%" },
};
Bonecruncher = {
{ 61583, "INV_Belt_25", "=q2=Light Ogre Belt", "=ds=#s10#, #a2#", "40%" },
{ 61584, "INV_Bracer_08", "=q2=Ogre Fighter's Bracers", "=ds=#s8#, #a4#", "40%" },
{ 61585, "INV_Misc_Bone_03", "=q2=Brawling Trophy", "=ds=#s14#", "20%" },
};
Duskskitter = {
{ 61610, "INV_Spear_04", "=q2=Old Farmer's Pitchfork", "=ds=#h2#, #w7#", "33%" },
{ 61611, "INV_Jewelry_Necklace_01", "=q2=Emerald Pendant", "=ds=#s2#", "33%" },
{ 61612, "INV_Sword_06", "=q2=Holy Sword", "=ds=#h2#, #w10#", "33%" },
};
BaronPerenolde = {
{ 61577, "INV_Sword_25", "=q2=Lieutenant's Sword", "=ds=#h1#, #w10#", "33%" },
};
FirstbornofArugal = {
{ 61586, "INV_Shoulder_08", "=q2=Explorer's Shoulders", "=ds=#s3#, #a2#", "40%" },
{ 61587, "INV_Boots_07", "=q2=Old Hunter's Boots", "=ds=#s12#, #a2#", "40%" },
{ 0, "", "", "", "" },
{ 61588, "INV_Jewelry_Ring_43", "=q3=Arugal Family Sigil", "=ds=#s13#", "20%" },
};
WidowoftheWoods = {
{ 61575, "INV_Misc_Cape_04", "=q2=Forgotten Veil", "=ds=#s1#, #a1#", "40%" },
{ 61576, "INV_Jewelry_Ring_03", "=q2=Lover's Ring", "=ds=#s13#", "40%" },
{ 0, "", "", "", "" },
{ 61589, "INV_Weapon_ShortBlade_01", "=q3=Widow's Kiss", "=ds=#h1#, #w4#", "20%" },
};
Ripjaw = {
{ 61535, "INV_Helmet_30", "=q2=Outlaw's Pirate Hat", "=ds=#s1#, #a2#", "40%" },
{ 61536, "INV_Belt_02", "=q2=Mystical Girdle", "=ds=#s10#, #a1#", "40%" },
{ 0, "", "", "", "" },
{ 61537, "INV_Misc_MonsterFang_01", "=q3=Ripjaw's Tooth", "=ds=#h1#, #w4#", "20%" },
};
Rukthok = {
{ 61613, "INV_Chest_Leather_09", "=q2=Burnt Explorer's Tunic", "=ds=#s5#, #a2#", "33%" },
{ 61614, "INV_Boots_09", "=q2=Ruk'thok Slippers", "=ds=#s12#, #a1#", "33%" },
{ 61615, "INV_Wand_11", "=q2=Burning Torch", "=ds=#w12#", "33%" },
};
MargontheMighty = {
{ 61531, "INV_Misc_Gem_Pearl_01", "=q3=Glowing Black Pearl", "=ds=#s14#", "33%" },
{ 0, "", "", "", "" },
{ 61532, "INV_Hammer_16", "=q3=Giants Heavy Mace", "=ds=#h2#, #w6#", "33%" },
{ 61534, "INV_Spear_04", "=q3=Fisher's Harpoon", "=ds=#h2#, #w7#", "33%" },
{ 0, "", "", "", "" },
{ 61533, "INV_Belt_27", "=q4=Ring of the Forgotten Hero", "=ds=#s13#", "2%" },
};
Embereye = {
{ 61538, "INV_Sword_26", "=q2=Moonsteel Zweihander", "=ds=#h2#, #w10#", "33%" },
{ 61539, "INV_Shoulder_02", "=q2=Scaleshard Shoulders", "=ds=#s3#, #a3#", "33%" },
{ 61540, "INV_Shield_02", "=q2=Emberscale Shield", "=ds=#w8#", "33%" },
};
Aquitus = {
{ 61529, "INV_Sword_24", "=q2=Pirate's Scimitar", "=ds=#h3#, #w10#", "40%" },
{ 61530, "INV_Jewelry_Ring_12", "=q2=Ring of the Deep Sea", "=ds=#s13#", "40%" },
{ 0, "", "", "", "" },
{ 61528, "INV_Bracer_06", "=q3=Aquis' Bindings", "=ds=#s8#, #a3#", "20%" },
};
Letashaz = {
{ 61542, "INV_Pick_03", "=q3=Dwarven Pickaxe", "=ds=#h2#, #w1#", "33%" },
{ 61543, "INV_Chest_Leather_07", "=q3=Miner's Vest", "=ds=#s5#, #a2#", "33%" },
{ 61544, "INV_Misc_Cape_14", "=q3=Shawl of the Magician", "=ds=#s4#", "33%" },
{ 0, "", "", "", "" },
{ 61541, "INV_Gauntlets_07", "=q4=Letashaz's Right Claw", "=ds=#h3#, #w13#", "2%" },
};
Stoneshell = {
{ 61509, "INV_Shield_21", "=q2=Stoneshell Shield", "=ds=#w8#", "40%" },
{ 61510, "INV_Shoulder_29", "=q2=Stonehewn Pauldrons", "=ds=#s3#, #a4#", "40%" },
{ 61511, "INV_Misc_StoneTablet_07", "=q2=Scale of the Makrura", "=ds=#s14#", "20%" },
};
HighvaleSilverback = {
{ 61518, "INV_Gauntlets_18", "=q2=Apefist Pummelers", "=ds=#s9#, #a2#", "40%" },
{ 61519, "INV_Chest_Plate10", "=q2=Tel Co. Chestguard", "=ds=#s5#, #a4#", "40%" },
{ 61520, "INV_Misc_Food_24", "=q2=The Golden Banana", "=ds=#s14#", "20%" },
};
Azurebeak = {
{ 61550, "INV_Helmet_25", "=q2=Sanctified Helm", "=ds=#s1#, #a4#", "40%" },
{ 61551, "INV_Staff_14", "=q2=Mathrengyl's Lost Staff", "=ds=#h2#, #w9#", "40%" },
{ 0, "", "", "", "" },
{ 61549, "INV_Misc_Quiver_03", "=q3=Swiftfeather Quiver", "=ds=#e9#", "20%" },
};
BarkskinFisher = {
{ 84507, "INV_Fishingpole_02", "=q2=Barkskin Fisher", "=ds=#w14#", "100%" },
};
ShadeflayerGoliath = {
{ 61707, "INV_Bracer_01", "=q1=Shadeflayer Tribal Bracelet", "=ds=#m3#" },
};
M0L1Y = {
{ 0, "", "", "", "" },
};
};
+12 -12
View File
@@ -64,44 +64,44 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
AbyssalLords = {
{ 0, "INV_Box_01", "=q6=#x90#", "=q1=#j15#" },
{ 20682, "INV_Jewelry_Ring_23", "=q4=Elemental Focus Band", "=ds=#s13#", "50%" },
{ 83562, "", "=q4=Skaldrenox's Rage", "=ds=#w7#, #h2#", "50%" },
{ 83562, "inv_spear_01", "=q4=Skaldrenox's Rage", "=ds=#w7#, #h2#", "50%" },
{ 20681, "INV_Bracer_10", "=q3=Abyssal Leather Bracers", "=ds=#s8#, #a2# =q2=#e31#", "50%" },
{ 20680, "INV_Shoulder_16", "=q3=Abyssal Mail Pauldrons", "=ds=#s3#, #a3# =q2=#e31#", "50%" },
{ 20515, "INV_Staff_13", "=q4=Abyssal Scepter", "=ds=#m3#", "100%" },
{ 83554, "", "=q4=Abyssal Flame", "=ds=#m33#", "40%" },
{ 83554, "INV_Misc_Orb_05", "=q4=Abyssal Flame", "=ds=#m33#", "40%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x91#", "=q1=#j16#" },
{ 20685, "INV_Jewelry_Necklace_21", "=q4=Wavefront Necklace", "=ds=#s2#", "50%" },
{ 83563, "", "=q4=Pearl of the Tides", "=ds=#s14#", "50%" },
{ 83563, "INV_Ore_Arcanite_02", "=q4=Pearl of the Tides", "=ds=#s14#", "50%" },
{ 20684, "INV_Bracer_07", "=q3=Abyssal Mail Armguards", "=ds=#s8#, #a3# =q2=#e31#", "50%" },
{ 20683, "INV_Shoulder_22", "=q3=Abyssal Plate Epaulets", "=ds=#s3#, #a4# =q2=#e31#", "50%" },
{ 20515, "INV_Staff_13", "=q4=Abyssal Scepter", "=ds=#m3#", "100%" },
{ 83557, "", "=q4=Abyssal Wave", "=ds=#m33#", "40%" },
{ 83557, "Spell_Frost_SummonWaterElemental", "=q4=Abyssal Wave", "=ds=#m33#", "40%" },
{ 0, "INV_Box_01", "=q6=#x88#", "=q1=#j18#" },
{ 20691, "INV_Misc_Cape_20", "=q4=Windshear Cape", "=ds=#s4#", "50%" },
{ 83564, "", "=q4=Tempest's Rage", "=ds=#h1# #w10#", "50%" },
{ 83564, "INV_Sword_39", "=q4=Tempest's Rage", "=ds=#h1# #w10#", "50%" },
{ 20690, "INV_Bracer_12", "=q3=Abyssal Cloth Wristbands", "=ds=#s8#, #a1# =q2=#e31#", "50%" },
{ 20689, "INV_Shoulder_08", "=q3=Abyssal Leather Shoulders", "=ds=#s3#, #a3# =q2=#e31#", "50%" },
{ 20515, "INV_Staff_13", "=q4=Abyssal Scepter", "=ds=#m3#", "100%" },
{ 83556, "", "=q4=Abyssal Wind", "=ds=#m33#", "40%" },
{ 83556, "Spell_Nature_Tranquility", "=q4=Abyssal Wind", "=ds=#m33#", "40%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x89#", "=q1=#j17#" },
{ 20688, "INV_Shield_15", "=q4=Earthen Guard", "=ds=#w8#", "50%" },
{ 83565, "", "=q4=Blackstone Crown", "=ds=#s1#, #a3#", "50%" },
{ 83565, "inv_helmet_19", "=q4=Blackstone Crown", "=ds=#s1#, #a3#", "50%" },
{ 20686, "INV_Shoulder_25", "=q3=Abyssal Cloth Amice", "=ds=#s3#, #a1# =q2=#e31#", "50%" },
{ 20687, "INV_Bracer_19", "=q3=Abyssal Plate Vambraces", "=ds=#s8#, #a4# =q2=#e31#", "50%" },
{ 20515, "INV_Staff_13", "=q4=Abyssal Scepter", "=ds=#m3#", "100%" },
{ 83555, "", "=q4=Abyssal Slate", "=ds=#m33#", "40%" },
{ 83555, "INV_Misc_StoneTablet_01", "=q4=Abyssal Slate", "=ds=#m33#", "40%" },
};
ElementalInvasion = {
{ 0, "INV_Box_01", "=q6=#x92#", "=q1=#j15#, Un'goro Crater" },
{ 83550, "", "=q4=Primordial Flame", "=ds=#m33#", "40%" },
{ 83550, "Spell_Fire_Fire", "=q4=Primordial Flame", "=ds=#m33#", "40%" },
{ 18671, "INV_Mace_08", "=q3=Baron Charr's Sceptre", "=ds=#h3#, #w6#", "12.18%" },
{ 19268, "INV_Misc_Ticket_Tarot_Elemental_01", "=q3=Ace of Elementals", "=ds=#e16#", "10.14%" },
{ 18672, "INV_Misc_Orb_05", "=q2=Elemental Ember", "=ds=#s15#", "53.31%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x94#", "=q1=#j16#, Winterspring" },
{ 83552, "", "=q4=Unmelting Ice", "=ds=#m33#", "40%" },
{ 83552, "INV_Stone_01", "=q4=Unmelting Ice", "=ds=#m33#", "40%" },
{ 18678, "INV_Jewelry_Necklace_03", "=q3=Tempestria's Frozen Necklace", "=ds=#s2#", "12.33%" },
{ 19268, "INV_Misc_Ticket_Tarot_Elemental_01", "=q3=Ace of Elementals", "=ds=#e16#", "5.24%" },
{ 21548, "INV_Scroll_03", "=q3=Pattern: Stormshroud Gloves", "=ds=#p7# #m14#", "25.00%" },
@@ -110,13 +110,13 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 0,"","","" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x93#", "=q1=#j17#, Azshara" },
{ 83551, "", "=q4=Evershifting Stone", "=ds=#m33#", "40%" },
{ 83551, "INV_Stone_14", "=q4=Evershifting Stone", "=ds=#m33#", "40%" },
{ 18673, "INV_Shield_03", "=q3=Avalanchion's Stony Hide", "=ds=#w8#", "14.56%" },
{ 19268, "INV_Misc_Ticket_Tarot_Elemental_01", "=q3=Ace of Elementals", "=ds=#e16#", "5.89%" },
{ 18674, "INV_Jewelry_Ring_14", "=q2=Hardened Stone Band", "=ds=#s13#", "41.50%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x95#", "=q1=#j18#, Silithus" },
{ 83553, "", "=q4=Unyielding Gust", "=ds=#m33#", "40%" },
{ 83553, "Spell_Nature_Cyclone", "=q4=Unyielding Gust", "=ds=#m33#", "40%" },
{ 18676, "INV_Belt_31", "=q3=Sash of the Windreaver", "=ds=#s10#, #a3#", "16.76%" },
{ 19268, "INV_Misc_Ticket_Tarot_Elemental_01", "=q3=Ace of Elementals", "=ds=#e16#", "9.76%" },
{ 21548, "INV_Scroll_03", "=q3=Pattern: Stormshroud Gloves", "=ds=#p7# #m14#", "36.28%" },