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();
+296 -157
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);
@@ -3613,7 +3712,7 @@ function AtlasLoot_SayItemReagents(id, color, name, safe)
chatnumber = tListActivity[1];
else
channel,chatnumber = ChatFrameEditBox.chatType;
if channel=="WHISPER" then
if channel=="WHISPER" then
chatnumber = ChatFrameEditBox.tellTarget
elseif channel=="CHANNEL" then
chatnumber = ChatFrameEditBox.channelTarget
@@ -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
@@ -3755,15 +3891,18 @@ AtlasLoot_updater:SetScript("OnEvent", function()
this.group = groupsize
end
if event == "PLAYER_ENTERING_WORLD" then
if not alreadyshown and localversion < remoteversion then
DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Lexiebean/AtlasLoot/")
AtlasLoot_updateavailable = localversion
alreadyshown = true
end
if event == "PLAYER_ENTERING_WORLD" then
if not alreadyshown and localversion < remoteversion then
DEFAULT_CHAT_FRAME:AddMessage("|cffbe5eff[AtlasLoot]|r New version available! https://github.com/Lexiebean/AtlasLoot/")
AtlasLoot_updateavailable = localversion
alreadyshown = true
end
for _, chan in pairs(loginchannels) do
SendAddonMessage("AtlasLoot", "VERSION:" .. localversion, chan)
end
end
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();
+4762 -4366
View File
File diff suppressed because it is too large Load Diff
+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
+7 -7
View File
@@ -129,43 +129,43 @@ function AtlasLootRepMenu()
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_14.lootpage="Ironforge";
AtlasLootMenuItem_14:Show();
--Darnassus
--Darnassus
AtlasLootMenuItem_15_Name:SetText(AL["Darnassus"]);
AtlasLootMenuItem_15_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_15.lootpage="Darnassus";
AtlasLootMenuItem_15:Show();
--Stormwind
--Stormwind
-- AtlasLootMenuItem_16_Name:SetText(AL["Stormwind"]);
-- AtlasLootMenuItem_16_Extra:SetText("|cff2773ff"..AL["Alliance"]);
-- AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
-- AtlasLootMenuItem_16.lootpage="Stormwind";
-- AtlasLootMenuItem_16:Show();
--Gnomeregan Exiles
--Gnomeregan Exiles
-- AtlasLootMenuItem_17_Name:SetText(AL["Gnomeregan Exiles"]);
-- AtlasLootMenuItem_17_Extra:SetText("|cff2773ff"..AL["Alliance"]);
-- AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
-- AtlasLootMenuItem_17.lootpage="GnomereganExiles";
-- AtlasLootMenuItem_17:Show();
--Durotar Labor Union
--Durotar Labor Union
-- AtlasLootMenuItem_18_Name:SetText(AL["Durotar Labor Union"]);
-- AtlasLootMenuItem_18_Extra:SetText("|cff2773ff"..AL["Horde"]);
-- AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
-- AtlasLootMenuItem_18.lootpage="DurotarLaborUnion";
-- AtlasLootMenuItem_18:Show();
--Undercity
--Undercity
-- AtlasLootMenuItem_19_Name:SetText(AL["Undercity"]);
-- AtlasLootMenuItem_19_Extra:SetText("|cff2773ff"..AL["Horde"]);
-- AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
-- AtlasLootMenuItem_19.lootpage="Undercity";
-- AtlasLootMenuItem_19:Show();
--Orgrimmar
--Orgrimmar
-- AtlasLootMenuItem_20_Name:SetText(AL["Orgrimmar"]);
-- AtlasLootMenuItem_20_Extra:SetText("|cff2773ff"..AL["Horde"]);
-- AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
-- AtlasLootMenuItem_20.lootpage="Orgrimmar";
-- AtlasLootMenuItem_20:Show();
--Thunder Bluff
--Thunder Bluff
-- AtlasLootMenuItem_21_Name:SetText(AL["Thunder Bluff"]);
-- AtlasLootMenuItem_21_Extra:SetText("|cff2773ff"..AL["Horde"]);
-- AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
+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,
+757 -3
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,7 +5694,110 @@ GetSpellInfoVanillaDB = {
[7] = {20520, 10},
},
},
[23665] = {
[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"] = "",
["tools"] = "",
@@ -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",
@@ -7172,7 +7380,7 @@ GetSpellInfoVanillaDB = {
[3] = {3372},
},
},
[11457] = {
[11457] = {
["name"] = "Alchemy: Superior Healing Potion",
["requires"] = "",
["tools"] = "",
@@ -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] = {
+575 -572
View File
File diff suppressed because it is too large Load Diff
+12 -5
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)
@@ -248,7 +248,7 @@ function AtlasLoot_CategorizeWishList(wlTable)
table.insert(categories[subheadings[dataID]], v);
end
end
-- Sort and flatten categories
for k, v in pairs(categories) do
-- Add a empty line between categories when in a same column
@@ -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?
+138 -49
View File
@@ -290,7 +290,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s3172", "inv_potion_08", "=q1=Minor Magic Resistance Potion", "=ds=#sr# =so1=110 =so2=135 =so3=155 =so4=175" },
{ "s3173", "inv_potion_71", "=q1=Lesser Mana Potion", "=ds=#sr# =so1=120 =so2=145 =so3=165 =so4=185" },
{ "s3174", "inv_potion_12", "=q1=Elixir of Poison Resistance", "=ds=#sr# =so1=120 =so2=145 =so3=165 =so4=185" },
{ "s3176", "inv_potion_78", "=q1=Strong Troll's Blood Potion", "=ds=#sr# =so1=125 =so2=150 =so3=170 =so4=190" },
{ "s3176", "inv_potion_78", "=q1=Strong Troll's Blood Potion", "=ds=#sr# =so1=125 =so2=150 =so3=170 =so4=190" },
{ "s7837", "inv_potion_38", "=q1=Fire Oil", "=ds=#sr# =so1=130 =so2=150 =so3=160 =so4=170" },
{ "s3177", "inv_potion_64", "=q1=Elixir of Defense", "=ds=#sr# =so1=130 =so2=155 =so3=175 =so4=195" },
{ "s7256", "inv_potion_44", "=q1=Shadow Protection Potion", "=ds=#sr# =so1=135 =so2=160 =so3=180 =so4=200" },
@@ -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" },
@@ -768,16 +792,18 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s16662", "inv_pants_04", "=q2=Thorium Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s24136", "inv_chest_chain_14", "=q3=Bloodsoul Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "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" },
{ "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 = {
@@ -834,30 +867,31 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
};
Axesmith1 = {
{ "s16970", "inv_axe_05", "=q3=Dawn's Edge", "=ds=#sr# =so1=275 =so2=300 =so3=312 =so4=325" },
{ "s16991", "inv_axe_12", "=q3=Annihilator", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16994", "inv_axe_09", "=q3=Arcanite Reaper", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s20897", "inv_axe_12", "=q3=Dark Iron Destroyer", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s23653", "inv_axe_12", "=q4=Nightfall", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16970", "inv_axe_05", "=q3=Dawn's Edge", "=ds=#sr# =so1=275 =so2=300 =so3=312 =so4=325" },
{ "s16991", "inv_axe_12", "=q3=Annihilator", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16994", "inv_axe_09", "=q3=Arcanite Reaper", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s20897", "inv_axe_12", "=q3=Dark Iron Destroyer", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s23653", "inv_axe_12", "=q4=Nightfall", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
};
Hammersmith1 = {
{ "s16973", "inv_hammer_05", "=q3=Enchanted Battlehammer", "=ds=#sr# =so1=280 =so2=305 =so3=317 =so4=330" },
{ "s16983", "inv_mace_02", "=q3=Serenity", "=ds=#sr# =so1=285 =so2=310 =so3=322 =so4=335" },
{ "s16988", "inv_hammer_09", "=q3=Hammer of the Titans", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16993", "inv_hammer_04", "=q3=Masterwork Stormhammer", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s23650", "inv_hammer_19", "=q4=Ebon Hand", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s27830", "inv_hammer_08", "=q4=Persuader", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16973", "inv_hammer_05", "=q3=Enchanted Battlehammer", "=ds=#sr# =so1=280 =so2=305 =so3=317 =so4=330" },
{ "s16983", "inv_mace_02", "=q3=Serenity", "=ds=#sr# =so1=285 =so2=310 =so3=322 =so4=335" },
{ "s16988", "inv_hammer_09", "=q3=Hammer of the Titans", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16993", "inv_hammer_04", "=q3=Masterwork Stormhammer", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s23650", "inv_hammer_19", "=q4=Ebon Hand", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s27830", "inv_hammer_08", "=q4=Persuader", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
};
Swordsmith1 = {
{ "s16978", "inv_sword_30", "=q3=Blazing Rapier", "=ds=#sr# =so1=280 =so2=305 =so3=317 =so4=330" },
{ "s16985", "inv_sword_07", "=q3=Corruption", "=ds=#sr# =so1=290 =so2=315 =so3=327 =so4=340" },
{ "s16990", "inv_sword_39", "=q3=Arcanite Champion", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16992", "inv_sword_11", "=q3=Frostguard", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "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" },
{ "s16978", "inv_sword_30", "=q3=Blazing Rapier", "=ds=#sr# =so1=280 =so2=305 =so3=317 =so4=330" },
{ "s16985", "inv_sword_07", "=q3=Corruption", "=ds=#sr# =so1=290 =so2=315 =so3=327 =so4=340" },
{ "s16990", "inv_sword_39", "=q3=Arcanite Champion", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s16992", "inv_sword_11", "=q3=Frostguard", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "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" },
};
--------------------
@@ -865,8 +899,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
--------------------
LeatherApprentice1 = {
{ "s2881", "inv_misc_leatherscrap_03", "=q1=Light Leather", "=ds=#sr# =so1=1 =so2=20 =so3=30 =so4=40" },
{ "s2152", "inv_misc_armorkit_17", "=q1=Light Armor Kit", "=ds=#sr# =so1=1 =so2=30 =so3=45 =so4=60" },
{ "s2881", "inv_misc_leatherscrap_03", "=q1=Light Leather", "=ds=#sr# =so1=1 =so2=20 =so3=30 =so4=40" },
{ "s2152", "inv_misc_armorkit_17", "=q1=Light Armor Kit", "=ds=#sr# =so1=1 =so2=30 =so3=45 =so4=60" },
{ "s2149", "inv_boots_04", "=q1=Handstitched Leather Boots", "=ds=#sr# =so1=1 =so2=40 =so3=55 =so4=70" },
{ "s9059", "inv_bracer_08", "=q1=Handstitched Leather Bracers", "=ds=#sr# =so1=1 =so2=40 =so3=55 =so4=70" },
{ "s9058", "inv_helmet_48", "=q1=Handstitched Leather Cloak", "=ds=#sr# =so1=1 =so2=40 =so3=55 =so4=70" },
@@ -885,7 +919,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s2163", "inv_chest_wolf", "=q1=White Leather Jerkin", "=ds=#sr# =so1=60 =so2=90 =so3=105 =so4=120" },
{ "s9065", "inv_bracer_04", "=q1=Light Leather Bracers", "=ds=#sr# =so1=70 =so2=100 =so3=115 =so4=130" },
{ "s3759", "inv_pants_02", "=q2=Embossed Leather Pants", "=ds=#sr# =so1=75 =so2=105 =so3=120 =so4=135" },
{ "s2164", "inv_gauntlets_05", "=q2=Fine Leather Gloves", "=ds=#sr# =so1=75 =so2=105 =so3=120 =so4=135" },
{ "s2164", "inv_gauntlets_05", "=q2=Fine Leather Gloves", "=ds=#sr# =so1=75 =so2=105 =so3=120 =so4=135" },
};
LeatherJourneyman1 = {
@@ -896,14 +930,14 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s2158", "inv_boots_06", "=q1=Fine Leather Boots", "=ds=#sr# =so1=90 =so2=120 =so3=135 =so4=150" },
{ "s7953", "inv_misc_monsterscales_03", "=q2=Deviate Scale Cloak", "=ds=#sr# =so1=90 =so2=120 =so3=135 =so4=150" },
{ "s6702", "inv_belt_02", "=q2=Murloc Scale Belt", "=ds=#sr# =so1=90 =so2=120 =so3=135 =so4=150" },
{ "s9068", "inv_pants_02", "=q2=Light Leather Pants", "=ds=#sr# =so1=95 =so2=125 =so3=140 =so4=155" },
{ "s6703", "inv_chest_chain_12", "=q2=Murloc Scale Breastplate", "=ds=#sr# =so1=95 =so2=125 =so3=140 =so4=155" },
{ "s9068", "inv_pants_02", "=q2=Light Leather Pants", "=ds=#sr# =so1=95 =so2=125 =so3=140 =so4=155" },
{ "s6703", "inv_chest_chain_12", "=q2=Murloc Scale Breastplate", "=ds=#sr# =so1=95 =so2=125 =so3=140 =so4=155" },
{ "s20648", "inv_misc_leatherscrap_05", "=q1=Medium Leather", "=ds=#sr# =so1=100 =so2=100 =so3=105 =so4=110" },
{ "s3817", "inv_misc_pelt_bear_02", "=q1=Cured Medium Hide", "=ds=#sr# =so1=100 =so2=115 =so3=122 =so4=130" },
{ "s2165", "inv_misc_armorkit_15", "=q1=Medium Armor Kit", "=ds=#sr# =so1=100 =so2=115 =so3=122 =so4=130" },
{ "s2167", "inv_boots_05", "=q1=Dark Leather Boots", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
{ "s9070", "inv_misc_monsterscales_03", "=q2=Black Whelp Cloak", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
{ "s24940", "inv_chest_cloth_45", "=q2=Black Whelp Tunic", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
{ "s24940", "inv_chest_cloth_45", "=q2=Black Whelp Tunic", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
{ "s2169", "inv_chest_leather_03", "=q2=Dark Leather Tunic", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
{ "s3762", "inv_chest_leather_10", "=q2=Hillman's Leather Vest", "=ds=#sr# =so1=100 =so2=125 =so3=137 =so4=150" },
{ "s7954", "inv_gauntlets_05", "=q2=Deviate Scale Gloves", "=ds=#sr# =so1=105 =so2=130 =so3=142 =so4=155" },
@@ -941,7 +975,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
LeatherExpert1 = {
{ "s3772", "inv_chest_leather_08", "=q2=Green Leather Armor", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" },
{ "s23399", "inv_bracer_15", "=q3=Barbaric Bracers", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" },
{ "s23399", "inv_bracer_15", "=q3=Barbaric Bracers", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" },
{ "s3774", "inv_belt_17", "=q2=Green Leather Belt", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
{ "s7147", "inv_pants_02", "=q2=Guardian Pants", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
{ "s9195", "inv_pants_07", "=q2=Dusky Leather Leggings", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" },
@@ -965,8 +999,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s9202", "inv_bracer_06", "=q2=Green Whelp Bracers", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
{ "s6705", "inv_bracer_05", "=q2=Murloc Scale Bracers", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
{ "s9206", "inv_belt_06", "=q2=Dusky Belt", "=ds=#sr# =so1=195 =so2=215 =so3=225 =so4=235" },
{ "s3777", "inv_bracer_10", "=q2=Guardian Leather Bracers", "=ds=#sr# =so1=195 =so2=215 =so3=225 =so4=235" },
{ "s10482", "inv_misc_pelt_bear_01", "=q1=Cured Thick Hide", "=ds=#sr# =so1=200 =so2=200 =so3=200 =so4=200" },
{ "s3777", "inv_bracer_10", "=q2=Guardian Leather Bracers", "=ds=#sr# =so1=195 =so2=215 =so3=225 =so4=235" },
{ "s10482", "inv_misc_pelt_bear_01", "=q1=Cured Thick Hide", "=ds=#sr# =so1=200 =so2=200 =so3=200 =so4=200" },
{ "s20650", "inv_misc_leatherscrap_08", "=q1=Thick Leather", "=ds=#sr# =so1=200 =so2=200 =so3=202 =so4=205" },
{ "s22711", "inv_gauntlets_32", "=q3=Shadowskin Gloves", "=ds=#sr# =so1=200 =so2=210 =so3=220 =so4=230" },
{ "s10487", "inv_misc_armorkit_07", "=q1=Thick Armor Kit", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
@@ -997,7 +1031,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s14930", "inv_misc_quiver_07", "=q2=Quickdraw Quiver", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
{ "s14932", "inv_misc_bag_09_black", "=q2=Thick Leather Ammo Pouch", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
{ "s10542", "inv_gauntlets_24", "=q2=Tough Scorpid Gloves", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
{ "s10546", "inv_helmet_10", "=q2=Wild Leather Helmet", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
{ "s10546", "inv_helmet_10", "=q2=Wild Leather Helmet", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
{ "s10544", "inv_chest_cloth_06", "=q2=Wild Leather Vest", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" },
};
@@ -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" },
};
---------------
@@ -1160,7 +1204,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
TailoringApprentice1 = {
{ "s2963", "inv_fabric_linen_02", "=q1=Bolt of Linen Cloth", "=ds=#sr# =so1=1 =so2=25 =so3=37 =so4=50" },
{ "s3915", "inv_shirt_02", "=q1=Brown Linen Shirt", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
{ "s3915", "inv_shirt_02", "=q1=Brown Linen Shirt", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
{ "s2387", "inv_misc_cape_14", "=q1=Linen Cloak", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
{ "s12044", "inv_pants_11", "=q1=Simple Linen Pants", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
{ "s2393", "inv_shirt_white_01", "=q1=White Linen Shirt", "=ds=#sr# =so1=1 =so2=35 =so3=47 =so4=60" },
@@ -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" },
@@ -1241,7 +1285,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s8483", "inv_shirt_white_01", "=q1=White Swashbuckler's Shirt", "=ds=#sr# =so1=160 =so2=170 =so3=175 =so4=180" },
{ "s3857", "inv_helmet_31", "=q2=Enchanter's Cowl", "=ds=#sr# =so1=165 =so2=185 =so3=200 =so4=215" },
{ "s8784", "inv_chest_cloth_06", "=q2=Green Silk Armor", "=ds=#sr# =so1=165 =so2=185 =so3=200 =so4=215" },
{ "s3871", "inv_shirt_08", "=q1=Formal White Shirt", "=ds=#sr# =so1=170 =so2=180 =so3=185 =so4=190" },
{ "s3871", "inv_shirt_08", "=q1=Formal White Shirt", "=ds=#sr# =so1=170 =so2=180 =so3=185 =so4=190" },
{ "s8764", "inv_shirt_04", "=q2=Earthen Vest", "=ds=#sr# =so1=170 =so2=190 =so3=205 =so4=220" },
{ "s3858", "inv_helmet_27", "=q2=Shadow Hood", "=ds=#sr# =so1=170 =so2=190 =so3=205 =so4=220" },
{ "s3865", "inv_fabric_mageweave_03", "=q1=Bolt of Mageweave", "=ds=#sr# =so1=175 =so2=180 =so3=182 =so4=185" },
@@ -1290,7 +1334,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s12055", "inv_chest_cloth_38", "=q2=Shadoweave Robe", "=ds=#sr# =so1=215 =so2=230 =so3=245 =so4=260" },
{ "s12064", "inv_shirt_orange_01", "=q1=Orange Martial Shirt", "=ds=#sr# =so1=220 =so2=225 =so3=230 =so4=235" },
{ "s12065", "inv_misc_bag_10_black", "=q1=Mageweave Bag", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
{ "s12069", "inv_chest_cloth_25", "=q2=Cindercloth Robe", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
{ "s12069", "inv_chest_cloth_25", "=q2=Cindercloth Robe", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
{ "s27658", "inv_misc_bag_enchantedmageweave", "=q2=Enchanted Mageweave Pouch", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
{ "s12066", "inv_gauntlets_19", "=q2=Red Mageweave Gloves", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
{ "s12071", "inv_gauntlets_09", "=q2=Shadoweave Gloves", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" },
@@ -1323,7 +1367,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s12086", "inv_helmet_27", "=q2=Shadoweave Mask", "=ds=#sr# =so1=245 =so2=260 =so3=275 =so4=290" },
{ "s18401", "inv_fabric_purplefire_02", "=q1=Bolt of Runecloth", "=ds=#sr# =so1=250 =so2=255 =so3=257 =so4=260" },
{ "s12091", "inv_chest_cloth_04", "=q1=White Wedding Dress", "=ds=#sr# =so1=250 =so2=255 =so3=260 =so4=265" },
{ "s26403", "inv_chest_cloth_56", "=q1=Festival Dress", "=ds=#sr# =so1=250 =so2=265 =so3=280 =so4=295" },
{ "s26403", "inv_chest_cloth_56", "=q1=Festival Dress", "=ds=#sr# =so1=250 =so2=265 =so3=280 =so4=295" },
{ "s26407", "inv_chest_cloth_55", "=q1=Festive Red Pant Suit", "=ds=#sr# =so1=250 =so2=265 =so3=280 =so4=295" },
{ "s12093", "inv_shirt_black_01", "=q1=Tuxedo Jacket", "=ds=#sr# =so1=250 =so2=265 =so3=280 =so4=295" },
{ "s12092", "inv_crown_01", "=q3=Dreamweave Circlet", "=ds=#sr# =so1=250 =so2=265 =so3=280 =so4=295" },
@@ -1360,7 +1404,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s18419", "inv_pants_06", "=q2=Felcloth Pants", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
{ "s18416", "inv_shirt_08", "=q2=Ghostweave Vest", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
{ "s18417", "inv_gauntlets_25", "=q2=Runecloth Gloves", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
{ "s18421", "inv_pants_09", "=q2=Wizardweave Leggings", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
{ "s18421", "inv_pants_09", "=q2=Wizardweave Leggings", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
{ "s18422", "inv_misc_cape_18", "=q3=Cloak of Fire", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" },
{ "s18434", "inv_pants_06", "=q2=Cindercloth Pants", "=ds=#sr# =so1=280 =so2=295 =so3=310 =so4=325" },
{ "s18424", "inv_pants_08", "=q2=Frostweave Pants", "=ds=#sr# =so1=280 =so2=295 =so3=310 =so4=325" },
@@ -1374,7 +1418,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s18436", "inv_chest_cloth_49", "=q3=Robe of Winter Night", "=ds=#sr# =so1=285 =so2=300 =so3=315 =so4=330" },
{ "s19435", "inv_boots_05", "=q3=Mooncloth Boots", "=ds=#sr# =so1=290 =so2=295 =so3=310 =so4=325" },
{ "s18439", "inv_pants_09", "=q2=Brightcloth Pants", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
{ "s18442", "inv_helmet_34", "=q2=Felcloth Hood", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
{ "s18442", "inv_helmet_34", "=q2=Felcloth Hood", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
{ "s18441", "inv_pants_01", "=q2=Ghostweave Pants", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
{ "s23664", "inv_boots_cloth_03", "=q3=Argent Boots", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
{ "s18440", "inv_pants_13", "=q3=Mooncloth Leggings", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" },
@@ -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" },
@@ -1423,12 +1469,20 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s28205", "inv_gauntlets_06", "=q4=Glacial Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s28207", "inv_chest_cloth_08", "=q4=Glacial Vest", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s28209", "inv_bracer_07", "=q4=Glacial Wrists", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s18454", "inv_gauntlets_06", "=q4=Gloves of Spell Mastery", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s18454", "inv_gauntlets_06", "=q4=Gloves of Spell Mastery", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s18457", "inv_chest_cloth_38", "=q4=Robe of the Archmage", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s18458", "inv_chest_cloth_51", "=q4=Robe of the Void", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s18456", "inv_chest_cloth_31", "=q4=Truefaith Vestments", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" },
{ "s46656", "inv_chest_cloth_09", "=q4=Robe of Sacrifice", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" },
};
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 = {
@@ -1886,6 +1944,35 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ 0, "", "", "" },
{ "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#", "" },
@@ -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=?" },
};
}
+728 -691
View File
File diff suppressed because it is too large Load Diff
Binary file not shown.
BIN
View File
Binary file not shown.
+2717 -2208
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -7,7 +7,7 @@ Website: http://www.wowace.com/
Documentation: http://www.wowace.com/index.php/AceDB-2.0
SVN: http://svn.wowace.com/root/trunk/Ace2/AceDB-2.0
Description: Mixin to allow for fast, clean, and featureful saved variable
access.
access.
Dependencies: AceLibrary, AceOO-2.0, AceEvent-2.0
]]
@@ -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
+1 -1
View File
@@ -7,7 +7,7 @@ Website: http://www.wowace.com/
Documentation: http://www.wowace.com/index.php/AceEvent-2.0
SVN: http://svn.wowace.com/root/trunk/Ace2/AceEvent-2.0
Description: Mixin to allow for event handling, scheduling, and inter-addon
communication.
communication.
Dependencies: AceLibrary, AceOO-2.0
]]
+53 -53
View File
@@ -3,16 +3,16 @@ Name: AceLibrary
Revision: $Rev: 17722 $
Developed by: The Ace Development Team (http://www.wowace.com/index.php/The_Ace_Development_Team)
Inspired By: Iriel (iriel@vigilance-committee.org)
Tekkub (tekkub@gmail.com)
Revision: $Rev: 17722 $
Tekkub (tekkub@gmail.com)
Revision: $Rev: 17722 $
Website: http://www.wowace.com/
Documentation: http://www.wowace.com/index.php/AceLibrary
SVN: http://svn.wowace.com/root/trunk/Ace2/AceLibrary
Description: Versioning library to handle other library instances, upgrading,
and proper access.
It also provides a base for libraries to work off of, providing
proper error tools. It is handy because all the errors occur in the
file that called it, not in the library file itself.
and proper access.
It also provides a base for libraries to work off of, providing
proper error tools. It is handy because all the errors occur in the
file that called it, not in the library file itself.
Dependencies: None
]]
@@ -38,8 +38,8 @@ local previous = _G[ACELIBRARY_MAJOR]
if previous and not previous:IsNewVersion(ACELIBRARY_MAJOR, ACELIBRARY_MINOR) then return end
local function safecall(func,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
local success, err = pcall(func,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
if not success then geterrorhandler()(err) end
local success, err = pcall(func,a1,a2,a3,a4,a5,a6,a7,a8,a9,a10)
if not success then geterrorhandler()(err) end
end
-- @table AceLibrary
@@ -258,7 +258,7 @@ do
end
-- @function destroyTable
-- @brief remove all the contents of a table
-- @brief remove all the contents of a table
-- @param t table to destroy
local function destroyTable(t)
setmetatable(t, nil)
@@ -298,9 +298,9 @@ do
end
-- @function copyTable
-- @brief Create a shallow copy of a table and return it.
-- @brief Create a shallow copy of a table and return it.
-- @param from The table to copy from
-- @return A shallow copy of the table
-- @return A shallow copy of the table
local function copyTable(from)
local to = new()
for k,v in pairs(from) do to[k] = v end
@@ -309,20 +309,20 @@ local function copyTable(from)
return to
end
-- @function deepTransfer
-- @brief Fully transfer all data, keeping proper previous table
-- backreferences stable.
-- @param to The table with which data is to be injected into
-- @param from The table whose data will be injected into the first
-- @function deepTransfer
-- @brief Fully transfer all data, keeping proper previous table
-- backreferences stable.
-- @param to The table with which data is to be injected into
-- @param from The table whose data will be injected into the first
-- @param saveFields If available, a shallow copy of the basic data is saved
-- in here.
-- @param list The account of table references
-- @param list2 The current status on which tables have been traversed.
-- in here.
-- @param list The account of table references
-- @param list2 The current status on which tables have been traversed.
local deepTransfer
do
-- @function examine
-- @brief Take account of all the table references to be shared
-- between the to and from tables.
-- @brief Take account of all the table references to be shared
-- between the to and from tables.
-- @param to The table with which data is to be injected into
-- @param from The table whose data will be injected into the first
-- @param list An account of the table references
@@ -392,11 +392,11 @@ do
end
end
-- @method TryToLoadStandalone
-- @brief Attempt to find and load a standalone version of the requested library
-- @method TryToLoadStandalone
-- @brief Attempt to find and load a standalone version of the requested library
-- @param major A string representing the major version
-- @return If library is found, return values from the call to LoadAddOn are returned
-- If the library has been requested previously, nil is returned.
-- @return If library is found, return values from the call to LoadAddOn are returned
-- If the library has been requested previously, nil is returned.
local function TryToLoadStandalone(major)
if not AceLibrary.scannedlibs then AceLibrary.scannedlibs = {} end
if AceLibrary.scannedlibs[major] then return end
@@ -418,14 +418,14 @@ local function TryToLoadStandalone(major)
end
end
-- @method IsNewVersion
-- @brief Obtain whether the supplied version would be an upgrade to the
-- current version. This allows for bypass code in library
-- declaration.
-- @method IsNewVersion
-- @brief Obtain whether the supplied version would be an upgrade to the
-- current version. This allows for bypass code in library
-- declaration.
-- @param major A string representing the major version
-- @param minor An integer or an svn revision string representing the minor version
-- @return whether the supplied version would be newer than what is
-- currently available.
-- @return whether the supplied version would be newer than what is
-- currently available.
function AceLibrary:IsNewVersion(major, minor)
argCheck(self, major, 2, "string")
TryToLoadStandalone(major)
@@ -446,11 +446,11 @@ function AceLibrary:IsNewVersion(major, minor)
return data.minor < minor
end
-- @method HasInstance
-- @brief Returns whether an instance exists. This allows for optional support of a library.
-- @method HasInstance
-- @brief Returns whether an instance exists. This allows for optional support of a library.
-- @param major A string representing the major version.
-- @param minor (optional) An integer or an svn revision string representing the minor version.
-- @return Whether an instance exists.
-- @return Whether an instance exists.
function AceLibrary:HasInstance(major, minor)
argCheck(self, major, 2, "string")
TryToLoadStandalone(major)
@@ -473,11 +473,11 @@ function AceLibrary:HasInstance(major, minor)
return self.libs[major] and true
end
-- @method GetInstance
-- @brief Returns the library with the given major/minor version.
-- @method GetInstance
-- @brief Returns the library with the given major/minor version.
-- @param major A string representing the major version.
-- @param minor (optional) An integer or an svn revision string representing the minor version.
-- @return The library with the given major/minor version.
-- @return The library with the given major/minor version.
function AceLibrary:GetInstance(major, minor)
argCheck(self, major, 2, "string")
TryToLoadStandalone(major)
@@ -512,20 +512,20 @@ local donothing
local AceEvent
-- @method Register
-- @brief Registers a new version of a given library.
-- @param newInstance the library to register
-- @param major the major version of the library
-- @param minor the minor version of the library
-- @method Register
-- @brief Registers a new version of a given library.
-- @param newInstance the library to register
-- @param major the major version of the library
-- @param minor the minor version of the library
-- @param activateFunc (optional) A function to be called when the library is
-- fully activated. Takes the arguments
-- (newInstance [, oldInstance, oldDeactivateFunc]). If
-- oldInstance is given, you should probably call
-- oldDeactivateFunc(oldInstance).
-- fully activated. Takes the arguments
-- (newInstance [, oldInstance, oldDeactivateFunc]). If
-- oldInstance is given, you should probably call
-- oldDeactivateFunc(oldInstance).
-- @param deactivateFunc (optional) A function to be called by a newer library's
-- activateFunc.
-- activateFunc.
-- @param externalFunc (optional) A function to be called whenever a new
-- library is registered.
-- library is registered.
function AceLibrary:Register(newInstance, major, minor, activateFunc, deactivateFunc, externalFunc)
argCheck(self, newInstance, 2, "table")
argCheck(self, major, 3, "string")
@@ -707,11 +707,11 @@ function AceLibrary:IterateLibraries()
return iter, self.libs, nil
end
-- @function Activate
-- @brief The activateFunc for AceLibrary itself. Called when
-- AceLibrary properly registers.
-- @param self Reference to AceLibrary
-- @param oldLib (optional) Reference to an old version of AceLibrary
-- @function Activate
-- @brief The activateFunc for AceLibrary itself. Called when
-- AceLibrary properly registers.
-- @param self Reference to AceLibrary
-- @param oldLib (optional) Reference to an old version of AceLibrary
-- @param oldDeactivate (optional) Function to deactivate the old lib
local function activate(self, oldLib, oldDeactivate)
if not self.libs then
+2 -2
View File
@@ -7,7 +7,7 @@ Website: http://www.wowace.com/
Documentation: http://www.wowace.com/index.php/AceLocale-2.2
SVN: http://svn.wowace.com/root/trunk/Ace2/AceLocale-2.2
Description: Localization library for addons to use to handle proper
localization and internationalization.
localization and internationalization.
Dependencies: AceLibrary
]]
@@ -401,7 +401,7 @@ function AceLocale.prototype:Debug()
else
DEFAULT_CHAT_FRAME:AddMessage(string.format("Locale %q missing:", locale))
for word in pairs(t) do
DEFAULT_CHAT_FRAME:AddMessage(string.format(" %q", word))
DEFAULT_CHAT_FRAME:AddMessage(string.format(" %q", word))
end
end
end
File diff suppressed because it is too large Load Diff
+8 -8
View File
@@ -1,10 +1,10 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/">
<Script file="locale.en.lua"/>
<Script file="locale.ru.lua"/>
<Script file="locale.de.lua"/>
<Script file="locale.fr.lua"/>
<Script file="locale.cn.lua"/>
<Script file="locale.kr.lua"/>
<Script file="locale.tw.lua"/>
<Script file="locale.es.lua"/>
<Script file="locale.en.lua"/>
<Script file="locale.ru.lua"/>
<Script file="locale.de.lua"/>
<Script file="locale.fr.lua"/>
<Script file="locale.cn.lua"/>
<Script file="locale.kr.lua"/>
<Script file="locale.tw.lua"/>
<Script file="locale.es.lua"/>
</Ui>
+901 -901
View File
File diff suppressed because it is too large Load Diff
+876 -876
View File
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)
+970 -970
View File
File diff suppressed because it is too large Load Diff
+583 -583
View File
File diff suppressed because it is too large Load Diff
+902 -902
View File
File diff suppressed because it is too large Load Diff
+893 -893
View File
File diff suppressed because it is too large Load Diff
+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#" },
+1 -1
View File
@@ -1,3 +1,3 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/">
<Script file="Battlegrounds.en.lua"/>
<Script file="Battlegrounds.en.lua"/>
</Ui>
-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#", "" },
+31 -31
View File
@@ -12,25 +12,25 @@ if (GetLocale() == "zhCN") then
-----------------
--Keys
AtlasLoot_TableNames["OldKeys"][1] = "钥匙";
AtlasLoot_TableNames["BCKeys"][1] = "钥匙";
AtlasLoot_TableNames["OldKeys"][1] = "钥匙";
AtlasLoot_TableNames["BCKeys"][1] = "钥匙";
--Auch: Sethekk Halls
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "泰罗克的传说";
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "泰罗克的传说";
--Auch: Shadow Labyrinth
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "第一块碎片的守护者";
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "第一块碎片的守护者";
--Blackrock Depths
AtlasLoot_TableNames["BRDArena"][1] = "竞技场";
AtlasLoot_TableNames["BRDForgewright"][1] = "弗兰克罗恩·铸铁的雕像";
AtlasLoot_TableNames["BRDGuzzler"][1] = "黑铁酒吧";
AtlasLoot_TableNames["BRDTomb"][1] = "召唤者之墓";
AtlasLoot_TableNames["BRDBSPlans"][1] = "锻造设计图 (黑石深渊)";
AtlasLoot_TableNames["BRDBSPlans"][1] = "锻造设计图 (黑石深渊)";
--The Black Temple
AtlasLoot_TableNames["BTEssencofSouls"][1] = "灵魂之匣";
AtlasLoot_TableNames["BTPatterns"][1] = "掉落图纸 (黑暗神殿)";
--Blackwing Lair
AtlasLoot_TableNames["BWLDraconicForDummies"][1] = "龙语傻瓜教程:第七卷";
--CFR: The Steamvault
AtlasLoot_TableNames["CFRSteamSecondFragmentGuardian"][1] = "第二块碎片的守护者";
AtlasLoot_TableNames["CFRSteamSecondFragmentGuardian"][1] = "第二块碎片的守护者";
--CoT: Old Hillsbrad Foothills
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "老迈的达拉然巫师";
--Dire Maul East
@@ -43,26 +43,26 @@ if (GetLocale() == "zhCN") then
AtlasLoot_TableNames["KaraKeannaLog"][1] = "金娜的日记 (任务物品)";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "歌剧";
--Maraudon
AtlasLoot_TableNames["MaraKhanKolk"][1] = "考尔克 (第一可汗)";
AtlasLoot_TableNames["MaraKhanGelk"][1] = "吉尔克 (第二可汗)";
AtlasLoot_TableNames["MaraKhanMagra"][1] = "玛格拉 (第三可汗)";
AtlasLoot_TableNames["MaraKhanVeng"][1] = "温格 (第五可汗)";
AtlasLoot_TableNames["MaraKhanMaraudos"][1] = "玛拉多斯 (第四可汗)";
AtlasLoot_TableNames["MaraKhanKolk"][1] = "考尔克 (第一可汗)";
AtlasLoot_TableNames["MaraKhanGelk"][1] = "吉尔克 (第二可汗)";
AtlasLoot_TableNames["MaraKhanMagra"][1] = "玛格拉 (第三可汗)";
AtlasLoot_TableNames["MaraKhanVeng"][1] = "温格 (第五可汗)";
AtlasLoot_TableNames["MaraKhanMaraudos"][1] = "玛拉多斯 (第四可汗)";
--Molten Core
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "首领随机掉落 (熔火之心)";
--The Ruins of Ahn'Qiraj
AtlasLoot_TableNames["AQ20Trash"][1] = "普通怪物 (安其拉废墟)";
AtlasLoot_TableNames["AQ20Trash"][1] = "普通怪物 (安其拉废墟)";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "安其拉职业书籍";
AtlasLoot_TableNames["AQEnchants"][1] = "安其拉掉落附魔公式";
--Shadowfang Keep
AtlasLoot_TableNames["BSFFelSteed"][1] = "地狱战马";
--Stratholme
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "邮箱钥匙";
AtlasLoot_TableNames["STRATAtiesh"][1] = "埃提耶什 <萨格拉斯之手>";
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "设计图:平静";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "设计图:腐蚀";
AtlasLoot_TableNames["STRATAtiesh"][1] = "埃提耶什 <萨格拉斯之手>";
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "设计图:平静";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "设计图:腐蚀";
--Sunken Temple
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "哈卡的后代";
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "哈卡的后代";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "巨魔小首领";
--Sunwell Plateau
AtlasLoot_TableNames["SPPatterns"][1] = "掉落图纸 (太阳之井高地)";
@@ -71,20 +71,20 @@ if (GetLocale() == "zhCN") then
AtlasLoot_TableNames["AQ40Trash2"][1] = "普通怪物 (安其拉神殿)";
AtlasLoot_TableNames["AQOpening"][1] = "安琪拉之门任务奖励";
--TK: The Arcatraz
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "第三块碎片的守护者";
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "第三块碎片的守护者";
--TK: The Eye
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "凯尔萨斯一役使用到的传奇物品";
--TK: The Mechanar
AtlasLoot_TableNames["TKMechCacheoftheLegion"][1] = "军团保险箱";
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "超载的魔法晶格";
--Uldaman
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "雷乌纳石板";
AtlasLoot_TableNames["UldTabletofWill"][1] = "意志石板";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "暗影熔炉地窖";
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "雷乌纳石板";
AtlasLoot_TableNames["UldTabletofWill"][1] = "意志石板";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "暗影熔炉地窖";
--Zul'Aman
AtlasLoot_TableNames["ZATimedChest"][1] = "限时任务奖励";
AtlasLoot_TableNames["ZATimedChest"][1] = "限时任务奖励";
--Zul'Gurub
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "混浊的水";
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "混浊的水";
AtlasLoot_TableNames["ZGShared"][1] = "祖尔格拉布祭司首领共享掉落";
AtlasLoot_TableNames["ZGEnchants"][1] = "祖尔格拉布职业附魔";
@@ -101,17 +101,17 @@ if (GetLocale() == "zhCN") then
--------------
--Abyssal Council
AtlasLoot_TableNames["Templars"][1] = "深渊议会 - 圣殿骑士";
AtlasLoot_TableNames["Dukes"][1] = "深渊议会 - 公爵";
AtlasLoot_TableNames["HighCouncil"][1] = "深渊议会 - 上层议会";
AtlasLoot_TableNames["Templars"][1] = "深渊议会 - 圣殿骑士";
AtlasLoot_TableNames["Dukes"][1] = "深渊议会 - 公爵";
AtlasLoot_TableNames["HighCouncil"][1] = "深渊议会 - 上层议会";
--Seasonal
AtlasLoot_TableNames["LordAhune"][1] = "冰霜之王埃霍恩";
AtlasLoot_TableNames["Winterviel2"][1] = "冬幕节";
AtlasLoot_TableNames["LordAhune"][1] = "冰霜之王埃霍恩";
AtlasLoot_TableNames["Winterviel2"][1] = "冬幕节";
--Skettis
AtlasLoot_TableNames["SkettisTalonpriestIshaal"][1] = "鸦爪祭司伊沙尔";
AtlasLoot_TableNames["SkettisHazziksPackage"][1] = "哈吉克的包裹";
AtlasLoot_TableNames["SkettisTalonpriestIshaal"][1] = "鸦爪祭司伊沙尔";
AtlasLoot_TableNames["SkettisHazziksPackage"][1] = "哈吉克的包裹";
--Other
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "天灾入侵 - 首领";
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "天灾入侵 - 首领";
--------------------
--- Rep Factions ---
@@ -120,6 +120,6 @@ if (GetLocale() == "zhCN") then
--Argent Dawn
AtlasLoot_TableNames["Argent1"][1] = "银色黎明: 交换的奖励";
--Exalted with Cenarion Expedition, The Sha'tar and The Aldor/Scryers
AtlasLoot_TableNames["ShattrathFlasks1"][1] = "沙塔斯合剂";
AtlasLoot_TableNames["ShattrathFlasks1"][1] = "沙塔斯合剂";
end
+69 -69
View File
@@ -5,89 +5,89 @@
-----------------
--Keys
AtlasLoot_TableNames["OldKeys"][1] = "Schlüssel";
AtlasLoot_TableNames["BCKeys"][1] = "Schlüssel";
AtlasLoot_TableNames["OldKeys"][1] = "Schlüssel";
AtlasLoot_TableNames["BCKeys"][1] = "Schlüssel";
--Auch: Sethekkhallen
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "Die Sage von Terokk";
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "Die Sage von Terokk";
--Auch: Schattenlabyrinth
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "Wächter des ersten Teils";
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "Wächter des ersten Teils";
--Der Schwarzfels
AtlasLoot_TableNames["BRMScarshieldQuartermaster"][1] = "Scarshield Quartermaster";
AtlasLoot_TableNames["BRMScarshieldQuartermaster"][1] = "Scarshield Quartermaster";
--Schwarzfelstiefen
AtlasLoot_TableNames["BRDPyron"][1] = "Übermeister Pyron";
AtlasLoot_TableNames["BRDArena"][1] = "Ring des Gesetzes";
AtlasLoot_TableNames["BRDForgewright"][1] = "Statue von Franclorn Schmiedevater";
AtlasLoot_TableNames["BRDGuzzler"][1] = "Der grimmige Säufer";
AtlasLoot_TableNames["BRDTomb"][1] = "Grabmal der Boten";
AtlasLoot_TableNames["BRDBSPlans"][1] = "Schmiedekunst Pläne";
AtlasLoot_TableNames["BRDPyron"][1] = "Übermeister Pyron";
AtlasLoot_TableNames["BRDArena"][1] = "Ring des Gesetzes";
AtlasLoot_TableNames["BRDForgewright"][1] = "Statue von Franclorn Schmiedevater";
AtlasLoot_TableNames["BRDGuzzler"][1] = "Der grimmige Säufer";
AtlasLoot_TableNames["BRDTomb"][1] = "Grabmal der Boten";
AtlasLoot_TableNames["BRDBSPlans"][1] = "Schmiedekunst Pläne";
--Schwarzfelsspitze (Oben)
AtlasLoot_TableNames["UBRSFLAME"][1] = "Vater Flamme";
AtlasLoot_TableNames["UBRSFLAME"][1] = "Vater Flamme";
--Der schwarze Tempel
AtlasLoot_TableNames["BTEssencofSouls"][1] = "Reliquiar der Verirrten";
AtlasLoot_TableNames["BTPatterns"][1] = "Muster/Pläne (Der schwarze Tempel)";
AtlasLoot_TableNames["BTEssencofSouls"][1] = "Reliquiar der Verirrten";
AtlasLoot_TableNames["BTPatterns"][1] = "Muster/Pläne (Der schwarze Tempel)";
--HdZ: Vorgebirge des Alten Huegellands
AtlasLoot_TableNames["CoTHillsbradThomasYance"][1] = "Thomas Yance";
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "Gealterter Hexer von Dalaran";
AtlasLoot_TableNames["CoTHillsbradThomasYance"][1] = "Thomas Yance";
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "Gealterter Hexer von Dalaran";
--Duesterbruch (Ost)
AtlasLoot_TableNames["DMBooks"][1] = "Düsterbruch Bücher";
AtlasLoot_TableNames["DMBooks"][1] = "Düsterbruch Bücher";
--Duesterbruch (Nord)
AtlasLoot_TableNames["DMNThimblejack"][1] = "Knot Zwingschraub";
AtlasLoot_TableNames["DMNTRIBUTERUN"][1] = "Tribut Run";
AtlasLoot_TableNames["DMNThimblejack"][1] = "Knot Zwingschraub";
AtlasLoot_TableNames["DMNTRIBUTERUN"][1] = "Tribut Run";
--Duesterbruch (West)
AtlasLoot_TableNames["DMWShendralarProvisioner"][1] = "Versorger der Shen'dralar";
AtlasLoot_TableNames["DMWShendralarProvisioner"][1] = "Versorger der Shen'dralar";
--Gnomeregan
AtlasLoot_TableNames["GnNamdoBizzfizzle"][1] = "Namdo Blitzzischel";
AtlasLoot_TableNames["GnNamdoBizzfizzle"][1] = "Namdo Blitzzischel";
--HZ: Hoellenfeuerbollwerk
AtlasLoot_TableNames["HCRampFelIronChest"][1] = "Verstärkte Teufelseisentruhe";
AtlasLoot_TableNames["HCRampFelIronChestHEROIC"][1] = "Verstärkte Teufelseisentruhe (Heroic)";
AtlasLoot_TableNames["HCRampFelIronChest"][1] = "Verstärkte Teufelseisentruhe";
AtlasLoot_TableNames["HCRampFelIronChestHEROIC"][1] = "Verstärkte Teufelseisentruhe (Heroic)";
--HZ: Die zerschmetterten Hallen
AtlasLoot_TableNames["HCHallsExecutioner"][1] = "Shattered Hand Executioner";
AtlasLoot_TableNames["HCHallsExecutioner"][1] = "Shattered Hand Executioner";
--Karazhan
AtlasLoot_TableNames["KaraNamed"][1] = "Kellerbosse";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "Theater-Event";
AtlasLoot_TableNames["KaraNamed"][1] = "Kellerbosse";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "Theater-Event";
--Maraudon
AtlasLoot_TableNames["MaraNamelesProphet"][1] = "The Nameles Prophet";
AtlasLoot_TableNames["MaraNamelesProphet"][1] = "The Nameles Prophet";
--Geschmolzener Kern
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "Zufälliger Boss Loot";
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "Zufälliger Boss Loot";
--Kral der Klingenhauer
AtlasLoot_TableNames["RFKThorncurse"][1] = "Aggem Dornfluch";
AtlasLoot_TableNames["RFKRoogug"][1] = "Roogug";
AtlasLoot_TableNames["RFKThorncurse"][1] = "Aggem Dornfluch";
AtlasLoot_TableNames["RFKRoogug"][1] = "Roogug";
--Ruinen von Ahn'Qiraj
AtlasLoot_TableNames["AQ20CAPTIAN"][1] = "Rajaxx's Captains";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "AQ Klassenbücher";
AtlasLoot_TableNames["AQEnchants"][1] = "AQ Verzauberungen";
AtlasLoot_TableNames["AQ20CAPTIAN"][1] = "Rajaxx's Captains";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "AQ Klassenbücher";
AtlasLoot_TableNames["AQEnchants"][1] = "AQ Verzauberungen";
--Burg Schattenfang
AtlasLoot_TableNames["BSFFelSteed"][1] = "Teufelsross";
AtlasLoot_TableNames["BSFRethilgore"][1] = "Rotkralle";
AtlasLoot_TableNames["BSFFelSteed"][1] = "Teufelsross";
AtlasLoot_TableNames["BSFRethilgore"][1] = "Rotkralle";
--Stratholme
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "Briefkastenschlüssel";
AtlasLoot_TableNames["STRATAtiesh"][1] = "Atiesh <Hand von Sargeras>";
AtlasLoot_TableNames["STRATMalorsStrongbox"][1] = "Malors Geldkassette";
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "Plans: Serenity";
AtlasLoot_TableNames["STRATSothosJarien"][1] = "Sothos und Jarien";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "Plans: Corruption";
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "Briefkastenschlüssel";
AtlasLoot_TableNames["STRATAtiesh"][1] = "Atiesh <Hand von Sargeras>";
AtlasLoot_TableNames["STRATMalorsStrongbox"][1] = "Malors Geldkassette";
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "Plans: Serenity";
AtlasLoot_TableNames["STRATSothosJarien"][1] = "Sothos und Jarien";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "Plans: Corruption";
--Der Tempel von Atal'Hakkar
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "Brut von Hakkar";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "Troll Minibosse";
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "Brut von Hakkar";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "Troll Minibosse";
--Tempel von Ahn'Qiraj
AtlasLoot_TableNames["AQOpening"][1] = "AQ Tor Öffnung";
AtlasLoot_TableNames["AQOpening"][1] = "AQ Tor Öffnung";
--FdS: Die Arkatraz
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "Wächter des dritten Teils";
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "Wächter des dritten Teils";
--FdS: Auge des Sturms
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "Legendäre Items für Kael'thas Kampf";
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "Legendäre Items für Kael'thas Kampf";
--FdS: Die Mechanar
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "Überladene Manazelle";
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "Überladene Manazelle";
--Uldaman
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "Schrifttafel von Ryun'eh";
AtlasLoot_TableNames["UldKromStoutarmChest"][1] = "Krom Starkarms Truhe";
AtlasLoot_TableNames["UldGarrettFamilyChest"][1] = "Familientruhe der Garretts";
AtlasLoot_TableNames["UldTabletofWill"][1] = "Schrifttafel des Willens";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "Shadowforge-Cache";
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "Schrifttafel von Ryun'eh";
AtlasLoot_TableNames["UldKromStoutarmChest"][1] = "Krom Starkarms Truhe";
AtlasLoot_TableNames["UldGarrettFamilyChest"][1] = "Familientruhe der Garretts";
AtlasLoot_TableNames["UldTabletofWill"][1] = "Schrifttafel des Willens";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "Shadowforge-Cache";
--Zul'Aman
AtlasLoot_TableNames["ZATimedChest"][1] = "Timed Reward Chest";
AtlasLoot_TableNames["ZATimedChest"][1] = "Timed Reward Chest";
--Zul'Gurub
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "Schlammiges aufgewühltes Gewässer";
AtlasLoot_TableNames["ZGShared"][1] = "Geteilter ZG Priester Boss Loot";
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "Schlammiges aufgewühltes Gewässer";
AtlasLoot_TableNames["ZGShared"][1] = "Geteilter ZG Priester Boss Loot";
------------
--- Sets ---
@@ -100,7 +100,7 @@
--- Misc Collections ---
-----------------------
AtlasLoot_TableNames["BlizzardCollectables1"] = { "Blizzard Collectables", "AtlasLootSetItems" };
AtlasLoot_TableNames["BlizzardCollectables1"] = { "Blizzard Collectables", "AtlasLootSetItems" };
------------------
--- Welt Bosse ---
@@ -114,20 +114,20 @@
--Skettis
--Gefaengnis des Astraleums
AtlasLoot_TableNames["ArmbreakerHuffaz"][1] = "Armbrecher Huffaz";
AtlasLoot_TableNames["FelTinkererZortan"][1] = "Teufelstüftler Zortan";
AtlasLoot_TableNames["Forgosh"][1] = "Forgosh <Fürst der Unholde>";
AtlasLoot_TableNames["Gulbor"][1] = "Gul'bor <Die Höhlenmutter>";
AtlasLoot_TableNames["MalevustheMad"][1] = "Malevus der Verrückte";
AtlasLoot_TableNames["PorfustheGemGorger"][1] = "Porfus der Edelsteinschlinger";
AtlasLoot_TableNames["WrathbringerLaztarash"][1] = "Zornschaffer Laz-tarash";
AtlasLoot_TableNames["BashirStasisChambers"][1] = "Landeplatz von Bash'ir Stasiskammern";
AtlasLoot_TableNames["ArmbreakerHuffaz"][1] = "Armbrecher Huffaz";
AtlasLoot_TableNames["FelTinkererZortan"][1] = "Teufelstüftler Zortan";
AtlasLoot_TableNames["Forgosh"][1] = "Forgosh <Fürst der Unholde>";
AtlasLoot_TableNames["Gulbor"][1] = "Gul'bor <Die Höhlenmutter>";
AtlasLoot_TableNames["MalevustheMad"][1] = "Malevus der Verrückte";
AtlasLoot_TableNames["PorfustheGemGorger"][1] = "Porfus der Edelsteinschlinger";
AtlasLoot_TableNames["WrathbringerLaztarash"][1] = "Zornschaffer Laz-tarash";
AtlasLoot_TableNames["BashirStasisChambers"][1] = "Landeplatz von Bash'ir Stasiskammern";
--Abyssischer Rat
AtlasLoot_TableNames["Templars"][1] = "Abyssischer Rat - Templer";
AtlasLoot_TableNames["Dukes"][1] = "Abyssischer Rat - Fürsten";
AtlasLoot_TableNames["HighCouncil"][1] = "Abyssischer Rat - Hoher Rat";
AtlasLoot_TableNames["Templars"][1] = "Abyssischer Rat - Templer";
AtlasLoot_TableNames["Dukes"][1] = "Abyssischer Rat - Fürsten";
AtlasLoot_TableNames["HighCouncil"][1] = "Abyssischer Rat - Hoher Rat";
--Andere
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "Invasion der Geißel Bosse";
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "Invasion der Geißel Bosse";
---------------------
@@ -135,7 +135,7 @@
---------------------
--Exalted with Cenarion Expedition, The Sha'tar and The Aldor/Scryers
AtlasLoot_TableNames["ShattrathFlasks1"] = { "Shattrath Fläschchen", "AtlasLootRepItems" };
AtlasLoot_TableNames["ShattrathFlasks1"] = { "Shattrath Fläschchen", "AtlasLootRepItems" };
-----------
--- PvP ---
File diff suppressed because it is too large Load Diff
+61 -61
View File
@@ -13,105 +13,105 @@ if (GetLocale() == "esES") then
-----------------
--Keys
AtlasLoot_TableNames["OldKeys"][1] = "Llaves";
AtlasLoot_TableNames["BCKeys"][1] = "Llaves";
AtlasLoot_TableNames["OldKeys"][1] = "Llaves";
AtlasLoot_TableNames["BCKeys"][1] = "Llaves";
--Auch: Sethekk Halls
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "La Saga de Terokk";
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "La Saga de Terokk";
--Auch: Shadow Labyrinth
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "Guardián del Primer Fragmento";
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "Guardián del Primer Fragmento";
--Blackrock Depths
AtlasLoot_TableNames["BRDArena"][1] = "Círculo de la Ley";
AtlasLoot_TableNames["BRDForgewright"][1] = "Monumento a Franclorn Forjador";
AtlasLoot_TableNames["BRDGuzzler"][1] = "Grim Guzzler"; --FALTA
AtlasLoot_TableNames["BRDTomb"][1] = "Tumba del Invocador";
AtlasLoot_TableNames["BRDBSPlans"][1] = "Diseño de herrería (PRN)";
AtlasLoot_TableNames["BRDArena"][1] = "Círculo de la Ley";
AtlasLoot_TableNames["BRDForgewright"][1] = "Monumento a Franclorn Forjador";
AtlasLoot_TableNames["BRDGuzzler"][1] = "Grim Guzzler"; --FALTA
AtlasLoot_TableNames["BRDTomb"][1] = "Tumba del Invocador";
AtlasLoot_TableNames["BRDBSPlans"][1] = "Diseño de herrería (PRN)";
--The Black Temple
AtlasLoot_TableNames["BTEssencofSouls"][1] = "Reliquaire des \195\162mes";
AtlasLoot_TableNames["BTPatterns"][1] = "Recetas/Planos del Templo Oscuro";
AtlasLoot_TableNames["BTEssencofSouls"][1] = "Reliquaire des \195\162mes";
AtlasLoot_TableNames["BTPatterns"][1] = "Recetas/Planos del Templo Oscuro";
--Blackwing Lair
AtlasLoot_TableNames["BWLDraconicForDummies"][1] = "Dracónico para torpes Volumen VII";
AtlasLoot_TableNames["BWLDraconicForDummies"][1] = "Dracónico para torpes Volumen VII";
--CFR: The Steamvault
AtlasLoot_TableNames["CFRSteamSecondFragmentGuardian"][1] = "Guardián del Segundo Fragmento";
AtlasLoot_TableNames["CFRSteamSecondFragmentGuardian"][1] = "Guardián del Segundo Fragmento";
--CoT: Old Hillsbrad Foothills
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "Zhaorí Dalaran envejecido";
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "Zhaorí Dalaran envejecido";
--The Deadmines
--AtlasLoot_TableNames["VCDefiasGunpowder"][1] = "Pólvora de los Defias";
--Dire Maul East
AtlasLoot_TableNames["DMBooks"][1] = "Libros (LM)";
AtlasLoot_TableNames["DMBooks"][1] = "Libros (LM)";
--HC: Shattered Halls
AtlasLoot_TableNames["HCHallsExecutioner"][1] = "Ejecutor Mano Destrozada (Heróico)";
AtlasLoot_TableNames["HCHallsExecutioner"][1] = "Ejecutor Mano Destrozada (Heróico)";
--Karazhan
AtlasLoot_TableNames["KaraCharredBoneFragment"][1] = "Trozo de hueso carbonizado (Objeto de misión)";
AtlasLoot_TableNames["KaraNamed"][1] = "Los jefes animales";
AtlasLoot_TableNames["KaraKeannaLog"][1] = "Apuntes de Keanna (Objeto de misión)";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "Evento de la opera";
AtlasLoot_TableNames["KaraCharredBoneFragment"][1] = "Trozo de hueso carbonizado (Objeto de misión)";
AtlasLoot_TableNames["KaraNamed"][1] = "Los jefes animales";
AtlasLoot_TableNames["KaraKeannaLog"][1] = "Apuntes de Keanna (Objeto de misión)";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "Evento de la opera";
--Maraudon
AtlasLoot_TableNames["MaraKhanKolk"][1] = "Kolk (El primer Kahn)";
AtlasLoot_TableNames["MaraKhanGelk"][1] = "Gelk (El segundo Kahn)";
AtlasLoot_TableNames["MaraKhanMagra"][1] = "Magra (El tercer Kahn)";
AtlasLoot_TableNames["MaraKhanVeng"][1] = "Veng (El quinto Kahn)";
AtlasLoot_TableNames["MaraKhanMaraudos"][1] = "Maraudos (El cuarto Khan)";
AtlasLoot_TableNames["MaraKhanKolk"][1] = "Kolk (El primer Kahn)";
AtlasLoot_TableNames["MaraKhanGelk"][1] = "Gelk (El segundo Kahn)";
AtlasLoot_TableNames["MaraKhanMagra"][1] = "Magra (El tercer Kahn)";
AtlasLoot_TableNames["MaraKhanVeng"][1] = "Veng (El quinto Kahn)";
AtlasLoot_TableNames["MaraKhanMaraudos"][1] = "Maraudos (El cuarto Khan)";
--Molten Core
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "Botín de jefes aleatorios";
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "Botín de jefes aleatorios";
--The Ruins of Ahn'Qiraj
AtlasLoot_TableNames["AQ20Trash"][1] = "Bichos varios (AQ20)";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "Libros de clase de AQ";
AtlasLoot_TableNames["AQEnchants"][1] = "Encantamientos AQ";
AtlasLoot_TableNames["AQ20Trash"][1] = "Bichos varios (AQ20)";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "Libros de clase de AQ";
AtlasLoot_TableNames["AQEnchants"][1] = "Encantamientos AQ";
--Shadowfang Keep
AtlasLoot_TableNames["BSFFelSteed"][1] = "Corcel vil";
AtlasLoot_TableNames["BSFFelSteed"][1] = "Corcel vil";
--Stratholme
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "Mensajero de Stratholme";
AtlasLoot_TableNames["STRATAtiesh"][1] = "Atiesh <Mano de Sargeras>";
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "Diseño: Serenidad";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "Diseño: Corrupción";
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "Mensajero de Stratholme";
AtlasLoot_TableNames["STRATAtiesh"][1] = "Atiesh <Mano de Sargeras>";
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "Diseño: Serenidad";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "Diseño: Corrupción";
--Sunken Temple
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "Altar de Hakkar";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "Mini jefes troll";
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "Altar de Hakkar";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "Mini jefes troll";
--Temple of Ahn'Qiraj
AtlasLoot_TableNames["AQ40Trash1"][1] = "Bichos varios (AQ40)";
AtlasLoot_TableNames["AQ40Trash2"][1] = "Bichos varios (AQ40)";
AtlasLoot_TableNames["AQOpening"][1] = "Apertura de AQ";
AtlasLoot_TableNames["AQ40Trash1"][1] = "Bichos varios (AQ40)";
AtlasLoot_TableNames["AQ40Trash2"][1] = "Bichos varios (AQ40)";
AtlasLoot_TableNames["AQOpening"][1] = "Apertura de AQ";
--TK: The Arcatraz
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "Guardián del Tercer Fragmento";
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "Guardián del Tercer Fragmento";
--TK: The Eye
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "Objetos legendarios de la lucha contra Kael'thas";
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "Objetos legendarios de la lucha contra Kael'thas";
--TK: The Mechanar
AtlasLoot_TableNames["TKMechCacheoftheLegion"][1] = "Alijo de la Legión";
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "Célula de maná sobrecargada";
AtlasLoot_TableNames["TKMechCacheoftheLegion"][1] = "Alijo de la Legión";
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "Célula de maná sobrecargada";
--Uldaman
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "Tablilla de Ryun'eh";
AtlasLoot_TableNames["UldTabletofWill"][1] = "Tablilla de Voluntad";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "Alijo de Forjatiniebla";
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "Tablilla de Ryun'eh";
AtlasLoot_TableNames["UldTabletofWill"][1] = "Tablilla de Voluntad";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "Alijo de Forjatiniebla";
--Zul'Aman
AtlasLoot_TableNames["ZATimedChest"][1] = "Cofre con temporizador"; --Comprobar
AtlasLoot_TableNames["ZATimedChest"][1] = "Cofre con temporizador"; --Comprobar
--Zul'Gurub
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "Aguas Fangosas";
AtlasLoot_TableNames["ZGShared"][1] = "Botín compartido por los sacerdotes (ZG)";
AtlasLoot_TableNames["ZGEnchants"][1] = "Encantamientos (ZG)";
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "Aguas Fangosas";
AtlasLoot_TableNames["ZGShared"][1] = "Botín compartido por los sacerdotes (ZG)";
AtlasLoot_TableNames["ZGEnchants"][1] = "Encantamientos (ZG)";
------------------------
--- Misc Collections ---
------------------------
AtlasLoot_TableNames["BlizzardCollectables1"][1] = "Colecciones Blizzard";
AtlasLoot_TableNames["RareMounts1"][1] = "Monturas raras - WoW Original";
AtlasLoot_TableNames["RareMounts2"][1] = "Monturas raras - The Burning Crusade";
AtlasLoot_TableNames["BlizzardCollectables1"][1] = "Colecciones Blizzard";
AtlasLoot_TableNames["RareMounts1"][1] = "Monturas raras - WoW Original";
AtlasLoot_TableNames["RareMounts2"][1] = "Monturas raras - The Burning Crusade";
--------------
--- Events ---
--------------
--Abyssal Council
AtlasLoot_TableNames["Templars"][1] = "Consejo abisal - Templarios";
AtlasLoot_TableNames["Dukes"][1] = "Consejo abisal - Duques";
AtlasLoot_TableNames["HighCouncil"][1] = "Consejo abisal - Consejero mayor";
AtlasLoot_TableNames["Templars"][1] = "Consejo abisal - Templarios";
AtlasLoot_TableNames["Dukes"][1] = "Consejo abisal - Duques";
AtlasLoot_TableNames["HighCouncil"][1] = "Consejo abisal - Consejero mayor";
--Seasonal
AtlasLoot_TableNames["LordAhune"][1] = "Lord Ahune"; --FALTA
AtlasLoot_TableNames["Winterviel2"][1] = "Regalos del Festival de Invierno";
AtlasLoot_TableNames["LordAhune"][1] = "Lord Ahune"; --FALTA
AtlasLoot_TableNames["Winterviel2"][1] = "Regalos del Festival de Invierno";
--Skettis
AtlasLoot_TableNames["SkettisTalonpriestIshaal"][1] = "Sacerdote de la garra Ishaal";
AtlasLoot_TableNames["SkettisHazziksPackage"][1] = "Paquete de Hazzik";
AtlasLoot_TableNames["SkettisTalonpriestIshaal"][1] = "Sacerdote de la garra Ishaal";
AtlasLoot_TableNames["SkettisHazziksPackage"][1] = "Paquete de Hazzik";
--Other
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "Jefes de la invasión de La plaga";
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "Jefes de la invasión de La plaga";
end
+64 -64
View File
@@ -15,115 +15,115 @@ if (GetLocale() == "frFR") then
-----------------
--Keys
AtlasLoot_TableNames["OldKeys"][1] = "Clés";
AtlasLoot_TableNames["BCKeys"][1] = "Clés";
AtlasLoot_TableNames["OldKeys"][1] = "Clés";
AtlasLoot_TableNames["BCKeys"][1] = "Clés";
--Auch: Sethekk Halls
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "La Saga de Terokk";
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "La Saga de Terokk";
--Auch: Shadow Labyrinth
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "Gardien du premier fragment";
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "Gardien du premier fragment";
--Blackrock Depths
AtlasLoot_TableNames["BRDArena"][1] = "L'Arène";
AtlasLoot_TableNames["BRDForgewright"][1] = "Monument de Franclorn Le Forgebusier";
AtlasLoot_TableNames["BRDGuzzler"][1] = "Grim Guzzler";
AtlasLoot_TableNames["BRDTomb"][1] = "Le Tombeau des Sept";
AtlasLoot_TableNames["BRDBSPlans"][1] = "Plans du forgeron (BRD)";
AtlasLoot_TableNames["BRDArena"][1] = "L'Arène";
AtlasLoot_TableNames["BRDForgewright"][1] = "Monument de Franclorn Le Forgebusier";
AtlasLoot_TableNames["BRDGuzzler"][1] = "Grim Guzzler";
AtlasLoot_TableNames["BRDTomb"][1] = "Le Tombeau des Sept";
AtlasLoot_TableNames["BRDBSPlans"][1] = "Plans du forgeron (BRD)";
--The Black Temple
AtlasLoot_TableNames["BTEssencofSouls"][1] = "Reliquaire des âmes";
AtlasLoot_TableNames["BTPatterns"][1] = "Patrons/Plans du Temple Noir";
AtlasLoot_TableNames["BTEssencofSouls"][1] = "Reliquaire des âmes";
AtlasLoot_TableNames["BTPatterns"][1] = "Patrons/Plans du Temple Noir";
--Blackwing Lair
AtlasLoot_TableNames["BWLDraconicForDummies"][1] = "Draconic for Dummies Chapter VII";
AtlasLoot_TableNames["BWLDraconicForDummies"][1] = "Draconic for Dummies Chapter VII";
--CFR: The Steamvault
AtlasLoot_TableNames["CFRSteamSecondFragmentGuardian"][1] = "Gardien du second fragment";
AtlasLoot_TableNames["CFRSteamSecondFragmentGuardian"][1] = "Gardien du second fragment";
--CoT: Old Hillsbrad Foothills
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "Sorcier de Dalaran âgé";
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "Sorcier de Dalaran âgé";
--The Deadmines
--AtlasLoot_TableNames["VCDefiasGunpowder"][1] = "Poudre à canon de défias";
--AtlasLoot_TableNames["VCDefiasGunpowder"][1] = "Poudre à canon de défias";
--Dire Maul East
AtlasLoot_TableNames["DMBooks"][1] = "Livres (DM)";
AtlasLoot_TableNames["DMBooks"][1] = "Livres (DM)";
--HC: Shattered Halls
AtlasLoot_TableNames["HCHallsExecutioner"][1] = "Bourreau de la Main brisée";
AtlasLoot_TableNames["HCHallsExecutioner"][1] = "Bourreau de la Main brisée";
--Karazhan
AtlasLoot_TableNames["KaraCharredBoneFragment"][1] = "Fragment d'os carbonisé (Objet de quête)";
AtlasLoot_TableNames["KaraNamed"][1] = "Les trois Bêtes";
AtlasLoot_TableNames["KaraKeannaLog"][1] = "Journal de Keanna (Objet de quête)";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "Evénement: Opéra";
AtlasLoot_TableNames["KaraCharredBoneFragment"][1] = "Fragment d'os carbonisé (Objet de quête)";
AtlasLoot_TableNames["KaraNamed"][1] = "Les trois Bêtes";
AtlasLoot_TableNames["KaraKeannaLog"][1] = "Journal de Keanna (Objet de quête)";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "Evénement: Opéra";
--Maraudon
AtlasLoot_TableNames["MaraKhanKolk"][1] = "Kolk (Le premier Kahn)";
AtlasLoot_TableNames["MaraKhanGelk"][1] = "Gelk (Le deuxième Kahn)";
AtlasLoot_TableNames["MaraKhanMagra"][1] = "Magra (Le troisième Kahn)";
AtlasLoot_TableNames["MaraKhanVeng"][1] = "Veng (Le cinquième Kahn)";
AtlasLoot_TableNames["MaraKhanMaraudos"][1] = "Maraudos (<Le quatrième Kahn>)";
AtlasLoot_TableNames["MaraKhanKolk"][1] = "Kolk (Le premier Kahn)";
AtlasLoot_TableNames["MaraKhanGelk"][1] = "Gelk (Le deuxième Kahn)";
AtlasLoot_TableNames["MaraKhanMagra"][1] = "Magra (Le troisième Kahn)";
AtlasLoot_TableNames["MaraKhanVeng"][1] = "Veng (Le cinquième Kahn)";
AtlasLoot_TableNames["MaraKhanMaraudos"][1] = "Maraudos (<Le quatrième Kahn>)";
--Molten Core
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "Butin aléatoire";
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "Butin aléatoire";
--The Ruins of Ahn'Qiraj
AtlasLoot_TableNames["AQ20Trash"][1] = "Trash Mobs (AQ20)";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "Livres de classe AQ";
AtlasLoot_TableNames["AQEnchants"][1] = "Enchantements AQ";
AtlasLoot_TableNames["AQ20Trash"][1] = "Trash Mobs (AQ20)";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "Livres de classe AQ";
AtlasLoot_TableNames["AQEnchants"][1] = "Enchantements AQ";
--Shadowfang Keep
AtlasLoot_TableNames["BSFFelSteed"][1] = "Palefroi corrompu";
AtlasLoot_TableNames["BSFFelSteed"][1] = "Palefroi corrompu";
--Stratholme
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "Messager de Stratholme";
AtlasLoot_TableNames["STRATAtiesh"][1] = "Atiesh <Main de Sargeras>"; -- à vérifier
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "Plans: Sérénité";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "Plans: Corruption";
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "Messager de Stratholme";
AtlasLoot_TableNames["STRATAtiesh"][1] = "Atiesh <Main de Sargeras>"; -- à vérifier
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "Plans: Sérénité";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "Plans: Corruption";
--Sunken Temple
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "Rejeton d'Hakkar";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "Miniboss Trolls";
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "Rejeton d'Hakkar";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "Miniboss Trolls";
--Temple of Ahn'Qiraj
AtlasLoot_TableNames["AQ40Trash1"][1] = "Trash Mobs (AQ40)";
AtlasLoot_TableNames["AQ40Trash2"][1] = "Trash Mobs (AQ40)";
AtlasLoot_TableNames["AQOpening"][1] = "Evénement d'ouverture AQ";
AtlasLoot_TableNames["AQ40Trash1"][1] = "Trash Mobs (AQ40)";
AtlasLoot_TableNames["AQ40Trash2"][1] = "Trash Mobs (AQ40)";
AtlasLoot_TableNames["AQOpening"][1] = "Evénement d'ouverture AQ";
--TK: The Arcatraz
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "Gardien du troisième fragment";
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "Gardien du troisième fragment";
--TK: The Eye
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "Objets légendaires pour le combat de Kael'thas";
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "Objets légendaires pour le combat de Kael'thas";
--TK: The Mechanar
AtlasLoot_TableNames["TKMechCacheoftheLegion"][1] = "Cache de la Légion";
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "Cellule de mana surchargée";
AtlasLoot_TableNames["TKMechCacheoftheLegion"][1] = "Cache de la Légion";
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "Cellule de mana surchargée";
--Uldaman
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "Tablette de Ryun'eh";
AtlasLoot_TableNames["UldTabletofWill"][1] = "Tablette de volonté";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "Cachette d'Ombreforge";
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "Tablette de Ryun'eh";
AtlasLoot_TableNames["UldTabletofWill"][1] = "Tablette de volonté";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "Cachette d'Ombreforge";
--Zul'Aman
AtlasLoot_TableNames["ZATimedChest"][1] = "Coffre du parcours rapide";
AtlasLoot_TableNames["ZATimedChest"][1] = "Coffre du parcours rapide";
--Zul'Gurub
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "Eaux troubles";
AtlasLoot_TableNames["ZGShared"][1] = "Butin Partagé (ZG)";
AtlasLoot_TableNames["ZGEnchants"][1] = "ZG Enchants";
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "Eaux troubles";
AtlasLoot_TableNames["ZGShared"][1] = "Butin Partagé (ZG)";
AtlasLoot_TableNames["ZGEnchants"][1] = "ZG Enchants";
------------------------
--- Misc Collections ---
------------------------
AtlasLoot_TableNames["BlizzardCollectables1"][1] = "Blizzard Collections";
AtlasLoot_TableNames["RareMounts1"][1] = "Montures rares - Original WoW";
AtlasLoot_TableNames["RareMounts2"][1] = "Montures rares - The Burning Crusade";
AtlasLoot_TableNames["BlizzardCollectables1"][1] = "Blizzard Collections";
AtlasLoot_TableNames["RareMounts1"][1] = "Montures rares - Original WoW";
AtlasLoot_TableNames["RareMounts2"][1] = "Montures rares - The Burning Crusade";
--------------
--- Events ---
--------------
--Abyssal Council
AtlasLoot_TableNames["Templars"][1] = "Conseil abyssal - Templiers";
AtlasLoot_TableNames["Dukes"][1] = "Conseil abyssal - Ducs";
AtlasLoot_TableNames["HighCouncil"][1] = "Conseil abyssal - Haut Conseil";
AtlasLoot_TableNames["Templars"][1] = "Conseil abyssal - Templiers";
AtlasLoot_TableNames["Dukes"][1] = "Conseil abyssal - Ducs";
AtlasLoot_TableNames["HighCouncil"][1] = "Conseil abyssal - Haut Conseil";
--Seasonal
AtlasLoot_TableNames["LordAhune"][1] = "Lord Ahune";
AtlasLoot_TableNames["Winterviel2"][1] = "Cadeaux de La fête du Voile d'hiver";
AtlasLoot_TableNames["LordAhune"][1] = "Lord Ahune";
AtlasLoot_TableNames["Winterviel2"][1] = "Cadeaux de La fête du Voile d'hiver";
--Skettis
AtlasLoot_TableNames["SkettisTalonpriestIshaal"][1] = "Talonpriest Ishaal";
AtlasLoot_TableNames["SkettisHazziksPackage"][1] = "Hazzik's Package";
AtlasLoot_TableNames["SkettisTalonpriestIshaal"][1] = "Talonpriest Ishaal";
AtlasLoot_TableNames["SkettisHazziksPackage"][1] = "Hazzik's Package";
--Other
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "Scourge Invasion Bosses";
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "Scourge Invasion Bosses";
--------------------
--- Rep Factions ---
--------------------
--Argent Dawn
AtlasLoot_TableNames["Argent1"][1] = BabbleFaction["Argent Dawn"]..": Insigne Main-Aube";
AtlasLoot_TableNames["Argent1"][1] = BabbleFaction["Argent Dawn"]..": Insigne Main-Aube";
--Exalted with Cenarion Expedition, The Sha'tar and The Aldor/Scryers
AtlasLoot_TableNames["ShattrathFlasks1"][1] = "Shattrath Flasks";
AtlasLoot_TableNames["ShattrathFlasks1"][1] = "Shattrath Flasks";
end
File diff suppressed because it is too large Load Diff
+63 -63
View File
@@ -9,113 +9,113 @@ if (GetLocale() == "zhTW") then
-----------------
--Keys
AtlasLoot_TableNames["OldKeys"][1] = "鑰匙";
AtlasLoot_TableNames["BCKeys"][1] = "鑰匙";
AtlasLoot_TableNames["OldKeys"][1] = "鑰匙";
AtlasLoot_TableNames["BCKeys"][1] = "鑰匙";
--Auch: Sethekk Halls
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "泰洛克的傳說";
AtlasLoot_TableNames["AuchSethekkTheSagaofTerokk"][1] = "泰洛克的傳說";
--Auch: Shadow Labyrinth
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "第一部守衛者";
AtlasLoot_TableNames["AuchShadowFirstFragmentGuardian"][1] = "第一部守衛者";
--Blackrock Depths
AtlasLoot_TableNames["BRDArena"][1] = "競技場";
AtlasLoot_TableNames["BRDForgewright"][1] = "弗蘭克羅恩·鑄鐵的雕像";
AtlasLoot_TableNames["BRDGuzzler"][1] = "黑鐵酒吧";
AtlasLoot_TableNames["BRDTomb"][1] = "召喚者之墓";
AtlasLoot_TableNames["BRDBSPlans"][1] = "黑鐵鍛造圖樣 (黑石深淵)";
AtlasLoot_TableNames["BRDArena"][1] = "競技場";
AtlasLoot_TableNames["BRDForgewright"][1] = "弗蘭克羅恩·鑄鐵的雕像";
AtlasLoot_TableNames["BRDGuzzler"][1] = "黑鐵酒吧";
AtlasLoot_TableNames["BRDTomb"][1] = "召喚者之墓";
AtlasLoot_TableNames["BRDBSPlans"][1] = "黑鐵鍛造圖樣 (黑石深淵)";
--The Black Temple
AtlasLoot_TableNames["BTEssencofSouls"][1] = "靈魂精華";
AtlasLoot_TableNames["BTPatterns"][1] = "黑暗神廟卷軸";
AtlasLoot_TableNames["BTEssencofSouls"][1] = "靈魂精華";
AtlasLoot_TableNames["BTPatterns"][1] = "黑暗神廟卷軸";
--Blackwing Lair
AtlasLoot_TableNames["BWLDraconicForDummies"][1] = "龍語傻瓜教程:第二卷";
AtlasLoot_TableNames["BWLDraconicForDummies"][1] = "龍語傻瓜教程:第二卷";
--CFR: The Steamvault
AtlasLoot_TableNames["CFRSteamSecondFragmentGuardian"][1] = "第二部守衛者";
AtlasLoot_TableNames["CFRSteamSecondFragmentGuardian"][1] = "第二部守衛者";
--CoT: Old Hillsbrad Foothills
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "年邁的達拉然法師";
AtlasLoot_TableNames["CoTHillsbradAgedDalaranWizard"][1] = "年邁的達拉然法師";
--The Deadmines
--AtlasLoot_TableNames["VCDefiasGunpowder"][1] = "迪菲亞火藥";
--AtlasLoot_TableNames["VCDefiasGunpowder"][1] = "迪菲亞火藥";
--Dire Maul East
AtlasLoot_TableNames["DMBooks"][1] = "厄運書籍";
AtlasLoot_TableNames["DMBooks"][1] = "厄運書籍";
--HC: Shattered Halls
AtlasLoot_TableNames["HCHallsExecutioner"][1] = "破碎之手劊子";
AtlasLoot_TableNames["HCHallsExecutioner"][1] = "破碎之手劊子";
--Karazhan
AtlasLoot_TableNames["KaraCharredBoneFragment"][1] = "燒焦的白骨碎片 (任務物品)";
AtlasLoot_TableNames["KaraNamed"][1] = "僕人居所動物王";
AtlasLoot_TableNames["KaraKeannaLog"][1] = "琪安娜的日誌 (任務物品)";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "歌劇事件";
AtlasLoot_TableNames["KaraCharredBoneFragment"][1] = "燒焦的白骨碎片 (任務物品)";
AtlasLoot_TableNames["KaraNamed"][1] = "僕人居所動物王";
AtlasLoot_TableNames["KaraKeannaLog"][1] = "琪安娜的日誌 (任務物品)";
AtlasLoot_TableNames["KaraOperaEvent"][1] = "歌劇事件";
--Maraudon
AtlasLoot_TableNames["MaraKhanKolk"][1] = "考爾克 (第一可汗)";
AtlasLoot_TableNames["MaraKhanGelk"][1] = "吉爾克 (第二可汗)";
AtlasLoot_TableNames["MaraKhanMagra"][1] = "瑪格拉 (第三可汗)";
AtlasLoot_TableNames["MaraKhanVeng"][1] = "溫格 (第五可汗)";
AtlasLoot_TableNames["MaraKhanMaraudos"][1] = "瑪拉多斯 (第四可汗)";
AtlasLoot_TableNames["MaraKhanKolk"][1] = "考爾克 (第一可汗)";
AtlasLoot_TableNames["MaraKhanGelk"][1] = "吉爾克 (第二可汗)";
AtlasLoot_TableNames["MaraKhanMagra"][1] = "瑪格拉 (第三可汗)";
AtlasLoot_TableNames["MaraKhanVeng"][1] = "溫格 (第五可汗)";
AtlasLoot_TableNames["MaraKhanMaraudos"][1] = "瑪拉多斯 (第四可汗)";
--Molten Core
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "首領隨機掉落";
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"][1] = "首領隨機掉落";
--The Ruins of Ahn'Qiraj
AtlasLoot_TableNames["AQ20Trash"][1] = "小怪 (AQ20)";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "AQ 職業書籍";
AtlasLoot_TableNames["AQEnchants"][1] = "AQ 公式";
AtlasLoot_TableNames["AQ20Trash"][1] = "小怪 (AQ20)";
AtlasLoot_TableNames["AQ20ClassBooks"][1] = "AQ 職業書籍";
AtlasLoot_TableNames["AQEnchants"][1] = "AQ 公式";
--Shadowfang Keep
AtlasLoot_TableNames["BSFFelSteed"][1] = "地獄戰馬";
AtlasLoot_TableNames["BSFFelSteed"][1] = "地獄戰馬";
--Stratholme
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "郵箱鑰匙";
AtlasLoot_TableNames["STRATAtiesh"][1] = "阿泰絲 <薩格拉斯之手>";
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "設計圖:平靜";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "設計圖:腐蝕";
AtlasLoot_TableNames["STRATStratholmeCourier"][1] = "郵箱鑰匙";
AtlasLoot_TableNames["STRATAtiesh"][1] = "阿泰絲 <薩格拉斯之手>";
AtlasLoot_TableNames["STRATBSPlansSerenity"][1] = "設計圖:平靜";
AtlasLoot_TableNames["STRATBSPlansCorruption"][1] = "設計圖:腐蝕";
--Sunken Temple
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "哈卡的後代";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "食人妖小首領";
AtlasLoot_TableNames["STSpawnOfHakkar"][1] = "哈卡的後代";
AtlasLoot_TableNames["STTrollMinibosses"][1] = "食人妖小首領";
--Temple of Ahn'Qiraj
AtlasLoot_TableNames["AQ40Trash1"][1] = "小怪 (AQ40)";
AtlasLoot_TableNames["AQ40Trash2"][1] = "小怪 (AQ40)";
AtlasLoot_TableNames["AQOpening"][1] = "安其拉開門系列任務";
AtlasLoot_TableNames["AQ40Trash1"][1] = "小怪 (AQ40)";
AtlasLoot_TableNames["AQ40Trash2"][1] = "小怪 (AQ40)";
AtlasLoot_TableNames["AQOpening"][1] = "安其拉開門系列任務";
--TK: The Arcatraz
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "第三部守衛者";
AtlasLoot_TableNames["TKArcThirdFragmentGuardian"][1] = "第三部守衛者";
--TK: The Eye
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "凱爾薩斯·逐日者史詩物品";
AtlasLoot_TableNames["TKEyeLegendaries"][1] = "凱爾薩斯·逐日者史詩物品";
--TK: The Mechanar
AtlasLoot_TableNames["TKMechCacheoftheLegion"][1] = "軍團儲藏處";
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "滿溢的法力容器";
AtlasLoot_TableNames["TKMechCacheoftheLegion"][1] = "軍團儲藏處";
AtlasLoot_TableNames["TKMechOverchargedManacell"][1] = "滿溢的法力容器";
--Uldaman
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "雷烏納石板";
AtlasLoot_TableNames["UldTabletofWill"][1] = "意志石板";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "暗影熔爐地窖";
AtlasLoot_TableNames["UldTabletofRyuneh"][1] = "雷烏納石板";
AtlasLoot_TableNames["UldTabletofWill"][1] = "意志石板";
AtlasLoot_TableNames["UldShadowforgeCache"][1] = "暗影熔爐地窖";
--Zul'Aman
AtlasLoot_TableNames["ZATimedChest"][1] = "限時任務獎勵寶箱";
AtlasLoot_TableNames["ZATimedChest"][1] = "限時任務獎勵寶箱";
--Zul'Gurub
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "混濁的水";
AtlasLoot_TableNames["ZGShared"][1] = "ZG首領隨機掉落";
AtlasLoot_TableNames["ZGEnchants"][1] = "ZG 公式";
AtlasLoot_TableNames["ZGMuddyChurningWaters"][1] = "混濁的水";
AtlasLoot_TableNames["ZGShared"][1] = "ZG首領隨機掉落";
AtlasLoot_TableNames["ZGEnchants"][1] = "ZG 公式";
------------------------
--- Misc Collections ---
------------------------
AtlasLoot_TableNames["BlizzardCollectables1"][1] = "暴雪特殊收藏品";
AtlasLoot_TableNames["RareMounts1"][1] = "稀有坐騎 - 原魔獸世界";
AtlasLoot_TableNames["RareMounts2"][1] = "稀有坐騎 - 燃燒的遠征";
AtlasLoot_TableNames["BlizzardCollectables1"][1] = "暴雪特殊收藏品";
AtlasLoot_TableNames["RareMounts1"][1] = "稀有坐騎 - 原魔獸世界";
AtlasLoot_TableNames["RareMounts2"][1] = "稀有坐騎 - 燃燒的遠征";
--------------
--- Events ---
--------------
--Abyssal Council
AtlasLoot_TableNames["Templars"][1] = "深淵議會 - 聖殿騎士";
AtlasLoot_TableNames["Dukes"][1] = "深淵議會 - 公爵";
AtlasLoot_TableNames["HighCouncil"][1] = "深淵議會 - 高階議會";
AtlasLoot_TableNames["Templars"][1] = "深淵議會 - 聖殿騎士";
AtlasLoot_TableNames["Dukes"][1] = "深淵議會 - 公爵";
AtlasLoot_TableNames["HighCouncil"][1] = "深淵議會 - 高階議會";
--Seasonal
AtlasLoot_TableNames["Winterviel2"][1] = "冬幕節禮物";
AtlasLoot_TableNames["Winterviel2"][1] = "冬幕節禮物";
--Skettis
AtlasLoot_TableNames["SkettisTalonpriestIshaal"][1] = "魔爪祭司艾夏歐";
AtlasLoot_TableNames["SkettisHazziksPackage"][1] = "海茲克的包裹";
AtlasLoot_TableNames["SkettisTalonpriestIshaal"][1] = "魔爪祭司艾夏歐";
AtlasLoot_TableNames["SkettisHazziksPackage"][1] = "海茲克的包裹";
--Other
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "天譴軍團首領";
AtlasLoot_TableNames["ScourgeInvasionEvent2"][1] = "天譴軍團首領";
--------------------
--- Rep Factions ---
--------------------
--Argent Dawn
AtlasLoot_TableNames["Argent1"][1] = "銀色黎明: 徽記兌換";
AtlasLoot_TableNames["Argent1"][1] = "銀色黎明: 徽記兌換";
--Exalted with Cenarion Expedition, The Sha'tar and The Aldor/Scryers
AtlasLoot_TableNames["ShattrathFlasks1"][1] = "撒塔斯藥劑";
AtlasLoot_TableNames["ShattrathFlasks1"][1] = "撒塔斯藥劑";
end
+490 -337
View File
@@ -1,33 +1,33 @@
AtlasLootWBBossButtons = {
FourDragons = {
"";
"";
"";
"";
"";
"DLethon";
"DEmeriss";
"DTaerar";
"DYsondre";
"";
"DTrash";
};
Azuregos = {
"AAzuregos";
"ASpiritA";
};
LordKazzak = {
"KKazzak";
};
Turtlhu = {
"Turtlhu";
};
Nerubian = {
"Nerubian";
};
Reaver = {
"Reaver";
};
FourDragons = {
"";
"";
"";
"";
"";
"DLethon";
"DEmeriss";
"DTaerar";
"DYsondre";
"";
"DTrash";
};
Azuregos = {
"AAzuregos";
"ASpiritA";
};
LordKazzak = {
"KKazzak";
};
Turtlhu = {
"Turtlhu";
};
Nerubian = {
"Nerubian";
};
Reaver = {
"Reaver";
};
Ostarius = {
"Ostarius";
};
@@ -37,115 +37,146 @@ AtlasLootWBBossButtons = {
CowKing = {
"CowKing";
};
RareSpawns = {
"";
"";
"";
"";
"";
"";
"";
"";
"";
"";
"";
"Tarangos";
"Kargron";
"Xalvic";
"Mallon";
"Grugthok";
"WanderingKnight";
"CrusaderLarsarius";
"Zareth";
"Jalakar";
"Ashbeard";
RareSpawns = {
"";
"";
"";
"";
"";
"";
"";
"";
"";
"";
"";
"Tarangos";
"Kargron";
"Xalvic";
"Mallon";
"Grugthok";
"WanderingKnight";
"CrusaderLarsarius";
"Zareth";
"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%" },
{ 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%" },
{ 0, "", "", "", "" },
{ 51786, "", "=q4=", "", "3.85%" },
{ 51785, "", "=q4=", "", "3.85%" },
{ 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%" },
};
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%" },
{ 0, "", "", "", "" },
{ 51735, "", "=q4=", "=ds=#w12#", "10%" },
{ 0, "", "", "", "" },
{ 51740, "", "=q4=", "=ds=#s1#, #a1#", "10%" },
{ 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%" },
{ 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%" },
{ 0, "", "", "", "" },
{ 51739, "", "=q3=", "=ds=#e15#", "100%" },
};
Turtlhu = {
{ 20633, "INV_Shoulder_29", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "4.76%" },
{ 20631, "INV_Boots_Cloth_05", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "4.76%" },
{ 20634, "INV_Boots_08", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "4.76%" },
{ 20632, "INV_Jewelry_Ring_04", "=q4=Mindtear Band", "=ds=#s13#", "4.76%" },
{ 20577, "INV_Sword_44", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "4.767%" },
{ 20623, "INV_Helmet_17", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "4.76%" },
{ 20622, "INV_Jewelry_Necklace_18", "=q4=Dragonheart Necklace", "=ds=#s2#", "4.76%" },
{ 20624, "INV_Jewelry_Ring_38", "=q4=Ring of the Unliving", "=ds=#s13#", "4.76%" },
{ 20621, "INV_Boots_Chain_11", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "4.76%" },
{ 20599, "INV_Weapon_Crossbow_11", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "4.763%" },
{ 20628, "INV_Helmet_43", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "4.76%" },
{ 20626, "INV_Bracer_07", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "4.76%" },
{ 20630, "INV_Gauntlets_29", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "4.76%" },
{ 20625, "INV_Belt_15", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "4.76%" },
{ 20627, "INV_Pants_Leather_11", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "4.76%" },
{ 20629, "INV_Boots_Chain_08", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "4.76%" },
{ 20637, "INV_Shoulder_11", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "4.76%" },
{ 20635, "INV_Chest_Cloth_39", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "4.76%" },
{ 20638, "INV_Pants_Mail_15", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "4.76%" },
{ 20639, "INV_Pants_Plate_05", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "4.76%" },
{ 20636, "INV_Misc_Gem_Stone_01", "=q4=Hibernation Crystal", "=ds=#s14#", "4.76%" },
{ 20578, "INV_Weapon_ShortBlade_22", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "4.76%" },
{ 0, "", "", "", "" },
{ 18665, "Spell_Shadow_UnholyFrenzy", "=q4=The Eye of Shadow", "=ds=#s14#", "3.50%" },
{ 0, "", "", "", "" },
{ 50202, "INV_Egg_03", "=q3=Egg of Turtlhu", "=ds=#e15#", "100%" },
{ 50203, "INV_Enchant_Dustsoul", "=q2=Corrupted Sand", "=ds=#e12#", "100%" },
};
EmptyInstance = {};
Reaver = {
{ 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, "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, "inv_chest_chain_17", "=q4=Cryptbone Hauberk", "=ds=#s5#, #a3#", "4%" },
{ 51785, "inv_belt_35", "=q4=Stoneslate Belt", "=ds=#s10#, #a3#", "4%" },
{ 0, "", "", "", "" },
{ 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, "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, "inv_wand_01", "=q4=Scourgelord's Fang", "=ds=#w12#", "20%" },
{ 0, "", "", "", "" },
{ 51740, "inv_helmet_06", "=q4=Crown of Skittering Shadows", "=ds=#s1#, #a1#", "20%" },
{ 0, "", "", "", "" },
{ 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, "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, "", "", "", "" },
{ 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%" },
{ 20631, "INV_Boots_Cloth_05", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "4.76%" },
{ 20634, "INV_Boots_08", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "4.76%" },
{ 20632, "INV_Jewelry_Ring_04", "=q4=Mindtear Band", "=ds=#s13#", "4.76%" },
{ 20577, "INV_Sword_44", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "4.767%" },
{ 20623, "INV_Helmet_17", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "4.76%" },
{ 20622, "INV_Jewelry_Necklace_18", "=q4=Dragonheart Necklace", "=ds=#s2#", "4.76%" },
{ 20624, "INV_Jewelry_Ring_38", "=q4=Ring of the Unliving", "=ds=#s13#", "4.76%" },
{ 20621, "INV_Boots_Chain_11", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "4.76%" },
{ 20599, "INV_Weapon_Crossbow_11", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "4.763%" },
{ 20628, "INV_Helmet_43", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "4.76%" },
{ 20626, "INV_Bracer_07", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "4.76%" },
{ 20630, "INV_Gauntlets_29", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "4.76%" },
{ 20625, "INV_Belt_15", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "4.76%" },
{ 20627, "INV_Pants_Leather_11", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "4.76%" },
{ 20629, "INV_Boots_Chain_08", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "4.76%" },
{ 20637, "INV_Shoulder_11", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "4.76%" },
{ 20635, "INV_Chest_Cloth_39", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "4.76%" },
{ 20638, "INV_Pants_Mail_15", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "4.76%" },
{ 20639, "INV_Pants_Plate_05", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "4.76%" },
{ 20636, "INV_Misc_Gem_Stone_01", "=q4=Hibernation Crystal", "=ds=#s14#", "4.76%" },
{ 20578, "INV_Weapon_ShortBlade_22", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "4.76%" },
{ 0, "", "", "", "" },
{ 18665, "Spell_Shadow_UnholyFrenzy", "=q4=The Eye of Shadow", "=ds=#s14#", "3.50%" },
{ 0, "", "", "", "" },
{ 50202, "INV_Egg_03", "=q3=Egg of Turtlhu", "=ds=#e15#", "100%" },
{ 50203, "INV_Enchant_Dustsoul", "=q2=Corrupted Sand", "=ds=#e12#", "100%" },
};
Ostarius = {
{ 83480, "inv_misc_book_07", "=q4=Tome of Infalliable Truth", "=ds=#h4#, #s15#", "17%" },
{ 83481, "inv_mace_08", "=q4=Failsafe Activation Key", "=ds=#h4#, #s15#", "17%" },
@@ -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,197 +246,201 @@ 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%" },
{ 0, "", "", "", "" },
{ 18665, "Spell_Shadow_UnholyFrenzy", "=q4=The Eye of Shadow", "=ds=#s14#", "29.98%" },
{ 18608, "INV_Staff_30", "=q4=Benediction", "=q1=#m4# =ds=#w9# =q9=#c5#" },
{ 18609, "INV_Staff_12", "=q4=Anathema", "=q1=#m4# =ds=#w9# =q9=#c5#" },
KKazzak = {
{ 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, "", "", "", "" },
{ 83545, "", "=q4=", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "40%" },
};
DTaerar = {
{ 20633, "INV_Shoulder_29", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "17%" },
{ 20631, "INV_Boots_Cloth_05", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "17%" },
{ 20634, "INV_Boots_08", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "17%" },
{ 20632, "INV_Jewelry_Ring_04", "=q4=Mindtear Band", "=ds=#s13#", "17%" },
{ 20577, "INV_Sword_44", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "17%" },
{ 65105, "inv_misc_monsterscales_11", "=q4=Scale of the Wakener", "=ds=#s14#", "17%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" },
{ 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" },
{ 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" },
{ 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" },
{ 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" },
{ 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" },
{ 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" },
{ 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" },
{ 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20580, "INV_Mace_20", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q2=#m5#", "8.93%" },
{ 20581, "INV_Staff_36", "=q4=Staff of Rampant Growth", "=ds=#w9# =q2=#m5#", "9.70%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" },
};
DEmeriss = {
{ 20623, "INV_Helmet_17", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "14%" },
{ 20622, "INV_Jewelry_Necklace_18", "=q4=Dragonheart Necklace", "=ds=#s2#", "14%" },
{ 20624, "INV_Jewelry_Ring_38", "=q4=Ring of the Unliving", "=ds=#s13#", "14%" },
{ 20621, "INV_Boots_Chain_11", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "14%" },
{ 20599, "INV_Weapon_Crossbow_11", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "14%" },
{ 65100, "inv_boots_cloth_04", "=q4=Dragonspur Boots", "=ds=#s12#, #a2#", "14%" },
{ 65101, "inv_belt_16", "=q4=Dragonbone Waistguard", "=ds=#s10#, #a4#", "14%" },
{ 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, "", "", "", "" },
{ 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" },
{ 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" },
{ 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" },
{ 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" },
{ 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" },
{ 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" },
{ 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" },
{ 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" },
{ 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20580, "INV_Mace_20", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q2=#m5#", "8.93%" },
{ 20581, "INV_Staff_36", "=q4=Staff of Rampant Growth", "=ds=#w9# =q2=#m5#", "9.70%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" },
};
DLethon = {
{ 20628, "INV_Helmet_43", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "14%" },
{ 20626, "INV_Bracer_07", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "14%" },
{ 20630, "INV_Gauntlets_29", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "14%" },
{ 20625, "INV_Belt_15", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "14%" },
{ 20627, "INV_Pants_Leather_11", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "14%" },
{ 20629, "INV_Boots_Chain_08", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "14%" },
{ 65102, "inv_helmet_04", "=q4=Hood of Delusional Power", "=ds=#s1#, #a1#", "14%" },
{ 0, "", "", "", "" },
{ 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" },
{ 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" },
{ 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" },
{ 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" },
{ 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" },
{ 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" },
{ 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" },
{ 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" },
{ 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20580, "INV_Mace_20", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q2=#m5#", "8.93%" },
{ 20581, "INV_Staff_36", "=q4=Staff of Rampant Growth", "=ds=#w9# =q2=#m5#", "9.70%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" },
};
DYsondre = {
{ 20637, "INV_Shoulder_11", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "13%" },
{ 20635, "INV_Chest_Cloth_39", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "13%" },
{ 20638, "INV_Pants_Mail_15", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "13%" },
{ 20639, "INV_Pants_Plate_05", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "13%" },
{ 20636, "INV_Misc_Gem_Stone_01", "=q4=Hibernation Crystal", "=ds=#s14#", "13%" },
{ 20578, "INV_Weapon_ShortBlade_22", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "13%" },
{ 65103, "inv_shield_21", "=q4=Shell of the Great Sleeper", "=ds=#h4#, #w8#", "13%" },
{ 0, "", "", "", "" },
{ 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" },
{ 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" },
{ 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" },
{ 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" },
{ 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" },
{ 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" },
{ 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" },
{ 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" },
{ 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20580, "INV_Mace_20", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q2=#m5#", "8.93%" },
{ 20581, "INV_Staff_36", "=q4=Staff of Rampant Growth", "=ds=#w9# =q2=#m5#", "9.70%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 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%" },
{ 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%" },
{ 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%" },
{ 0, "", "", "", "" },
{ 18704, "INV_Misc_Bandage_04", "=q4=Mature Blue Dragon Sinew", "=ds=#m3#", "51.56%" },
{ 18714, "INV_Misc_Quiver_03", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4# =ds=#m12# #e9# =q14=#c2#" },
{ 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%" },
{ 20631, "INV_Boots_Cloth_05", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "17%" },
{ 20634, "INV_Boots_08", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "17%" },
{ 20632, "INV_Jewelry_Ring_04", "=q4=Mindtear Band", "=ds=#s13#", "17%" },
{ 20577, "INV_Sword_44", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "17%" },
{ 65105, "inv_misc_monsterscales_11", "=q4=Scale of the Wakener", "=ds=#s14#", "17%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" },
{ 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" },
{ 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" },
{ 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" },
{ 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" },
{ 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" },
{ 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" },
{ 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" },
{ 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20580, "INV_Mace_20", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q2=#m5#", "8.93%" },
{ 20581, "INV_Staff_36", "=q4=Staff of Rampant Growth", "=ds=#w9# =q2=#m5#", "9.70%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" },
};
DEmeriss = {
{ 20623, "INV_Helmet_17", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "14%" },
{ 20622, "INV_Jewelry_Necklace_18", "=q4=Dragonheart Necklace", "=ds=#s2#", "14%" },
{ 20624, "INV_Jewelry_Ring_38", "=q4=Ring of the Unliving", "=ds=#s13#", "14%" },
{ 20621, "INV_Boots_Chain_11", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "14%" },
{ 20599, "INV_Weapon_Crossbow_11", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "14%" },
{ 65100, "inv_boots_cloth_04", "=q4=Dragonspur Boots", "=ds=#s12#, #a2#", "14%" },
{ 65101, "inv_belt_16", "=q4=Dragonbone Waistguard", "=ds=#s10#, #a4#", "14%" },
{ 0, "", "", "", "" },
{ 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" },
{ 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" },
{ 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" },
{ 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" },
{ 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" },
{ 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" },
{ 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" },
{ 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" },
{ 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20580, "INV_Mace_20", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q2=#m5#", "8.93%" },
{ 20581, "INV_Staff_36", "=q4=Staff of Rampant Growth", "=ds=#w9# =q2=#m5#", "9.70%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" },
};
DLethon = {
{ 20628, "INV_Helmet_43", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "14%" },
{ 20626, "INV_Bracer_07", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "14%" },
{ 20630, "INV_Gauntlets_29", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "14%" },
{ 20625, "INV_Belt_15", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "14%" },
{ 20627, "INV_Pants_Leather_11", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "14%" },
{ 20629, "INV_Boots_Chain_08", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "14%" },
{ 65102, "inv_helmet_04", "=q4=Hood of Delusional Power", "=ds=#s1#, #a1#", "14%" },
{ 0, "", "", "", "" },
{ 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" },
{ 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" },
{ 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" },
{ 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" },
{ 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" },
{ 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" },
{ 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" },
{ 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" },
{ 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20580, "INV_Mace_20", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q2=#m5#", "8.93%" },
{ 20581, "INV_Staff_36", "=q4=Staff of Rampant Growth", "=ds=#w9# =q2=#m5#", "9.70%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" },
};
DYsondre = {
{ 20637, "INV_Shoulder_11", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "13%" },
{ 20635, "INV_Chest_Cloth_39", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "13%" },
{ 20638, "INV_Pants_Mail_15", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "13%" },
{ 20639, "INV_Pants_Plate_05", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "13%" },
{ 20636, "INV_Misc_Gem_Stone_01", "=q4=Hibernation Crystal", "=ds=#s14#", "13%" },
{ 20578, "INV_Weapon_ShortBlade_22", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "13%" },
{ 65103, "inv_shield_21", "=q4=Shell of the Great Sleeper", "=ds=#h4#, #w8#", "13%" },
{ 0, "", "", "", "" },
{ 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" },
{ 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" },
{ 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" },
{ 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" },
{ 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" },
{ 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" },
{ 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" },
{ 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" },
{ 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 20580, "INV_Mace_20", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q2=#m5#", "8.93%" },
{ 20581, "INV_Staff_36", "=q4=Staff of Rampant Growth", "=ds=#w9# =q2=#m5#", "9.70%" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 0, "", "", "", "" },
{ 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#", "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#", "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#", "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#", "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%" },
};
ASpiritA = {
{ 20949, "INV_Letter_16", "=q1=Magical Ledger", "=ds=#m2#", "" },
};
Tarangos = {
{ 65006, "inv_pants_mail_15", "=q4=Pattern: Stormscale Leggings", "=ds=#s11#, #a3#" },
};
ASpiritA = {
{ 20949, "INV_Letter_16", "=q1=Magical Ledger", "=ds=#m2#" },
};
Tarangos = {
{ 81360, "INV_Weapon_ShortBlade_10", "=q3=Claw of Taranassz", "=ds=#w4#", "25%" },
{ 81361, "INV_Shoulder_23", "=q3=Dampener's Pauldron's", "=ds=#a2#", "25%" },
{ 81362, "INV_Boots_Plate_06", "=q3=Azure-Scale Sabatons", "=ds=#a4#", "25%" },
{ 81364, "INV_Misc_MonsterScales_09", "=q3=Scale of Malygos", "=ds=#s14#", "25%" },
};
Kargron = {
};
Kargron = {
{ 81365, "INV_Pants_09", "=q3=Kargron's Leggings", "=ds=#a2#, #s11#", "25%" },
{ 81366, "INV_MISC_DESECRATED_PLATESHOULDER", "=q3=Blackrock Clan Mantle", "=ds=#a4#, #s3#", "25%" },
{ 81367, "INV_Jewelry_Ring_23", "=q3=Band of the Old Horde", "=ds=#s13#", "25%" },
{ 81368, "INV_Bracer_07", "=q3=Blackshackle Bracers", "=ds=#a3#, #s8#", "25%" },
{ 81369, "INV_Sword_20", "=q4=Sword of the Blademaster", "=ds=#w10#", "0.5%" },
};
Xalvic = {
};
Xalvic = {
{ 81370, "INV_Boots_04", "=q3=Footpads of the Corruptor", "=ds=#a1#", "25%" },
{ 81371, "INV_Chest_Leather_06", "=q3=Gnarltwist Vest", "=ds=#a3#", "25%" },
{ 81372, "INV_Misc_MonsterClaw_01", "=q3=The Black Claw", "=ds=#w13#", "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%" },