diff --git a/AtlasLoot.toc b/AtlasLoot.toc index f2a68c6..827452e 100644 --- a/AtlasLoot.toc +++ b/AtlasLoot.toc @@ -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 diff --git a/AtlasLoot.xml b/AtlasLoot.xml index 394bf1e..b0767e2 100644 --- a/AtlasLoot.xml +++ b/AtlasLoot.xml @@ -114,10 +114,10 @@ - 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 @@ -140,10 +140,10 @@ - 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 @@ -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"]); AtlasLootDefaultFrame_OnShow(); diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua index ad85e9d..d6b91df 100644 --- a/Core/AtlasLoot.lua +++ b/Core/AtlasLoot.lua @@ -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) diff --git a/Core/AtlasLoot.xml b/Core/AtlasLoot.xml index 394bf1e..b0767e2 100644 --- a/Core/AtlasLoot.xml +++ b/Core/AtlasLoot.xml @@ -114,10 +114,10 @@ - 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 @@ -140,10 +140,10 @@ - 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 @@ -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"]); AtlasLootDefaultFrame_OnShow(); diff --git a/Core/ButtonRegistry.lua b/Core/ButtonRegistry.lua index b547f97..ac1faab 100644 --- a/Core/ButtonRegistry.lua +++ b/Core/ButtonRegistry.lua @@ -11,4392 +11,4788 @@ local ORANGE = "|cffFF8400"; AtlasLoot_ButtonRegistry = { --WoW Instances - ["HQHighForemanBargulBlackhammer"] = { - Title = AL["High Foreman Bargul Blackhammer"]; - Next_Page = "HQEngineerFiggles"; - Next_Title = AL["Engineer Figgles"]; - }; - ["HQEngineerFiggles"] = { - Title = AL["Engineer Figgles"]; - Next_Page = "HQCorrosis"; - Next_Title = AL["Corrosis"]; - Prev_Page = "HQHighForemanBargulBlackhammer"; - Prev_Title = AL["High Foreman Bargul Blackhammer"]; - }; - ["HQCorrosis"] = { - Title = AL["Corrosis"]; - Next_Page = "HQHatereaverAnnihilator"; - Next_Title = AL["Hatereaver Annihilator"]; - Prev_Page = "HQEngineerFiggles"; - Prev_Title = AL["Engineer Figgles"]; - }; - ["HQHatereaverAnnihilator"] = { - Title = AL["Hatereaver Annihilator"]; - Next_Page = "HQHargeshDoomcaller"; - Next_Title = AL["Hargesh Doomcaller"]; - Prev_Page = "HQCorrosis"; - Prev_Title = AL["Corrosis"]; - }; - ["HQHargeshDoomcaller"] = { - Title = AL["Hargesh Doomcaller"]; - Next_Page = "HQTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "HQHatereaverAnnihilator"; - Prev_Title = AL["Hatereaver Annihilator"]; - }; - ["HQTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "HQHargeshDoomcaller"; - Prev_Title = AL["Hargesh Doomcaller"]; - }; - ["BRDLordRoccor"] = { - Title = AL["Lord Roccor"]; - Next_Page = "BRDHighInterrogatorGerstahn"; - Next_Title = AL["High Interrogator Gerstahn"]; - }; - ["BRDHighInterrogatorGerstahn"] = { - Title = AL["High Interrogator Gerstahn"]; - Next_Page = "BRDAnubshiah"; - Next_Title = AL["Anub'shiah"]; - Prev_Page = "BRDLordRoccor"; - Prev_Title = AL["Lord Roccor"]; - }; - ["BRDAnubshiah"] = { - Title = AL["Anub'shiah"]; - Next_Page = "BRDEviscerator"; - Next_Title = AL["Eviscerator"]; - Prev_Page = "BRDHighInterrogatorGerstahn"; - Prev_Title = AL["High Interrogator Gerstahn"]; - }; - ["BRDEviscerator"] = { - Title = AL["Eviscerator"]; - Next_Page = "BRDGorosh"; - Next_Title = AL["Gorosh the Dervish"]; - Prev_Page = "BRDAnubshiah"; - Prev_Title = AL["Anub'shiah"]; - }; - ["BRDGorosh"] = { - Title = AL["Gorosh the Dervish"]; - Next_Page = "BRDGrizzle"; - Next_Title = AL["Grizzle"]; - Prev_Page = "BRDEviscerator"; - Prev_Title = AL["Eviscerator"]; - }; - ["BRDGrizzle"] = { - Title = AL["Grizzle"]; - Next_Page = "BRDHedrum"; - Next_Title = AL["Hedrum the Creeper"]; - Prev_Page = "BRDGorosh"; - Prev_Title = AL["Gorosh the Dervish"]; - }; - ["BRDHedrum"] = { - Title = AL["Hedrum the Creeper"]; - Next_Page = "BRDOkthor"; - Next_Title = AL["Ok'thor the Breaker"]; - Prev_Page = "BRDGrizzle"; - Prev_Title = AL["Grizzle"]; - }; - ["BRDOkthor"] = { - Title = AL["Ok'thor the Breaker"]; - Next_Page = "BRDTheldren"; - Next_Title = AL["Theldren"]; - Prev_Page = "BRDHedrum"; - Prev_Title = AL["Hedrum the Creeper"]; - }; - ["BRDTheldren"] = { - Title = AL["Theldren"]; - Next_Page = "BRDHoundmaster"; - Next_Title = AL["Houndmaster Grebmar"]; - Prev_Page = "BRDOkthor"; - Prev_Title = AL["Ok'thor the Breaker"]; - }; - ["BRDHoundmaster"] = { - Title = AL["Houndmaster Grebmar"]; - Next_Page = "BRDPyromancerLoregrain"; - Next_Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")"; - Prev_Page = "BRDTheldren"; - Prev_Title = AL["Theldren"]; - }; - ["BRDPyromancerLoregrain"] = { - Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")"; - Next_Page = "BRDTheVault"; - Next_Title = AL["The Vault"]; - Prev_Page = "BRDHoundmaster"; - Prev_Title = AL["Houndmaster Grebmar"]; - }; - ["BRDTheVault"] = { - Title = AL["The Vault"]; - Next_Page = "BRDWarderStilgiss"; - Next_Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")"; - Prev_Page = "BRDPyromancerLoregrain"; - Prev_Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")"; - }; - ["BRDWarderStilgiss"] = { - Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")"; - Next_Page = "BRDVerek"; - Next_Title = AL["Verek"].." ("..AL["Rare"]..")"; - Prev_Page = "BRDTheVault"; - Prev_Title = AL["The Vault"]; - }; - ["BRDVerek"] = { - Title = AL["Verek"].." ("..AL["Rare"]..")"; - Next_Page = "BRDFineousDarkvire"; - Next_Title = AL["Fineous Darkvire"]; - Prev_Page = "BRDWarderStilgiss"; - Prev_Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")"; - }; - ["BRDFineousDarkvire"] = { - Title = AL["Fineous Darkvire"]; - Next_Page = "BRDLordIncendius"; - Next_Title = AL["Lord Incendius"]; - Prev_Page = "BRDVerek"; - Prev_Title = AL["Verek"].." ("..AL["Rare"]..")"; - }; - ["BRDLordIncendius"] = { - Title = AL["Lord Incendius"]; - Next_Page = "BRDBaelGar"; - Next_Title = AL["Bael'Gar"]; - Prev_Page = "BRDFineousDarkvire"; - Prev_Title = AL["Fineous Darkvire"]; - }; - ["BRDBaelGar"] = { - Title = AL["Bael'Gar"]; - Next_Page = "BRDGeneralAngerforge"; - Next_Title = AL["General Angerforge"]; - Prev_Page = "BRDLordIncendius"; - Prev_Title = AL["Lord Incendius"]; - }; - ["BRDGeneralAngerforge"] = { - Title = AL["General Angerforge"]; - Next_Page = "BRDGolemLordArgelmach"; - Next_Title = AL["Golem Lord Argelmach"]; - Prev_Page = "BRDBaelGar"; - Prev_Title = AL["Bael'Gar"]; - }; - ["BRDGolemLordArgelmach"] = { - Title = AL["Golem Lord Argelmach"]; - Next_Page = "BRDGuzzler"; - Next_Title = AL["The Grim Guzzler"]; - Prev_Page = "BRDGeneralAngerforge"; - Prev_Title = AL["General Angerforge"]; - }; - ["BRDGuzzler"] = { - Title = AL["The Grim Guzzler"]; - Next_Page = "BRDFlamelash"; - Next_Title = AL["Ambassador Flamelash"]; - Prev_Page = "BRDGolemLordArgelmach"; - Prev_Title = AL["Golem Lord Argelmach"]; - }; - ["BRDFlamelash"] = { - Title = AL["Ambassador Flamelash"]; - Next_Page = "BRDPanzor"; - Next_Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")"; - Prev_Page = "BRDGuzzler"; - Prev_Title = AL["The Grim Guzzler"]; - }; - ["BRDPanzor"] = { - Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")"; - Next_Page = "BRDTomb"; - Next_Title = AL["Summoner's Tomb"]; - Prev_Page = "BRDFlamelash"; - Prev_Title = AL["Ambassador Flamelash"]; - }; - ["BRDTomb"] = { - Title = AL["Summoner's Tomb"]; - Next_Page = "BRDMagmus"; - Next_Title = AL["Magmus"]; - Prev_Page = "BRDPanzor"; - Prev_Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")"; - }; - ["BRDMagmus"] = { - Title = AL["Magmus"]; - Next_Page = "BRDPrincess"; - Next_Title = AL["Princess Moira Bronzebeard"]; - Prev_Page = "BRDTomb"; - Prev_Title = AL["Summoner's Tomb"]; - }; - ["BRDPrincess"] = { - Title = AL["Princess Moira Bronzebeard"]; - Next_Page = "BRDEmperorDagranThaurissan"; - Next_Title = AL["Emperor Dagran Thaurissan"]; - Prev_Page = "BRDMagmus"; - Prev_Title = AL["Magmus"]; - }; - ["BRDEmperorDagranThaurissan"] = { - Title = AL["Emperor Dagran Thaurissan"]; - Next_Page = "BRDTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "BRDPrincess"; - Prev_Title = AL["Princess Moira Bronzebeard"]; - }; - ["BRDTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "BRDEmperorDagranThaurissan"; - Prev_Title = AL["Emperor Dagran Thaurissan"]; - }; - ["LBRSSpirestoneButcher"] = { - Title = AL["Spirestone Butcher"].." ("..AL["Rare"]..")"; - Next_Page = "LBRSSpirestoneBattleLord"; - Next_Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")"; - }; - ["LBRSSpirestoneBattleLord"] = { - Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")"; - Next_Page = "LBRSSpirestoneLordMagus"; - Next_Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")"; - Prev_Page = "LBRSSpirestoneButcher"; - Prev_Title = AL["Spirestone Butcher"].." ("..AL["Rare"]..")"; - }; - ["LBRSSpirestoneLordMagus"] = { - Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")"; - Next_Page = "LBRSOmokk"; - Next_Title = AL["Highlord Omokk"]; - Prev_Page = "LBRSSpirestoneBattleLord"; - Prev_Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")"; - }; - ["LBRSOmokk"] = { - Title = AL["Highlord Omokk"]; - Next_Page = "LBRSVosh"; - Next_Title = AL["Shadow Hunter Vosh'gajin"]; - Prev_Page = "LBRSSpirestoneLordMagus"; - Prev_Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")"; - }; - ["LBRSVosh"] = { - Title = AL["Shadow Hunter Vosh'gajin"]; - Next_Page = "LBRSVoone"; - Next_Title = AL["War Master Voone"]; - Prev_Page = "LBRSOmokk"; - Prev_Title = AL["Highlord Omokk"]; - }; - ["LBRSVoone"] = { - Title = AL["War Master Voone"]; - Next_Page = "LBRSFelguard"; - Next_Title = AL["Burning Felguard"].." ("..AL["Rare"]..")"; - Prev_Page = "LBRSVosh"; - Prev_Title = AL["Shadow Hunter Vosh'gajin"]; - }; - ["LBRSFelguard"] = { - Title = AL["Burning Felguard"].." ("..AL["Rare"]..")"; - Next_Page = "LBRSGrayhoof"; - Next_Title = AL["Mor Grayhoof"]; - Prev_Page = "LBRSVoone"; - Prev_Title = AL["War Master Voone"]; - }; - ["LBRSGrayhoof"] = { - Title = AL["Mor Grayhoof"]; - Next_Page = "LBRSGrimaxe"; - Next_Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")"; - Prev_Page = "LBRSFelguard"; - Prev_Title = AL["Burning Felguard"].." ("..AL["Rare"]..")"; - }; - ["LBRSGrimaxe"] = { - Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")"; - Next_Page = "LBRSSmolderweb"; - Next_Title = AL["Mother Smolderweb"]; - Prev_Page = "LBRSGrayhoof"; - Prev_Title = AL["Mor Grayhoof"]; - }; - ["LBRSSmolderweb"] = { - Title = AL["Mother Smolderweb"]; - Next_Page = "LBRSCrystalFang"; - Next_Title = AL["Crystal Fang"].." ("..AL["Rare"]..")"; - Prev_Page = "LBRSGrimaxe"; - Prev_Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")"; - }; - ["LBRSCrystalFang"] = { - Title = AL["Crystal Fang"].." ("..AL["Rare"]..")"; - Next_Page = "LBRSDoomhowl"; - Next_Title = AL["Urok Doomhowl"]; - Prev_Page = "LBRSSmolderweb"; - Prev_Title = AL["Mother Smolderweb"]; - }; - ["LBRSDoomhowl"] = { - Title = AL["Urok Doomhowl"]; - Next_Page = "LBRSZigris"; - Next_Title = AL["Quartermaster Zigris"]; - Prev_Page = "LBRSCrystalFang"; - Prev_Title = AL["Crystal Fang"].." ("..AL["Rare"]..")"; - }; - ["LBRSZigris"] = { - Title = AL["Quartermaster Zigris"]; - Next_Page = "LBRSHalycon"; - Next_Title = AL["Halycon"]; - Prev_Page = "LBRSDoomhowl"; - Prev_Title = AL["Urok Doomhowl"]; - }; - ["LBRSHalycon"] = { - Title = AL["Halycon"]; - Next_Page = "LBRSSlavener"; - Next_Title = AL["Gizrul the Slavener"]; - Prev_Page = "LBRSZigris"; - Prev_Title = AL["Quartermaster Zigris"]; - }; - ["LBRSSlavener"] = { - Title = AL["Gizrul the Slavener"]; - Next_Page = "LBRSBashguud"; - Next_Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")"; - Prev_Page = "LBRSHalycon"; - Prev_Title = AL["Halycon"]; - }; - ["LBRSBashguud"] = { - Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")"; - Next_Page = "LBRSWyrmthalak"; - Next_Title = AL["Overlord Wyrmthalak"]; - Prev_Page = "LBRSSlavener"; - Prev_Title = AL["Gizrul the Slavener"]; - }; - ["LBRSWyrmthalak"] = { - Title = AL["Overlord Wyrmthalak"]; - Next_Page = "LBRSTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "LBRSBashguud"; - Prev_Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")"; - }; - ["LBRSTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "LBRSWyrmthalak"; - Prev_Title = AL["Overlord Wyrmthalak"]; - }; - ["UBRSEmberseer"] = { - Title = AL["Pyroguard Emberseer"]; - Next_Page = "UBRSSolakar"; - Next_Title = AL["Solakar Flamewreath"]; - }; - ["UBRSSolakar"] = { - Title = AL["Solakar Flamewreath"]; - Next_Page = "UBRSFlame"; - Next_Title = AL["Father Flame"]; - Prev_Page = "UBRSEmberseer"; - Prev_Title = AL["Pyroguard Emberseer"]; - }; - ["UBRSFlame"] = { - Title = AL["Father Flame"]; - Next_Page = "UBRSRunewatcher"; - Next_Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")"; - Prev_Page = "UBRSSolakar"; - Prev_Title = AL["Solakar Flamewreath"]; - }; - ["UBRSRunewatcher"] = { - Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")"; - Next_Page = "UBRSAnvilcrack"; - Next_Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")"; - Prev_Page = "UBRSFlame"; - Prev_Title = AL["Father Flame"]; - }; - ["UBRSAnvilcrack"] = { - Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")"; - Next_Page = "UBRSRend"; - Next_Title = AL["Warchief Rend Blackhand"]; - Prev_Page = "UBRSRunewatcher"; - Prev_Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")"; - }; - ["UBRSRend"] = { - Title = AL["Warchief Rend Blackhand"]; - Next_Page = "UBRSGyth"; - Next_Title = AL["Gyth"]; - Prev_Page = "UBRSAnvilcrack"; - Prev_Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")"; - }; - ["UBRSGyth"] = { - Title = AL["Gyth"]; - Next_Page = "UBRSBeast"; - Next_Title = AL["The Beast"]; - Prev_Page = "UBRSRend"; - Prev_Title = AL["Warchief Rend Blackhand"]; - }; - ["UBRSBeast"] = { - Title = AL["The Beast"]; - Next_Page = "UBRSValthalak"; - Next_Title = AL["Lord Valthalak"]; - Prev_Page = "UBRSGyth"; - Prev_Title = AL["Gyth"]; - }; - ["UBRSValthalak"] = { - Title = AL["Lord Valthalak"]; - Next_Page = "UBRSDrakkisath"; - Next_Title = AL["General Drakkisath"]; - Prev_Page = "UBRSBeast"; - Prev_Title = AL["The Beast"]; - }; - ["UBRSDrakkisath"] = { - Title = AL["General Drakkisath"]; - Next_Page = "UBRSTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "UBRSValthalak"; - Prev_Title = AL["Lord Valthalak"]; - }; - ["UBRSTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "UBRSDrakkisath"; - Prev_Title = AL["General Drakkisath"]; - }; - ["KCMarrowspike"] = { - Title = AL["Marrowspike"]; - Next_Page = "KCHivaxxis"; - Next_Title = AL["Hivaxxis"]; - }; - ["KCHivaxxis"] = { - Title = AL["Hivaxxis"]; - Next_Page = "KCCorpsemuncher"; - Next_Title = AL["Corpsemuncher"]; - Prev_Page = "KCMarrowspike"; - Prev_Title = AL["Marrowspike"]; - }; - ["KCCorpsemuncher"] = { - Title = AL["Corpsemuncher"]; - Next_Page = "KCGuardCaptainGort"; - Next_Title = AL["Guard Captain Gort"]; - Prev_Page = "KCHivaxxis"; - Prev_Title = AL["Hivaxxis"]; - }; - ["KCGuardCaptainGort"] = { - Title = AL["Guard Captain Gort"]; - Next_Page = "KCArchlichEnkhraz"; - Next_Title = AL["Archlich Enkhraz"]; - Prev_Page = "KCCorpsemuncher"; - Prev_Title = AL["Corpsemuncher"]; - }; - ["KCArchlichEnkhraz"] = { - Title = AL["Archlich Enkhraz"]; - Next_Page = "KCCommanderAnderson"; - Next_Title = AL["Commander Anderson"]; - Prev_Page = "KCGuardCaptainGort"; - Prev_Title = AL["Guard Captain Gort"]; - }; - ["KCCommanderAnderson"] = { - Title = AL["Commander Anderson"]; - Next_Page = "KCAlarus"; - Next_Title = AL["Alarus"]; - Prev_Page = "KCArchlichEnkhraz"; - Prev_Title = AL["Archlich Enkhraz"]; - }; - ["KCAlarus"] = { - Title = AL["Alarus"]; - Next_Page = "KCTreasure"; - Next_Title = AL["Half-Buried Treasure Chest"]; - Prev_Page = "KCCommanderAnderson"; - Prev_Title = AL["Commander Anderson"]; - }; + ["HQHighForemanBargulBlackhammer"] = { + Title = AL["High Foreman Bargul Blackhammer"]; + Next_Page = "HQEngineerFiggles"; + Next_Title = AL["Engineer Figgles"]; + }; + ["HQEngineerFiggles"] = { + Title = AL["Engineer Figgles"]; + Next_Page = "HQCorrosis"; + Next_Title = AL["Corrosis"]; + Prev_Page = "HQHighForemanBargulBlackhammer"; + Prev_Title = AL["High Foreman Bargul Blackhammer"]; + }; + ["HQCorrosis"] = { + Title = AL["Corrosis"]; + Next_Page = "HQHatereaverAnnihilator"; + Next_Title = AL["Hatereaver Annihilator"]; + Prev_Page = "HQEngineerFiggles"; + Prev_Title = AL["Engineer Figgles"]; + }; + ["HQHatereaverAnnihilator"] = { + Title = AL["Hatereaver Annihilator"]; + Next_Page = "HQHargeshDoomcaller"; + Next_Title = AL["Hargesh Doomcaller"]; + Prev_Page = "HQCorrosis"; + Prev_Title = AL["Corrosis"]; + }; + ["HQHargeshDoomcaller"] = { + Title = AL["Hargesh Doomcaller"]; + Next_Page = "HQTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "HQHatereaverAnnihilator"; + Prev_Title = AL["Hatereaver Annihilator"]; + }; + ["HQTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "HQHargeshDoomcaller"; + Prev_Title = AL["Hargesh Doomcaller"]; + }; + ["BRDLordRoccor"] = { + Title = AL["Lord Roccor"]; + Next_Page = "BRDHighInterrogatorGerstahn"; + Next_Title = AL["High Interrogator Gerstahn"]; + }; + ["BRDHighInterrogatorGerstahn"] = { + Title = AL["High Interrogator Gerstahn"]; + Next_Page = "BRDAnubshiah"; + Next_Title = AL["Anub'shiah"]; + Prev_Page = "BRDLordRoccor"; + Prev_Title = AL["Lord Roccor"]; + }; + ["BRDAnubshiah"] = { + Title = AL["Anub'shiah"]; + Next_Page = "BRDEviscerator"; + Next_Title = AL["Eviscerator"]; + Prev_Page = "BRDHighInterrogatorGerstahn"; + Prev_Title = AL["High Interrogator Gerstahn"]; + }; + ["BRDEviscerator"] = { + Title = AL["Eviscerator"]; + Next_Page = "BRDGorosh"; + Next_Title = AL["Gorosh the Dervish"]; + Prev_Page = "BRDAnubshiah"; + Prev_Title = AL["Anub'shiah"]; + }; + ["BRDGorosh"] = { + Title = AL["Gorosh the Dervish"]; + Next_Page = "BRDGrizzle"; + Next_Title = AL["Grizzle"]; + Prev_Page = "BRDEviscerator"; + Prev_Title = AL["Eviscerator"]; + }; + ["BRDGrizzle"] = { + Title = AL["Grizzle"]; + Next_Page = "BRDHedrum"; + Next_Title = AL["Hedrum the Creeper"]; + Prev_Page = "BRDGorosh"; + Prev_Title = AL["Gorosh the Dervish"]; + }; + ["BRDHedrum"] = { + Title = AL["Hedrum the Creeper"]; + Next_Page = "BRDOkthor"; + Next_Title = AL["Ok'thor the Breaker"]; + Prev_Page = "BRDGrizzle"; + Prev_Title = AL["Grizzle"]; + }; + ["BRDOkthor"] = { + Title = AL["Ok'thor the Breaker"]; + Next_Page = "BRDTheldren"; + Next_Title = AL["Theldren"]; + Prev_Page = "BRDHedrum"; + Prev_Title = AL["Hedrum the Creeper"]; + }; + ["BRDTheldren"] = { + Title = AL["Theldren"]; + Next_Page = "BRDHoundmaster"; + Next_Title = AL["Houndmaster Grebmar"]; + Prev_Page = "BRDOkthor"; + Prev_Title = AL["Ok'thor the Breaker"]; + }; + ["BRDHoundmaster"] = { + Title = AL["Houndmaster Grebmar"]; + Next_Page = "BRDPyromancerLoregrain"; + Next_Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")"; + Prev_Page = "BRDTheldren"; + Prev_Title = AL["Theldren"]; + }; + ["BRDPyromancerLoregrain"] = { + Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")"; + Next_Page = "BRDTheVault"; + Next_Title = AL["The Vault"]; + Prev_Page = "BRDHoundmaster"; + Prev_Title = AL["Houndmaster Grebmar"]; + }; + ["BRDTheVault"] = { + Title = AL["The Vault"]; + Next_Page = "BRDWarderStilgiss"; + Next_Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")"; + Prev_Page = "BRDPyromancerLoregrain"; + Prev_Title = AL["Pyromancer Loregrain"].." ("..AL["Rare"]..")"; + }; + ["BRDWarderStilgiss"] = { + Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")"; + Next_Page = "BRDVerek"; + Next_Title = AL["Verek"].." ("..AL["Rare"]..")"; + Prev_Page = "BRDTheVault"; + Prev_Title = AL["The Vault"]; + }; + ["BRDVerek"] = { + Title = AL["Verek"].." ("..AL["Rare"]..")"; + Next_Page = "BRDFineousDarkvire"; + Next_Title = AL["Fineous Darkvire"]; + Prev_Page = "BRDWarderStilgiss"; + Prev_Title = AL["Warder Stilgiss"].." ("..AL["Rare"]..")"; + }; + ["BRDFineousDarkvire"] = { + Title = AL["Fineous Darkvire"]; + Next_Page = "BRDLordIncendius"; + Next_Title = AL["Lord Incendius"]; + Prev_Page = "BRDVerek"; + Prev_Title = AL["Verek"].." ("..AL["Rare"]..")"; + }; + ["BRDLordIncendius"] = { + Title = AL["Lord Incendius"]; + Next_Page = "BRDBaelGar"; + Next_Title = AL["Bael'Gar"]; + Prev_Page = "BRDFineousDarkvire"; + Prev_Title = AL["Fineous Darkvire"]; + }; + ["BRDBaelGar"] = { + Title = AL["Bael'Gar"]; + Next_Page = "BRDGeneralAngerforge"; + Next_Title = AL["General Angerforge"]; + Prev_Page = "BRDLordIncendius"; + Prev_Title = AL["Lord Incendius"]; + }; + ["BRDGeneralAngerforge"] = { + Title = AL["General Angerforge"]; + Next_Page = "BRDGolemLordArgelmach"; + Next_Title = AL["Golem Lord Argelmach"]; + Prev_Page = "BRDBaelGar"; + Prev_Title = AL["Bael'Gar"]; + }; + ["BRDGolemLordArgelmach"] = { + Title = AL["Golem Lord Argelmach"]; + Next_Page = "BRDGuzzler"; + Next_Title = AL["The Grim Guzzler"]; + Prev_Page = "BRDGeneralAngerforge"; + Prev_Title = AL["General Angerforge"]; + }; + ["BRDGuzzler"] = { + Title = AL["The Grim Guzzler"]; + Next_Page = "BRDFlamelash"; + Next_Title = AL["Ambassador Flamelash"]; + Prev_Page = "BRDGolemLordArgelmach"; + Prev_Title = AL["Golem Lord Argelmach"]; + }; + ["BRDFlamelash"] = { + Title = AL["Ambassador Flamelash"]; + Next_Page = "BRDPanzor"; + Next_Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")"; + Prev_Page = "BRDGuzzler"; + Prev_Title = AL["The Grim Guzzler"]; + }; + ["BRDPanzor"] = { + Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")"; + Next_Page = "BRDTomb"; + Next_Title = AL["Summoner's Tomb"]; + Prev_Page = "BRDFlamelash"; + Prev_Title = AL["Ambassador Flamelash"]; + }; + ["BRDTomb"] = { + Title = AL["Summoner's Tomb"]; + Next_Page = "BRDMagmus"; + Next_Title = AL["Magmus"]; + Prev_Page = "BRDPanzor"; + Prev_Title = AL["Panzor the Invincible"].." ("..AL["Rare"]..")"; + }; + ["BRDMagmus"] = { + Title = AL["Magmus"]; + Next_Page = "BRDPrincess"; + Next_Title = AL["Princess Moira Bronzebeard"]; + Prev_Page = "BRDTomb"; + Prev_Title = AL["Summoner's Tomb"]; + }; + ["BRDPrincess"] = { + Title = AL["Princess Moira Bronzebeard"]; + Next_Page = "BRDEmperorDagranThaurissan"; + Next_Title = AL["Emperor Dagran Thaurissan"]; + Prev_Page = "BRDMagmus"; + Prev_Title = AL["Magmus"]; + }; + ["BRDEmperorDagranThaurissan"] = { + Title = AL["Emperor Dagran Thaurissan"]; + Next_Page = "BRDTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "BRDPrincess"; + Prev_Title = AL["Princess Moira Bronzebeard"]; + }; + ["BRDTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "BRDEmperorDagranThaurissan"; + Prev_Title = AL["Emperor Dagran Thaurissan"]; + }; + ["LBRSSpirestoneButcher"] = { + Title = AL["Spirestone Butcher"].." ("..AL["Rare"]..")"; + Next_Page = "LBRSSpirestoneBattleLord"; + Next_Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")"; + }; + ["LBRSSpirestoneBattleLord"] = { + Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")"; + Next_Page = "LBRSSpirestoneLordMagus"; + Next_Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")"; + Prev_Page = "LBRSSpirestoneButcher"; + Prev_Title = AL["Spirestone Butcher"].." ("..AL["Rare"]..")"; + }; + ["LBRSSpirestoneLordMagus"] = { + Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")"; + Next_Page = "LBRSOmokk"; + Next_Title = AL["Highlord Omokk"]; + Prev_Page = "LBRSSpirestoneBattleLord"; + Prev_Title = AL["Spirestone Battle Lord"].." ("..AL["Rare"]..")"; + }; + ["LBRSOmokk"] = { + Title = AL["Highlord Omokk"]; + Next_Page = "LBRSVosh"; + Next_Title = AL["Shadow Hunter Vosh'gajin"]; + Prev_Page = "LBRSSpirestoneLordMagus"; + Prev_Title = AL["Spirestone Lord Magus"].." ("..AL["Rare"]..")"; + }; + ["LBRSVosh"] = { + Title = AL["Shadow Hunter Vosh'gajin"]; + Next_Page = "LBRSVoone"; + Next_Title = AL["War Master Voone"]; + Prev_Page = "LBRSOmokk"; + Prev_Title = AL["Highlord Omokk"]; + }; + ["LBRSVoone"] = { + Title = AL["War Master Voone"]; + Next_Page = "LBRSFelguard"; + Next_Title = AL["Burning Felguard"].." ("..AL["Rare"]..")"; + Prev_Page = "LBRSVosh"; + Prev_Title = AL["Shadow Hunter Vosh'gajin"]; + }; + ["LBRSFelguard"] = { + Title = AL["Burning Felguard"].." ("..AL["Rare"]..")"; + Next_Page = "LBRSGrayhoof"; + Next_Title = AL["Mor Grayhoof"]; + Prev_Page = "LBRSVoone"; + Prev_Title = AL["War Master Voone"]; + }; + ["LBRSGrayhoof"] = { + Title = AL["Mor Grayhoof"]; + Next_Page = "LBRSGrimaxe"; + Next_Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")"; + Prev_Page = "LBRSFelguard"; + Prev_Title = AL["Burning Felguard"].." ("..AL["Rare"]..")"; + }; + ["LBRSGrimaxe"] = { + Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")"; + Next_Page = "LBRSSmolderweb"; + Next_Title = AL["Mother Smolderweb"]; + Prev_Page = "LBRSGrayhoof"; + Prev_Title = AL["Mor Grayhoof"]; + }; + ["LBRSSmolderweb"] = { + Title = AL["Mother Smolderweb"]; + Next_Page = "LBRSCrystalFang"; + Next_Title = AL["Crystal Fang"].." ("..AL["Rare"]..")"; + Prev_Page = "LBRSGrimaxe"; + Prev_Title = AL["Bannok Grimaxe"].." ("..AL["Rare"]..")"; + }; + ["LBRSCrystalFang"] = { + Title = AL["Crystal Fang"].." ("..AL["Rare"]..")"; + Next_Page = "LBRSDoomhowl"; + Next_Title = AL["Urok Doomhowl"]; + Prev_Page = "LBRSSmolderweb"; + Prev_Title = AL["Mother Smolderweb"]; + }; + ["LBRSDoomhowl"] = { + Title = AL["Urok Doomhowl"]; + Next_Page = "LBRSZigris"; + Next_Title = AL["Quartermaster Zigris"]; + Prev_Page = "LBRSCrystalFang"; + Prev_Title = AL["Crystal Fang"].." ("..AL["Rare"]..")"; + }; + ["LBRSZigris"] = { + Title = AL["Quartermaster Zigris"]; + Next_Page = "LBRSHalycon"; + Next_Title = AL["Halycon"]; + Prev_Page = "LBRSDoomhowl"; + Prev_Title = AL["Urok Doomhowl"]; + }; + ["LBRSHalycon"] = { + Title = AL["Halycon"]; + Next_Page = "LBRSSlavener"; + Next_Title = AL["Gizrul the Slavener"]; + Prev_Page = "LBRSZigris"; + Prev_Title = AL["Quartermaster Zigris"]; + }; + ["LBRSSlavener"] = { + Title = AL["Gizrul the Slavener"]; + Next_Page = "LBRSBashguud"; + Next_Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")"; + Prev_Page = "LBRSHalycon"; + Prev_Title = AL["Halycon"]; + }; + ["LBRSBashguud"] = { + Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")"; + Next_Page = "LBRSWyrmthalak"; + Next_Title = AL["Overlord Wyrmthalak"]; + Prev_Page = "LBRSSlavener"; + Prev_Title = AL["Gizrul the Slavener"]; + }; + ["LBRSWyrmthalak"] = { + Title = AL["Overlord Wyrmthalak"]; + Next_Page = "LBRSTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "LBRSBashguud"; + Prev_Title = AL["Ghok Bashguud"].." ("..AL["Rare"]..")"; + }; + ["LBRSTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "LBRSWyrmthalak"; + Prev_Title = AL["Overlord Wyrmthalak"]; + }; + ["UBRSEmberseer"] = { + Title = AL["Pyroguard Emberseer"]; + Next_Page = "UBRSSolakar"; + Next_Title = AL["Solakar Flamewreath"]; + }; + ["UBRSSolakar"] = { + Title = AL["Solakar Flamewreath"]; + Next_Page = "UBRSFlame"; + Next_Title = AL["Father Flame"]; + Prev_Page = "UBRSEmberseer"; + Prev_Title = AL["Pyroguard Emberseer"]; + }; + ["UBRSFlame"] = { + Title = AL["Father Flame"]; + Next_Page = "UBRSRunewatcher"; + Next_Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")"; + Prev_Page = "UBRSSolakar"; + Prev_Title = AL["Solakar Flamewreath"]; + }; + ["UBRSRunewatcher"] = { + Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")"; + Next_Page = "UBRSAnvilcrack"; + Next_Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")"; + Prev_Page = "UBRSFlame"; + Prev_Title = AL["Father Flame"]; + }; + ["UBRSAnvilcrack"] = { + Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")"; + Next_Page = "UBRSRend"; + Next_Title = AL["Warchief Rend Blackhand"]; + Prev_Page = "UBRSRunewatcher"; + Prev_Title = AL["Jed Runewatcher"].." ("..AL["Rare"]..")"; + }; + ["UBRSRend"] = { + Title = AL["Warchief Rend Blackhand"]; + Next_Page = "UBRSGyth"; + Next_Title = AL["Gyth"]; + Prev_Page = "UBRSAnvilcrack"; + Prev_Title = AL["Goraluk Anvilcrack"].." ("..AL["Rare"]..")"; + }; + ["UBRSGyth"] = { + Title = AL["Gyth"]; + Next_Page = "UBRSBeast"; + Next_Title = AL["The Beast"]; + Prev_Page = "UBRSRend"; + Prev_Title = AL["Warchief Rend Blackhand"]; + }; + ["UBRSBeast"] = { + Title = AL["The Beast"]; + Next_Page = "UBRSValthalak"; + Next_Title = AL["Lord Valthalak"]; + Prev_Page = "UBRSGyth"; + Prev_Title = AL["Gyth"]; + }; + ["UBRSValthalak"] = { + Title = AL["Lord Valthalak"]; + Next_Page = "UBRSDrakkisath"; + Next_Title = AL["General Drakkisath"]; + Prev_Page = "UBRSBeast"; + Prev_Title = AL["The Beast"]; + }; + ["UBRSDrakkisath"] = { + Title = AL["General Drakkisath"]; + Next_Page = "UBRSTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "UBRSValthalak"; + Prev_Title = AL["Lord Valthalak"]; + }; + ["UBRSTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "UBRSDrakkisath"; + Prev_Title = AL["General Drakkisath"]; + }; + ["KCMarrowspike"] = { + Title = AL["Marrowspike"]; + Next_Page = "KCHivaxxis"; + Next_Title = AL["Hivaxxis"]; + }; + ["KCHivaxxis"] = { + Title = AL["Hivaxxis"]; + Next_Page = "KCCorpsemuncher"; + Next_Title = AL["Corpsemuncher"]; + Prev_Page = "KCMarrowspike"; + Prev_Title = AL["Marrowspike"]; + }; + ["KCCorpsemuncher"] = { + Title = AL["Corpsemuncher"]; + Next_Page = "KCGuardCaptainGort"; + Next_Title = AL["Guard Captain Gort"]; + Prev_Page = "KCHivaxxis"; + Prev_Title = AL["Hivaxxis"]; + }; + ["KCGuardCaptainGort"] = { + Title = AL["Guard Captain Gort"]; + Next_Page = "KCArchlichEnkhraz"; + Next_Title = AL["Archlich Enkhraz"]; + Prev_Page = "KCCorpsemuncher"; + Prev_Title = AL["Corpsemuncher"]; + }; + ["KCArchlichEnkhraz"] = { + Title = AL["Archlich Enkhraz"]; + Next_Page = "KCCommanderAnderson"; + Next_Title = AL["Commander Anderson"]; + Prev_Page = "KCGuardCaptainGort"; + Prev_Title = AL["Guard Captain Gort"]; + }; + ["KCCommanderAnderson"] = { + Title = AL["Commander Anderson"]; + Next_Page = "KCAlarus"; + Next_Title = AL["Alarus"]; + Prev_Page = "KCArchlichEnkhraz"; + Prev_Title = AL["Archlich Enkhraz"]; + }; + ["KCAlarus"] = { + Title = AL["Alarus"]; + Next_Page = "KCTreasure"; + Next_Title = AL["Half-Buried Treasure Chest"]; + Prev_Page = "KCCommanderAnderson"; + Prev_Title = AL["Commander Anderson"]; + }; ["KCTreasure"] = { Title = AL["Half-Buried Treasure Chest"]; - Prev_Page = "KCAlarus"; - Prev_Title = AL["Alarus"]; + Prev_Page = "KCAlarus"; + Prev_Title = AL["Alarus"]; + Next_Page = "KCTrash"; + Next_Title = AL["Trash Mobs"]; }; - ["COTBMChronar"] = { - Title = AL["Chronar"]; - Next_Page = "COTBMHarbingerAphygth"; - Next_Title = AL["Harbinger Aph'ygth"]; - }; - ["COTBMHarbingerAphygth"] = { - Title = AL["Harbinger Aph'ygth"]; - Next_Page = "COTBMTimeLordEpochronos"; - Next_Title = AL["Time-Lord Epochronos"]; - Prev_Page = "COTBMChronar"; - Prev_Title = AL["Chronar"]; - }; - ["COTBMTimeLordEpochronos"] = { - Title = AL["Time-Lord Epochronos"]; - Next_Page = "COTBMAntnormi"; - Next_Title = AL["Antnormi"]; - Prev_Page = "COTBMHarbingerAphygth"; - Prev_Title = AL["Harbinger Aph'ygth"]; - }; - ["COTBMAntnormi"] = { - Title = AL["Antnormi"]; - Next_Page = "COTBMInfiniteChromie"; - Next_Title = AL["Infinite Chromie"]; - Prev_Page = "COTBMTimeLordEpochronos"; - Prev_Title = AL["Time-Lord Epochronos"]; - }; - ["COTBMInfiniteChromie"] = { - Title = AL["Infinite Chromie"]; - Prev_Page = "COTBMAntnormi"; - Prev_Title = AL["Antnormi"]; - }; - ["SWVAszoshGrimflame"] = { - Title = AL["Aszosh Grimflame"]; - Next_Page = "SWVThamGrarr"; - Next_Title = AL["Tham'Grarr"]; - }; - ["SWVThamGrarr"] = { - Title = AL["Tham'Grarr"]; - Next_Page = "SWVBlackBride"; - Next_Title = AL["Black Bride"]; - Prev_Page = "SWVAszoshGrimflame"; - Prev_Title = AL["Aszosh Grimflame"]; - }; - ["SWVBlackBride"] = { - Title = AL["Black Bride"]; - Next_Page = "SWVDamian"; - Next_Title = AL["Damian"]; - Prev_Page = "SWVThamGrarr"; - Prev_Title = AL["Tham'Grarr"]; - }; - ["SWVDamian"] = { - Title = AL["Damian"]; - Next_Page = "SWVVolkanCruelblade"; - Next_Title = AL["Volkan Cruelblade"]; - Prev_Page = "SWVBlackBride"; - Prev_Title = AL["Black Bride"]; - }; - ["SWVVolkanCruelblade"] = { - Title = AL["Volkan Cruelblade"]; - Next_Page = "SWVArctiras"; - Next_Title = AL["Arc'tiras"]; - Prev_Page = "SWVDamian"; - Prev_Title = AL["Damian"]; - }; - ["SWVArctiras"] = { - Title = AL["Arc'tiras"]; - Next_Page = "SWVVaultArmoryEquipment"; - Next_Title = AL["Vault Armory Equipment"]; - Prev_Page = "SWVVolkanCruelblade"; - Prev_Title = AL["Volkan Cruelblade"]; - }; - ["SWVVaultArmoryEquipment"] = { - Title = AL["Vault Armory Equipment"]; - Prev_Page = "SWVArctiras"; - Prev_Title = AL["Arc'tiras"]; - }; - ["BWLRazorgore"] = { - Title = AL["Razorgore the Untamed"]; - Next_Page = "BWLVaelastrasz"; - Next_Title = AL["Vaelastrasz the Corrupt"]; - }; - ["BWLVaelastrasz"] = { - Title = AL["Vaelastrasz the Corrupt"]; - Next_Page = "BWLLashlayer"; - Next_Title = AL["Broodlord Lashlayer"]; - Prev_Page = "BWLRazorgore"; - Prev_Title = AL["Razorgore the Untamed"]; - }; - ["BWLLashlayer"] = { - Title = AL["Broodlord Lashlayer"]; - Next_Page = "BWLFiremaw"; - Next_Title = AL["Firemaw"]; - Prev_Page = "BWLVaelastrasz"; - Prev_Title = AL["Vaelastrasz the Corrupt"]; - }; - ["BWLFiremaw"] = { - Title = AL["Firemaw"]; - Next_Page = "BWLEbonroc"; - Next_Title = AL["Ebonroc"]; - Prev_Page = "BWLLashlayer"; - Prev_Title = AL["Broodlord Lashlayer"]; - }; - ["BWLEbonroc"] = { - Title = AL["Ebonroc"]; - Next_Page = "BWLFlamegor"; - Next_Title = AL["Flamegor"]; - Prev_Page = "BWLFiremaw"; - Prev_Title = AL["Firemaw"]; - }; - ["BWLFlamegor"] = { - Title = AL["Flamegor"]; - Next_Page = "BWLChromaggus"; - Next_Title = AL["Chromaggus"]; - Prev_Page = "BWLEbonroc"; - Prev_Title = AL["Ebonroc"]; - }; - ["BWLChromaggus"] = { - Title = AL["Chromaggus"]; - Next_Page = "BWLNefarian"; - Next_Title = AL["Nefarian"]; - Prev_Page = "BWLFlamegor"; - Prev_Title = AL["Flamegor"]; - }; - ["BWLNefarian"] = { - Title = AL["Nefarian"]; - Next_Page = "BWLTrashMobs"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "BWLChromaggus"; - Prev_Title = AL["Chromaggus"]; - }; - ["BWLTrashMobs"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "BWLNefarian"; - Prev_Title = AL["Nefarian"]; - }; - ["DMRhahkZor"] = { - Title = AL["Rhahk'Zor"]; - Next_Page = "DMMinerJohnson"; - Next_Title = AL["Miner Johnson"].." ("..AL["Rare"]..")"; - }; - ["DMMinerJohnson"] = { - Title = AL["Miner Johnson"].." ("..AL["Rare"]..")"; - Next_Page = "DMSneed"; - Next_Title = AL["Sneed"]; - Prev_Page = "DMRhahkZor"; - Prev_Title = AL["Rhahk'Zor"]; - }; - ["DMSneed"] = { - Title = AL["Sneed"]; - Next_Page = "DMSneedsShredder"; - Next_Title = AL["Sneed's Shredder"]; - Prev_Page = "DMMinerJohnson"; - Prev_Title = AL["Miner Johnson"].." ("..AL["Rare"]..")"; - }; - ["DMSneedsShredder"] = { - Title = AL["Sneed's Shredder"]; - Next_Page = "DMGilnid"; - Next_Title = AL["Gilnid"]; - Prev_Page = "DMSneed"; - Prev_Title = AL["Sneed"]; - }; - ["DMGilnid"] = { - Title = AL["Gilnid"]; - Next_Page = "DMMrSmite"; - Next_Title = AL["Mr. Smite"]; - Prev_Page = "DMSneedsShredder"; - Prev_Title = AL["Sneed's Shredder"]; - }; - ["DMMrSmite"] = { - Title = AL["Mr. Smite"]; - Next_Page = "DMCookie"; - Next_Title = AL["Cookie"]; - Prev_Page = "DMGilnid"; - Prev_Title = AL["Gilnid"]; - }; - ["DMCookie"] = { - Title = AL["Cookie"]; - Next_Page = "DMCaptainGreenskin"; - Next_Title = AL["Captain Greenskin"]; - Prev_Page = "DMMrSmite"; - Prev_Title = AL["Mr. Smite"]; - }; - ["DMCaptainGreenskin"] = { - Title = AL["Captain Greenskin"]; - Next_Page = "DMVanCleef"; - Next_Title = AL["Edwin VanCleef"]; - Prev_Page = "DMCookie"; - Prev_Title = AL["Cookie"]; - }; - ["DMVanCleef"] = { - Title = AL["Edwin VanCleef"]; - Next_Page = "DMTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "DMCaptainGreenskin"; - Prev_Title = AL["Captain Greenskin"]; - }; - ["DMTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "DMVanCleef"; - Prev_Title = AL["Edwin VanCleef"]; - }; - ["TCGGrovetenderEngryss"] = { - Title = AL["Grovetender Engryss"]; - Next_Page = "TCGKeeperRanathos"; - Next_Title = AL["Keeper Ranathos"]; - }; - ["TCGKeeperRanathos"] = { - Title = AL["Keeper Ranathos"]; - Next_Page = "TCGHighPriestessAlathea"; - Next_Title = AL["High Priestess A'lathea"]; - Prev_Page = "TCGGrovetenderEngryss"; - Prev_Title = AL["Grovetender Engryss"]; - }; - ["TCGHighPriestessAlathea"] = { - Title = AL["High Priestess A'lathea"]; - Next_Page = "TCGFenektistheDeceiver"; - Next_Title = AL["Fenektis the Deceiver"]; - Prev_Page = "TCGKeeperRanathos"; - Prev_Title = AL["Keeper Ranathos"]; - }; - ["TCGFenektistheDeceiver"] = { - Title = AL["Fenektis the Deceiver"]; - Next_Page = "TCGMasterRaxxieth"; - Next_Title = AL["Master Raxxieth"]; - Prev_Page = "TCGHighPriestessAlathea"; - Prev_Title = AL["High Priestess A'lathea"]; - }; - ["TCGMasterRaxxieth"] = { - Title = AL["Master Raxxieth"]; - Next_Page = "TCGTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "TCGFenektistheDeceiver"; - Prev_Title = AL["Fenektis the Deceiver"]; - }; - ["TCGTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "TCGMasterRaxxieth"; - Prev_Title = AL["Master Raxxieth"]; - }; - ["GnGrubbis"] = { - Title = AL["Grubbis"]; - Next_Page = "GnViscousFallout"; - Next_Title = AL["Viscous Fallout"]; - }; - ["GnViscousFallout"] = { - Title = AL["Viscous Fallout"]; - Next_Page = "GnElectrocutioner6000"; - Next_Title = AL["Electrocutioner 6000"]; - Prev_Page = "GnGrubbis"; - Prev_Title = AL["Grubbis"]; - }; - ["GnElectrocutioner6000"] = { - Title = AL["Electrocutioner 6000"]; - Next_Page = "GnCrowdPummeler960"; - Next_Title = AL["Crowd Pummeler 9-60"]; - Prev_Page = "GnViscousFallout"; - Prev_Title = AL["Viscous Fallout"]; - }; - ["GnCrowdPummeler960"] = { - Title = AL["Crowd Pummeler 9-60"]; - Next_Page = "GnDIAmbassador"; - Next_Title = AL["Dark Iron Ambassador"]; - Prev_Page = "GnElectrocutioner6000"; - Prev_Title = AL["Electrocutioner 6000"]; - }; - ["GnDIAmbassador"] = { - Title = AL["Dark Iron Ambassador"]; - Next_Page = "GnMekgineerThermaplugg"; - Next_Title = AL["Mekgineer Thermaplugg"]; - Prev_Page = "GnCrowdPummeler960"; - Prev_Title = AL["Crowd Pummeler 9-60"]; - }; - ["GnMekgineerThermaplugg"] = { - Title = AL["Mekgineer Thermaplugg"]; - Next_Page = "GnTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "GnDIAmbassador"; - Prev_Title = AL["Dark Iron Ambassador"]; - }; - ["GnTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "GnMekgineerThermaplugg"; - Prev_Title = AL["Mekgineer Thermaplugg"]; - }; - ["MCLucifron"] = { - Title = AL["Lucifron"]; - Next_Page = "MCMagmadar"; - Next_Title = AL["Magmadar"]; - }; - ["MCMagmadar"] = { - Title = AL["Magmadar"]; - Next_Page = "MCGehennas"; - Next_Title = AL["Gehennas"]; - Prev_Page = "MCLucifron"; - Prev_Title = AL["Lucifron"]; - }; - ["MCGehennas"] = { - Title = AL["Gehennas"]; - Next_Page = "MCGarr"; - Next_Title = AL["Garr"]; - Prev_Page = "MCMagmadar"; - Prev_Title = AL["Magmadar"]; - }; - ["MCGarr"] = { - Title = AL["Garr"]; - Next_Page = "MCShazzrah"; - Next_Title = AL["Shazzrah"]; - Prev_Page = "MCGehennas"; - Prev_Title = AL["Gehennas"]; - }; - ["MCShazzrah"] = { - Title = AL["Shazzrah"]; - Next_Page = "MCGeddon"; - Next_Title = AL["Baron Geddon"]; - Prev_Page = "MCGarr"; - Prev_Title = AL["Garr"]; - }; - ["MCGeddon"] = { - Title = AL["Baron Geddon"]; - Next_Page = "MCGolemagg"; - Next_Title = AL["Golemagg the Incinerator"]; - Prev_Page = "MCShazzrah"; - Prev_Title = AL["Shazzrah"]; - }; - ["MCGolemagg"] = { - Title = AL["Golemagg the Incinerator"]; - Next_Page = "MCSulfuron"; - Next_Title = AL["Sulfuron Harbinger"]; - Prev_Page = "MCGeddon"; - Prev_Title = AL["Baron Geddon"]; - }; - ["MCSulfuron"] = { - Title = AL["Sulfuron Harbinger"]; - Next_Page = "MCMajordomo"; - Next_Title = AL["Majordomo Executus"]; - Prev_Page = "MCGolemagg"; - Prev_Title = AL["Golemagg the Incinerator"]; - }; - ["MCMajordomo"] = { - Title = AL["Majordomo Executus"]; - Next_Page = "MCRagnaros"; - Next_Title = AL["Ragnaros"]; - Prev_Page = "MCSulfuron"; - Prev_Title = AL["Sulfuron Harbinger"]; - }; - ["MCRagnaros"] = { - Title = AL["Ragnaros"]; - Next_Page = "MCTrashMobs"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "MCMajordomo"; - Prev_Title = AL["Majordomo Executus"]; - }; - ["MCTrashMobs"] = { - Title = AL["Trash Mobs"]; - Next_Page = "MCRANDOMBOSSDROPS"; - Next_Title = AL["Random Boss Loot"]; - Prev_Page = "MCRagnaros"; - Prev_Title = AL["Ragnaros"]; - }; - ["MCRANDOMBOSSDROPS"] = { - Title = AL["Random Boss Loot"]; - Prev_Page = "MCTrashMobs"; - Prev_Title = AL["Trash Mobs"]; - }; - ["NAXPatchwerk"] = { - Title = AL["Patchwerk"]; - Next_Page = "NAXGrobbulus"; - Next_Title = AL["Grobbulus"]; - }; - ["NAXGrobbulus"] = { - Title = AL["Grobbulus"]; - Next_Page = "NAXGluth"; - Next_Title = AL["Gluth"]; - Prev_Page = "NAXPatchwerk"; - Prev_Title = AL["Patchwerk"]; - }; - ["NAXGluth"] = { - Title = AL["Gluth"]; - Next_Page = "NAXThaddius"; - Next_Title = AL["Thaddius"]; - Prev_Page = "NAXGrobbulus"; - Prev_Title = AL["Grobbulus"]; - }; - ["NAXThaddius"] = { - Title = AL["Thaddius"]; - Next_Page = "NAXAnubRekhan"; - Next_Title = AL["Anub'Rekhan"]; - Prev_Page = "NAXGluth"; - Prev_Title = AL["Gluth"]; - }; - ["NAXAnubRekhan"] = { - Title = AL["Anub'Rekhan"]; - Next_Page = "NAXGrandWidowFaerlina"; - Next_Title = AL["Grand Widow Faerlina"]; - Prev_Page = "NAXThaddius"; - Prev_Title = AL["Thaddius"]; - }; - ["NAXGrandWidowFaerlina"] = { - Title = AL["Grand Widow Faerlina"]; - Next_Page = "NAXMaexxna"; - Next_Title = AL["Maexxna"]; - Prev_Page = "NAXAnubRekhan"; - Prev_Title = AL["Anub'Rekhan"]; - }; - ["NAXMaexxna"] = { - Title = AL["Maexxna"]; - Next_Page = "NAXNoththePlaguebringer"; - Next_Title = AL["Noth the Plaguebringer"]; - Prev_Page = "NAXGrandWidowFaerlina"; - Prev_Title = AL["Grand Widow Faerlina"]; - }; - ["NAXNoththePlaguebringer"] = { - Title = AL["Noth the Plaguebringer"]; - Next_Page = "NAXHeigantheUnclean"; - Next_Title = AL["Heigan the Unclean"]; - Prev_Page = "NAXMaexxna"; - Prev_Title = AL["Maexxna"]; - }; - ["NAXHeigantheUnclean"] = { - Title = AL["Heigan the Unclean"]; - Next_Page = "NAXLoatheb"; - Next_Title = AL["Loatheb"]; - Prev_Page = "NAXNoththePlaguebringer"; - Prev_Title = AL["Noth the Plaguebringer"]; - }; - ["NAXLoatheb"] = { - Title = AL["Loatheb"]; - Next_Page = "NAXInstructorRazuvious"; - Next_Title = AL["Instructor Razuvious"]; - Prev_Page = "NAXHeigantheUnclean"; - Prev_Title = AL["Heigan the Unclean"]; - }; - ["NAXInstructorRazuvious"] = { - Title = AL["Instructor Razuvious"]; - Next_Page = "NAXGothiktheHarvester"; - Next_Title = AL["Gothik the Harvester"]; - Prev_Page = "NAXLoatheb"; - Prev_Title = AL["Loatheb"]; - }; - ["NAXGothiktheHarvester"] = { - Title = AL["Gothik the Harvester"]; - Next_Page = "NAXTheFourHorsemen"; - Next_Title = AL["The Four Horsemen"]; - Prev_Page = "NAXInstructorRazuvious"; - Prev_Title = AL["Instructor Razuvious"]; - }; - ["NAXTheFourHorsemen"] = { - Title = AL["The Four Horsemen"]; - Next_Page = "NAXSapphiron"; - Next_Title = AL["Sapphiron"]; - Prev_Page = "NAXGothiktheHarvester"; - Prev_Title = AL["Gothik the Harvester"]; - }; - ["NAXSapphiron"] = { - Title = AL["Sapphiron"]; - Next_Page = "NAXKelThuzard"; - Next_Title = AL["Kel'Thuzad"]; - Prev_Page = "NAXTheFourHorsemen"; - Prev_Title = AL["The Four Horsemen"]; - }; - ["NAXKelThuzard"] = { - Title = AL["Kel'Thuzad"]; - Next_Page = "NAXTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "NAXSapphiron"; - Prev_Title = AL["Sapphiron"]; - }; - ["NAXTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "NAXKelThuzard"; - Prev_Title = AL["Kel'Thuzad"]; - }; - ["SMVishas"] = { - Title = AL["Interrogator Vishas"]; - Next_Page = "SMScorn"; - Next_Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")"; - }; - ["SMScorn"] = { - Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")"; - Next_Page = "SMIronspine"; - Next_Title = AL["Ironspine"].." ("..AL["Rare"]..")"; - Prev_Page = "SMVishas"; - Prev_Title = AL["Interrogator Vishas"]; - }; - ["SMIronspine"] = { - Title = AL["Ironspine"].." ("..AL["Rare"]..")"; - Next_Page = "SMAzshir"; - Next_Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")"; - Prev_Page = "SMScorn"; - Prev_Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")"; - }; - ["SMAzshir"] = { - Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")"; - Next_Page = "SMFallenChampion"; - Next_Title = AL["Fallen Champion"].." ("..AL["Rare"]..")"; - Prev_Page = "SMIronspine"; - Prev_Title = AL["Ironspine"].." ("..AL["Rare"]..")"; - }; - ["SMFallenChampion"] = { - Title = AL["Fallen Champion"].." ("..AL["Rare"]..")"; - Next_Page = "SMBloodmageThalnos"; - Next_Title = AL["Bloodmage Thalnos"]; - Prev_Page = "SMAzshir"; - Prev_Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")"; - }; - ["SMBloodmageThalnos"] = { - Title = AL["Bloodmage Thalnos"]; - Next_Page = "SMGTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "SMFallenChampion"; - Prev_Title = AL["Fallen Champion"].." ("..AL["Rare"]..")"; - }; - ["SMGTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "SMBloodmageThalnos"; - Prev_Title = AL["Bloodmage Thalnos"]; - }; - ["SMHoundmasterLoksey"] = { - Title = AL["Houndmaster Loksey"]; - Next_Page = "SMDoan"; - Next_Title = AL["Arcanist Doan"]; - }; - ["SMDoan"] = { - Title = AL["Arcanist Doan"]; - Next_Page = "SMLTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "SMHoundmasterLoksey"; - Prev_Title = AL["Houndmaster Loksey"]; - }; - ["SMLTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "SMDoan"; - Prev_Title = AL["Arcanist Doan"]; - }; - ["SMHerod"] = { - Title = AL["Herod"]; - Next_Page = "SMATrash"; - Next_Title = AL["Trash Mobs"]; - }; - ["SMATrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "SMHerod"; - Prev_Title = AL["Herod"]; - }; - ["SMFairbanks"] = { - Title = AL["High Inquisitor Fairbanks"]; - Next_Page = "SMMograine"; - Next_Title = AL["Scarlet Commander Mograine"]; - }; - ["SMMograine"] = { - Title = AL["Scarlet Commander Mograine"]; - Next_Page = "SMWhitemane"; - Next_Title = AL["High Inquisitor Whitemane"]; - Prev_Page = "SMFairbanks"; - Prev_Title = AL["High Inquisitor Fairbanks"]; - }; - ["SMWhitemane"] = { - Title = AL["High Inquisitor Whitemane"]; - Next_Page = "SMCTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "SMMograine"; - Prev_Title = AL["Scarlet Commander Mograine"]; - }; - ["SMCTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "SMWhitemane"; - Prev_Title = AL["High Inquisitor Whitemane"]; - }; - ["SCHOLOBlood"] = { - Title = AL["Blood Steward of Kirtonos"]; - Next_Page = "SCHOLOKirtonostheHerald"; - Next_Title = AL["Kirtonos the Herald"]; - }; - ["SCHOLOKirtonostheHerald"] = { - Title = AL["Kirtonos the Herald"]; - Next_Page = "SCHOLOJandiceBarov"; - Next_Title = AL["Jandice Barov"]; - Prev_Page = "SCHOLOBlood"; - Prev_Title = AL["Blood Steward of Kirtonos"]; - }; - ["SCHOLOJandiceBarov"] = { - Title = AL["Jandice Barov"]; - Next_Page = "SCHOLOLordBlackwood"; - Next_Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")"; - Prev_Page = "SCHOLOKirtonostheHerald"; - Prev_Title = AL["Kirtonos the Herald"]; - }; - ["SCHOLOLordBlackwood"] = { - Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")"; - Next_Page = "SCHOLORattlegore"; - Next_Title = AL["Rattlegore"]; - Prev_Page = "SCHOLOJandiceBarov"; - Prev_Title = AL["Jandice Barov"]; - }; - ["SCHOLORattlegore"] = { - Title = AL["Rattlegore"]; - Next_Page = "SCHOLODeathKnight"; - Next_Title = AL["Death Knight Darkreaver"]; - Prev_Page = "SCHOLOLordBlackwood"; - Prev_Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")"; - }; - ["SCHOLODeathKnight"] = { - Title = AL["Death Knight Darkreaver"]; - Next_Page = "SCHOLOMarduk"; - Next_Title = AL["Marduk Blackpool"]; - Prev_Page = "SCHOLORattlegore"; - Prev_Title = AL["Rattlegore"]; - }; - ["SCHOLOMarduk"] = { - Title = AL["Marduk Blackpool"]; - Next_Page = "SCHOLOVectus"; - Next_Title = AL["Vectus"]; - Prev_Page = "SCHOLODeathKnight"; - Prev_Title = AL["Death Knight Darkreaver"]; - }; - ["SCHOLOVectus"] = { - Title = AL["Vectus"]; - Next_Page = "SCHOLORasFrostwhisper"; - Next_Title = AL["Ras Frostwhisper"]; - Prev_Page = "SCHOLOMarduk"; - Prev_Title = AL["Marduk Blackpool"]; - }; - ["SCHOLORasFrostwhisper"] = { - Title = AL["Ras Frostwhisper"]; - Next_Page = "SCHOLOKormok"; - Next_Title = AL["Kormok"]; - Prev_Page = "SCHOLOVectus"; - Prev_Title = AL["Vectus"]; - }; - ["SCHOLOKormok"] = { - Title = AL["Kormok"]; - Next_Page = "SCHOLOInstructorMalicia"; - Next_Title = AL["Instructor Malicia"]; - Prev_Page = "SCHOLORasFrostwhisper"; - Prev_Title = AL["Ras Frostwhisper"]; - }; - ["SCHOLOInstructorMalicia"] = { - Title = AL["Instructor Malicia"]; - Next_Page = "SCHOLODoctorTheolenKrastinov"; - Next_Title = AL["Doctor Theolen Krastinov"]; - Prev_Page = "SCHOLOKormok"; - Prev_Title = AL["Kormok"]; - }; - ["SCHOLODoctorTheolenKrastinov"] = { - Title = AL["Doctor Theolen Krastinov"]; - Next_Page = "SCHOLOLorekeeperPolkelt"; - Next_Title = AL["Lorekeeper Polkelt"]; - Prev_Page = "SCHOLOInstructorMalicia"; - Prev_Title = AL["Instructor Malicia"]; - }; - ["SCHOLOLorekeeperPolkelt"] = { - Title = AL["Lorekeeper Polkelt"]; - Next_Page = "SCHOLOTheRavenian"; - Next_Title = AL["The Ravenian"]; - Prev_Page = "SCHOLODoctorTheolenKrastinov"; - Prev_Title = AL["Doctor Theolen Krastinov"]; - }; - ["SCHOLOTheRavenian"] = { - Title = AL["The Ravenian"]; - Next_Page = "SCHOLOLordAlexeiBarov"; - Next_Title = AL["Lord Alexei Barov"]; - Prev_Page = "SCHOLOLorekeeperPolkelt"; - Prev_Title = AL["Lorekeeper Polkelt"]; - }; - ["SCHOLOLordAlexeiBarov"] = { - Title = AL["Lord Alexei Barov"]; - Next_Page = "SCHOLOLadyIlluciaBarov"; - Next_Title = AL["Lady Illucia Barov"]; - Prev_Page = "SCHOLOTheRavenian"; - Prev_Title = AL["The Ravenian"]; - }; - ["SCHOLOLadyIlluciaBarov"] = { - Title = AL["Lady Illucia Barov"]; - Next_Page = "SCHOLODarkmasterGandling"; - Next_Title = AL["Darkmaster Gandling"]; - Prev_Page = "SCHOLOLordAlexeiBarov"; - Prev_Title = AL["Lord Alexei Barov"]; - }; - ["SCHOLODarkmasterGandling"] = { - Title = AL["Darkmaster Gandling"]; - Next_Page = "SCHOLOTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "SCHOLOLadyIlluciaBarov"; - Prev_Title = AL["Lady Illucia Barov"]; - }; - ["SCHOLOTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "SCHOLODarkmasterGandling"; - Prev_Title = AL["Darkmaster Gandling"]; - }; - ["SFKRethilgore"] = { - Title = AL["Rethilgore"]; - Next_Page = "SFKFelSteed"; - Next_Title = AL["Fel Steed"]; - }; - ["SFKFelSteed"] = { - Title = AL["Fel Steed"]; - Next_Page = "SFKRazorclawtheButcher"; - Next_Title = AL["Razorclaw the Butcher"]; - Prev_Page = "SFKRethilgore"; - Prev_Title = AL["Rethilgore"]; - }; - ["SFKRazorclawtheButcher"] = { - Title = AL["Razorclaw the Butcher"]; - Next_Page = "SFKSilverlaine"; - Next_Title = AL["Baron Silverlaine"]; - Prev_Page = "SFKFelSteed"; - Prev_Title = AL["Fel Steed"]; - }; - ["SFKSilverlaine"] = { - Title = AL["Baron Silverlaine"]; - Next_Page = "SFKSpringvale"; - Next_Title = AL["Commander Springvale"]; - Prev_Page = "SFKRazorclawtheButcher"; - Prev_Title = AL["Razorclaw the Butcher"]; - }; - ["SFKSpringvale"] = { - Title = AL["Commander Springvale"]; - Next_Page = "SFKSever"; - Next_Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")"; - Prev_Page = "SFKSilverlaine"; - Prev_Title = AL["Baron Silverlaine"]; - }; - ["SFKSever"] = { - Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")"; - Next_Page = "SFKOdotheBlindwatcher"; - Next_Title = AL["Odo the Blindwatcher"]; - Prev_Page = "SFKSpringvale"; - Prev_Title = AL["Commander Springvale"]; - }; - ["SFKOdotheBlindwatcher"] = { - Title = AL["Odo the Blindwatcher"]; - Next_Page = "SFKDeathswornCaptain"; - Next_Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")"; - Prev_Page = "SFKSever"; - Prev_Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")"; - }; - ["SFKDeathswornCaptain"] = { - Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")"; - Next_Page = "SFKFenrustheDevourer"; - Next_Title = AL["Fenrus the Devourer"]; - Prev_Page = "SFKOdotheBlindwatcher"; - Prev_Title = AL["Odo the Blindwatcher"]; - }; - ["SFKFenrustheDevourer"] = { - Title = AL["Fenrus the Devourer"]; - Next_Page = "SFKArugalsVoidwalker"; - Next_Title = AL["Arugal's Voidwalker"]; - Prev_Page = "SFKDeathswornCaptain"; - Prev_Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")"; - }; - ["SFKArugalsVoidwalker"] = { - Title = AL["Arugal's Voidwalker"]; - Next_Page = "SFKWolfMasterNandos"; - Next_Title = AL["Wolf Master Nandos"]; - Prev_Page = "SFKFenrustheDevourer"; - Prev_Title = AL["Fenrus the Devourer"]; - }; - ["SFKWolfMasterNandos"] = { - Title = AL["Wolf Master Nandos"]; - Next_Page = "SFKArchmageArugal"; - Next_Title = AL["Archmage Arugal"]; - Prev_Page = "SFKArugalsVoidwalker"; - Prev_Title = AL["Arugal's Voidwalker"]; - }; - ["SFKArchmageArugal"] = { - Title = AL["Archmage Arugal"]; - Next_Page = "SFKTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "SFKWolfMasterNandos"; - Prev_Title = AL["Wolf Master Nandos"]; - }; - ["SFKTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "SFKArchmageArugal"; - Prev_Title = AL["Archmage Arugal"]; - }; - ["SWStTargorr"] = { - Title = AL["Targorr the Dread"]; - Next_Page = "SWStKamDeepfury"; - Next_Title = AL["Kam Deepfury"]; - }; - ["SWStKamDeepfury"] = { - Title = AL["Kam Deepfury"]; - Next_Page = "SWStHamhock"; - Next_Title = AL["Hamhock"]; - Prev_Page = "SWStTargorr"; - Prev_Title = AL["Targorr the Dread"]; - }; - ["SWStHamhock"] = { - Title = AL["Hamhock"]; - Next_Page = "SWStDextren"; - Next_Title = AL["Dextren Ward"]; - Prev_Page = "SWStKamDeepfury"; - Prev_Title = AL["Kam Deepfury"]; - }; - ["SWStDextren"] = { - Title = AL["Dextren Ward"]; - Next_Page = "SWStBazil"; - Next_Title = AL["Bazil Thredd"]; - Prev_Page = "SWStHamhock"; - Prev_Title = AL["Hamhock"]; - }; - ["SWStBazil"] = { - Title = AL["Bazil Thredd"]; - Next_Page = "SWStBruegalIronknuckle"; - Next_Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")"; - Prev_Page = "SWStDextren"; - Prev_Title = AL["Dextren Ward"]; - }; - ["SWStBruegalIronknuckle"] = { - Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")"; - Next_Page = "SWStTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "SWStBazil"; - Prev_Title = AL["Bazil Thredd"]; - }; - ["SWStTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "SWStBruegalIronknuckle"; - Prev_Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")"; - }; - ["STRATSkull"] = { - Title = AL["Skul"].." ("..AL["Rare"]..")"; - Next_Page = "STRATStratholmeCourier"; - Next_Title = AL["Stratholme Courier"]; - }; - ["STRATStratholmeCourier"] = { - Title = AL["Stratholme Courier"]; - Next_Page = "STRATPostmaster"; - Next_Title = AL["Postmaster Malown"]; - Prev_Page = "STRATSkull"; - Prev_Title = AL["Skul"].." ("..AL["Rare"]..")"; - }; - ["STRATPostmaster"] = { - Title = AL["Postmaster Malown"]; - Next_Page = "STRATFrasSiabi"; - Next_Title = AL["Fras Siabi"]; - Prev_Page = "STRATStratholmeCourier"; - Prev_Title = AL["Stratholme Courier"]; - }; - ["STRATFrasSiabi"] = { - Title = AL["Fras Siabi"]; - Next_Page = "STRATAtiesh"; - Next_Title = AL["Atiesh"]; - Prev_Page = "STRATPostmaster"; - Prev_Title = AL["Postmaster Malown"]; - }; - ["STRATAtiesh"] = { - Title = AL["Atiesh"]; - Next_Page = "STRATBalzaphon"; - Next_Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")"; - Prev_Page = "STRATFrasSiabi"; - Prev_Title = AL["Fras Siabi"]; - }; - ["STRATBalzaphon"] = { - Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")"; - Next_Page = "STRATHearthsingerForresten"; - Next_Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")"; - Prev_Page = "STRATAtiesh"; - Prev_Title = AL["Atiesh"]; - }; - ["STRATHearthsingerForresten"] = { - Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")"; - Next_Page = "STRATTheUnforgiven"; - Next_Title = AL["The Unforgiven"]; - Prev_Page = "STRATBalzaphon"; - Prev_Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")"; - }; - ["STRATTheUnforgiven"] = { - Title = AL["The Unforgiven"]; - Next_Page = "STRATTimmytheCruel"; - Next_Title = AL["Timmy the Cruel"]; - Prev_Page = "STRATHearthsingerForresten"; - Prev_Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")"; - }; - ["STRATTimmytheCruel"] = { - Title = AL["Timmy the Cruel"]; - Next_Page = "STRATMalor"; - Next_Title = AL["Malor the Zealous"]; - Prev_Page = "STRATTheUnforgiven"; - Prev_Title = AL["The Unforgiven"]; - }; - ["STRATMalor"] = { - Title = AL["Malor the Zealous"]; - Next_Page = "STRATMalorsStrongbox"; - Next_Title = AL["Malor's Strongbox"]; - Prev_Page = "STRATTimmytheCruel"; - Prev_Title = AL["Timmy the Cruel"]; - }; - ["STRATMalorsStrongbox"] = { - Title = AL["Malor's Strongbox"]; - Next_Page = "STRATCrimsonHammersmith"; - Next_Title = AL["Crimson Hammersmith"]; - Prev_Page = "STRATMalor"; - Prev_Title = AL["Malor the Zealous"]; - }; - ["STRATCrimsonHammersmith"] = { - Title = AL["Crimson Hammersmith"]; - Next_Page = "STRATCannonMasterWilley"; - Next_Title = AL["Cannon Master Willey"]; - Prev_Page = "STRATMalorsStrongbox"; - Prev_Title = AL["Malor's Strongbox"]; - }; - ["STRATCannonMasterWilley"] = { - Title = AL["Cannon Master Willey"]; - Next_Page = "STRATArchivistGalford"; - Next_Title = AL["Archivist Galford"]; - Prev_Page = "STRATCrimsonHammersmith"; - Prev_Title = AL["Crimson Hammersmith"]; - }; - ["STRATArchivistGalford"] = { - Title = AL["Archivist Galford"]; - Next_Page = "STRATBalnazzar"; - Next_Title = AL["Balnazzar"]; - Prev_Page = "STRATCannonMasterWilley"; - Prev_Title = AL["Cannon Master Willey"]; - }; - ["STRATBalnazzar"] = { - Title = AL["Balnazzar"]; - Next_Page = "STRATSothosJarien"; - Next_Title = AL["Sothos"].." & "..AL["Jarien"]; - Prev_Page = "STRATArchivistGalford"; - Prev_Title = AL["Archivist Galford"]; - }; - ["STRATSothosJarien"] = { - Title = AL["Sothos"].." & "..AL["Jarien"]; - Next_Page = "STRATStonespine"; - Next_Title = AL["Stonespine"].." ("..AL["Rare"]..")"; - Prev_Page = "STRATBalnazzar"; - Prev_Title = AL["Balnazzar"]; - }; - ["STRATStonespine"] = { - Title = AL["Stonespine"].." ("..AL["Rare"]..")"; - Next_Page = "STRATBaronessAnastari"; - Next_Title = AL["Baroness Anastari"]; - Prev_Page = "STRATSothosJarien"; - Prev_Title = AL["Sothos"].." & "..AL["Jarien"]; - }; - ["STRATBaronessAnastari"] = { - Title = AL["Baroness Anastari"]; - Next_Page = "STRATBlackGuardSwordsmith"; - Next_Title = AL["Black Guard Swordsmith"]; - Prev_Page = "STRATStonespine"; - Prev_Title = AL["Stonespine"].." ("..AL["Rare"]..")"; - }; - ["STRATBlackGuardSwordsmith"] = { - Title = AL["Black Guard Swordsmith"]; - Next_Page = "STRATNerubenkan"; - Next_Title = AL["Nerub'enkan"]; - Prev_Page = "STRATBaronessAnastari"; - Prev_Title = AL["Baroness Anastari"]; - }; - ["STRATNerubenkan"] = { - Title = AL["Nerub'enkan"]; - Next_Page = "STRATMalekithePallid"; - Next_Title = AL["Maleki the Pallid"]; - Prev_Page = "STRATBlackGuardSwordsmith"; - Prev_Title = AL["Black Guard Swordsmith"]; - }; - ["STRATMalekithePallid"] = { - Title = AL["Maleki the Pallid"]; - Next_Page = "STRATMagistrateBarthilas"; - Next_Title = AL["Magistrate Barthilas"]; - Prev_Page = "STRATNerubenkan"; - Prev_Title = AL["Nerub'enkan"]; - }; - ["STRATMagistrateBarthilas"] = { - Title = AL["Magistrate Barthilas"]; - Next_Page = "STRATRamsteintheGorger"; - Next_Title = AL["Ramstein the Gorger"]; - Prev_Page = "STRATMalekithePallid"; - Prev_Title = AL["Maleki the Pallid"]; - }; - ["STRATRamsteintheGorger"] = { - Title = AL["Ramstein the Gorger"]; - Next_Page = "STRATBaronRivendare"; - Next_Title = AL["Baron Rivendare"]; - Prev_Page = "STRATMagistrateBarthilas"; - Prev_Title = AL["Magistrate Barthilas"]; - }; - ["STRATBaronRivendare"] = { - Title = AL["Baron Rivendare"]; - Next_Page = "STRATTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "STRATRamsteintheGorger"; - Prev_Title = AL["Ramstein the Gorger"]; - }; - ["STRATTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "STRATBaronRivendare"; - Prev_Title = AL["Baron Rivendare"]; - }; - ["STBalconyMinibosses"] = { - Title = AL["Balcony Minibosses"]; - Next_Page = "STAtalalarion"; - Next_Title = AL["Atal'alarion"]; - }; - ["STAtalalarion"] = { - Title = AL["Atal'alarion"]; - Next_Page = "STSpawnOfHakkar"; - Next_Title = AL["Spawn of Hakkar"]; - Prev_Page = "STBalconyMinibosses"; - Prev_Title = AL["Balcony Minibosses"]; - }; - ["STSpawnOfHakkar"] = { - Title = AL["Spawn of Hakkar"]; - Next_Page = "STAvatarofHakkar"; - Next_Title = AL["Avatar of Hakkar"]; - Prev_Page = "STAtalalarion"; - Prev_Title = AL["Atal'alarion"]; - }; - ["STAvatarofHakkar"] = { - Title = AL["Avatar of Hakkar"]; - Next_Page = "STJammalan"; - Next_Title = AL["Jammal'an the Prophet"]; - Prev_Page = "STSpawnOfHakkar"; - Prev_Title = AL["Spawn of Hakkar"]; - }; - ["STJammalan"] = { - Title = AL["Jammal'an the Prophet"]; - Next_Page = "STOgom"; - Next_Title = AL["Ogom the Wretched"]; - Prev_Page = "STAvatarofHakkar"; - Prev_Title = AL["Avatar of Hakkar"]; - }; - ["STOgom"] = { - Title = AL["Ogom the Wretched"]; - Next_Page = "STDreamscythe"; - Next_Title = AL["Dreamscythe"]; - Prev_Page = "STJammalan"; - Prev_Title = AL["Jammal'an the Prophet"]; - }; - ["STDreamscythe"] = { - Title = AL["Dreamscythe"]; - Next_Page = "STWeaver"; - Next_Title = AL["Weaver"]; - Prev_Page = "STOgom"; - Prev_Title = AL["Ogom the Wretched"]; - }; - ["STWeaver"] = { - Title = AL["Weaver"]; - Next_Page = "STMorphaz"; - Next_Title = AL["Morphaz"]; - Prev_Page = "STDreamscythe"; - Prev_Title = AL["Dreamscythe"]; - }; - ["STMorphaz"] = { - Title = AL["Morphaz"]; - Next_Page = "STHazzas"; - Next_Title = AL["Hazzas"]; - Prev_Page = "STWeaver"; - Prev_Title = AL["Weaver"]; - }; - ["STHazzas"] = { - Title = AL["Hazzas"]; - Next_Page = "STEranikus"; - Next_Title = AL["Shade of Eranikus"]; - Prev_Page = "STMorphaz"; - Prev_Title = AL["Morphaz"]; - }; - ["STEranikus"] = { - Title = AL["Shade of Eranikus"]; - Next_Page = "STTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "STHazzas"; - Prev_Title = AL["Hazzas"]; - }; - ["STTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "STEranikus"; - Prev_Title = AL["Shade of Eranikus"]; - }; - ["UldBaelog"] = { - Title = AL["Baelog"]; - Next_Page = "UldOlaf"; - Next_Title = AL["Olaf"]; - }; - ["UldOlaf"] = { - Title = AL["Olaf"]; - Next_Page = "UldEric"; - Next_Title = AL["Eric 'The Swift'"]; - Prev_Page = "UldBaelog"; - Prev_Title = AL["Baelog"]; - }; - ["UldEric"] = { - Title = AL["Eric 'The Swift'"]; - Next_Page = "UldRevelosh"; - Next_Title = AL["Revelosh"]; - Prev_Page = "UldOlaf"; - Prev_Title = AL["Olaf"]; - }; - ["UldRevelosh"] = { - Title = AL["Revelosh"]; - Next_Page = "UldIronaya"; - Next_Title = AL["Ironaya"]; - Prev_Page = "UldEric"; - Prev_Title = AL["Eric 'The Swift'"]; - }; - ["UldIronaya"] = { - Title = AL["Ironaya"]; - Next_Page = "UldAncientStoneKeeper"; - Next_Title = AL["Ancient Stone Keeper"]; - Prev_Page = "UldRevelosh"; - Prev_Title = AL["Revelosh"]; - }; - ["UldAncientStoneKeeper"] = { - Title = AL["Ancient Stone Keeper"]; - Next_Page = "UldGalgannFirehammer"; - Next_Title = AL["Galgann Firehammer"]; - Prev_Page = "UldIronaya"; - Prev_Title = AL["Ironaya"]; - }; - ["UldGalgannFirehammer"] = { - Title = AL["Galgann Firehammer"]; - Next_Page = "UldGrimlok"; - Next_Title = AL["Grimlok"]; - Prev_Page = "UldAncientStoneKeeper"; - Prev_Title = AL["Ancient Stone Keeper"]; - }; - ["UldGrimlok"] = { - Title = AL["Grimlok"]; - Next_Page = "UldArchaedas"; - Next_Title = AL["Archaedas"]; - Prev_Page = "UldGalgannFirehammer"; - Prev_Title = AL["Galgann Firehammer"]; - }; - ["UldArchaedas"] = { - Title = AL["Archaedas"]; - Next_Page = "UldTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "UldGrimlok"; - Prev_Title = AL["Grimlok"]; - }; - ["UldTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "UldArchaedas"; - Prev_Title = AL["Archaedas"]; - }; - ["ZGJeklik"] = { - Title = AL["High Priestess Jeklik"]; - Next_Page = "ZGVenoxis"; - Next_Title = AL["High Priest Venoxis"]; - }; - ["ZGVenoxis"] = { - Title = AL["High Priest Venoxis"]; - Next_Page = "ZGMarli"; - Next_Title = AL["High Priestess Mar'li"]; - Prev_Page = "ZGJeklik"; - Prev_Title = AL["High Priestess Jeklik"]; - }; - ["ZGMarli"] = { - Title = AL["High Priestess Mar'li"]; - Next_Page = "ZGMandokir"; - Next_Title = AL["Bloodlord Mandokir"]; - Prev_Page = "ZGVenoxis"; - Prev_Title = AL["High Priest Venoxis"]; - }; - ["ZGMandokir"] = { - Title = AL["Bloodlord Mandokir"]; - Next_Page = "ZGGrilek"; - Next_Title = AL["Gri'lek"]; - Prev_Page = "ZGMarli"; - Prev_Title = AL["High Priestess Mar'li"]; - }; - ["ZGGrilek"] = { - Title = AL["Gri'lek"]; - Next_Page = "ZGHazzarah"; - Next_Title = AL["Hazza'rah"]; - Prev_Page = "ZGMandokir"; - Prev_Title = AL["Bloodlord Mandokir"]; - }; - ["ZGHazzarah"] = { - Title = AL["Hazza'rah"]; - Next_Page = "ZGRenataki"; - Next_Title = AL["Renataki"]; - Prev_Page = "ZGGrilek"; - Prev_Title = AL["Gri'lek"]; - }; - ["ZGRenataki"] = { - Title = AL["Renataki"]; - Next_Page = "ZGWushoolay"; - Next_Title = AL["Wushoolay"]; - Prev_Page = "ZGHazzarah"; - Prev_Title = AL["Hazza'rah"]; - }; - ["ZGWushoolay"] = { - Title = AL["Wushoolay"]; - Next_Page = "ZGGahzranka"; - Next_Title = AL["Gahz'ranka"]; - Prev_Page = "ZGRenataki"; - Prev_Title = AL["Renataki"]; - }; - ["ZGGahzranka"] = { - Title = AL["Gahz'ranka"]; - Next_Page = "ZGThekal"; - Next_Title = AL["High Priest Thekal"]; - Prev_Page = "ZGWushoolay"; - Prev_Title = AL["Wushoolay"]; - }; - ["ZGThekal"] = { - Title = AL["High Priest Thekal"]; - Next_Page = "ZGArlokk"; - Next_Title = AL["High Priestess Arlokk"]; - Prev_Page = "ZGGahzranka"; - Prev_Title = AL["Gahz'ranka"]; - }; - ["ZGArlokk"] = { - Title = AL["High Priestess Arlokk"]; - Next_Page = "ZGJindo"; - Next_Title = AL["Jin'do the Hexxer"]; - Prev_Page = "ZGThekal"; - Prev_Title = AL["High Priest Thekal"]; - }; - ["ZGJindo"] = { - Title = AL["Jin'do the Hexxer"]; - Next_Page = "ZGHakkar"; - Next_Title = AL["Hakkar"]; - Prev_Page = "ZGArlokk"; - Prev_Title = AL["High Priestess Arlokk"]; - }; - ["ZGHakkar"] = { - Title = AL["Hakkar"]; - Next_Page = "ZGShared"; - Next_Title = AL["Random Boss Loot"]; - Prev_Page = "ZGJindo"; - Prev_Title = AL["Jin'do the Hexxer"]; - }; - ["ZGShared"] = { - Title = AL["Random Boss Loot"]; - Next_Page = "ZGTrash1"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "ZGHakkar"; - Prev_Title = AL["Hakkar"]; - }; - ["ZGTrash1"] = { - Title = AL["Trash Mobs"]; - Next_Page = "ZGEnchants"; - Next_Title = AL["ZG Enchants"]; - Prev_Page = "ZGShared"; - Prev_Title = AL["Random Boss Loot"]; - }; - ["ZGEnchants"] = { - Title = AL["ZG Enchants"]; - Prev_Page = "ZGTrash1"; - Prev_Title = AL["Trash Mobs"]; - }; - ["BFDGhamoora"] = { - Title = AL["Ghamoo-ra"]; - Next_Page = "BFDLadySarevess"; - Next_Title = AL["Lady Sarevess"]; - }; - ["BFDLadySarevess"] = { - Title = AL["Lady Sarevess"]; - Next_Page = "BFDGelihast"; - Next_Title = AL["Gelihast"]; - Prev_Page = "BFDGhamoora"; - Prev_Title = AL["Ghamoo-ra"]; - }; - ["BFDGelihast"] = { - Title = AL["Gelihast"]; - Next_Page = "BFDBaronAquanis"; - Next_Title = AL["Baron Aquanis"]; - Prev_Page = "BFDLadySarevess"; - Prev_Title = AL["Lady Sarevess"]; - }; - ["BFDBaronAquanis"] = { - Title = AL["Baron Aquanis"]; - Next_Page = "BFDTwilightLordKelris"; - Next_Title = AL["Twilight Lord Kelris"]; - Prev_Page = "BFDGelihast"; - Prev_Title = AL["Gelihast"]; - }; - ["BFDTwilightLordKelris"] = { - Title = AL["Twilight Lord Kelris"]; - Next_Page = "BFDOldSerrakis"; - Next_Title = AL["Old Serra'kis"]; - Prev_Page = "BFDBaronAquanis"; - Prev_Title = AL["Baron Aquanis"]; - }; - ["BFDOldSerrakis"] = { - Title = AL["Old Serra'kis"]; - Next_Page = "BFDAkumai"; - Next_Title = AL["Aku'mai"]; - Prev_Page = "BFDTwilightLordKelris"; - Prev_Title = AL["Twilight Lord Kelris"]; - }; - ["BFDAkumai"] = { - Title = AL["Aku'mai"]; - Next_Page = "BFDTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "BFDOldSerrakis"; - Prev_Title = AL["Old Serra'kis"]; - }; - ["BFDTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "BFDAkumai"; - Prev_Title = AL["Aku'mai"]; - }; - ["DMEPusillin"] = { - Title = AL["Pusillin"]; - Next_Page = "DMEZevrimThornhoof"; - Next_Title = AL["Zevrim Thornhoof"]; - }; - ["DMEZevrimThornhoof"] = { - Title = AL["Zevrim Thornhoof"]; - Next_Page = "DMEHydro"; - Next_Title = AL["Hydrospawn"]; - Prev_Page = "DMEPusillin"; - Prev_Title = AL["Pusillin"]; - }; - ["DMEHydro"] = { - Title = AL["Hydrospawn"]; - Next_Page = "DMELethtendris"; - Next_Title = AL["Lethtendris"]; - Prev_Page = "DMEZevrimThornhoof"; - Prev_Title = AL["Zevrim Thornhoof"]; - }; - ["DMELethtendris"] = { - Title = AL["Lethtendris"]; - Next_Page = "DMEPimgib"; - Next_Title = AL["Pimgib"]; - Prev_Page = "DMEHydro"; - Prev_Title = AL["Hydrospawn"]; - }; - ["DMEPimgib"] = { - Title = AL["Pimgib"]; - Next_Page = "DMEIsalien"; - Next_Title = AL["Isalien"]; - Prev_Page = "DMELethtendris"; - Prev_Title = AL["Lethtendris"]; - }; - ["DMEIsalien"] = { - Title = AL["Isalien"]; - Next_Page = "DMEAlzzin"; - Next_Title = AL["Alzzin the Wildshaper"]; - Prev_Page = "DMEPimgib"; - Prev_Title = AL["Pimgib"]; - }; - ["DMEAlzzin"] = { - Title = AL["Alzzin the Wildshaper"]; - Next_Page = "DMETrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "DMEIsalien"; - Prev_Title = AL["Isalien"]; - }; - ["DMETrash"] = { - Title = AL["Trash Mobs"]; - Next_Page = "DMBooks"; - Next_Title = AL["Dire Maul Books"]; - Prev_Page = "DMEAlzzin"; - Prev_Title = AL["Alzzin the Wildshaper"]; - }; - ["DMBooks"] = { - Title = AL["Dire Maul Books"]; - Prev_Page = "DMETrash"; - Prev_Title = AL["Trash Mobs"]; - }; - ["DMWTendrisWarpwood"] = { - Title = AL["Tendris Warpwood"]; - Next_Page = "DMWIllyannaRavenoak"; - Next_Title = AL["Illyanna Ravenoak"]; - }; - ["DMWIllyannaRavenoak"] = { - Title = AL["Illyanna Ravenoak"]; - Next_Page = "DMWMagisterKalendris"; - Next_Title = AL["Magister Kalendris"]; - Prev_Page = "DMWTendrisWarpwood"; - Prev_Title = AL["Tendris Warpwood"]; - }; - ["DMWMagisterKalendris"] = { - Title = AL["Magister Kalendris"]; - Next_Page = "DMWTsuzee"; - Next_Title = AL["Tsu'zee"].." ("..AL["Rare"]..")"; - Prev_Page = "DMWIllyannaRavenoak"; - Prev_Title = AL["Illyanna Ravenoak"]; - }; - ["DMWTsuzee"] = { - Title = AL["Tsu'zee"].." ("..AL["Rare"]..")"; - Next_Page = "DMWRevanchion"; - Next_Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")"; - Prev_Page = "DMWMagisterKalendris"; - Prev_Title = AL["Magister Kalendris"]; - }; - ["DMWRevanchion"] = { - Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")"; - Next_Page = "DMWImmolthar"; - Next_Title = AL["Immol'thar"]; - Prev_Page = "DMWTsuzee"; - Prev_Title = AL["Tsu'zee"].." ("..AL["Rare"]..")"; - }; - ["DMWImmolthar"] = { - Title = AL["Immol'thar"]; - Next_Page = "DMWHelnurath"; - Next_Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")"; - Prev_Page = "DMWRevanchion"; - Prev_Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")"; - }; - ["DMWHelnurath"] = { - Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")"; - Next_Page = "DMWPrinceTortheldrin"; - Next_Title = AL["Prince Tortheldrin"]; - Prev_Page = "DMWImmolthar"; - Prev_Title = AL["Immol'thar"]; - }; - ["DMWPrinceTortheldrin"] = { - Title = AL["Prince Tortheldrin"]; - Next_Page = "DMWTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "DMWHelnurath"; - Prev_Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")"; - }; - ["DMWTrash"] = { - Title = AL["Trash Mobs"]; - Next_Page = "DMBooks"; - Next_Title = AL["Dire Maul Books"]; - Prev_Page = "DMWPrinceTortheldrin"; - Prev_Title = AL["Prince Tortheldrin"]; - }; - ["DMBooks"] = { - Title = AL["Dire Maul Books"]; - Prev_Page = "DMWTrash"; - Prev_Title = AL["Trash Mobs"]; - }; - ["DMNGuardMoldar"] = { - Title = AL["Guard Mol'dar"]; - Next_Page = "DMNStomperKreeg"; - Next_Title = AL["Stomper Kreeg"]; - }; - ["DMNStomperKreeg"] = { - Title = AL["Stomper Kreeg"]; - Next_Page = "DMNGuardFengus"; - Next_Title = AL["Guard Fengus"]; - Prev_Page = "DMNGuardMoldar"; - Prev_Title = AL["Guard Mol'dar"]; - }; - ["DMNGuardFengus"] = { - Title = AL["Guard Fengus"]; - Next_Page = "DMNThimblejack"; - Next_Title = AL["Knot Thimblejack"]; - Prev_Page = "DMNStomperKreeg"; - Prev_Title = AL["Stomper Kreeg"]; - }; - ["DMNThimblejack"] = { - Title = AL["Knot Thimblejack"]; - Next_Page = "DMNGuardSlipkik"; - Next_Title = AL["Guard Slip'kik"]; - Prev_Page = "DMNGuardFengus"; - Prev_Title = AL["Guard Fengus"]; - }; - ["DMNGuardSlipkik"] = { - Title = AL["Guard Slip'kik"]; - Next_Page = "DMNCaptainKromcrush"; - Next_Title = AL["Captain Kromcrush"]; - Prev_Page = "DMNThimblejack"; - Prev_Title = AL["Knot Thimblejack"]; - }; - ["DMNCaptainKromcrush"] = { - Title = AL["Captain Kromcrush"]; - Next_Page = "DMNChoRush"; - Next_Title = AL["Cho'Rush the Observer"]; - Prev_Page = "DMNGuardSlipkik"; - Prev_Title = AL["Guard Slip'kik"]; - }; - ["DMNChoRush"] = { - Title = AL["Cho'Rush the Observer"]; - Next_Page = "DMNKingGordok"; - Next_Title = AL["King Gordok"]; - Prev_Page = "DMNCaptainKromcrush"; - Prev_Title = AL["Captain Kromcrush"]; - }; - ["DMNKingGordok"] = { - Title = AL["King Gordok"]; - Next_Page = "DMNTRIBUTERUN"; - Next_Title = AL["Tribute Run"]; - Prev_Page = "DMNChoRush"; - Prev_Title = AL["Cho'Rush the Observer"]; - }; - ["DMNTRIBUTERUN"] = { - Title = AL["Tribute Run"]; - Next_Page = "DMNTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "DMNKingGordok"; - Prev_Title = AL["King Gordok"]; - }; - ["DMNTrash"] = { - Title = AL["Trash Mobs"]; - Next_Page = "DMBooks"; - Next_Title = AL["Dire Maul Books"]; - Prev_Page = "DMNTRIBUTERUN"; - Prev_Title = AL["Tribute Run"]; - }; - ["DMBooks"] = { - Title = AL["Dire Maul Books"]; - Prev_Page = "DMNTrash"; - Prev_Title = AL["Trash Mobs"]; - }; - ["MaraNoxxion"] = { - Title = AL["Noxxion"]; - Next_Page = "MaraRazorlash"; - Next_Title = AL["Razorlash"]; - }; - ["MaraRazorlash"] = { - Title = AL["Razorlash"]; - Next_Page = "MaraLordVyletongue"; - Next_Title = AL["Lord Vyletongue"]; - Prev_Page = "MaraNoxxion"; - Prev_Title = AL["Noxxion"]; - }; - ["MaraLordVyletongue"] = { - Title = AL["Lord Vyletongue"]; - Next_Page = "MaraMeshlok"; - Next_Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")"; - Prev_Page = "MaraRazorlash"; - Prev_Title = AL["Razorlash"]; - }; - ["MaraMeshlok"] = { - Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")"; - Next_Page = "MaraCelebras"; - Next_Title = AL["Celebras the Cursed"]; - Prev_Page = "MaraLordVyletongue"; - Prev_Title = AL["Lord Vyletongue"]; - }; - ["MaraCelebras"] = { - Title = AL["Celebras the Cursed"]; - Next_Page = "MaraLandslide"; - Next_Title = AL["Landslide"]; - Prev_Page = "MaraMeshlok"; - Prev_Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")"; - }; - ["MaraLandslide"] = { - Title = AL["Landslide"]; - Next_Page = "MaraTinkererGizlock"; - Next_Title = AL["Tinkerer Gizlock"]; - Prev_Page = "MaraCelebras"; - Prev_Title = AL["Celebras the Cursed"]; - }; - ["MaraTinkererGizlock"] = { - Title = AL["Tinkerer Gizlock"]; - Next_Page = "MaraRotgrip"; - Next_Title = AL["Rotgrip"]; - Prev_Page = "MaraLandslide"; - Prev_Title = AL["Landslide"]; - }; - ["MaraRotgrip"] = { - Title = AL["Rotgrip"]; - Next_Page = "MaraPrincessTheradras"; - Next_Title = AL["Princess Theradras"]; - Prev_Page = "MaraTinkererGizlock"; - Prev_Title = AL["Tinkerer Gizlock"]; - }; - ["MaraPrincessTheradras"] = { - Title = AL["Princess Theradras"]; - Next_Page = "MaraTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "MaraRotgrip"; - Prev_Title = AL["Rotgrip"]; - }; - ["MaraTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "MaraPrincessTheradras"; - Prev_Title = AL["Princess Theradras"]; - }; - ["RFCTaragaman"] = { - Title = AL["Taragaman the Hungerer"]; - Next_Page = "RFCOggleflint"; - Next_Title = AL["Oggleflint"]; - }; - ["RFCOggleflint"] = { - Title = AL["Oggleflint"]; - Next_Page = "RFCJergosh"; - Next_Title = AL["Jergosh the Invoker"]; - Prev_Page = "RFCTaragaman"; - Prev_Title = AL["Taragaman the Hungerer"]; - }; - ["RFCJergosh"] = { - Title = AL["Jergosh the Invoker"]; - Next_Page = "RFCBazzalan"; - Next_Title = AL["Bazzalan"]; - Prev_Page = "RFCOggleflint"; - Prev_Title = AL["Oggleflint"]; - }; - ["RFCBazzalan"] = { - Title = AL["Bazzalan"]; - Prev_Page = "RFCJergosh"; - Prev_Title = AL["Jergosh the Invoker"]; - }; - ["RFDTutenkash"] = { - Title = AL["Tuten'kash"]; - Next_Page = "RFDLadyF"; - Next_Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")"; - }; - ["RFDLadyF"] = { - Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")"; - Next_Page = "RFDPlaguemaw"; - Next_Title = AL["Plaguemaw the Rotting"]; - Prev_Page = "RFDTutenkash"; - Prev_Title = AL["Tuten'kash"]; - }; - ["RFDPlaguemaw"] = { - Title = AL["Plaguemaw the Rotting"]; - Next_Page = "RFDMordreshFireEye"; - Next_Title = AL["Mordresh Fire Eye"]; - Prev_Page = "RFDLadyF"; - Prev_Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")"; - }; - ["RFDMordreshFireEye"] = { - Title = AL["Mordresh Fire Eye"]; - Next_Page = "RFDGlutton"; - Next_Title = AL["Glutton"]; - Prev_Page = "RFDPlaguemaw"; - Prev_Title = AL["Plaguemaw the Rotting"]; - }; - ["RFDGlutton"] = { - Title = AL["Glutton"]; - Next_Page = "RFDRagglesnout"; - Next_Title = AL["Ragglesnout"].." ("..AL["Rare"]..")"; - Prev_Page = "RFDMordreshFireEye"; - Prev_Title = AL["Mordresh Fire Eye"]; - }; - ["RFDRagglesnout"] = { - Title = AL["Ragglesnout"].." ("..AL["Rare"]..")"; - Next_Page = "RFDAmnennar"; - Next_Title = AL["Amnennar the Coldbringer"]; - Prev_Page = "RFDGlutton"; - Prev_Title = AL["Glutton"]; - }; - ["RFDAmnennar"] = { - Title = AL["Amnennar the Coldbringer"]; - Next_Page = "RFDTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "RFDRagglesnout"; - Prev_Title = AL["Ragglesnout"].." ("..AL["Rare"]..")"; - }; - ["RFDTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "RFDAmnennar"; - Prev_Title = AL["Amnennar the Coldbringer"]; - }; - ["RFKAggem"] = { - Title = AL["Aggem Thorncurse"]; - Next_Page = "RFKDeathSpeakerJargba"; - Next_Title = AL["Death Speaker Jargba"]; - }; - ["RFKDeathSpeakerJargba"] = { - Title = AL["Death Speaker Jargba"]; - Next_Page = "RFKOverlordRamtusk"; - Next_Title = AL["Overlord Ramtusk"]; - Prev_Page = "RFKAggem"; - Prev_Title = AL["Aggem Thorncurse"]; - }; - ["RFKOverlordRamtusk"] = { - Title = AL["Overlord Ramtusk"]; - Next_Page = "RFKRazorfenSpearhide"; - Next_Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")"; - Prev_Page = "RFKDeathSpeakerJargba"; - Prev_Title = AL["Death Speaker Jargba"]; - }; - ["RFKRazorfenSpearhide"] = { - Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")"; - Next_Page = "RFKAgathelos"; - Next_Title = AL["Agathelos the Raging"]; - Prev_Page = "RFKOverlordRamtusk"; - Prev_Title = AL["Overlord Ramtusk"]; - }; - ["RFKAgathelos"] = { - Title = AL["Agathelos the Raging"]; - Next_Page = "RFKBlindHunter"; - Next_Title = AL["Blind Hunter"].." ("..AL["Rare"]..")"; - Prev_Page = "RFKRazorfenSpearhide"; - Prev_Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")"; - }; - ["RFKBlindHunter"] = { - Title = AL["Blind Hunter"].." ("..AL["Rare"]..")"; - Next_Page = "RFKCharlgaRazorflank"; - Next_Title = AL["Charlga Razorflank"]; - Prev_Page = "RFKAgathelos"; - Prev_Title = AL["Agathelos the Raging"]; - }; - ["RFKCharlgaRazorflank"] = { - Title = AL["Charlga Razorflank"]; - Next_Page = "RFKEarthcallerHalmgar"; - Next_Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")"; - Prev_Page = "RFKBlindHunter"; - Prev_Title = AL["Blind Hunter"].." ("..AL["Rare"]..")"; - }; - ["RFKEarthcallerHalmgar"] = { - Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")"; - Next_Page = "RFKTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "RFKCharlgaRazorflank"; - Prev_Title = AL["Charlga Razorflank"]; - }; - ["RFKTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "RFKEarthcallerHalmgar"; - Prev_Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")"; - }; - ["AQ20Kurinnaxx"] = { - Title = AL["Kurinnaxx"]; - Next_Page = "AQ20Andorov"; - Next_Title = AL["Lieutenant General Andorov"]; - }; - ["AQ20Andorov"] = { - Title = AL["Lieutenant General Andorov"]; - Next_Page = "AQ20CAPTAIN"; - Next_Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1]; - Prev_Page = "AQ20Kurinnaxx"; - Prev_Title = AL["Kurinnaxx"]; - }; - ["AQ20CAPTAIN"] = { - Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1]; - Next_Page = "AQ20Rajaxx"; - Next_Title = AL["General Rajaxx"]; - Prev_Page = "AQ20Andorov"; - Prev_Title = AL["Lieutenant General Andorov"]; - }; - ["AQ20Rajaxx"] = { - Title = AL["General Rajaxx"]; - Next_Page = "AQ20Moam"; - Next_Title = AL["Moam"]; - Prev_Page = "AQ20CAPTAIN"; - Prev_Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1]; - }; - ["AQ20Moam"] = { - Title = AL["Moam"]; - Next_Page = "AQ20Buru"; - Next_Title = AL["Buru the Gorger"]; - Prev_Page = "AQ20Rajaxx"; - Prev_Title = AL["General Rajaxx"]; - }; - ["AQ20Buru"] = { - Title = AL["Buru the Gorger"]; - Next_Page = "AQ20Ayamiss"; - Next_Title = AL["Ayamiss the Hunter"]; - Prev_Page = "AQ20Moam"; - Prev_Title = AL["Moam"]; - }; - ["AQ20Ayamiss"] = { - Title = AL["Ayamiss the Hunter"]; - Next_Page = "AQ20Ossirian"; - Next_Title = AL["Ossirian the Unscarred"]; - Prev_Page = "AQ20Buru"; - Prev_Title = AL["Buru the Gorger"]; - }; - ["AQ20Ossirian"] = { - Title = AL["Ossirian the Unscarred"]; - Next_Page = "AQ20Trash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "AQ20Ayamiss"; - Prev_Title = AL["Ayamiss the Hunter"]; - }; - ["AQ20Trash"] = { - Title = AL["Trash Mobs"]; - Next_Page = "AQ20ClassBooks"; - Next_Title = AL["Class Books"]; - Prev_Page = "AQ20Ossirian"; - Prev_Title = AL["Ossirian the Unscarred"]; - }; - ["AQ20ClassBooks"] = { - Title = AL["Class Books"]; - Next_Page = "AQEnchants"; - Next_Title = AL["AQ Enchants"]; - Prev_Page = "AQ20Trash"; - Prev_Title = AL["Trash Mobs"]; - }; - ["AQEnchants"] = { - Title = AL["AQ Enchants"]; - Prev_Page = "AQ20ClassBooks"; - Prev_Title = AL["Class Books"]; - }; - ["AQ40Skeram"] = { - Title = AL["The Prophet Skeram"]; - Next_Page = "AQ40Trio"; - Next_Title = AL["The Bug Family"]; - }; - ["AQ40Trio"] = { - Title = AL["The Bug Family"]; - Next_Page = "AQ40Sartura"; - Next_Title = AL["Battleguard Sartura"]; - Prev_Page = "AQ40Skeram"; - Prev_Title = AL["The Prophet Skeram"]; - }; - ["AQ40Sartura"] = { - Title = AL["Battleguard Sartura"]; - Next_Page = "AQ40Fankriss"; - Next_Title = AL["Fankriss the Unyielding"]; - Prev_Page = "AQ40Trio"; - Prev_Title = AL["The Bug Family"]; - }; - ["AQ40Fankriss"] = { - Title = AL["Fankriss the Unyielding"]; - Next_Page = "AQ40Viscidus"; - Next_Title = AL["Viscidus"]; - Prev_Page = "AQ40Sartura"; - Prev_Title = AL["Battleguard Sartura"]; - }; - ["AQ40Viscidus"] = { - Title = AL["Viscidus"]; - Next_Page = "AQ40Huhuran"; - Next_Title = AL["Princess Huhuran"]; - Prev_Page = "AQ40Fankriss"; - Prev_Title = AL["Fankriss the Unyielding"]; - }; - ["AQ40Huhuran"] = { - Title = AL["Princess Huhuran"]; - Next_Page = "AQ40Emperors"; - Next_Title = AL["The Twin Emperors"]; - Prev_Page = "AQ40Viscidus"; - Prev_Title = AL["Viscidus"]; - }; - ["AQ40Emperors"] = { - Title = AL["The Twin Emperors"]; - Next_Page = "AQ40Ouro"; - Next_Title = AL["Ouro"]; - Prev_Page = "AQ40Huhuran"; - Prev_Title = AL["Princess Huhuran"]; - }; - ["AQ40Ouro"] = { - Title = AL["Ouro"]; - Next_Page = "AQ40CThun"; - Next_Title = AL["C'Thun"]; - Prev_Page = "AQ40Emperors"; - Prev_Title = AL["The Twin Emperors"]; - }; - ["AQ40CThun"] = { - Title = AL["C'Thun"]; - Next_Page = "AQ40Trash1"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "AQ40Ouro"; - Prev_Title = AL["Ouro"]; - }; - ["AQ40Trash1"] = { - Title = AL["Trash Mobs"]; - Next_Page = "AQEnchants"; - Next_Title = AL["AQ Enchants"]; - Prev_Page = "AQ40CThun"; - Prev_Title = AL["C'Thun"]; - }; - ["AQEnchants"] = { - Title = AL["AQ Enchants"]; - Next_Page = "AQOpening"; - Next_Title = AL["AQ Opening Quest Chain"]; - Prev_Page = "AQ40Trash1"; - Prev_Title = AL["Trash Mobs"]; - }; - ["AQOpening"] = { - Title = AL["AQ Opening Quest Chain"]; - Prev_Page = "AQEnchants"; - Prev_Title = AL["AQ Enchants"]; - }; - ["WCLordCobrahn"] = { - Title = AL["Lord Cobrahn"]; - Next_Page = "WCLadyAnacondra"; - Next_Title = AL["Lady Anacondra"]; - }; - ["WCLadyAnacondra"] = { - Title = AL["Lady Anacondra"]; - Next_Page = "WCKresh"; - Next_Title = AL["Kresh"]; - Prev_Page = "WCLordCobrahn"; - Prev_Title = AL["Lord Cobrahn"]; - }; - ["WCKresh"] = { - Title = AL["Kresh"]; - Next_Page = "WCLordPythas"; - Next_Title = AL["Lord Pythas"]; - Prev_Page = "WCLadyAnacondra"; - Prev_Title = AL["Lady Anacondra"]; - }; - ["WCLordPythas"] = { - Title = AL["Lord Pythas"]; - Next_Page = "WCSkum"; - Next_Title = AL["Skum"]; - Prev_Page = "WCKresh"; - Prev_Title = AL["Kresh"]; - }; - ["WCSkum"] = { - Title = AL["Skum"]; - Next_Page = "WCLordSerpentis"; - Next_Title = AL["Lord Serpentis"]; - Prev_Page = "WCLordPythas"; - Prev_Title = AL["Lord Pythas"]; - }; - ["WCLordSerpentis"] = { - Title = AL["Lord Serpentis"]; - Next_Page = "WCVerdan"; - Next_Title = AL["Verdan the Everliving"]; - Prev_Page = "WCSkum"; - Prev_Title = AL["Skum"]; - }; - ["WCVerdan"] = { - Title = AL["Verdan the Everliving"]; - Next_Page = "WCMutanus"; - Next_Title = AL["Mutanus the Devourer"]; - Prev_Page = "WCLordSerpentis"; - Prev_Title = AL["Lord Serpentis"]; - }; - ["WCMutanus"] = { - Title = AL["Mutanus the Devourer"]; - Next_Page = "WCDeviateFaerieDragon"; - Next_Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")"; - Prev_Page = "WCVerdan"; - Prev_Title = AL["Verdan the Everliving"]; - }; - ["WCDeviateFaerieDragon"] = { - Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")"; - Next_Page = "WCTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "WCMutanus"; - Prev_Title = AL["Mutanus the Devourer"]; - }; - ["WCTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "WCDeviateFaerieDragon"; - Prev_Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")"; - }; - ["ZFAntusul"] = { - Title = AL["Antu'sul"]; - Next_Page = "ZFWitchDoctorZumrah"; - Next_Title = AL["Witch Doctor Zum'rah"]; - }; - ["ZFWitchDoctorZumrah"] = { - Title = AL["Witch Doctor Zum'rah"]; - Next_Page = "ZFSezzziz"; - Next_Title = AL["Shadowpriest Sezz'ziz"]; - Prev_Page = "ZFAntusul"; - Prev_Title = AL["Antu'sul"]; - }; - ["ZFSezzziz"] = { - Title = AL["Shadowpriest Sezz'ziz"]; - Next_Page = "ZFDustwraith"; - Next_Title = AL["Dustwraith"].." ("..AL["Rare"]..")"; - Prev_Page = "ZFWitchDoctorZumrah"; - Prev_Title = AL["Witch Doctor Zum'rah"]; - }; - ["ZFDustwraith"] = { - Title = AL["Dustwraith"].." ("..AL["Rare"]..")"; - Next_Page = "ZFZerillis"; - Next_Title = AL["Zerillis"].." ("..AL["Rare"]..")"; - Prev_Page = "ZFSezzziz"; - Prev_Title = AL["Shadowpriest Sezz'ziz"]; - }; - ["ZFZerillis"] = { - Title = AL["Zerillis"].." ("..AL["Rare"]..")"; - Next_Page = "ZFGahzrilla"; - Next_Title = AL["Gahz'rilla"]; - Prev_Page = "ZFDustwraith"; - Prev_Title = AL["Dustwraith"].." ("..AL["Rare"]..")"; - }; - ["ZFGahzrilla"] = { - Title = AL["Gahz'rilla"]; - Next_Page = "ZFChiefUkorzSandscalp"; - Next_Title = AL["Chief Ukorz Sandscalp"]; - Prev_Page = "ZFZerillis"; - Prev_Title = AL["Zerillis"].." ("..AL["Rare"]..")"; - }; - ["ZFChiefUkorzSandscalp"] = { - Title = AL["Chief Ukorz Sandscalp"]; - Next_Page = "ZFTrash"; - Next_Title = AL["Trash Mobs"]; - Prev_Page = "ZFGahzrilla"; - Prev_Title = AL["Gahz'rilla"]; - }; - ["ZFTrash"] = { - Title = AL["Trash Mobs"]; - Prev_Page = "ZFChiefUkorzSandscalp"; - Prev_Title = AL["Chief Ukorz Sandscalp"]; - }; - ["AAzuregos"] = { - Title = AL["Azuregos"]; - Next_Page = "DEmeriss"; - Next_Title = AL["Emeriss"]; - }; - ["DEmeriss"] = { - Title = AL["Emeriss"]; - Next_Page = "DLethon"; - Next_Title = AL["Lethon"]; - Prev_Page = "AAzuregos"; - Prev_Title = AL["Azuregos"]; - }; - ["DLethon"] = { - Title = AL["Lethon"]; - Next_Page = "DTaerar"; - Next_Title = AL["Taerar"]; - Prev_Page = "DEmeriss"; - Prev_Title = AL["Emeriss"]; - }; - ["DTaerar"] = { - Title = AL["Taerar"]; - Next_Page = "DYsondre"; - Next_Title = AL["Ysondre"]; - Prev_Page = "DLethon"; - Prev_Title = AL["Lethon"]; - }; - ["DYsondre"] = { - Title = AL["Ysondre"]; - Next_Page = "KKazzak"; - Next_Title = AL["Lord Kazzak"]; - Prev_Page = "DTaerar"; - Prev_Title = AL["Taerar"]; - }; - ["KKazzak"] = { - Title = AL["Lord Kazzak"]; - Next_Page = "Turtlhu"; - Next_Title = "Turtlhu, the Black Turtle of Doom"; - Prev_Page = "DYsondre"; - Prev_Title = AL["Ysondre"]; - }; - ["Turtlhu"] = { - Title = "Turtlhu, the Black Turtle of Doom"; - Next_Page = "Nerubian"; - Next_Title = "Nerubian Overseer"; - Prev_Page = "KKazzak"; - Prev_Title = AL["Lord Kazzak"]; - }; - ["Nerubian"] = { - Title = "Nerubian Overseer"; - Next_Page = "Reaver"; - Next_Title = "Dark Reaver of Karazhan"; - Prev_Page = "Turtlhu"; - Prev_Title = "Turtlhu, the Black Turtle of Doom"; - }; - ["Reaver"] = { - Title = "Dark Reaver of Karazhan"; - Next_Page = "Ostarius"; - Next_Title = "Ostarius"; - Prev_Page = "Nerubian"; - Prev_Title = "Nerubian Overseer"; - }; - ["Ostarius"] = { - Title = "Ostarius"; - Next_Page = "Concavius"; - Next_Title = "Concavius"; - Prev_Page = "Reaver"; - Prev_Title = "Dark Reaver of Karazhan"; - }; - ["Concavius"] = { - Title = "Concavius"; + ["KCTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "KCTreasure"; + Prev_Title = AL["Half-Buried Treasure Chest"]; + Next_Page = "KCMarrowspike"; + Next_Title = AL["Marrowspike"]; + }; + ["COTBMChronar"] = { + Title = AL["Chronar"]; + Next_Page = "COTBMHarbingerAphygth"; + Next_Title = AL["Harbinger Aph'ygth"]; + }; + ["COTBMHarbingerAphygth"] = { + Title = AL["Harbinger Aph'ygth"]; + Next_Page = "COTBMEpidamu"; + Next_Title = AL["Epidamu"]; + Prev_Page = "COTBMChronar"; + Prev_Title = AL["Chronar"]; + }; + ["COTBMEpidamu"] = { + Title = AL["Epidamu"]; + Next_Page = "COTBMDriftingAvatar"; + Next_Title = AL["Drifting Avatar of Time"]; + Prev_Page = "COTBMChronar"; + Prev_Title = AL["Chronar"]; + }; + ["COTBMDriftingAvatar"] = { + Title = AL["Drifting Avatar of Time"]; + Next_Page = "COTBMTimeLordEpochronos"; + Next_Title = AL["Time-Lord Epochronos"]; + Prev_Page = "COTBMEpidamu"; + Prev_Title = AL["Epidamu"]; + }; + ["COTBMTimeLordEpochronos"] = { + Title = AL["Time-Lord Epochronos"]; + Next_Page = "COTBMMossheart"; + Next_Title = AL["Mossheart"]; + Prev_Page = "COTBMDriftingAvatar"; + Prev_Title = AL["Drifting Avatar of Time"]; + }; + ["COTBMMossheart"] = { + Title = AL["Mossheart"]; + Next_Page = "COTBMRotmaw"; + Next_Title = AL["Rotmaw"]; + Prev_Page = "COTBMTimeLordEpochronos"; + Prev_Title = AL["Time-Lord Epochronos"]; + }; + ["COTBMRotmaw"] = { + Title = AL["Rotmaw"]; + Next_Page = "COTBMAntnormi"; + Next_Title = AL["Antnormi"]; + Prev_Page = "COTBMMossheart"; + Prev_Title = AL["Mossheart"]; + }; + ["COTBMAntnormi"] = { + Title = AL["Antnormi"]; + Next_Page = "COTBMInfiniteChromie"; + Next_Title = AL["Infinite Chromie"]; + Prev_Page = "COTBMRotmaw"; + Prev_Title = AL["Rotmaw"]; + }; + ["COTBMInfiniteChromie"] = { + Title = AL["Infinite Chromie"]; + Prev_Page = "COTBMAntnormi"; + Prev_Title = AL["Antnormi"]; + }; + ["SWVAszoshGrimflame"] = { + Prev_Page = "SWVVaultArmoryEquipment"; + Prev_Title = AL["Arc'tiras / Vault Armory Equipment"]; + Title = AL["Aszosh Grimflame"]; + Next_Page = "SWVThamGrarr"; + Next_Title = AL["Tham'Grarr"]; + }; + ["SWVThamGrarr"] = { + Title = AL["Tham'Grarr"]; + Next_Page = "SWVBlackBride"; + Next_Title = AL["Black Bride"]; + Prev_Page = "SWVAszoshGrimflame"; + Prev_Title = AL["Aszosh Grimflame"]; + }; + ["SWVBlackBride"] = { + Title = AL["Black Bride"]; + Next_Page = "SWVDamian"; + Next_Title = AL["Damian"]; + Prev_Page = "SWVThamGrarr"; + Prev_Title = AL["Tham'Grarr"]; + }; + ["SWVDamian"] = { + Title = AL["Damian"]; + Next_Page = "SWVVolkanCruelblade"; + Next_Title = AL["Volkan Cruelblade"]; + Prev_Page = "SWVBlackBride"; + Prev_Title = AL["Black Bride"]; + }; + ["SWVVolkanCruelblade"] = { + Title = AL["Volkan Cruelblade"]; + Next_Page = "SWVVaultArmoryEquipment"; + Next_Title = AL["Arc'tiras / Vault Armory Equipment"]; + Prev_Page = "SWVDamian"; + Prev_Title = AL["Damian"]; + }; + ["SWVVaultArmoryEquipment"] = { + Title = AL["Arc'tiras / Vault Armory Equipment"]; + Prev_Page = "SWVVolkanCruelblade"; + Prev_Title = AL["Volkan Cruelblade"]; + Next_Page = "SWVAszoshGrimflame"; + Next_Title = AL["Aszosh Grimflame"]; + }; + ["BWLRazorgore"] = { + Title = AL["Razorgore the Untamed"]; + Next_Page = "BWLVaelastrasz"; + Next_Title = AL["Vaelastrasz the Corrupt"]; + }; + ["BWLVaelastrasz"] = { + Title = AL["Vaelastrasz the Corrupt"]; + Next_Page = "BWLLashlayer"; + Next_Title = AL["Broodlord Lashlayer"]; + Prev_Page = "BWLRazorgore"; + Prev_Title = AL["Razorgore the Untamed"]; + }; + ["BWLLashlayer"] = { + Title = AL["Broodlord Lashlayer"]; + Next_Page = "BWLFiremaw"; + Next_Title = AL["Firemaw"]; + Prev_Page = "BWLVaelastrasz"; + Prev_Title = AL["Vaelastrasz the Corrupt"]; + }; + ["BWLFiremaw"] = { + Title = AL["Firemaw"]; + Next_Page = "BWLEbonroc"; + Next_Title = AL["Ebonroc"]; + Prev_Page = "BWLLashlayer"; + Prev_Title = AL["Broodlord Lashlayer"]; + }; + ["BWLEbonroc"] = { + Title = AL["Ebonroc"]; + Next_Page = "BWLFlamegor"; + Next_Title = AL["Flamegor"]; + Prev_Page = "BWLFiremaw"; + Prev_Title = AL["Firemaw"]; + }; + ["BWLFlamegor"] = { + Title = AL["Flamegor"]; + Next_Page = "BWLChromaggus"; + Next_Title = AL["Chromaggus"]; + Prev_Page = "BWLEbonroc"; + Prev_Title = AL["Ebonroc"]; + }; + ["BWLChromaggus"] = { + Title = AL["Chromaggus"]; + Next_Page = "BWLNefarian"; + Next_Title = AL["Nefarian"]; + Prev_Page = "BWLFlamegor"; + Prev_Title = AL["Flamegor"]; + }; + ["BWLNefarian"] = { + Title = AL["Nefarian"]; + Next_Page = "BWLTrashMobs"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "BWLChromaggus"; + Prev_Title = AL["Chromaggus"]; + }; + ["BWLTrashMobs"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "BWLNefarian"; + Prev_Title = AL["Nefarian"]; + }; + ["DMRhahkZor"] = { + Title = AL["Rhahk'Zor"]; + Next_Page = "DMMinerJohnson"; + Next_Title = AL["Miner Johnson"].." ("..AL["Rare"]..")"; + }; + ["DMMinerJohnson"] = { + Title = AL["Miner Johnson"].." ("..AL["Rare"]..")"; + Next_Page = "DMSneed"; + Next_Title = AL["Sneed"]; + Prev_Page = "DMRhahkZor"; + Prev_Title = AL["Rhahk'Zor"]; + }; + ["DMSneed"] = { + Title = AL["Sneed"]; + Next_Page = "DMSneedsShredder"; + Next_Title = AL["Sneed's Shredder"]; + Prev_Page = "DMMinerJohnson"; + Prev_Title = AL["Miner Johnson"].." ("..AL["Rare"]..")"; + }; + ["DMSneedsShredder"] = { + Title = AL["Sneed's Shredder"]; + Next_Page = "DMGilnid"; + Next_Title = AL["Gilnid"]; + Prev_Page = "DMSneed"; + Prev_Title = AL["Sneed"]; + }; + ["DMGilnid"] = { + Title = AL["Gilnid"]; + Next_Page = "DMMrSmite"; + Next_Title = AL["Mr. Smite"]; + Prev_Page = "DMSneedsShredder"; + Prev_Title = AL["Sneed's Shredder"]; + }; + ["DMMrSmite"] = { + Title = AL["Mr. Smite"]; + Next_Page = "DMCookie"; + Next_Title = AL["Cookie"]; + Prev_Page = "DMGilnid"; + Prev_Title = AL["Gilnid"]; + }; + ["DMCookie"] = { + Title = AL["Cookie"]; + Next_Page = "DMCaptainGreenskin"; + Next_Title = AL["Captain Greenskin"]; + Prev_Page = "DMMrSmite"; + Prev_Title = AL["Mr. Smite"]; + }; + ["DMCaptainGreenskin"] = { + Title = AL["Captain Greenskin"]; + Next_Page = "DMVanCleef"; + Next_Title = AL["Edwin VanCleef"]; + Prev_Page = "DMCookie"; + Prev_Title = AL["Cookie"]; + }; + ["DMVanCleef"] = { + Title = AL["Edwin VanCleef"]; + Next_Page = "DMTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "DMCaptainGreenskin"; + Prev_Title = AL["Captain Greenskin"]; + }; + ["DMTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "DMVanCleef"; + Prev_Title = AL["Edwin VanCleef"]; + }; + ["TCGGrovetenderEngryss"] = { + Title = AL["Grovetender Engryss"]; + Next_Page = "TCGKeeperRanathos"; + Next_Title = AL["Keeper Ranathos"]; + }; + ["TCGKeeperRanathos"] = { + Title = AL["Keeper Ranathos"]; + Next_Page = "TCGHighPriestessAlathea"; + Next_Title = AL["High Priestess A'lathea"]; + Prev_Page = "TCGGrovetenderEngryss"; + Prev_Title = AL["Grovetender Engryss"]; + }; + ["TCGHighPriestessAlathea"] = { + Title = AL["High Priestess A'lathea"]; + Next_Page = "TCGFenektistheDeceiver"; + Next_Title = AL["Fenektis the Deceiver"]; + Prev_Page = "TCGKeeperRanathos"; + Prev_Title = AL["Keeper Ranathos"]; + }; + ["TCGFenektistheDeceiver"] = { + Title = AL["Fenektis the Deceiver"]; + Next_Page = "TCGMasterRaxxieth"; + Next_Title = AL["Master Raxxieth"]; + Prev_Page = "TCGHighPriestessAlathea"; + Prev_Title = AL["High Priestess A'lathea"]; + }; + ["TCGMasterRaxxieth"] = { + Title = AL["Master Raxxieth"]; + Next_Page = "TCGTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "TCGFenektistheDeceiver"; + Prev_Title = AL["Fenektis the Deceiver"]; + }; + ["TCGTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "TCGMasterRaxxieth"; + Prev_Title = AL["Master Raxxieth"]; + }; + ["GnGrubbis"] = { + Title = AL["Grubbis"]; + Next_Page = "GnViscousFallout"; + Next_Title = AL["Viscous Fallout"]; + }; + ["GnViscousFallout"] = { + Title = AL["Viscous Fallout"]; + Next_Page = "GnElectrocutioner6000"; + Next_Title = AL["Electrocutioner 6000"]; + Prev_Page = "GnGrubbis"; + Prev_Title = AL["Grubbis"]; + }; + ["GnElectrocutioner6000"] = { + Title = AL["Electrocutioner 6000"]; + Next_Page = "GnCrowdPummeler960"; + Next_Title = AL["Crowd Pummeler 9-60"]; + Prev_Page = "GnViscousFallout"; + Prev_Title = AL["Viscous Fallout"]; + }; + ["GnCrowdPummeler960"] = { + Title = AL["Crowd Pummeler 9-60"]; + Next_Page = "GnDIAmbassador"; + Next_Title = AL["Dark Iron Ambassador"]; + Prev_Page = "GnElectrocutioner6000"; + Prev_Title = AL["Electrocutioner 6000"]; + }; + ["GnDIAmbassador"] = { + Title = AL["Dark Iron Ambassador"]; + Next_Page = "GnMekgineerThermaplugg"; + Next_Title = AL["Mekgineer Thermaplugg"]; + Prev_Page = "GnCrowdPummeler960"; + Prev_Title = AL["Crowd Pummeler 9-60"]; + }; + ["GnMekgineerThermaplugg"] = { + Title = AL["Mekgineer Thermaplugg"]; + Next_Page = "GnTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "GnDIAmbassador"; + Prev_Title = AL["Dark Iron Ambassador"]; + }; + ["GnTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "GnMekgineerThermaplugg"; + Prev_Title = AL["Mekgineer Thermaplugg"]; + }; + ["MCLucifron"] = { + Title = AL["Lucifron"]; + Next_Page = "MCMagmadar"; + Next_Title = AL["Magmadar"]; + }; + ["MCMagmadar"] = { + Title = AL["Magmadar"]; + Next_Page = "MCGehennas"; + Next_Title = AL["Gehennas"]; + Prev_Page = "MCLucifron"; + Prev_Title = AL["Lucifron"]; + }; + ["MCGehennas"] = { + Title = AL["Gehennas"]; + Next_Page = "MCGarr"; + Next_Title = AL["Garr"]; + Prev_Page = "MCMagmadar"; + Prev_Title = AL["Magmadar"]; + }; + ["MCGarr"] = { + Title = AL["Garr"]; + Next_Page = "MCShazzrah"; + Next_Title = AL["Shazzrah"]; + Prev_Page = "MCGehennas"; + Prev_Title = AL["Gehennas"]; + }; + ["MCShazzrah"] = { + Title = AL["Shazzrah"]; + Next_Page = "MCGeddon"; + Next_Title = AL["Baron Geddon"]; + Prev_Page = "MCGarr"; + Prev_Title = AL["Garr"]; + }; + ["MCGeddon"] = { + Title = AL["Baron Geddon"]; + Next_Page = "MCGolemagg"; + Next_Title = AL["Golemagg the Incinerator"]; + Prev_Page = "MCShazzrah"; + Prev_Title = AL["Shazzrah"]; + }; + ["MCGolemagg"] = { + Title = AL["Golemagg the Incinerator"]; + Next_Page = "MCSulfuron"; + Next_Title = AL["Sulfuron Harbinger"]; + Prev_Page = "MCGeddon"; + Prev_Title = AL["Baron Geddon"]; + }; + ["MCSulfuron"] = { + Title = AL["Sulfuron Harbinger"]; + Next_Page = "MCMajordomo"; + Next_Title = AL["Majordomo Executus"]; + Prev_Page = "MCGolemagg"; + Prev_Title = AL["Golemagg the Incinerator"]; + }; + ["MCMajordomo"] = { + Title = AL["Majordomo Executus"]; + Next_Page = "MCRagnaros"; + Next_Title = AL["Ragnaros"]; + Prev_Page = "MCSulfuron"; + Prev_Title = AL["Sulfuron Harbinger"]; + }; + ["MCRagnaros"] = { + Title = AL["Ragnaros"]; + Next_Page = "MCTrashMobs"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "MCMajordomo"; + Prev_Title = AL["Majordomo Executus"]; + }; + ["MCTrashMobs"] = { + Title = AL["Trash Mobs"]; + Next_Page = "MCRANDOMBOSSDROPS"; + Next_Title = AL["Random Boss Loot"]; + Prev_Page = "MCRagnaros"; + Prev_Title = AL["Ragnaros"]; + }; + ["MCRANDOMBOSSDROPS"] = { + Title = AL["Random Boss Loot"]; + Prev_Page = "MCTrashMobs"; + Prev_Title = AL["Trash Mobs"]; + }; + ["NAXPatchwerk"] = { + Title = AL["Patchwerk"]; + Next_Page = "NAXGrobbulus"; + Next_Title = AL["Grobbulus"]; + }; + ["NAXGrobbulus"] = { + Title = AL["Grobbulus"]; + Next_Page = "NAXGluth"; + Next_Title = AL["Gluth"]; + Prev_Page = "NAXPatchwerk"; + Prev_Title = AL["Patchwerk"]; + }; + ["NAXGluth"] = { + Title = AL["Gluth"]; + Next_Page = "NAXThaddius"; + Next_Title = AL["Thaddius"]; + Prev_Page = "NAXGrobbulus"; + Prev_Title = AL["Grobbulus"]; + }; + ["NAXThaddius"] = { + Title = AL["Thaddius"]; + Next_Page = "NAXAnubRekhan"; + Next_Title = AL["Anub'Rekhan"]; + Prev_Page = "NAXGluth"; + Prev_Title = AL["Gluth"]; + }; + ["NAXAnubRekhan"] = { + Title = AL["Anub'Rekhan"]; + Next_Page = "NAXGrandWidowFaerlina"; + Next_Title = AL["Grand Widow Faerlina"]; + Prev_Page = "NAXThaddius"; + Prev_Title = AL["Thaddius"]; + }; + ["NAXGrandWidowFaerlina"] = { + Title = AL["Grand Widow Faerlina"]; + Next_Page = "NAXMaexxna"; + Next_Title = AL["Maexxna"]; + Prev_Page = "NAXAnubRekhan"; + Prev_Title = AL["Anub'Rekhan"]; + }; + ["NAXMaexxna"] = { + Title = AL["Maexxna"]; + Next_Page = "NAXNoththePlaguebringer"; + Next_Title = AL["Noth the Plaguebringer"]; + Prev_Page = "NAXGrandWidowFaerlina"; + Prev_Title = AL["Grand Widow Faerlina"]; + }; + ["NAXNoththePlaguebringer"] = { + Title = AL["Noth the Plaguebringer"]; + Next_Page = "NAXHeigantheUnclean"; + Next_Title = AL["Heigan the Unclean"]; + Prev_Page = "NAXMaexxna"; + Prev_Title = AL["Maexxna"]; + }; + ["NAXHeigantheUnclean"] = { + Title = AL["Heigan the Unclean"]; + Next_Page = "NAXLoatheb"; + Next_Title = AL["Loatheb"]; + Prev_Page = "NAXNoththePlaguebringer"; + Prev_Title = AL["Noth the Plaguebringer"]; + }; + ["NAXLoatheb"] = { + Title = AL["Loatheb"]; + Next_Page = "NAXInstructorRazuvious"; + Next_Title = AL["Instructor Razuvious"]; + Prev_Page = "NAXHeigantheUnclean"; + Prev_Title = AL["Heigan the Unclean"]; + }; + ["NAXInstructorRazuvious"] = { + Title = AL["Instructor Razuvious"]; + Next_Page = "NAXGothiktheHarvester"; + Next_Title = AL["Gothik the Harvester"]; + Prev_Page = "NAXLoatheb"; + Prev_Title = AL["Loatheb"]; + }; + ["NAXGothiktheHarvester"] = { + Title = AL["Gothik the Harvester"]; + Next_Page = "NAXTheFourHorsemen"; + Next_Title = AL["The Four Horsemen"]; + Prev_Page = "NAXInstructorRazuvious"; + Prev_Title = AL["Instructor Razuvious"]; + }; + ["NAXTheFourHorsemen"] = { + Title = AL["The Four Horsemen"]; + Next_Page = "NAXSapphiron"; + Next_Title = AL["Sapphiron"]; + Prev_Page = "NAXGothiktheHarvester"; + Prev_Title = AL["Gothik the Harvester"]; + }; + ["NAXSapphiron"] = { + Title = AL["Sapphiron"]; + Next_Page = "NAXKelThuzard"; + Next_Title = AL["Kel'Thuzad"]; + Prev_Page = "NAXTheFourHorsemen"; + Prev_Title = AL["The Four Horsemen"]; + }; + ["NAXKelThuzard"] = { + Title = AL["Kel'Thuzad"]; + Next_Page = "NAXTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "NAXSapphiron"; + Prev_Title = AL["Sapphiron"]; + }; + ["NAXTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "NAXKelThuzard"; + Prev_Title = AL["Kel'Thuzad"]; + }; + ["SMVishas"] = { + Title = AL["Interrogator Vishas"]; + Next_Page = "SMScorn"; + Next_Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")"; + }; + ["SMScorn"] = { + Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")"; + Next_Page = "SMIronspine"; + Next_Title = AL["Ironspine"].." ("..AL["Rare"]..")"; + Prev_Page = "SMVishas"; + Prev_Title = AL["Interrogator Vishas"]; + }; + ["SMIronspine"] = { + Title = AL["Ironspine"].." ("..AL["Rare"]..")"; + Next_Page = "SMAzshir"; + Next_Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")"; + Prev_Page = "SMScorn"; + Prev_Title = AL["Scorn"].." ("..AL["Scourge Invasion"]..")"; + }; + ["SMAzshir"] = { + Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")"; + Next_Page = "SMFallenChampion"; + Next_Title = AL["Fallen Champion"].." ("..AL["Rare"]..")"; + Prev_Page = "SMIronspine"; + Prev_Title = AL["Ironspine"].." ("..AL["Rare"]..")"; + }; + ["SMFallenChampion"] = { + Title = AL["Fallen Champion"].." ("..AL["Rare"]..")"; + Next_Page = "SMBloodmageThalnos"; + Next_Title = AL["Bloodmage Thalnos"]; + Prev_Page = "SMAzshir"; + Prev_Title = AL["Azshir the Sleepless"].." ("..AL["Rare"]..")"; + }; + ["SMBloodmageThalnos"] = { + Title = AL["Bloodmage Thalnos"]; + Next_Page = "SMGTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "SMFallenChampion"; + Prev_Title = AL["Fallen Champion"].." ("..AL["Rare"]..")"; + }; + ["SMGTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "SMBloodmageThalnos"; + Prev_Title = AL["Bloodmage Thalnos"]; + }; + ["SMHoundmasterLoksey"] = { + Title = AL["Houndmaster Loksey"]; + Next_Page = "SMDoan"; + Next_Title = AL["Arcanist Doan"]; + }; + ["SMDoan"] = { + Title = AL["Arcanist Doan"]; + Next_Page = "SMLTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "SMHoundmasterLoksey"; + Prev_Title = AL["Houndmaster Loksey"]; + }; + ["SMLTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "SMDoan"; + Prev_Title = AL["Arcanist Doan"]; + }; + ["SMHerod"] = { + Title = AL["Herod"]; + Next_Page = "SMATrash"; + Next_Title = AL["Trash Mobs"]; + }; + ["SMATrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "SMHerod"; + Prev_Title = AL["Herod"]; + }; + ["SMFairbanks"] = { + Title = AL["High Inquisitor Fairbanks"]; + Next_Page = "SMMograine"; + Next_Title = AL["Scarlet Commander Mograine"]; + }; + ["SMMograine"] = { + Title = AL["Scarlet Commander Mograine"]; + Next_Page = "SMWhitemane"; + Next_Title = AL["High Inquisitor Whitemane"]; + Prev_Page = "SMFairbanks"; + Prev_Title = AL["High Inquisitor Fairbanks"]; + }; + ["SMWhitemane"] = { + Title = AL["High Inquisitor Whitemane"]; + Next_Page = "SMCTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "SMMograine"; + Prev_Title = AL["Scarlet Commander Mograine"]; + }; + ["SMCTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "SMWhitemane"; + Prev_Title = AL["High Inquisitor Whitemane"]; + }; + ["SCHOLOBlood"] = { + Title = AL["Blood Steward of Kirtonos"]; + Next_Page = "SCHOLOKirtonostheHerald"; + Next_Title = AL["Kirtonos the Herald"]; + }; + ["SCHOLOKirtonostheHerald"] = { + Title = AL["Kirtonos the Herald"]; + Next_Page = "SCHOLOJandiceBarov"; + Next_Title = AL["Jandice Barov"]; + Prev_Page = "SCHOLOBlood"; + Prev_Title = AL["Blood Steward of Kirtonos"]; + }; + ["SCHOLOJandiceBarov"] = { + Title = AL["Jandice Barov"]; + Next_Page = "SCHOLOLordBlackwood"; + Next_Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")"; + Prev_Page = "SCHOLOKirtonostheHerald"; + Prev_Title = AL["Kirtonos the Herald"]; + }; + ["SCHOLOLordBlackwood"] = { + Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")"; + Next_Page = "SCHOLORattlegore"; + Next_Title = AL["Rattlegore"]; + Prev_Page = "SCHOLOJandiceBarov"; + Prev_Title = AL["Jandice Barov"]; + }; + ["SCHOLORattlegore"] = { + Title = AL["Rattlegore"]; + Next_Page = "SCHOLODeathKnight"; + Next_Title = AL["Death Knight Darkreaver"]; + Prev_Page = "SCHOLOLordBlackwood"; + Prev_Title = AL["Lord Blackwood"].." ("..AL["Scourge Invasion"]..")"; + }; + ["SCHOLODeathKnight"] = { + Title = AL["Death Knight Darkreaver"]; + Next_Page = "SCHOLOMarduk"; + Next_Title = AL["Marduk Blackpool"]; + Prev_Page = "SCHOLORattlegore"; + Prev_Title = AL["Rattlegore"]; + }; + ["SCHOLOMarduk"] = { + Title = AL["Marduk Blackpool"]; + Next_Page = "SCHOLOVectus"; + Next_Title = AL["Vectus"]; + Prev_Page = "SCHOLODeathKnight"; + Prev_Title = AL["Death Knight Darkreaver"]; + }; + ["SCHOLOVectus"] = { + Title = AL["Vectus"]; + Next_Page = "SCHOLORasFrostwhisper"; + Next_Title = AL["Ras Frostwhisper"]; + Prev_Page = "SCHOLOMarduk"; + Prev_Title = AL["Marduk Blackpool"]; + }; + ["SCHOLORasFrostwhisper"] = { + Title = AL["Ras Frostwhisper"]; + Next_Page = "SCHOLOKormok"; + Next_Title = AL["Kormok"]; + Prev_Page = "SCHOLOVectus"; + Prev_Title = AL["Vectus"]; + }; + ["SCHOLOKormok"] = { + Title = AL["Kormok"]; + Next_Page = "SCHOLOInstructorMalicia"; + Next_Title = AL["Instructor Malicia"]; + Prev_Page = "SCHOLORasFrostwhisper"; + Prev_Title = AL["Ras Frostwhisper"]; + }; + ["SCHOLOInstructorMalicia"] = { + Title = AL["Instructor Malicia"]; + Next_Page = "SCHOLODoctorTheolenKrastinov"; + Next_Title = AL["Doctor Theolen Krastinov"]; + Prev_Page = "SCHOLOKormok"; + Prev_Title = AL["Kormok"]; + }; + ["SCHOLODoctorTheolenKrastinov"] = { + Title = AL["Doctor Theolen Krastinov"]; + Next_Page = "SCHOLOLorekeeperPolkelt"; + Next_Title = AL["Lorekeeper Polkelt"]; + Prev_Page = "SCHOLOInstructorMalicia"; + Prev_Title = AL["Instructor Malicia"]; + }; + ["SCHOLOLorekeeperPolkelt"] = { + Title = AL["Lorekeeper Polkelt"]; + Next_Page = "SCHOLOTheRavenian"; + Next_Title = AL["The Ravenian"]; + Prev_Page = "SCHOLODoctorTheolenKrastinov"; + Prev_Title = AL["Doctor Theolen Krastinov"]; + }; + ["SCHOLOTheRavenian"] = { + Title = AL["The Ravenian"]; + Next_Page = "SCHOLOLordAlexeiBarov"; + Next_Title = AL["Lord Alexei Barov"]; + Prev_Page = "SCHOLOLorekeeperPolkelt"; + Prev_Title = AL["Lorekeeper Polkelt"]; + }; + ["SCHOLOLordAlexeiBarov"] = { + Title = AL["Lord Alexei Barov"]; + Next_Page = "SCHOLOLadyIlluciaBarov"; + Next_Title = AL["Lady Illucia Barov"]; + Prev_Page = "SCHOLOTheRavenian"; + Prev_Title = AL["The Ravenian"]; + }; + ["SCHOLOLadyIlluciaBarov"] = { + Title = AL["Lady Illucia Barov"]; + Next_Page = "SCHOLODarkmasterGandling"; + Next_Title = AL["Darkmaster Gandling"]; + Prev_Page = "SCHOLOLordAlexeiBarov"; + Prev_Title = AL["Lord Alexei Barov"]; + }; + ["SCHOLODarkmasterGandling"] = { + Title = AL["Darkmaster Gandling"]; + Next_Page = "SCHOLOTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "SCHOLOLadyIlluciaBarov"; + Prev_Title = AL["Lady Illucia Barov"]; + }; + ["SCHOLOTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "SCHOLODarkmasterGandling"; + Prev_Title = AL["Darkmaster Gandling"]; + }; + ["SFKRethilgore"] = { + Title = AL["Rethilgore"]; + Next_Page = "SFKFelSteed"; + Next_Title = AL["Fel Steed"]; + }; + ["SFKFelSteed"] = { + Title = AL["Fel Steed"]; + Next_Page = "SFKRazorclawtheButcher"; + Next_Title = AL["Razorclaw the Butcher"]; + Prev_Page = "SFKRethilgore"; + Prev_Title = AL["Rethilgore"]; + }; + ["SFKRazorclawtheButcher"] = { + Title = AL["Razorclaw the Butcher"]; + Next_Page = "SFKSilverlaine"; + Next_Title = AL["Baron Silverlaine"]; + Prev_Page = "SFKFelSteed"; + Prev_Title = AL["Fel Steed"]; + }; + ["SFKSilverlaine"] = { + Title = AL["Baron Silverlaine"]; + Next_Page = "SFKSpringvale"; + Next_Title = AL["Commander Springvale"]; + Prev_Page = "SFKRazorclawtheButcher"; + Prev_Title = AL["Razorclaw the Butcher"]; + }; + ["SFKSpringvale"] = { + Title = AL["Commander Springvale"]; + Next_Page = "SFKSever"; + Next_Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")"; + Prev_Page = "SFKSilverlaine"; + Prev_Title = AL["Baron Silverlaine"]; + }; + ["SFKSever"] = { + Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")"; + Next_Page = "SFKOdotheBlindwatcher"; + Next_Title = AL["Odo the Blindwatcher"]; + Prev_Page = "SFKSpringvale"; + Prev_Title = AL["Commander Springvale"]; + }; + ["SFKOdotheBlindwatcher"] = { + Title = AL["Odo the Blindwatcher"]; + Next_Page = "SFKDeathswornCaptain"; + Next_Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")"; + Prev_Page = "SFKSever"; + Prev_Title = AL["Sever"].." ("..AL["Scourge Invasion"]..")"; + }; + ["SFKDeathswornCaptain"] = { + Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")"; + Next_Page = "SFKFenrustheDevourer"; + Next_Title = AL["Fenrus the Devourer"]; + Prev_Page = "SFKOdotheBlindwatcher"; + Prev_Title = AL["Odo the Blindwatcher"]; + }; + ["SFKFenrustheDevourer"] = { + Title = AL["Fenrus the Devourer"]; + Next_Page = "SFKArugalsVoidwalker"; + Next_Title = AL["Arugal's Voidwalker"]; + Prev_Page = "SFKDeathswornCaptain"; + Prev_Title = AL["Deathsworn Captain"].." ("..AL["Rare"]..")"; + }; + ["SFKArugalsVoidwalker"] = { + Title = AL["Arugal's Voidwalker"]; + Next_Page = "SFKWolfMasterNandos"; + Next_Title = AL["Wolf Master Nandos"]; + Prev_Page = "SFKFenrustheDevourer"; + Prev_Title = AL["Fenrus the Devourer"]; + }; + ["SFKWolfMasterNandos"] = { + Title = AL["Wolf Master Nandos"]; + Next_Page = "SFKArchmageArugal"; + Next_Title = AL["Archmage Arugal"]; + Prev_Page = "SFKArugalsVoidwalker"; + Prev_Title = AL["Arugal's Voidwalker"]; + }; + ["SFKArchmageArugal"] = { + Title = AL["Archmage Arugal"]; + Next_Page = "SFKTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "SFKWolfMasterNandos"; + Prev_Title = AL["Wolf Master Nandos"]; + }; + ["SFKTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "SFKArchmageArugal"; + Prev_Title = AL["Archmage Arugal"]; + }; + ["SWStTargorr"] = { + Title = AL["Targorr the Dread"]; + Next_Page = "SWStKamDeepfury"; + Next_Title = AL["Kam Deepfury"]; + }; + ["SWStKamDeepfury"] = { + Title = AL["Kam Deepfury"]; + Next_Page = "SWStHamhock"; + Next_Title = AL["Hamhock"]; + Prev_Page = "SWStTargorr"; + Prev_Title = AL["Targorr the Dread"]; + }; + ["SWStHamhock"] = { + Title = AL["Hamhock"]; + Next_Page = "SWStDextren"; + Next_Title = AL["Dextren Ward"]; + Prev_Page = "SWStKamDeepfury"; + Prev_Title = AL["Kam Deepfury"]; + }; + ["SWStDextren"] = { + Title = AL["Dextren Ward"]; + Next_Page = "SWStBazil"; + Next_Title = AL["Bazil Thredd"]; + Prev_Page = "SWStHamhock"; + Prev_Title = AL["Hamhock"]; + }; + ["SWStBazil"] = { + Title = AL["Bazil Thredd"]; + Next_Page = "SWStBruegalIronknuckle"; + Next_Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")"; + Prev_Page = "SWStDextren"; + Prev_Title = AL["Dextren Ward"]; + }; + ["SWStBruegalIronknuckle"] = { + Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")"; + Next_Page = "SWStTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "SWStBazil"; + Prev_Title = AL["Bazil Thredd"]; + }; + ["SWStTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "SWStBruegalIronknuckle"; + Prev_Title = AL["Bruegal Ironknuckle"].." ("..AL["Rare"]..")"; + }; + ["STRATSkull"] = { + Title = AL["Skul"].." ("..AL["Rare"]..")"; + Next_Page = "STRATStratholmeCourier"; + Next_Title = AL["Stratholme Courier"]; + }; + ["STRATStratholmeCourier"] = { + Title = AL["Stratholme Courier"]; + Next_Page = "STRATPostmaster"; + Next_Title = AL["Postmaster Malown"]; + Prev_Page = "STRATSkull"; + Prev_Title = AL["Skul"].." ("..AL["Rare"]..")"; + }; + ["STRATPostmaster"] = { + Title = AL["Postmaster Malown"]; + Next_Page = "STRATFrasSiabi"; + Next_Title = AL["Fras Siabi"]; + Prev_Page = "STRATStratholmeCourier"; + Prev_Title = AL["Stratholme Courier"]; + }; + ["STRATFrasSiabi"] = { + Title = AL["Fras Siabi"]; + Next_Page = "STRATAtiesh"; + Next_Title = AL["Atiesh"]; + Prev_Page = "STRATPostmaster"; + Prev_Title = AL["Postmaster Malown"]; + }; + ["STRATAtiesh"] = { + Title = AL["Atiesh"]; + Next_Page = "STRATBalzaphon"; + Next_Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")"; + Prev_Page = "STRATFrasSiabi"; + Prev_Title = AL["Fras Siabi"]; + }; + ["STRATBalzaphon"] = { + Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")"; + Next_Page = "STRATHearthsingerForresten"; + Next_Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")"; + Prev_Page = "STRATAtiesh"; + Prev_Title = AL["Atiesh"]; + }; + ["STRATHearthsingerForresten"] = { + Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")"; + Next_Page = "STRATTheUnforgiven"; + Next_Title = AL["The Unforgiven"]; + Prev_Page = "STRATBalzaphon"; + Prev_Title = AL["Balzaphon"].." ("..AL["Scourge Invasion"]..")"; + }; + ["STRATTheUnforgiven"] = { + Title = AL["The Unforgiven"]; + Next_Page = "STRATTimmytheCruel"; + Next_Title = AL["Timmy the Cruel"]; + Prev_Page = "STRATHearthsingerForresten"; + Prev_Title = AL["Hearthsinger Forresten"].." ("..AL["Rare"]..")"; + }; + ["STRATTimmytheCruel"] = { + Title = AL["Timmy the Cruel"]; + Next_Page = "STRATMalor"; + Next_Title = AL["Malor the Zealous"]; + Prev_Page = "STRATTheUnforgiven"; + Prev_Title = AL["The Unforgiven"]; + }; + ["STRATMalor"] = { + Title = AL["Malor the Zealous"]; + Next_Page = "STRATMalorsStrongbox"; + Next_Title = AL["Malor's Strongbox"]; + Prev_Page = "STRATTimmytheCruel"; + Prev_Title = AL["Timmy the Cruel"]; + }; + ["STRATMalorsStrongbox"] = { + Title = AL["Malor's Strongbox"]; + Next_Page = "STRATCrimsonHammersmith"; + Next_Title = AL["Crimson Hammersmith"]; + Prev_Page = "STRATMalor"; + Prev_Title = AL["Malor the Zealous"]; + }; + ["STRATCrimsonHammersmith"] = { + Title = AL["Crimson Hammersmith"]; + Next_Page = "STRATCannonMasterWilley"; + Next_Title = AL["Cannon Master Willey"]; + Prev_Page = "STRATMalorsStrongbox"; + Prev_Title = AL["Malor's Strongbox"]; + }; + ["STRATCannonMasterWilley"] = { + Title = AL["Cannon Master Willey"]; + Next_Page = "STRATArchivistGalford"; + Next_Title = AL["Archivist Galford"]; + Prev_Page = "STRATCrimsonHammersmith"; + Prev_Title = AL["Crimson Hammersmith"]; + }; + ["STRATArchivistGalford"] = { + Title = AL["Archivist Galford"]; + Next_Page = "STRATBalnazzar"; + Next_Title = AL["Balnazzar"]; + Prev_Page = "STRATCannonMasterWilley"; + Prev_Title = AL["Cannon Master Willey"]; + }; + ["STRATBalnazzar"] = { + Title = AL["Balnazzar"]; + Next_Page = "STRATSothosJarien"; + Next_Title = AL["Sothos"].." & "..AL["Jarien"]; + Prev_Page = "STRATArchivistGalford"; + Prev_Title = AL["Archivist Galford"]; + }; + ["STRATSothosJarien"] = { + Title = AL["Sothos"].." & "..AL["Jarien"]; + Next_Page = "STRATStonespine"; + Next_Title = AL["Stonespine"].." ("..AL["Rare"]..")"; + Prev_Page = "STRATBalnazzar"; + Prev_Title = AL["Balnazzar"]; + }; + ["STRATStonespine"] = { + Title = AL["Stonespine"].." ("..AL["Rare"]..")"; + Next_Page = "STRATBaronessAnastari"; + Next_Title = AL["Baroness Anastari"]; + Prev_Page = "STRATSothosJarien"; + Prev_Title = AL["Sothos"].." & "..AL["Jarien"]; + }; + ["STRATBaronessAnastari"] = { + Title = AL["Baroness Anastari"]; + Next_Page = "STRATBlackGuardSwordsmith"; + Next_Title = AL["Black Guard Swordsmith"]; + Prev_Page = "STRATStonespine"; + Prev_Title = AL["Stonespine"].." ("..AL["Rare"]..")"; + }; + ["STRATBlackGuardSwordsmith"] = { + Title = AL["Black Guard Swordsmith"]; + Next_Page = "STRATNerubenkan"; + Next_Title = AL["Nerub'enkan"]; + Prev_Page = "STRATBaronessAnastari"; + Prev_Title = AL["Baroness Anastari"]; + }; + ["STRATNerubenkan"] = { + Title = AL["Nerub'enkan"]; + Next_Page = "STRATMalekithePallid"; + Next_Title = AL["Maleki the Pallid"]; + Prev_Page = "STRATBlackGuardSwordsmith"; + Prev_Title = AL["Black Guard Swordsmith"]; + }; + ["STRATMalekithePallid"] = { + Title = AL["Maleki the Pallid"]; + Next_Page = "STRATMagistrateBarthilas"; + Next_Title = AL["Magistrate Barthilas"]; + Prev_Page = "STRATNerubenkan"; + Prev_Title = AL["Nerub'enkan"]; + }; + ["STRATMagistrateBarthilas"] = { + Title = AL["Magistrate Barthilas"]; + Next_Page = "STRATRamsteintheGorger"; + Next_Title = AL["Ramstein the Gorger"]; + Prev_Page = "STRATMalekithePallid"; + Prev_Title = AL["Maleki the Pallid"]; + }; + ["STRATRamsteintheGorger"] = { + Title = AL["Ramstein the Gorger"]; + Next_Page = "STRATBaronRivendare"; + Next_Title = AL["Baron Rivendare"]; + Prev_Page = "STRATMagistrateBarthilas"; + Prev_Title = AL["Magistrate Barthilas"]; + }; + ["STRATBaronRivendare"] = { + Title = AL["Baron Rivendare"]; + Next_Page = "STRATTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "STRATRamsteintheGorger"; + Prev_Title = AL["Ramstein the Gorger"]; + }; + ["STRATTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "STRATBaronRivendare"; + Prev_Title = AL["Baron Rivendare"]; + }; + ["STBalconyMinibosses"] = { + Title = AL["Balcony Minibosses"]; + Next_Page = "STAtalalarion"; + Next_Title = AL["Atal'alarion"]; + }; + ["STAtalalarion"] = { + Title = AL["Atal'alarion"]; + Next_Page = "STSpawnOfHakkar"; + Next_Title = AL["Spawn of Hakkar"]; + Prev_Page = "STBalconyMinibosses"; + Prev_Title = AL["Balcony Minibosses"]; + }; + ["STSpawnOfHakkar"] = { + Title = AL["Spawn of Hakkar"]; + Next_Page = "STAvatarofHakkar"; + Next_Title = AL["Avatar of Hakkar"]; + Prev_Page = "STAtalalarion"; + Prev_Title = AL["Atal'alarion"]; + }; + ["STAvatarofHakkar"] = { + Title = AL["Avatar of Hakkar"]; + Next_Page = "STJammalan"; + Next_Title = AL["Jammal'an the Prophet"]; + Prev_Page = "STSpawnOfHakkar"; + Prev_Title = AL["Spawn of Hakkar"]; + }; + ["STJammalan"] = { + Title = AL["Jammal'an the Prophet"]; + Next_Page = "STOgom"; + Next_Title = AL["Ogom the Wretched"]; + Prev_Page = "STAvatarofHakkar"; + Prev_Title = AL["Avatar of Hakkar"]; + }; + ["STOgom"] = { + Title = AL["Ogom the Wretched"]; + Next_Page = "STDreamscythe"; + Next_Title = AL["Dreamscythe"]; + Prev_Page = "STJammalan"; + Prev_Title = AL["Jammal'an the Prophet"]; + }; + ["STDreamscythe"] = { + Title = AL["Dreamscythe"]; + Next_Page = "STWeaver"; + Next_Title = AL["Weaver"]; + Prev_Page = "STOgom"; + Prev_Title = AL["Ogom the Wretched"]; + }; + ["STWeaver"] = { + Title = AL["Weaver"]; + Next_Page = "STMorphaz"; + Next_Title = AL["Morphaz"]; + Prev_Page = "STDreamscythe"; + Prev_Title = AL["Dreamscythe"]; + }; + ["STMorphaz"] = { + Title = AL["Morphaz"]; + Next_Page = "STHazzas"; + Next_Title = AL["Hazzas"]; + Prev_Page = "STWeaver"; + Prev_Title = AL["Weaver"]; + }; + ["STHazzas"] = { + Title = AL["Hazzas"]; + Next_Page = "STEranikus"; + Next_Title = AL["Shade of Eranikus"]; + Prev_Page = "STMorphaz"; + Prev_Title = AL["Morphaz"]; + }; + ["STEranikus"] = { + Title = AL["Shade of Eranikus"]; + Next_Page = "STTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "STHazzas"; + Prev_Title = AL["Hazzas"]; + }; + ["STTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "STEranikus"; + Prev_Title = AL["Shade of Eranikus"]; + }; + ["UldBaelog"] = { + Title = AL["Baelog"]; + Next_Page = "UldOlaf"; + Next_Title = AL["Olaf"]; + }; + ["UldOlaf"] = { + Title = AL["Olaf"]; + Next_Page = "UldEric"; + Next_Title = AL["Eric 'The Swift'"]; + Prev_Page = "UldBaelog"; + Prev_Title = AL["Baelog"]; + }; + ["UldEric"] = { + Title = AL["Eric 'The Swift'"]; + Next_Page = "UldRevelosh"; + Next_Title = AL["Revelosh"]; + Prev_Page = "UldOlaf"; + Prev_Title = AL["Olaf"]; + }; + ["UldRevelosh"] = { + Title = AL["Revelosh"]; + Next_Page = "UldIronaya"; + Next_Title = AL["Ironaya"]; + Prev_Page = "UldEric"; + Prev_Title = AL["Eric 'The Swift'"]; + }; + ["UldIronaya"] = { + Title = AL["Ironaya"]; + Next_Page = "UldAncientStoneKeeper"; + Next_Title = AL["Ancient Stone Keeper"]; + Prev_Page = "UldRevelosh"; + Prev_Title = AL["Revelosh"]; + }; + ["UldAncientStoneKeeper"] = { + Title = AL["Ancient Stone Keeper"]; + Next_Page = "UldGalgannFirehammer"; + Next_Title = AL["Galgann Firehammer"]; + Prev_Page = "UldIronaya"; + Prev_Title = AL["Ironaya"]; + }; + ["UldGalgannFirehammer"] = { + Title = AL["Galgann Firehammer"]; + Next_Page = "UldGrimlok"; + Next_Title = AL["Grimlok"]; + Prev_Page = "UldAncientStoneKeeper"; + Prev_Title = AL["Ancient Stone Keeper"]; + }; + ["UldGrimlok"] = { + Title = AL["Grimlok"]; + Next_Page = "UldArchaedas"; + Next_Title = AL["Archaedas"]; + Prev_Page = "UldGalgannFirehammer"; + Prev_Title = AL["Galgann Firehammer"]; + }; + ["UldArchaedas"] = { + Title = AL["Archaedas"]; + Next_Page = "UldTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "UldGrimlok"; + Prev_Title = AL["Grimlok"]; + }; + ["UldTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "UldArchaedas"; + Prev_Title = AL["Archaedas"]; + }; + ["GCMatthiasHoltz"] = { + Title = AL["Matthias Holtz"]; + Next_Page = "GCPackmasterRagetooth"; + Next_Title = AL["Packmaster Ragetooth"]; + Prev_Page = "GCTrash"; + Prev_Title = AL["Trash Mobs"]; + }; + ["GCPackmasterRagetooth"] = { + Title = AL["Packmaster Ragetooth"]; + Next_Page = "GCJudgeSutherland"; + Next_Title = AL["Judge Sutherland"]; + Prev_Page = "GCMatthiasHoltz"; + Prev_Title = AL["Matthias Holtz"]; + }; + ["GCJudgeSutherland"] = { + Title = AL["Judge Sutherland"]; + Prev_Page = "GCPackmasterRagetooth"; + Prev_Title = AL["Packmaster Ragetooth"]; + Next_Page = "GCDustivanBlackcowl"; + Next_Title = AL["Dustivan Blackcowl"]; + }; + ["GCDustivanBlackcowl"] = { + Title = AL["Dustivan Blackcowl"]; + Prev_Page = "GCJudgeSutherland"; + Prev_Title = AL["Judge Sutherland"]; + Next_Page = "GCMarshalMagnusGreystone"; + Next_Title = AL["Marshal Magnus Greystone"]; + }; + ["GCMarshalMagnusGreystone"] = { + Title = AL["Marshal Magnus Greystone"]; + Prev_Page = "GCDustivanBlackcowl"; + Prev_Title = AL["Dustivan Blackcowl"]; + Next_Page = "GCHorsemasterLevvin"; + Next_Title = AL["Horsemaster Levvin"]; + }; + ["GCHorsemasterLevvin"] = { + Title = AL["Horsemaster Levvin"]; + Prev_Page = "GCMarshalMagnusGreystone"; + Prev_Title = AL["Marshal Magnus Greystone"]; + Next_Page = "GCHarlowFamilyChest"; + Next_Title = AL["Harlow Family Chest"]; + }; + ["GCHarlowFamilyChest"] = { + Title = AL["Harlow Family Chest"]; + Prev_Page = "GCHorsemasterLevvin"; + Prev_Title = AL["Horsemaster Levvin"]; + Next_Page = "GCGennGreymane"; + Next_Title = AL["Genn Greymane"]; + }; + ["GCGennGreymane"] = { + Title = AL["Genn Greymane"]; + Prev_Page = "GCHarlowFamilyChest"; + Prev_Title = AL["Harlow Family Chest"]; + Next_Page = "GCTrash"; + Next_Title = AL["Trash Mobs"]; + }; + ["GCTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "GCGennGreymane"; + Prev_Title = AL["Genn Greymane"]; + Next_Page = "GCMatthiasHoltz"; + Next_Title = AL["Matthias Holtz"]; + }; + ["ZGJeklik"] = { + Title = AL["High Priestess Jeklik"]; + Next_Page = "ZGVenoxis"; + Next_Title = AL["High Priest Venoxis"]; + }; + ["ZGVenoxis"] = { + Title = AL["High Priest Venoxis"]; + Next_Page = "ZGMarli"; + Next_Title = AL["High Priestess Mar'li"]; + Prev_Page = "ZGJeklik"; + Prev_Title = AL["High Priestess Jeklik"]; + }; + ["ZGMarli"] = { + Title = AL["High Priestess Mar'li"]; + Next_Page = "ZGMandokir"; + Next_Title = AL["Bloodlord Mandokir"]; + Prev_Page = "ZGVenoxis"; + Prev_Title = AL["High Priest Venoxis"]; + }; + ["ZGMandokir"] = { + Title = AL["Bloodlord Mandokir"]; + Next_Page = "ZGGrilek"; + Next_Title = AL["Gri'lek"]; + Prev_Page = "ZGMarli"; + Prev_Title = AL["High Priestess Mar'li"]; + }; + ["ZGGrilek"] = { + Title = AL["Gri'lek"]; + Next_Page = "ZGHazzarah"; + Next_Title = AL["Hazza'rah"]; + Prev_Page = "ZGMandokir"; + Prev_Title = AL["Bloodlord Mandokir"]; + }; + ["ZGHazzarah"] = { + Title = AL["Hazza'rah"]; + Next_Page = "ZGRenataki"; + Next_Title = AL["Renataki"]; + Prev_Page = "ZGGrilek"; + Prev_Title = AL["Gri'lek"]; + }; + ["ZGRenataki"] = { + Title = AL["Renataki"]; + Next_Page = "ZGWushoolay"; + Next_Title = AL["Wushoolay"]; + Prev_Page = "ZGHazzarah"; + Prev_Title = AL["Hazza'rah"]; + }; + ["ZGWushoolay"] = { + Title = AL["Wushoolay"]; + Next_Page = "ZGGahzranka"; + Next_Title = AL["Gahz'ranka"]; + Prev_Page = "ZGRenataki"; + Prev_Title = AL["Renataki"]; + }; + ["ZGGahzranka"] = { + Title = AL["Gahz'ranka"]; + Next_Page = "ZGThekal"; + Next_Title = AL["High Priest Thekal"]; + Prev_Page = "ZGWushoolay"; + Prev_Title = AL["Wushoolay"]; + }; + ["ZGThekal"] = { + Title = AL["High Priest Thekal"]; + Next_Page = "ZGArlokk"; + Next_Title = AL["High Priestess Arlokk"]; + Prev_Page = "ZGGahzranka"; + Prev_Title = AL["Gahz'ranka"]; + }; + ["ZGArlokk"] = { + Title = AL["High Priestess Arlokk"]; + Next_Page = "ZGJindo"; + Next_Title = AL["Jin'do the Hexxer"]; + Prev_Page = "ZGThekal"; + Prev_Title = AL["High Priest Thekal"]; + }; + ["ZGJindo"] = { + Title = AL["Jin'do the Hexxer"]; + Next_Page = "ZGHakkar"; + Next_Title = AL["Hakkar"]; + Prev_Page = "ZGArlokk"; + Prev_Title = AL["High Priestess Arlokk"]; + }; + ["ZGHakkar"] = { + Title = AL["Hakkar"]; + Next_Page = "ZGShared"; + Next_Title = AL["Random Boss Loot"]; + Prev_Page = "ZGJindo"; + Prev_Title = AL["Jin'do the Hexxer"]; + }; + ["ZGShared"] = { + Title = AL["Random Boss Loot"]; + Next_Page = "ZGTrash1"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "ZGHakkar"; + Prev_Title = AL["Hakkar"]; + }; + ["ZGTrash1"] = { + Title = AL["Trash Mobs"]; + Next_Page = "ZGEnchants"; + Next_Title = AL["ZG Enchants"]; + Prev_Page = "ZGShared"; + Prev_Title = AL["Random Boss Loot"]; + }; + ["ZGEnchants"] = { + Title = AL["ZG Enchants"]; + Prev_Page = "ZGTrash1"; + Prev_Title = AL["Trash Mobs"]; + }; + ["BFDGhamoora"] = { + Title = AL["Ghamoo-ra"]; + Next_Page = "BFDLadySarevess"; + Next_Title = AL["Lady Sarevess"]; + }; + ["BFDLadySarevess"] = { + Title = AL["Lady Sarevess"]; + Next_Page = "BFDGelihast"; + Next_Title = AL["Gelihast"]; + Prev_Page = "BFDGhamoora"; + Prev_Title = AL["Ghamoo-ra"]; + }; + ["BFDGelihast"] = { + Title = AL["Gelihast"]; + Next_Page = "BFDBaronAquanis"; + Next_Title = AL["Baron Aquanis"]; + Prev_Page = "BFDLadySarevess"; + Prev_Title = AL["Lady Sarevess"]; + }; + ["BFDBaronAquanis"] = { + Title = AL["Baron Aquanis"]; + Next_Page = "BFDTwilightLordKelris"; + Next_Title = AL["Twilight Lord Kelris"]; + Prev_Page = "BFDGelihast"; + Prev_Title = AL["Gelihast"]; + }; + ["BFDTwilightLordKelris"] = { + Title = AL["Twilight Lord Kelris"]; + Next_Page = "BFDOldSerrakis"; + Next_Title = AL["Old Serra'kis"]; + Prev_Page = "BFDBaronAquanis"; + Prev_Title = AL["Baron Aquanis"]; + }; + ["BFDOldSerrakis"] = { + Title = AL["Old Serra'kis"]; + Next_Page = "BFDAkumai"; + Next_Title = AL["Aku'mai"]; + Prev_Page = "BFDTwilightLordKelris"; + Prev_Title = AL["Twilight Lord Kelris"]; + }; + ["BFDAkumai"] = { + Title = AL["Aku'mai"]; + Next_Page = "BFDTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "BFDOldSerrakis"; + Prev_Title = AL["Old Serra'kis"]; + }; + ["BFDTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "BFDAkumai"; + Prev_Title = AL["Aku'mai"]; + }; + ["DMEPusillin"] = { + Title = AL["Pusillin"]; + Next_Page = "DMEZevrimThornhoof"; + Next_Title = AL["Zevrim Thornhoof"]; + }; + ["DMEZevrimThornhoof"] = { + Title = AL["Zevrim Thornhoof"]; + Next_Page = "DMEHydro"; + Next_Title = AL["Hydrospawn"]; + Prev_Page = "DMEPusillin"; + Prev_Title = AL["Pusillin"]; + }; + ["DMEHydro"] = { + Title = AL["Hydrospawn"]; + Next_Page = "DMELethtendris"; + Next_Title = AL["Lethtendris"]; + Prev_Page = "DMEZevrimThornhoof"; + Prev_Title = AL["Zevrim Thornhoof"]; + }; + ["DMELethtendris"] = { + Title = AL["Lethtendris"]; + Next_Page = "DMEPimgib"; + Next_Title = AL["Pimgib"]; + Prev_Page = "DMEHydro"; + Prev_Title = AL["Hydrospawn"]; + }; + ["DMEPimgib"] = { + Title = AL["Pimgib"]; + Next_Page = "DMEIsalien"; + Next_Title = AL["Isalien"]; + Prev_Page = "DMELethtendris"; + Prev_Title = AL["Lethtendris"]; + }; + ["DMEIsalien"] = { + Title = AL["Isalien"]; + Next_Page = "DMEAlzzin"; + Next_Title = AL["Alzzin the Wildshaper"]; + Prev_Page = "DMEPimgib"; + Prev_Title = AL["Pimgib"]; + }; + ["DMEAlzzin"] = { + Title = AL["Alzzin the Wildshaper"]; + Next_Page = "DMETrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "DMEIsalien"; + Prev_Title = AL["Isalien"]; + }; + ["DMETrash"] = { + Title = AL["Trash Mobs"]; + Next_Page = "DMBooks"; + Next_Title = AL["Dire Maul Books"]; + Prev_Page = "DMEAlzzin"; + Prev_Title = AL["Alzzin the Wildshaper"]; + }; + ["DMBooks"] = { + Title = AL["Dire Maul Books"]; + Prev_Page = "DMETrash"; + Prev_Title = AL["Trash Mobs"]; + }; + ["DMWTendrisWarpwood"] = { + Title = AL["Tendris Warpwood"]; + Next_Page = "DMWIllyannaRavenoak"; + Next_Title = AL["Illyanna Ravenoak"]; + }; + ["DMWIllyannaRavenoak"] = { + Title = AL["Illyanna Ravenoak"]; + Next_Page = "DMWMagisterKalendris"; + Next_Title = AL["Magister Kalendris"]; + Prev_Page = "DMWTendrisWarpwood"; + Prev_Title = AL["Tendris Warpwood"]; + }; + ["DMWMagisterKalendris"] = { + Title = AL["Magister Kalendris"]; + Next_Page = "DMWTsuzee"; + Next_Title = AL["Tsu'zee"].." ("..AL["Rare"]..")"; + Prev_Page = "DMWIllyannaRavenoak"; + Prev_Title = AL["Illyanna Ravenoak"]; + }; + ["DMWTsuzee"] = { + Title = AL["Tsu'zee"].." ("..AL["Rare"]..")"; + Next_Page = "DMWRevanchion"; + Next_Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")"; + Prev_Page = "DMWMagisterKalendris"; + Prev_Title = AL["Magister Kalendris"]; + }; + ["DMWRevanchion"] = { + Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")"; + Next_Page = "DMWImmolthar"; + Next_Title = AL["Immol'thar"]; + Prev_Page = "DMWTsuzee"; + Prev_Title = AL["Tsu'zee"].." ("..AL["Rare"]..")"; + }; + ["DMWImmolthar"] = { + Title = AL["Immol'thar"]; + Next_Page = "DMWHelnurath"; + Next_Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")"; + Prev_Page = "DMWRevanchion"; + Prev_Title = AL["Revanchion"].." ("..AL["Scourge Invasion"]..")"; + }; + ["DMWHelnurath"] = { + Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")"; + Next_Page = "DMWPrinceTortheldrin"; + Next_Title = AL["Prince Tortheldrin"]; + Prev_Page = "DMWImmolthar"; + Prev_Title = AL["Immol'thar"]; + }; + ["DMWPrinceTortheldrin"] = { + Title = AL["Prince Tortheldrin"]; + Next_Page = "DMWTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "DMWHelnurath"; + Prev_Title = AL["Lord Hel'nurath"].." ("..AL["Rare"]..")"; + }; + ["DMWTrash"] = { + Title = AL["Trash Mobs"]; + Next_Page = "DMBooks"; + Next_Title = AL["Dire Maul Books"]; + Prev_Page = "DMWPrinceTortheldrin"; + Prev_Title = AL["Prince Tortheldrin"]; + }; + ["DMBooks"] = { + Title = AL["Dire Maul Books"]; + Prev_Page = "DMWTrash"; + Prev_Title = AL["Trash Mobs"]; + }; + ["DMNGuardMoldar"] = { + Title = AL["Guard Mol'dar"]; + Next_Page = "DMNStomperKreeg"; + Next_Title = AL["Stomper Kreeg"]; + }; + ["DMNStomperKreeg"] = { + Title = AL["Stomper Kreeg"]; + Next_Page = "DMNGuardFengus"; + Next_Title = AL["Guard Fengus"]; + Prev_Page = "DMNGuardMoldar"; + Prev_Title = AL["Guard Mol'dar"]; + }; + ["DMNGuardFengus"] = { + Title = AL["Guard Fengus"]; + Next_Page = "DMNThimblejack"; + Next_Title = AL["Knot Thimblejack"]; + Prev_Page = "DMNStomperKreeg"; + Prev_Title = AL["Stomper Kreeg"]; + }; + ["DMNThimblejack"] = { + Title = AL["Knot Thimblejack"]; + Next_Page = "DMNGuardSlipkik"; + Next_Title = AL["Guard Slip'kik"]; + Prev_Page = "DMNGuardFengus"; + Prev_Title = AL["Guard Fengus"]; + }; + ["DMNGuardSlipkik"] = { + Title = AL["Guard Slip'kik"]; + Next_Page = "DMNCaptainKromcrush"; + Next_Title = AL["Captain Kromcrush"]; + Prev_Page = "DMNThimblejack"; + Prev_Title = AL["Knot Thimblejack"]; + }; + ["DMNCaptainKromcrush"] = { + Title = AL["Captain Kromcrush"]; + Next_Page = "DMNChoRush"; + Next_Title = AL["Cho'Rush the Observer"]; + Prev_Page = "DMNGuardSlipkik"; + Prev_Title = AL["Guard Slip'kik"]; + }; + ["DMNChoRush"] = { + Title = AL["Cho'Rush the Observer"]; + Next_Page = "DMNKingGordok"; + Next_Title = AL["King Gordok"]; + Prev_Page = "DMNCaptainKromcrush"; + Prev_Title = AL["Captain Kromcrush"]; + }; + ["DMNKingGordok"] = { + Title = AL["King Gordok"]; + Next_Page = "DMNTRIBUTERUN"; + Next_Title = AL["Tribute Run"]; + Prev_Page = "DMNChoRush"; + Prev_Title = AL["Cho'Rush the Observer"]; + }; + ["DMNTRIBUTERUN"] = { + Title = AL["Tribute Run"]; + Next_Page = "DMNTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "DMNKingGordok"; + Prev_Title = AL["King Gordok"]; + }; + ["DMNTrash"] = { + Title = AL["Trash Mobs"]; + Next_Page = "DMBooks"; + Next_Title = AL["Dire Maul Books"]; + Prev_Page = "DMNTRIBUTERUN"; + Prev_Title = AL["Tribute Run"]; + }; + ["DMBooks"] = { + Title = AL["Dire Maul Books"]; + Prev_Page = "DMNTrash"; + Prev_Title = AL["Trash Mobs"]; + }; + ["MaraNoxxion"] = { + Title = AL["Noxxion"]; + Next_Page = "MaraRazorlash"; + Next_Title = AL["Razorlash"]; + }; + ["MaraRazorlash"] = { + Title = AL["Razorlash"]; + Next_Page = "MaraLordVyletongue"; + Next_Title = AL["Lord Vyletongue"]; + Prev_Page = "MaraNoxxion"; + Prev_Title = AL["Noxxion"]; + }; + ["MaraLordVyletongue"] = { + Title = AL["Lord Vyletongue"]; + Next_Page = "MaraMeshlok"; + Next_Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")"; + Prev_Page = "MaraRazorlash"; + Prev_Title = AL["Razorlash"]; + }; + ["MaraMeshlok"] = { + Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")"; + Next_Page = "MaraCelebras"; + Next_Title = AL["Celebras the Cursed"]; + Prev_Page = "MaraLordVyletongue"; + Prev_Title = AL["Lord Vyletongue"]; + }; + ["MaraCelebras"] = { + Title = AL["Celebras the Cursed"]; + Next_Page = "MaraLandslide"; + Next_Title = AL["Landslide"]; + Prev_Page = "MaraMeshlok"; + Prev_Title = AL["Meshlok the Harvester"].." ("..AL["Rare"]..")"; + }; + ["MaraLandslide"] = { + Title = AL["Landslide"]; + Next_Page = "MaraTinkererGizlock"; + Next_Title = AL["Tinkerer Gizlock"]; + Prev_Page = "MaraCelebras"; + Prev_Title = AL["Celebras the Cursed"]; + }; + ["MaraTinkererGizlock"] = { + Title = AL["Tinkerer Gizlock"]; + Next_Page = "MaraRotgrip"; + Next_Title = AL["Rotgrip"]; + Prev_Page = "MaraLandslide"; + Prev_Title = AL["Landslide"]; + }; + ["MaraRotgrip"] = { + Title = AL["Rotgrip"]; + Next_Page = "MaraPrincessTheradras"; + Next_Title = AL["Princess Theradras"]; + Prev_Page = "MaraTinkererGizlock"; + Prev_Title = AL["Tinkerer Gizlock"]; + }; + ["MaraPrincessTheradras"] = { + Title = AL["Princess Theradras"]; + Next_Page = "MaraTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "MaraRotgrip"; + Prev_Title = AL["Rotgrip"]; + }; + ["MaraTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "MaraPrincessTheradras"; + Prev_Title = AL["Princess Theradras"]; + }; + ["RFCTaragaman"] = { + Title = AL["Taragaman the Hungerer"]; + Next_Page = "RFCOggleflint"; + Next_Title = AL["Oggleflint"]; + }; + ["RFCOggleflint"] = { + Title = AL["Oggleflint"]; + Next_Page = "RFCJergosh"; + Next_Title = AL["Jergosh the Invoker"]; + Prev_Page = "RFCTaragaman"; + Prev_Title = AL["Taragaman the Hungerer"]; + }; + ["RFCJergosh"] = { + Title = AL["Jergosh the Invoker"]; + Next_Page = "RFCBazzalan"; + Next_Title = AL["Bazzalan"]; + Prev_Page = "RFCOggleflint"; + Prev_Title = AL["Oggleflint"]; + }; + ["RFCBazzalan"] = { + Title = AL["Bazzalan"]; + Prev_Page = "RFCJergosh"; + Prev_Title = AL["Jergosh the Invoker"]; + }; + ["RFDTutenkash"] = { + Title = AL["Tuten'kash"]; + Next_Page = "RFDLadyF"; + Next_Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")"; + }; + ["RFDLadyF"] = { + Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")"; + Next_Page = "RFDPlaguemaw"; + Next_Title = AL["Plaguemaw the Rotting"]; + Prev_Page = "RFDTutenkash"; + Prev_Title = AL["Tuten'kash"]; + }; + ["RFDPlaguemaw"] = { + Title = AL["Plaguemaw the Rotting"]; + Next_Page = "RFDMordreshFireEye"; + Next_Title = AL["Mordresh Fire Eye"]; + Prev_Page = "RFDLadyF"; + Prev_Title = AL["Lady Falther'ess"].." ("..AL["Scourge Invasion"]..")"; + }; + ["RFDMordreshFireEye"] = { + Title = AL["Mordresh Fire Eye"]; + Next_Page = "RFDGlutton"; + Next_Title = AL["Glutton"]; + Prev_Page = "RFDPlaguemaw"; + Prev_Title = AL["Plaguemaw the Rotting"]; + }; + ["RFDGlutton"] = { + Title = AL["Glutton"]; + Next_Page = "RFDRagglesnout"; + Next_Title = AL["Ragglesnout"].." ("..AL["Rare"]..")"; + Prev_Page = "RFDMordreshFireEye"; + Prev_Title = AL["Mordresh Fire Eye"]; + }; + ["RFDRagglesnout"] = { + Title = AL["Ragglesnout"].." ("..AL["Rare"]..")"; + Next_Page = "RFDAmnennar"; + Next_Title = AL["Amnennar the Coldbringer"]; + Prev_Page = "RFDGlutton"; + Prev_Title = AL["Glutton"]; + }; + ["RFDAmnennar"] = { + Title = AL["Amnennar the Coldbringer"]; + Next_Page = "RFDTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "RFDRagglesnout"; + Prev_Title = AL["Ragglesnout"].." ("..AL["Rare"]..")"; + }; + ["RFDTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "RFDAmnennar"; + Prev_Title = AL["Amnennar the Coldbringer"]; + }; + ["RFKAggem"] = { + Title = AL["Aggem Thorncurse"]; + Next_Page = "RFKDeathSpeakerJargba"; + Next_Title = AL["Death Speaker Jargba"]; + }; + ["RFKDeathSpeakerJargba"] = { + Title = AL["Death Speaker Jargba"]; + Next_Page = "RFKOverlordRamtusk"; + Next_Title = AL["Overlord Ramtusk"]; + Prev_Page = "RFKAggem"; + Prev_Title = AL["Aggem Thorncurse"]; + }; + ["RFKOverlordRamtusk"] = { + Title = AL["Overlord Ramtusk"]; + Next_Page = "RFKRazorfenSpearhide"; + Next_Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")"; + Prev_Page = "RFKDeathSpeakerJargba"; + Prev_Title = AL["Death Speaker Jargba"]; + }; + ["RFKRazorfenSpearhide"] = { + Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")"; + Next_Page = "RFKAgathelos"; + Next_Title = AL["Agathelos the Raging"]; + Prev_Page = "RFKOverlordRamtusk"; + Prev_Title = AL["Overlord Ramtusk"]; + }; + ["RFKAgathelos"] = { + Title = AL["Agathelos the Raging"]; + Next_Page = "RFKBlindHunter"; + Next_Title = AL["Blind Hunter"].." ("..AL["Rare"]..")"; + Prev_Page = "RFKRazorfenSpearhide"; + Prev_Title = AL["Razorfen Spearhide"].." ("..AL["Rare"]..")"; + }; + ["RFKBlindHunter"] = { + Title = AL["Blind Hunter"].." ("..AL["Rare"]..")"; + Next_Page = "RFKCharlgaRazorflank"; + Next_Title = AL["Charlga Razorflank"]; + Prev_Page = "RFKAgathelos"; + Prev_Title = AL["Agathelos the Raging"]; + }; + ["RFKCharlgaRazorflank"] = { + Title = AL["Charlga Razorflank"]; + Next_Page = "RFKEarthcallerHalmgar"; + Next_Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")"; + Prev_Page = "RFKBlindHunter"; + Prev_Title = AL["Blind Hunter"].." ("..AL["Rare"]..")"; + }; + ["RFKEarthcallerHalmgar"] = { + Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")"; + Next_Page = "RFKTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "RFKCharlgaRazorflank"; + Prev_Title = AL["Charlga Razorflank"]; + }; + ["RFKTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "RFKEarthcallerHalmgar"; + Prev_Title = AL["Earthcaller Halmgar"].." ("..AL["Rare"]..")"; + }; + ["AQ20Kurinnaxx"] = { + Title = AL["Kurinnaxx"]; + Next_Page = "AQ20Andorov"; + Next_Title = AL["Lieutenant General Andorov"]; + }; + ["AQ20Andorov"] = { + Title = AL["Lieutenant General Andorov"]; + Next_Page = "AQ20CAPTAIN"; + Next_Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1]; + Prev_Page = "AQ20Kurinnaxx"; + Prev_Title = AL["Kurinnaxx"]; + }; + ["AQ20CAPTAIN"] = { + Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1]; + Next_Page = "AQ20Rajaxx"; + Next_Title = AL["General Rajaxx"]; + Prev_Page = "AQ20Andorov"; + Prev_Title = AL["Lieutenant General Andorov"]; + }; + ["AQ20Rajaxx"] = { + Title = AL["General Rajaxx"]; + Next_Page = "AQ20Moam"; + Next_Title = AL["Moam"]; + Prev_Page = "AQ20CAPTAIN"; + Prev_Title = AtlasLoot_TableNames["AQ20CAPTAIN"][1]; + }; + ["AQ20Moam"] = { + Title = AL["Moam"]; + Next_Page = "AQ20Buru"; + Next_Title = AL["Buru the Gorger"]; + Prev_Page = "AQ20Rajaxx"; + Prev_Title = AL["General Rajaxx"]; + }; + ["AQ20Buru"] = { + Title = AL["Buru the Gorger"]; + Next_Page = "AQ20Ayamiss"; + Next_Title = AL["Ayamiss the Hunter"]; + Prev_Page = "AQ20Moam"; + Prev_Title = AL["Moam"]; + }; + ["AQ20Ayamiss"] = { + Title = AL["Ayamiss the Hunter"]; + Next_Page = "AQ20Ossirian"; + Next_Title = AL["Ossirian the Unscarred"]; + Prev_Page = "AQ20Buru"; + Prev_Title = AL["Buru the Gorger"]; + }; + ["AQ20Ossirian"] = { + Title = AL["Ossirian the Unscarred"]; + Next_Page = "AQ20Trash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "AQ20Ayamiss"; + Prev_Title = AL["Ayamiss the Hunter"]; + }; + ["AQ20Trash"] = { + Title = AL["Trash Mobs"]; + Next_Page = "AQ20ClassBooks"; + Next_Title = AL["Class Books"]; + Prev_Page = "AQ20Ossirian"; + Prev_Title = AL["Ossirian the Unscarred"]; + }; + ["AQ20ClassBooks"] = { + Title = AL["Class Books"]; + Next_Page = "AQEnchants"; + Next_Title = AL["AQ Enchants"]; + Prev_Page = "AQ20Trash"; + Prev_Title = AL["Trash Mobs"]; + }; + ["AQEnchants"] = { + Title = AL["AQ Enchants"]; + Prev_Page = "AQ20ClassBooks"; + Prev_Title = AL["Class Books"]; + }; + ["AQ40Skeram"] = { + Title = AL["The Prophet Skeram"]; + Next_Page = "AQ40Trio"; + Next_Title = AL["The Bug Family"]; + }; + ["AQ40Trio"] = { + Title = AL["The Bug Family"]; + Next_Page = "AQ40Sartura"; + Next_Title = AL["Battleguard Sartura"]; + Prev_Page = "AQ40Skeram"; + Prev_Title = AL["The Prophet Skeram"]; + }; + ["AQ40Sartura"] = { + Title = AL["Battleguard Sartura"]; + Next_Page = "AQ40Fankriss"; + Next_Title = AL["Fankriss the Unyielding"]; + Prev_Page = "AQ40Trio"; + Prev_Title = AL["The Bug Family"]; + }; + ["AQ40Fankriss"] = { + Title = AL["Fankriss the Unyielding"]; + Next_Page = "AQ40Viscidus"; + Next_Title = AL["Viscidus"]; + Prev_Page = "AQ40Sartura"; + Prev_Title = AL["Battleguard Sartura"]; + }; + ["AQ40Viscidus"] = { + Title = AL["Viscidus"]; + Next_Page = "AQ40Huhuran"; + Next_Title = AL["Princess Huhuran"]; + Prev_Page = "AQ40Fankriss"; + Prev_Title = AL["Fankriss the Unyielding"]; + }; + ["AQ40Huhuran"] = { + Title = AL["Princess Huhuran"]; + Next_Page = "AQ40Emperors"; + Next_Title = AL["The Twin Emperors"]; + Prev_Page = "AQ40Viscidus"; + Prev_Title = AL["Viscidus"]; + }; + ["AQ40Emperors"] = { + Title = AL["The Twin Emperors"]; + Next_Page = "AQ40Ouro"; + Next_Title = AL["Ouro"]; + Prev_Page = "AQ40Huhuran"; + Prev_Title = AL["Princess Huhuran"]; + }; + ["AQ40Ouro"] = { + Title = AL["Ouro"]; + Next_Page = "AQ40CThun"; + Next_Title = AL["C'Thun"]; + Prev_Page = "AQ40Emperors"; + Prev_Title = AL["The Twin Emperors"]; + }; + ["AQ40CThun"] = { + Title = AL["C'Thun"]; + Next_Page = "AQ40Trash1"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "AQ40Ouro"; + Prev_Title = AL["Ouro"]; + }; + ["AQ40Trash1"] = { + Title = AL["Trash Mobs"]; + Next_Page = "AQEnchants"; + Next_Title = AL["AQ Enchants"]; + Prev_Page = "AQ40CThun"; + Prev_Title = AL["C'Thun"]; + }; + ["AQEnchants"] = { + Title = AL["AQ Enchants"]; + Next_Page = "AQOpening"; + Next_Title = AL["AQ Opening Quest Chain"]; + Prev_Page = "AQ40Trash1"; + Prev_Title = AL["Trash Mobs"]; + }; + ["AQOpening"] = { + Title = AL["AQ Opening Quest Chain"]; + Prev_Page = "AQEnchants"; + Prev_Title = AL["AQ Enchants"]; + }; + ["WCLordCobrahn"] = { + Title = AL["Lord Cobrahn"]; + Next_Page = "WCLadyAnacondra"; + Next_Title = AL["Lady Anacondra"]; + }; + ["WCLadyAnacondra"] = { + Title = AL["Lady Anacondra"]; + Next_Page = "WCKresh"; + Next_Title = AL["Kresh"]; + Prev_Page = "WCLordCobrahn"; + Prev_Title = AL["Lord Cobrahn"]; + }; + ["WCKresh"] = { + Title = AL["Kresh"]; + Next_Page = "WCLordPythas"; + Next_Title = AL["Lord Pythas"]; + Prev_Page = "WCLadyAnacondra"; + Prev_Title = AL["Lady Anacondra"]; + }; + ["WCLordPythas"] = { + Title = AL["Lord Pythas"]; + Next_Page = "WCSkum"; + Next_Title = AL["Skum"]; + Prev_Page = "WCKresh"; + Prev_Title = AL["Kresh"]; + }; + ["WCSkum"] = { + Title = AL["Skum"]; + Next_Page = "WCLordSerpentis"; + Next_Title = AL["Lord Serpentis"]; + Prev_Page = "WCLordPythas"; + Prev_Title = AL["Lord Pythas"]; + }; + ["WCLordSerpentis"] = { + Title = AL["Lord Serpentis"]; + Next_Page = "WCVerdan"; + Next_Title = AL["Verdan the Everliving"]; + Prev_Page = "WCSkum"; + Prev_Title = AL["Skum"]; + }; + ["WCVerdan"] = { + Title = AL["Verdan the Everliving"]; + Next_Page = "WCMutanus"; + Next_Title = AL["Mutanus the Devourer"]; + Prev_Page = "WCLordSerpentis"; + Prev_Title = AL["Lord Serpentis"]; + }; + ["WCMutanus"] = { + Title = AL["Mutanus the Devourer"]; + Next_Page = "WCDeviateFaerieDragon"; + Next_Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")"; + Prev_Page = "WCVerdan"; + Prev_Title = AL["Verdan the Everliving"]; + }; + ["WCDeviateFaerieDragon"] = { + Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")"; + Next_Page = "WCTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "WCMutanus"; + Prev_Title = AL["Mutanus the Devourer"]; + }; + ["WCTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "WCDeviateFaerieDragon"; + Prev_Title = AL["Deviate Faerie Dragon"].." ("..AL["Rare"]..")"; + }; + ["ZFAntusul"] = { + Title = AL["Antu'sul"]; + Next_Page = "ZFWitchDoctorZumrah"; + Next_Title = AL["Witch Doctor Zum'rah"]; + }; + ["ZFWitchDoctorZumrah"] = { + Title = AL["Witch Doctor Zum'rah"]; + Next_Page = "ZFSezzziz"; + Next_Title = AL["Shadowpriest Sezz'ziz"]; + Prev_Page = "ZFAntusul"; + Prev_Title = AL["Antu'sul"]; + }; + ["ZFSezzziz"] = { + Title = AL["Shadowpriest Sezz'ziz"]; + Next_Page = "ZFDustwraith"; + Next_Title = AL["Dustwraith"].." ("..AL["Rare"]..")"; + Prev_Page = "ZFWitchDoctorZumrah"; + Prev_Title = AL["Witch Doctor Zum'rah"]; + }; + ["ZFDustwraith"] = { + Title = AL["Dustwraith"].." ("..AL["Rare"]..")"; + Next_Page = "ZFZerillis"; + Next_Title = AL["Zerillis"].." ("..AL["Rare"]..")"; + Prev_Page = "ZFSezzziz"; + Prev_Title = AL["Shadowpriest Sezz'ziz"]; + }; + ["ZFZerillis"] = { + Title = AL["Zerillis"].." ("..AL["Rare"]..")"; + Next_Page = "ZFGahzrilla"; + Next_Title = AL["Gahz'rilla"]; + Prev_Page = "ZFDustwraith"; + Prev_Title = AL["Dustwraith"].." ("..AL["Rare"]..")"; + }; + ["ZFGahzrilla"] = { + Title = AL["Gahz'rilla"]; + Next_Page = "ZFChiefUkorzSandscalp"; + Next_Title = AL["Chief Ukorz Sandscalp"]; + Prev_Page = "ZFZerillis"; + Prev_Title = AL["Zerillis"].." ("..AL["Rare"]..")"; + }; + ["ZFChiefUkorzSandscalp"] = { + Title = AL["Chief Ukorz Sandscalp"]; + Next_Page = "ZFTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "ZFGahzrilla"; + Prev_Title = AL["Gahz'rilla"]; + }; + ["ZFTrash"] = { + Title = AL["Trash Mobs"]; + Prev_Page = "ZFChiefUkorzSandscalp"; + Prev_Title = AL["Chief Ukorz Sandscalp"]; + }; + + -- Emerald Sanctum + ["ESErennius"] = { + Title = AL["Erennius"]; + Next_Page = "ESSolnius1"; + Next_Title = AL["Solnius the Awakener"]; + Prev_Page = "ESTrash"; + Prev_Title = AL["Trash Mobs"]; + }; + ["ESSolnius1"] = { + Title = AL["Solnius the Awakener"]; + Next_Page = "ESSolnius2"; + Next_Title = AL["Solnius the Awakener (Page 2)"]; + Prev_Page = "ESErennius"; + Prev_Title = AL["Erennius"]; + }; + ["ESSolnius2"] = { + Title = AL["Solnius the Awakener (Page 2)"]; + Next_Page = "ESHardMode"; + Next_Title = AL["Favor of Erennius (ES Hard Mode)"]; + Prev_Page = "ESSolnius1"; + Prev_Title = AL["Solnius the Awakener"]; + }; + ["ESHardMode"] = { + Title = AL["Favor of Erennius (ES Hard Mode)"]; + Next_Page = "ESTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "ESSolnius2"; + Prev_Title = AL["Solnius the Awakener"]; + }; + ["ESTrash"] = { + Title = AL["Trash Mobs"]; + Next_Page = "ESErennius"; + Next_Title = AL["Erennius"]; + Prev_Page = "ESSolnius2"; + Prev_Title = AL["Solnius the Awakener (Page 2)"]; + }; + + -- Lower Karazhan Halls + ["LKHRolfen"] = { + Title = AL["Master Blacksmith Rolfen"]; + Next_Page = "LKHBroodQueenAraxxna"; + Next_Title = AL["Brood Queen Araxxna"]; + Prev_Page = "LKHEnchants"; + Prev_Title = AL["LKH Enchants"]; + }; + ["LKHBroodQueenAraxxna"] = { + Title = AL["Brood Queen Araxxna"]; + Next_Page = "LKHGrizikil"; + Next_Title = AL["Grizikil"]; + Prev_Page = "LKHRolfen"; + Prev_Title = AL["Master Blacksmith Rolfen"]; + }; + ["LKHGrizikil"] = { + Title = AL["Grizikil"]; + Next_Page = "LKHClawlordHowlfang"; + Next_Title = AL["Clawlord Howlfang"]; + Prev_Page = "LKHBroodQueenAraxxna"; + Prev_Title = AL["Brood Queen Araxxna"]; + }; + ["LKHClawlordHowlfang"] = { + Title = AL["Clawlord Howlfang"]; + Next_Page = "LKHLordBlackwaldII"; + Next_Title = AL["Lord Blackwald II"]; + Prev_Page = "LKHGrizikil"; + Prev_Title = AL["Grizikil"]; + }; + ["LKHLordBlackwaldII"] = { + Title = AL["Lord Blackwald II"]; + Next_Page = "LKHMoroes"; + Next_Title = AL["Moroes"]; + Prev_Page = "LKHClawlordHowlfang"; + Prev_Title = AL["Clawlord Howlfang"]; + }; + ["LKHMoroes"] = { + Title = AL["Moroes"]; + Next_Page = "LKHTrash"; + Next_Title = AL["Trash Mobs"]; + Prev_Page = "LKHLordBlackwaldII"; + Prev_Title = AL["Lord Blackwald II"]; + }; + ["LKHTrash"] = { + Title = AL["Trash Mobs"]; + Next_Page = "LKHEnchants"; + Next_Title = AL["LKH Enchants"]; + Prev_Page = "LKHMoroes"; + Prev_Title = AL["Moroes"]; + }; + ["LKHEnchants"] = { + Title = AL["LKH Enchants"]; + Next_Page = "LKHRolfen"; + Next_Title = AL["Master Blacksmith Rolfen"]; + Prev_Page = "LKHTrash"; + Prev_Title = AL["Trash Mobs"]; + }; + + + + -- World Bosses + ["AAzuregos"] = { + Title = AL["Azuregos"]; + Next_Page = "DEmeriss"; + Next_Title = AL["Emeriss"]; + Prev_Page = "CowKing"; + Prev_Title = "There Is No Cow Level"; + }; + ["DEmeriss"] = { + Title = AL["Emeriss"]; + Next_Page = "DLethon"; + Next_Title = AL["Lethon"]; + Prev_Page = "AAzuregos"; + Prev_Title = AL["Azuregos"]; + }; + ["DLethon"] = { + Title = AL["Lethon"]; + Next_Page = "DTaerar"; + Next_Title = AL["Taerar"]; + Prev_Page = "DEmeriss"; + Prev_Title = AL["Emeriss"]; + }; + ["DTaerar"] = { + Title = AL["Taerar"]; + Next_Page = "DYsondre"; + Next_Title = AL["Ysondre"]; + Prev_Page = "DLethon"; + Prev_Title = AL["Lethon"]; + }; + ["DYsondre"] = { + Title = AL["Ysondre"]; + Next_Page = "KKazzak"; + Next_Title = AL["Lord Kazzak"]; + Prev_Page = "DTaerar"; + Prev_Title = AL["Taerar"]; + }; + ["KKazzak"] = { + Title = AL["Lord Kazzak"]; + Next_Page = "Nerubian"; + Next_Title = "Nerubian Overseer"; + Prev_Page = "DYsondre"; + Prev_Title = AL["Ysondre"]; + }; + ["Turtlhu"] = { + Title = "Turtlhu, the Black Turtle of Doom"; + Next_Page = "Nerubian"; + Next_Title = "Nerubian Overseer"; + Prev_Page = "KKazzak"; + Prev_Title = AL["Lord Kazzak"]; + }; + ["Nerubian"] = { + Title = "Nerubian Overseer"; + Next_Page = "Reaver"; + Next_Title = "Dark Reaver of Karazhan"; + Prev_Page = "KKazzak"; + Prev_Title = AL["Lord Kazzak"]; + }; + ["Reaver"] = { + Title = "Dark Reaver of Karazhan"; + Next_Page = "Ostarius"; + Next_Title = "Ostarius"; + Prev_Page = "Nerubian"; + Prev_Title = "Nerubian Overseer"; + }; + ["Ostarius"] = { + Title = "Ostarius"; + Next_Page = "Concavius"; + Next_Title = "Concavius"; + Prev_Page = "Reaver"; + Prev_Title = "Dark Reaver of Karazhan"; + }; + ["Concavius"] = { + Title = "Concavius"; Next_Page = "CowKing"; Next_Title = "The Cow King"; - Prev_Page = "Ostarius"; - Prev_Title = "Ostarius"; - }; + Prev_Page = "Ostarius"; + Prev_Title = "Ostarius"; + }; ["CowKing"] = { - Title = "There Is No Cow Level"; - Prev_Page = "Concavius"; - Prev_Title = "Concavius"; - }; - ["Tarangos"] = { - Title = "Tarangos The Dampener"; - Next_Page = "Kargron"; - Next_Title = "Blademaster Kargron"; - }; - ["Kargron"] = { - Title = "Blademaster Kargron"; - Next_Page = "Xalvic"; - Next_Title = "Xalvic Blackclaw"; - Prev_Page = "Tarangos"; - Prev_Title = "Tarangos The Dampener"; - }; - ["Xalvic"] = { - Title = "Xalvic Blackclaw"; - Next_Page = "Mallon"; - Next_Title = "Mallon The Moontouched"; - Prev_Page = "Kargron"; - Prev_Title = "Blademaster Kargron"; - }; - ["Mallon"] = { - Title = "Mallon The Moontouched"; - Next_Page = "Grugthok"; - Next_Title = "Grug'thok the Seer"; - Prev_Page = "Xalvic"; - Prev_Title = "Xalvic Blackclaw"; - }; - ["Grugthok"] = { - Title = "Grug'thok the Seer"; - Next_Page = "WanderingKnight"; - Next_Title = "The Wandering Knight"; - Prev_Page = "Mallon"; - Prev_Title = "Mallon The Moontouched"; - }; - ["WanderingKnight"] = { - Title = "The Wandering Knight"; - Next_Page = "CrusaderLarsarius"; - Next_Title = "Crusader Larsarius The Scarlet Crusade"; - Prev_Page = "Grugthok"; - Prev_Title = "Grug'thok the Seer"; - }; - ["CrusaderLarsarius"] = { - Title = "Crusader Larsarius The Scarlet Crusade"; - Next_Page = "Zareth"; - Next_Title = "Zareth Terrorblade Demon Hunter"; - Prev_Page = "WanderingKnight"; - Prev_Title = "The Wandering Knight"; - }; - ["Zareth"] = { - Title = "Zareth Terrorblade Demon Hunter"; - Next_Page = "Jalakar"; - Next_Title = "Jal'akar Dire Troll"; - Prev_Page = "CrusaderLarsarius"; - Prev_Title = "Crusader Larsarius The Scarlet Crusade"; - }; - ["Jalakar"] = { - Title = "Jal'akar Dire Troll"; - Next_Page = "Ashbeard"; - Next_Title = "Explorer Ashbeard"; - Prev_Page = "Zareth"; - Prev_Title = "Zareth Terrorblade Demon Hunter"; - }; - ["Ashbeard"] = { - Title = "Explorer Ashbeard"; - Next_Page = "AdmiralBareanWestwind"; - Next_Title = "Admiral Barean Westwind"; - Prev_Page = "Jalakar"; - Prev_Title = "Jal'akar Dire Troll"; - }; - ["AdmiralBareanWestwind"] = { - Title = "Admiral Barean Westwind"; - Prev_Page = "Ashbeard"; - Prev_Title = "Explorer Ashbeard"; - }; + Title = "There Is No Cow Level"; + Next_Page = "AAzuregos"; + Next_Title = AL["Azuregos"]; + Prev_Page = "Concavius"; + Prev_Title = "Concavius"; + }; + + --Rare Spawns + ["EarthcallerRezengal"] = { + Title = "Earthcaller Rezengal"; + Next_Page = "ShadeMage"; + Next_Title = "Shade Mage"; + Prev_Page = "M0L1Y"; + Prev_Title = "M-0L1Y"; + }; + ["ShadeMage"] = { + Title = "Shade Mage"; + Next_Page = "GraypawAlpha"; + Next_Title = "Graypaw Alpha"; + Prev_Page = "EarthcallerRezengal"; + Prev_Title = "Earthcaller Rezengal"; + }; + ["GraypawAlpha"] = { + Title = "Graypaw Alpha"; + Next_Page = "Blazespark"; + Next_Title = "Blazespark"; + Prev_Page = "ShadeMage"; + Prev_Title = "Shade Mage"; + }; + ["Blazespark"] = { + Title = "Blazespark"; + Next_Page = "WitchDoctorTanzo"; + Next_Title = "Witch Doctor Tan'zo"; + Prev_Page = "GraypawAlpha"; + Prev_Title = "Graypaw Alpha"; + }; + ["WitchDoctorTanzo"] = { + Title = "Witch Doctor Tan'zo"; + Next_Page = "Dawnhowl"; + Next_Title = "Dawnhowl"; + Prev_Page = "Blazespark"; + Prev_Title = "Blazespark"; + }; + ["Dawnhowl"] = { + Title = "Dawnhowl"; + Next_Page = "MaltimorsPrototype"; + Next_Title = "Maltimor's Prototype"; + Prev_Page = "WitchDoctorTanzo"; + Prev_Title = "Witch Doctor Tan'zo"; + }; + ["MaltimorsPrototype"] = { + Title = "Maltimor's Prototype"; + Next_Page = "Bonecruncher"; + Next_Title = "Bonecruncher"; + Prev_Page = "Dawnhowl"; + Prev_Title = "Dawnhowl"; + }; + ["Bonecruncher"] = { + Title = "Bonecruncher"; + Next_Page = "Duskskitter"; + Next_Title = "Duskskitter"; + Prev_Page = "MaltimorsPrototype"; + Prev_Title = "Maltimor's Prototype"; + }; + ["Duskskitter"] = { + Title = "Duskskitter"; + Next_Page = "BaronPerenolde"; + Next_Title = "Baron Perenolde"; + Prev_Page = "Bonecruncher"; + Prev_Title = "Bonecruncher"; + }; + ["BaronPerenolde"] = { + Title = "Baron Perenolde"; + Next_Page = "Grugthok"; + Next_Title = "Grug'thok the Seer"; + Prev_Page = "Duskskitter"; + Prev_Title = "Duskskitter"; + }; + ["Grugthok"] = { + Title = "Grug'thok the Seer"; + Next_Page = "Ashbeard"; + Next_Title = "Explorer Ashbeard"; + Prev_Page = "BaronPerenolde"; + Prev_Title = "Baron Perenolde"; + }; + ["Ashbeard"] = { + Title = "Explorer Ashbeard"; + Next_Page = "Jalakar"; + Next_Title = "Jal'akar"; + Prev_Page = "Grugthok"; + Prev_Title = "Grug'thok the Seer"; + }; + ["Jalakar"] = { + Title = "Jal'akar"; + Next_Page = "Embereye"; + Next_Title = "Embereye"; + Prev_Page = "Ashbeard"; + Prev_Title = "Explorer Ashbeard"; + }; + ["Embereye"] = { + Title = "Embereye"; + Next_Page = "Rukthok"; + Next_Title = "Ruk'thok the Pyromancer"; + Prev_Page = "Jalakar"; + Prev_Title = "Jal'akar"; + }; + ["Rukthok"] = { + Title = "Ruk'thok the Pyromancer"; + Next_Page = "Tarangos"; + Next_Title = "Tarangos"; + Prev_Page = "Embereye"; + Prev_Title = "Embereye"; + }; + ["Tarangos"] = { + Title = "Tarangos"; + Next_Page = "Ripjaw"; + Next_Title = "Ripjaw"; + Prev_Page = "Rukthok"; + Prev_Title = "Ruk'thok the Pyromancer"; + }; + ["Ripjaw"] = { + Title = "Ripjaw"; + Next_Page = "Xalvic"; + Next_Title = "Xalvic Blackclaw"; + Prev_Page = "Tarangos"; + Prev_Title = "Tarangos"; + }; + ["Xalvic"] = { + Title = "Xalvic Blackclaw"; + Next_Page = "Aquitus"; + Next_Title = "Aquitus"; + Prev_Page = "Ripjaw"; + Prev_Title = "Ripjaw"; + }; + ["Aquitus"] = { + Title = "Aquitus"; + Next_Page = "FirstbornofArugal"; + Next_Title = "Firstborn of Arugal"; + Prev_Page = "Xalvic"; + Prev_Title = "Xalvic Blackclaw"; + }; + ["FirstbornofArugal"] = { + Title = "Firstborn of Arugal"; + Next_Page = "Letashaz"; + Next_Title = "Letashaz"; + Prev_Page = "Aquitus"; + Prev_Title = "Aquitus"; + }; + ["Letashaz"] = { + Title = "Letashaz"; + Next_Page = "MargontheMighty"; + Next_Title = "Margon the Mighty"; + Prev_Page = "FirstbornofArugal"; + Prev_Title = "Firstborn of Arugal"; + }; + ["MargontheMighty"] = { + Title = "Margon the Mighty"; + Next_Page = "WanderingKnight"; + Next_Title = "The Wandering Knight"; + Prev_Page = "Letashaz"; + Prev_Title = "Letashaz"; + }; + ["WanderingKnight"] = { + Title = "The Wandering Knight"; + Next_Page = "Stoneshell"; + Next_Title = "Stoneshell"; + Prev_Page = "MargontheMighty"; + Prev_Title = "Margon the Mighty"; + }; + ["Stoneshell"] = { + Title = "Stoneshell"; + Next_Page = "Zareth"; + Next_Title = "Zareth Terrorblade"; + Prev_Page = "WanderingKnight"; + Prev_Title = "The Wandering Knight"; + }; + ["Zareth"] = { + Title = "Zareth Terrorblade"; + Next_Page = "HighvaleSilverback"; + Next_Title = "Highvale Silverback"; + Prev_Page = "Stoneshell"; + Prev_Title = "Stoneshell"; + }; + ["HighvaleSilverback"] = { + Title = "Highvale Silverback"; + Next_Page = "Mallon"; + Next_Title = "Mallon The Moontouched"; + Prev_Page = "Zareth"; + Prev_Title = "Zareth Terrorblade"; + }; + ["Mallon"] = { + Title = "Mallon The Moontouched"; + Next_Page = "Kargron"; + Next_Title = "Blademaster Kargron"; + Prev_Page = "HighvaleSilverback"; + Prev_Title = "Highvale Silverback"; + }; + ["Kargron"] = { + Title = "Blademaster Kargron"; + Next_Page = "AdmiralBareanWestwind"; + Next_Title = "Admiral Barean Westwind"; + Prev_Page = "Mallon"; + Prev_Title = "Mallon The Moontouched"; + }; + ["AdmiralBareanWestwind"] = { + Title = "Admiral Barean Westwind"; + Next_Page = "Azurebeak"; + Next_Title = "Azurebeak"; + Prev_Page = "Kargron"; + Prev_Title = "Blademaster Kargron"; + }; + ["Azurebeak"] = { + Title = "Azurebeak"; + Next_Page = "BarkskinFisher"; + Next_Title = "Barkskin Fisher"; + Prev_Page = "AdmiralBareanWestwind"; + Prev_Title = "Admiral Barean Westwind"; + }; + ["BarkskinFisher"] = { + Title = "Barkskin Fisher"; + Next_Page = "CrusaderLarsarius"; + Next_Title = "Crusader Larsarius"; + Prev_Page = "Azurebeak"; + Prev_Title = "Azurebeak"; + }; + ["CrusaderLarsarius"] = { + Title = "Crusader Larsarius"; + Next_Page = "ShadeflayerGoliath"; + Next_Title = "Shadeflayer Goliath"; + Prev_Page = "BarkskinFisher"; + Prev_Title = "Barkskin Fisher"; + }; + ["ShadeflayerGoliath"] = { + Title = "Shadeflayer Goliath"; + Next_Page = "WidowoftheWoods"; + Next_Title = "Widow of the Woods"; + Prev_Page = "CrusaderLarsarius"; + Prev_Title = "Crusader Larsarius"; + }; + ["WidowoftheWoods"] = { + Title = "Widow of the Woods"; + Next_Page = "M0L1Y"; + Next_Title = "M-0L1Y"; + Prev_Page = "ShadeflayerGoliath"; + Prev_Title = "Shadeflayer Goliath"; + }; + ["M0L1Y"] = { + Title = "M-0L1Y"; + Next_Page = "EarthcallerRezengal"; + Next_Title = "Earthcaller Rezengal"; + Prev_Page = "WidowoftheWoods"; + Prev_Title = "Widow of the Woods"; + }; - --WoW Factions - ["Argent1"] = { - Title = AL["Argent Dawn"] .. ": " .. AL["Token Hand-Ins"]; - Next_Page = "Argent2"; - Next_Title = AL["Argent Dawn"] .. ": " .. AL["Friendly"] .. "-" .. AL["Exalted"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Argent2"] = { - Title = AL["Argent Dawn"] .. ": " .. AL["Friendly"] .. "-" .. AL["Honored"]; - Prev_Page = "Argent1"; - Prev_Title = AL["Argent Dawn"] .. ": " .. AL["Token Hand-Ins"]; - Next_Page = "Argent3"; - Next_Title = AL["Argent Dawn"] .. ": " .. AL["Revered"] .. "-" .. AL["Exalted"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Argent3"] = { - Title = AL["Argent Dawn"] .. ": " .. AL["Revered"] .. "-" .. AL["Exalted"]; - Prev_Page = "Argent2"; - Prev_Title = AL["Argent Dawn"] .. ": " .. AL["Friendly"] .. "-" .. AL["Honored"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Bloodsail1"] = { - Title = AL["Bloodsail Buccaneers"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; + --WoW Factions + ["Argent1"] = { + Title = AL["Argent Dawn"] .. ": " .. AL["Token Hand-Ins"]; + Next_Page = "Argent2"; + Next_Title = AL["Argent Dawn"] .. ": " .. AL["Friendly"] .. "-" .. AL["Exalted"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Argent2"] = { + Title = AL["Argent Dawn"] .. ": " .. AL["Friendly"] .. "-" .. AL["Honored"]; + Prev_Page = "Argent1"; + Prev_Title = AL["Argent Dawn"] .. ": " .. AL["Token Hand-Ins"]; + Next_Page = "Argent3"; + Next_Title = AL["Argent Dawn"] .. ": " .. AL["Revered"] .. "-" .. AL["Exalted"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Argent3"] = { + Title = AL["Argent Dawn"] .. ": " .. AL["Revered"] .. "-" .. AL["Exalted"]; + Prev_Page = "Argent2"; + Prev_Title = AL["Argent Dawn"] .. ": " .. AL["Friendly"] .. "-" .. AL["Honored"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Bloodsail1"] = { + Title = AL["Bloodsail Buccaneers"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; ["Warderns1"] = { Title = "Wardens of Time"; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["AQBroodRings"] = { - Title = AL["Brood of Nozdormu"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Cenarion1"] = { - Title = AL["Cenarion Circle"] .. ": " .. AL["Friendly"]; - Next_Page = "Cenarion2"; - Next_Title = AL["Cenarion Circle"] .. ": " .. AL["Honored"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Cenarion2"] = { - Title = AL["Cenarion Circle"] .. ": " .. AL["Honored"]; - Next_Page = "Cenarion3"; - Next_Title = AL["Cenarion Circle"] .. ": " .. AL["Revered"]; - Prev_Page = "Cenarion1"; - Prev_Title = AL["Cenarion Circle"] .. ": " .. AL["Friendly"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Cenarion3"] = { - Title = AL["Cenarion Circle"] .. ": " .. AL["Revered"]; - Next_Page = "Cenarion4"; - Next_Title = AL["Cenarion Circle"] .. ": " .. AL["Exalted"]; - Prev_Page = "Cenarion2"; - Prev_Title = AL["Cenarion Circle"] .. ": " .. AL["Honored"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Cenarion4"] = { - Title = AL["Cenarion Circle"] .. ": " .. AL["Exalted"]; - Prev_Page = "Cenarion3"; - Prev_Title = AL["Cenarion Circle"] .. ": " .. AL["Revered"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Darkmoon"] = { - Title = AL["Darkmoon Faire"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Defilers"] = { - Title = AL["The Defilers"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Frostwolf1"] = { - Title = AL["Frostwolf Clan"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["GelkisClan1"] = { - Title = AL["Gelkis Clan Centaur"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["WaterLords1"] = { - Title = AL["Hydraxian Waterlords"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["LeagueofArathor"] = { - Title = AL["The League of Arathor"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Ironforge"] = { - Title = AL["Ironforge"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Darnassus"] = { - Title = AL["Darnassus"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Stormwind"] = { - Title = AL["Stormwind"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["GnomereganExiles"] = { - Title = AL["Gnomeregan Exiles"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["AQBroodRings"] = { + Title = AL["Brood of Nozdormu"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Cenarion1"] = { + Title = AL["Cenarion Circle"] .. ": " .. AL["Friendly"]; + Next_Page = "Cenarion2"; + Next_Title = AL["Cenarion Circle"] .. ": " .. AL["Honored"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Cenarion2"] = { + Title = AL["Cenarion Circle"] .. ": " .. AL["Honored"]; + Next_Page = "Cenarion3"; + Next_Title = AL["Cenarion Circle"] .. ": " .. AL["Revered"]; + Prev_Page = "Cenarion1"; + Prev_Title = AL["Cenarion Circle"] .. ": " .. AL["Friendly"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Cenarion3"] = { + Title = AL["Cenarion Circle"] .. ": " .. AL["Revered"]; + Next_Page = "Cenarion4"; + Next_Title = AL["Cenarion Circle"] .. ": " .. AL["Exalted"]; + Prev_Page = "Cenarion2"; + Prev_Title = AL["Cenarion Circle"] .. ": " .. AL["Honored"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Cenarion4"] = { + Title = AL["Cenarion Circle"] .. ": " .. AL["Exalted"]; + Prev_Page = "Cenarion3"; + Prev_Title = AL["Cenarion Circle"] .. ": " .. AL["Revered"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Darkmoon"] = { + Title = AL["Darkmoon Faire"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Defilers"] = { + Title = AL["The Defilers"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Frostwolf1"] = { + Title = AL["Frostwolf Clan"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["GelkisClan1"] = { + Title = AL["Gelkis Clan Centaur"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["WaterLords1"] = { + Title = AL["Hydraxian Waterlords"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["LeagueofArathor"] = { + Title = AL["The League of Arathor"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Ironforge"] = { + Title = AL["Ironforge"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Darnassus"] = { + Title = AL["Darnassus"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Stormwind"] = { + Title = AL["Stormwind"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["GnomereganExiles"] = { + Title = AL["Gnomeregan Exiles"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; ["DarkspearTrolls"] = { Title = AL["Darkspear Trolls"]; Back_Page = "REPMENU"; Back_Title = AL["Factions"]; }; - ["DurotarLaborUnion"] = { - Title = AL["Durotar Labor Union"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Undercity"] = { - Title = AL["Undercity"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Orgrimmar"] = { - Title = AL["Orgrimmar"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["ThunderBluff"] = { - Title = AL["Thunder Bluff"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; + ["DurotarLaborUnion"] = { + Title = AL["Durotar Labor Union"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Undercity"] = { + Title = AL["Undercity"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Orgrimmar"] = { + Title = AL["Orgrimmar"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["ThunderBluff"] = { + Title = AL["Thunder Bluff"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; ["Dalaran"] = { - Title = AL["Dalaran"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Helf"] = { - Title = AL["Silvermoon Remnant"]; - Next_Page = "Helf2"; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Helf2"] = { - Title = AL["Silvermoon Remnant"]; - Next_Page = "Helf3"; - Prev_Page = "Helf"; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Helf3"] = { - Title = AL["Silvermoon Remnant"]; - Prev_Page = "Helf2"; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Revantusk"] = { - Title = AL["Revantusk Trolls"]; - Next_Page = "Revantusk2"; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Revantusk2"] = { - Title = AL["Revantusk Trolls"]; - Next_Page = "Revantusk3"; - Prev_Page = "Revantusk"; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Revantusk3"] = { - Title = AL["Revantusk Trolls"]; - Prev_Page = "Revantusk2"; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["MagramClan1"] = { - Title = AL["Magram Clan Centaur"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Stormpike1"] = { - Title = AL["Stormpike Guard"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Thorium1"] = { - Title = AL["Thorium Brotherhood"] .. ": " .. AL["Friendly"] .. "/" .. AL["Honored"]; - Next_Page = "Thorium2"; - Next_Title = AL["Thorium Brotherhood"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Thorium2"] = { - Title = AL["Thorium Brotherhood"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"]; - Prev_Page = "Thorium1"; - Prev_Title = AL["Thorium Brotherhood"] .. ": " .. AL["Friendly"] .. "/" .. AL["Honored"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Timbermaw"] = { - Title = AL["Timbermaw Hold"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Wintersaber1"] = { - Title = AL["Wintersaber Trainers"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Zandalar1"] = { - Title = AL["Zandalar Tribe"] .. ": " .. AL["Friendly"] .. "/" .. AL["Honored"]; - Next_Page = "Zandalar2"; - Next_Title = AL["Zandalar Tribe"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["Zandalar2"] = { - Title = AL["Zandalar Tribe"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"]; - Prev_Page = "Zandalar1"; - Prev_Title = AL["Zandalar Tribe"] .. ": " .. AL["Friendly"] .. "/" .. AL["Honored"]; - Back_Page = "REPMENU"; - Back_Title = AL["Factions"]; - }; - ["BRRepFriendly"] = { - Title = "Blood Ring Friendly Rewards"; - Back_Page = "BRRepMenu"; - Next_Page = "BRRepHonored"; - }; - ["BRRepHonored"] = { - Title = "Blood Ring Honored Rewards"; - Back_Page = "BRRepMenu"; - Next_Page = "BRRepRevered"; - Prev_Page = "BRRepFriendly"; - }; - ["BRRepRevered"] = { - Title = "Blood Ring Revered Rewards"; - Back_Page = "BRRepMenu"; - Next_Page = "BRRepExalted"; - Prev_Page = "BRRepHonored"; - }; - ["BRRepExalted"] = { - Title = "Blood Ring Exalted Rewards"; - Back_Page = "BRRepMenu"; - Prev_Page = "BRRepRevered"; - }; - ["ABRepFriendly2029"] = { - Title = "AB 20-29 Friendly Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepFriendly3039"; - }; - ["ABRepFriendly3039"] = { - Title = "AB 30-39 Friendly Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepFriendly4049"; - Prev_Page = "ABRepFriendly2029"; - }; - ["ABRepFriendly4049"] = { - Title = "AB 40-49 Friendly Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepFriendly5059"; - Prev_Page = "ABRepFriendly3039"; - }; - ["ABRepFriendly5059"] = { - Title = "AB 50-59 Friendly Rewards"; - Back_Page = "ABRepMenu"; - Prev_Page = "ABRepFriendly4049"; - }; - ["ABRepHonored2029"] = { - Title = "AB 20-29 Honored Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepHonored3039"; - }; - ["ABRepHonored3039"] = { - Title = "AB 30-39 Honored Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepHonored4049"; - Prev_Page = "ABRepHonored2029"; - }; - ["ABRepHonored4049"] = { - Title = "AB 40-49 Honored Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepHonored5059"; - Prev_Page = "ABRepHonored3039"; - }; - ["ABRepHonored5059"] = { - Title = "AB 50-59 Honored Rewards"; - Back_Page = "ABRepMenu"; - Prev_Page = "ABRepHonored4049"; - }; - ["ABRepRevered2029"] = { - Title = "AB 20-29 Revered Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepRevered3039"; - }; - ["ABRepRevered3039"] = { - Title = "AB 30-39 Revered Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepRevered4049"; - Prev_Page = "ABRepRevered2029"; - }; - ["ABRepRevered4049"] = { - Title = "AB 40-49 Revered Rewards"; - Back_Page = "ABRepMenu"; - Next_Page = "ABRepRevered5059"; - Prev_Page = "ABRepRevered3039"; - }; - ["ABRepRevered5059"] = { - Title = "AB 50-59 Revered Rewards"; - Back_Page = "ABRepMenu"; - Prev_Page = "ABRepRevered4049"; - }; - ["ABRepExalted"] = { - Title = "AB Exalted Rewards"; - Back_Page = "ABRepMenu"; - }; - ["AVRepFriendly"] = { - Title = "AV Friendly Rewards"; - Back_Page = "AVRepMenu"; - Next_Page = "AVRepHonored"; - }; - ["AVRepHonored"] = { - Title = "AV Honored Rewards"; - Back_Page = "AVRepMenu"; - Next_Page = "AVRepRevered"; - Prev_Page = "AVRepFriendly"; - }; - ["AVRepRevered"] = { - Title = "AV Revered Rewards"; - Back_Page = "AVRepMenu"; - Next_Page = "AVRepExalted"; - Prev_Page = "AVRepHonored"; - }; - ["AVRepExalted"] = { - Title = "AV Exalted Rewards"; - Back_Page = "AVRepMenu"; - Prev_Page = "AVRepRevered"; - }; - ["WSGRepFriendly2029"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 20-29 Friendly Rewards"; - Next_Page = "WSGRepFriendly3039"; - }; - ["WSGRepFriendly3039"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 30-39 Friendly Rewards"; - Next_Page = "WSGRepFriendly4049"; - Prev_Page = "WSGRepFriendly2029"; - }; - ["WSGRepFriendly4049"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 40-49 Friendly Rewards"; - Prev_Page = "WSGRepFriendly3039"; - }; - ["WSGRepHonored1019"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 10-19 Honored Rewards"; - Next_Page = "WSGRepHonored2029"; - }; - ["WSGRepHonored2029"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 20-29 Honored Rewards"; - Next_Page = "WSGRepHonored3039"; - Prev_Page = "WSGRepHonored1019"; - }; - ["WSGRepHonored3039"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 30-39 Honored Rewards"; - Next_Page = "WSGRepHonored4049"; - Prev_Page = "WSGRepHonored2029"; - }; - ["WSGRepHonored4049"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 40-49 Honored Rewards"; - Next_Page = "WSGRepHonored5059"; - Prev_Page = "WSGRepHonored3039"; - }; - ["WSGRepHonored5059"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 50-59 Honored Rewards"; - Prev_Page = "WSGRepHonored4049"; - }; - ["WSGRepRevered1019"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 10-19 Revered Rewards"; - Next_Page = "WSGRepRevered2029"; - }; - ["WSGRepRevered2029"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 20-29 Revered Rewards"; - Next_Page = "WSGRepRevered3039"; - Prev_Page = "WSGRepRevered1019"; - }; - ["WSGRepRevered3039"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 30-39 Revered Rewards"; - Next_Page = "WSGRepRevered4049"; - Prev_Page = "WSGRepRevered2029"; - }; - ["WSGRepRevered4049"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 40-49 Revered Rewards"; - Next_Page = "WSGRepRevered5059"; - Prev_Page = "WSGRepRevered3039"; - }; - ["WSGRepRevered5059"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 50-59 Revered Rewards"; - Prev_Page = "WSGRepRevered4049"; - }; - ["WSGRepExalted4049"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 40-49 Exalted Rewards"; - Next_Page = "WSGRepExalted5059"; - }; - ["WSGRepExalted5059"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 50-59 Exalted Rewards"; - Next_Page = "WSGRepExalted60"; - Prev_Page = "WSGRepExalted4049"; - }; - ["WSGRepExalted60"] = { - Back_Page = "WSGRepMenu"; - Title = "WSG 60 Exalted Rewards"; - Prev_Page = "WSGRepExalted5059"; - }; - ["PvP60Accessories1"] = { - Title = AL["PvP Trinkets"]; - Next_Page = "PvP60Accessories2"; - Next_Title = AtlasLoot_TableNames["PvP60Accessories2"][1]; - Back_Page = "PVPMENU"; - Back_Title = AL["PvP Rewards"]; - }; - ["PvP60Accessories2"] = { - Title = AtlasLoot_TableNames["PvP60Accessories2"][1]; - Next_Page = "PvP60Accessories3"; - Next_Title = AtlasLoot_TableNames["PvP60Accessories3"][1]; - Prev_Page = "PvP60Accessories1"; - Prev_Title = AL["PvP Accessories"] .. ": " .. AL["Level 60"]; - Back_Page = "PVPMENU"; - Back_Title = AL["PvP Rewards"]; - }; - ["PvP60Accessories3"] = { - Title = AtlasLoot_TableNames["PvP60Accessories3"][1]; - Prev_Page = "PvP60Accessories2"; - Prev_Title = AtlasLoot_TableNames["PvP60Accessories2"][1]; - Back_Page = "PVPMENU"; - Back_Title = AL["PvP Rewards"]; - }; - ["PVPWeapons1"] = { - Title = AL["Rank 14 Weapons"]; - Next_Page = "PVPWeapons2"; - Next_Title = AL["Rank 14 Weapons"]; - Back_Page = "PVPMENU"; - Back_Title = AL["PvP Rewards"]; - }; - ["PVPWeapons2"] = { - Title = AL["Rank 14 Weapons"]; - Prev_Page = "PVPWeapons1"; - Prev_Title = AL["Rank 14 Weapons"]; - Back_Page = "PVPMENU"; - Back_Title = AL["PvP Rewards"]; - }; - ["PVPDruid"] = { - Title = AL["Druid"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["PVPHunter"] = { - Title = AL["Hunter"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["PVPMage"] = { - Title = AL["Mage"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["PVPPaladin"] = { - Title = AL["Paladin"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["PVPPriest"] = { - Title = AL["Priest"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["PVPRogue"] = { - Title = AL["Rogue"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["PVPShaman"] = { - Title = AL["Shaman"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["PVPWarlock"] = { - Title = AL["Warlock"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["PVPWarrior"] = { - Title = AL["Warrior"]; - Back_Page = "PVPSET"; - Back_Title = AL["PvP Armor Sets"]; - }; - ["T0Druid"] = { - Title = AL["Druid"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T0Hunter"] = { - Title = AL["Hunter"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T0Mage"] = { - Title = AL["Mage"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T0Paladin"] = { - Title = AL["Paladin"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T0Priest"] = { - Title = AL["Priest"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T0Rogue"] = { - Title = AL["Rogue"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T0Shaman"] = { - Title = AL["Shaman"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T0Warlock"] = { - Title = AL["Warlock"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T0Warrior"] = { - Title = AL["Warrior"]; - Back_Page = "T0SET"; - Back_Title = AL["Dungeon 1/2 Sets"]; - }; - ["T1Druid"] = { - Title = AL["Druid"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T1Hunter"] = { - Title = AL["Hunter"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T1Mage"] = { - Title = AL["Mage"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T1Paladin"] = { - Title = AL["Paladin"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T1Priest"] = { - Title = AL["Priest"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T1Rogue"] = { - Title = AL["Rogue"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T1Shaman"] = { - Title = AL["Shaman"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T1Warlock"] = { - Title = AL["Warlock"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T1Warrior"] = { - Title = AL["Warrior"]; - Back_Page = "T1SET"; - Back_Title = AL["Tier 1 Sets"]; - }; - ["T2Druid"] = { - Title = AL["Druid"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T2Hunter"] = { - Title = AL["Hunter"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T2Mage"] = { - Title = AL["Mage"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T2Paladin"] = { - Title = AL["Paladin"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T2Priest"] = { - Title = AL["Priest"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T2Rogue"] = { - Title = AL["Rogue"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T2Shaman"] = { - Title = AL["Shaman"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T2Warlock"] = { - Title = AL["Warlock"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T2Warrior"] = { - Title = AL["Warrior"]; - Back_Page = "T2SET"; - Back_Title = AL["Tier 2 Sets"]; - }; - ["T3Druid"] = { - Title = AL["Druid"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["T3Hunter"] = { - Title = AL["Hunter"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["T3Mage"] = { - Title = AL["Mage"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["T3Paladin"] = { - Title = AL["Paladin"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["T3Priest"] = { - Title = AL["Priest"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["T3Rogue"] = { - Title = AL["Rogue"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["T3Shaman"] = { - Title = AL["Shaman"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["T3Warlock"] = { - Title = AL["Warlock"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["T3Warrior"] = { - Title = AL["Warrior"]; - Back_Page = "T3SET"; - Back_Title = AL["Tier 3 Sets"]; - }; - ["AQ40Druid"] = { - Title = AL["Druid"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ40Hunter"] = { - Title = AL["Hunter"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ40Mage"] = { - Title = AL["Mage"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ40Paladin"] = { - Title = AL["Paladin"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ40Priest"] = { - Title = AL["Priest"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ40Rogue"] = { - Title = AL["Rogue"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ40Shaman"] = { - Title = AL["Shaman"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ40Warlock"] = { - Title = AL["Warlock"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ40Warrior"] = { - Title = AL["Warrior"]; - Back_Page = "AQ40SET"; - Back_Title = AL["Temple of Ahn'Qiraj Sets"]; - }; - ["AQ20Druid"] = { - Title = AL["Druid"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["AQ20Hunter"] = { - Title = AL["Hunter"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["AQ20Mage"] = { - Title = AL["Mage"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["AQ20Paladin"] = { - Title = AL["Paladin"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["AQ20Priest"] = { - Title = AL["Priest"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["AQ20Rogue"] = { - Title = AL["Rogue"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["AQ20Shaman"] = { - Title = AL["Shaman"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["AQ20Warlock"] = { - Title = AL["Warlock"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["AQ20Warrior"] = { - Title = AL["Warrior"]; - Back_Page = "AQ20SET"; - Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; - }; - ["ZGDruid"] = { - Title = AL["Druid"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["ZGHunter"] = { - Title = AL["Hunter"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["ZGMage"] = { - Title = AL["Mage"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["ZGPaladin"] = { - Title = AL["Paladin"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["ZGPriest"] = { - Title = AL["Priest"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["ZGRogue"] = { - Title = AL["Rogue"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["ZGShaman"] = { - Title = AL["Shaman"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["ZGWarlock"] = { - Title = AL["Warlock"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["ZGWarrior"] = { - Title = AL["Warrior"]; - Back_Page = "ZGSET"; - Back_Title = AL["Zul'Gurub Sets"]; - }; - ["DEADMINES"] = { - Title = AL["Defias Leather"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["WAILING"] = { - Title = AL["Embrace of the Viper"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["SCARLET"] = { - Title = AL["Chain of the Scarlet Crusade"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["BLACKROCKD"] = { - Title = AL["The Gladiator"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["IRONWEAVE"] = { - Title = AL["Ironweave Battlesuit"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["ScholoCloth"] = { - Title = AL["Scholomance"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["ScholoLeather"] = { - Title = AL["Scholomance"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["ScholoMail"] = { - Title = AL["Scholomance"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["ScholoPlate"] = { - Title = AL["Scholomance"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["STRAT"] = { - Title = AL["The Postmaster"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["ScourgeInvasion"] = { - Title = AL["Scourge Invasion"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["ShardOfGods"] = { - Title = AL["Shard of the Gods"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["ZGRings"] = { - Title = AL["Zul'Gurub"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["HakkariBlades"] = { - Title = AL["Zul'Gurub"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["PrimalBlessing"] = { - Title = AL["Zul'Gurub"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["SpiritofEskhandar"] = { - Title = AL["Spirit of Eskhandar"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["DalRend"] = { - Title = AL["Dal'Rend's Arms"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["SpiderKiss"] = { - Title = AL["Spider's Kiss"]; - Back_Page = "PRE60SET"; - Back_Title = AL["Pre 60 Sets"]; - }; - ["SteelPlate"] = { - Title = AL["Steel Plate"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["ImperialPlate"] = { - Title = AL["Imperial Plate"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["TheDarksoul"] = { - Title = AL["The Darksoul"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["BloodsoulEmbrace"] = { - Title = AL["Bloodsoul Embrace"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; + Title = AL["Dalaran"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Helf"] = { + Title = AL["Silvermoon Remnant"]; + Next_Page = "Helf2"; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Helf2"] = { + Title = AL["Silvermoon Remnant"]; + Next_Page = "Helf3"; + Prev_Page = "Helf"; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Helf3"] = { + Title = AL["Silvermoon Remnant"]; + Prev_Page = "Helf2"; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Revantusk"] = { + Title = AL["Revantusk Trolls"]; + Next_Page = "Revantusk2"; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Revantusk2"] = { + Title = AL["Revantusk Trolls"]; + Next_Page = "Revantusk3"; + Prev_Page = "Revantusk"; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Revantusk3"] = { + Title = AL["Revantusk Trolls"]; + Prev_Page = "Revantusk2"; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["MagramClan1"] = { + Title = AL["Magram Clan Centaur"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Stormpike1"] = { + Title = AL["Stormpike Guard"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Thorium1"] = { + Title = AL["Thorium Brotherhood"] .. ": " .. AL["Friendly"] .. "/" .. AL["Honored"]; + Next_Page = "Thorium2"; + Next_Title = AL["Thorium Brotherhood"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Thorium2"] = { + Title = AL["Thorium Brotherhood"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"]; + Prev_Page = "Thorium1"; + Prev_Title = AL["Thorium Brotherhood"] .. ": " .. AL["Friendly"] .. "/" .. AL["Honored"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Timbermaw"] = { + Title = AL["Timbermaw Hold"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Wildhammer"] = { + Title = AL["Wildhammer Clan"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Wintersaber1"] = { + Title = AL["Wintersaber Trainers"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Zandalar1"] = { + Title = AL["Zandalar Tribe"] .. ": " .. AL["Friendly"] .. "/" .. AL["Honored"]; + Next_Page = "Zandalar2"; + Next_Title = AL["Zandalar Tribe"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["Zandalar2"] = { + Title = AL["Zandalar Tribe"] .. ": " .. AL["Revered"] .. "/" .. AL["Exalted"]; + Prev_Page = "Zandalar1"; + Prev_Title = AL["Zandalar Tribe"] .. ": " .. AL["Friendly"] .. "/" .. AL["Honored"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; + }; + ["BRRepFriendly"] = { + Title = "Blood Ring Friendly Rewards"; + Back_Page = "BRRepMenu"; + Next_Page = "BRRepHonored"; + }; + ["BRRepHonored"] = { + Title = "Blood Ring Honored Rewards"; + Back_Page = "BRRepMenu"; + Next_Page = "BRRepRevered"; + Prev_Page = "BRRepFriendly"; + }; + ["BRRepRevered"] = { + Title = "Blood Ring Revered Rewards"; + Back_Page = "BRRepMenu"; + Next_Page = "BRRepExalted"; + Prev_Page = "BRRepHonored"; + }; + ["BRRepExalted"] = { + Title = "Blood Ring Exalted Rewards"; + Back_Page = "BRRepMenu"; + Prev_Page = "BRRepRevered"; + }; + ["ABRepFriendly"] = { + Back_Page = "ABRepMenu"; + Title = "AB Friendly Rewards"; + Next_Page = "ABRepHonored2029"; + Prev_Page = "ABRepExalted"; + }; + ["ABRepHonored2029"] = { + Back_Page = "ABRepMenu"; + Title = "AB 20-29 Honored Rewards"; + Next_Page = "ABRepHonored3039"; + Prev_Page = "ABRepFriendly"; + }; + ["ABRepHonored3039"] = { + Back_Page = "ABRepMenu"; + Title = "AB 30-39 Honored Rewards"; + Next_Page = "ABRepHonored4049"; + Prev_Page = "ABRepHonored2029"; + }; + ["ABRepHonored4049"] = { + Back_Page = "ABRepMenu"; + Title = "AB 40-49 Honored Rewards"; + Next_Page = "ABRepHonored5059"; + Prev_Page = "ABRepHonored3039"; + }; + ["ABRepHonored5059"] = { + Back_Page = "ABRepMenu"; + Title = "AB 50-59 Honored Rewards"; + Next_Page = "ABRepRevered2029"; + Prev_Page = "ABRepHonored4049"; + }; + ["ABRepRevered2029"] = { + Back_Page = "ABRepMenu"; + Title = "AB 20-29 Revered Rewards"; + Next_Page = "ABRepRevered3039"; + Prev_Page = "ABRepHonored5059"; + }; + ["ABRepRevered3039"] = { + Back_Page = "ABRepMenu"; + Title = "AB 30-39 Revered Rewards"; + Next_Page = "ABRepRevered4049"; + Prev_Page = "ABRepRevered2029"; + }; + ["ABRepRevered4049"] = { + Back_Page = "ABRepMenu"; + Title = "AB 40-49 Revered Rewards"; + Next_Page = "ABRepRevered5059"; + Prev_Page = "ABRepRevered3039"; + }; + ["ABRepRevered5059"] = { + Back_Page = "ABRepMenu"; + Title = "AB 50-59 Revered Rewards"; + Next_Page = "ABRepExalted"; + Prev_Page = "ABRepRevered4049"; + }; + ["ABRepExalted"] = { + Back_Page = "ABRepMenu"; + Title = "AB Exalted Rewards"; + Prev_Page = "ABRepExalted5059"; + Next_Page = "ABRepFriendly"; + }; + ["AVRepFriendly"] = { + Title = "AV Friendly Rewards"; + Back_Page = "AVRepMenu"; + Next_Page = "AVRepHonored"; + }; + ["AVRepHonored"] = { + Title = "AV Honored Rewards"; + Back_Page = "AVRepMenu"; + Next_Page = "AVRepRevered"; + Prev_Page = "AVRepFriendly"; + }; + ["AVRepRevered"] = { + Title = "AV Revered Rewards"; + Back_Page = "AVRepMenu"; + Next_Page = "AVRepExalted"; + Prev_Page = "AVRepHonored"; + }; + ["AVRepExalted"] = { + Title = "AV Exalted Rewards"; + Back_Page = "AVRepMenu"; + Prev_Page = "AVRepRevered"; + }; + ["WSGRepFriendly"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG Friendly Rewards"; + Next_Page = "WSGRepHonored1019"; + Prev_Page = "WSGRepExalted60"; + }; + ["WSGRepHonored1019"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 10-19 Honored Rewards"; + Next_Page = "WSGRepHonored2029"; + Prev_Page = "WSGRepFriendly"; + }; + ["WSGRepHonored2029"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 20-29 Honored Rewards"; + Next_Page = "WSGRepHonored3039"; + Prev_Page = "WSGRepHonored1019"; + }; + ["WSGRepHonored3039"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 30-39 Honored Rewards"; + Next_Page = "WSGRepHonored4049"; + Prev_Page = "WSGRepHonored2029"; + }; + ["WSGRepHonored4049"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 40-49 Honored Rewards"; + Next_Page = "WSGRepHonored5059"; + Prev_Page = "WSGRepHonored3039"; + }; + ["WSGRepHonored5059"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 50-59 Honored Rewards"; + Next_Page = "WSGRepRevered1019"; + Prev_Page = "WSGRepHonored4049"; + }; + ["WSGRepRevered1019"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 10-19 Revered Rewards"; + Next_Page = "WSGRepRevered2029"; + Prev_Page = "WSGRepHonored5059"; + }; + ["WSGRepRevered2029"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 20-29 Revered Rewards"; + Next_Page = "WSGRepRevered3039"; + Prev_Page = "WSGRepRevered1019"; + }; + ["WSGRepRevered3039"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 30-39 Revered Rewards"; + Next_Page = "WSGRepRevered4049"; + Prev_Page = "WSGRepRevered2029"; + }; + ["WSGRepRevered4049"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 40-49 Revered Rewards"; + Next_Page = "WSGRepRevered5059"; + Prev_Page = "WSGRepRevered3039"; + }; + ["WSGRepRevered5059"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 50-59 Revered Rewards"; + Next_Page = "WSGRepExalted4049"; + Prev_Page = "WSGRepRevered4049"; + }; + ["WSGRepExalted4049"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 40-49 Exalted Rewards"; + Next_Page = "WSGRepExalted5059"; + Prev_Page = "WSGRepRevered5059"; + }; + ["WSGRepExalted5059"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 50-59 Exalted Rewards"; + Next_Page = "WSGRepExalted60"; + Prev_Page = "WSGRepExalted4049"; + }; + ["WSGRepExalted60"] = { + Back_Page = "WSGRepMenu"; + Title = "WSG 60 Exalted Rewards"; + Prev_Page = "WSGRepExalted5059"; + Next_Page = "WSGRepFriendly"; + }; + ["PvP60Accessories1"] = { + Title = AL["PvP Trinkets"]; + Next_Page = "PvP60Accessories2"; + Next_Title = AtlasLoot_TableNames["PvP60Accessories2"][1]; + Back_Page = "PVPMENU"; + Back_Title = AL["PvP Rewards"]; + }; + ["PvP60Accessories2"] = { + Title = AtlasLoot_TableNames["PvP60Accessories2"][1]; + Next_Page = "PvP60Accessories3"; + Next_Title = AtlasLoot_TableNames["PvP60Accessories3"][1]; + Prev_Page = "PvP60Accessories1"; + Prev_Title = AL["PvP Accessories"] .. ": " .. AL["Level 60"]; + Back_Page = "PVPMENU"; + Back_Title = AL["PvP Rewards"]; + }; + ["PvP60Accessories3"] = { + Title = AtlasLoot_TableNames["PvP60Accessories3"][1]; + Prev_Page = "PvP60Accessories2"; + Prev_Title = AtlasLoot_TableNames["PvP60Accessories2"][1]; + Back_Page = "PVPMENU"; + Back_Title = AL["PvP Rewards"]; + }; + ["PVPWeapons1"] = { + Title = AL["Rank 14 Weapons"]; + Next_Page = "PVPWeapons2"; + Next_Title = AL["Rank 14 Weapons"]; + Back_Page = "PVPMENU"; + Back_Title = AL["PvP Rewards"]; + }; + ["PVPWeapons2"] = { + Title = AL["Rank 14 Weapons"]; + Prev_Page = "PVPWeapons1"; + Prev_Title = AL["Rank 14 Weapons"]; + Back_Page = "PVPMENU"; + Back_Title = AL["PvP Rewards"]; + }; + ["PVPDruid"] = { + Title = AL["Druid"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["PVPHunter"] = { + Title = AL["Hunter"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["PVPMage"] = { + Title = AL["Mage"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["PVPPaladin"] = { + Title = AL["Paladin"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["PVPPriest"] = { + Title = AL["Priest"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["PVPRogue"] = { + Title = AL["Rogue"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["PVPShaman"] = { + Title = AL["Shaman"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["PVPWarlock"] = { + Title = AL["Warlock"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["PVPWarrior"] = { + Title = AL["Warrior"]; + Back_Page = "PVPSET"; + Back_Title = AL["PvP Armor Sets"]; + }; + ["T0Druid"] = { + Title = AL["Druid"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T0Hunter"] = { + Title = AL["Hunter"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T0Mage"] = { + Title = AL["Mage"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T0Paladin"] = { + Title = AL["Paladin"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T0Priest"] = { + Title = AL["Priest"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T0Rogue"] = { + Title = AL["Rogue"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T0Shaman"] = { + Title = AL["Shaman"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T0Warlock"] = { + Title = AL["Warlock"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T0Warrior"] = { + Title = AL["Warrior"]; + Back_Page = "T0SET"; + Back_Title = AL["Dungeon 1/2 Sets"]; + }; + ["T1Druid"] = { + Title = AL["Druid"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T1Hunter"] = { + Title = AL["Hunter"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T1Mage"] = { + Title = AL["Mage"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T1Paladin"] = { + Title = AL["Paladin"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T1Priest"] = { + Title = AL["Priest"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T1Rogue"] = { + Title = AL["Rogue"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T1Shaman"] = { + Title = AL["Shaman"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T1Warlock"] = { + Title = AL["Warlock"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T1Warrior"] = { + Title = AL["Warrior"]; + Back_Page = "T1SET"; + Back_Title = AL["Tier 1 Sets"]; + }; + ["T2Druid"] = { + Title = AL["Druid"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T2Hunter"] = { + Title = AL["Hunter"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T2Mage"] = { + Title = AL["Mage"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T2Paladin"] = { + Title = AL["Paladin"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T2Priest"] = { + Title = AL["Priest"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T2Rogue"] = { + Title = AL["Rogue"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T2Shaman"] = { + Title = AL["Shaman"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T2Warlock"] = { + Title = AL["Warlock"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T2Warrior"] = { + Title = AL["Warrior"]; + Back_Page = "T2SET"; + Back_Title = AL["Tier 2 Sets"]; + }; + ["T3Druid"] = { + Title = AL["Druid"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["T3Hunter"] = { + Title = AL["Hunter"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["T3Mage"] = { + Title = AL["Mage"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["T3Paladin"] = { + Title = AL["Paladin"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["T3Priest"] = { + Title = AL["Priest"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["T3Rogue"] = { + Title = AL["Rogue"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["T3Shaman"] = { + Title = AL["Shaman"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["T3Warlock"] = { + Title = AL["Warlock"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["T3Warrior"] = { + Title = AL["Warrior"]; + Back_Page = "T3SET"; + Back_Title = AL["Tier 3 Sets"]; + }; + ["AQ40Druid"] = { + Title = AL["Druid"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ40Hunter"] = { + Title = AL["Hunter"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ40Mage"] = { + Title = AL["Mage"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ40Paladin"] = { + Title = AL["Paladin"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ40Priest"] = { + Title = AL["Priest"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ40Rogue"] = { + Title = AL["Rogue"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ40Shaman"] = { + Title = AL["Shaman"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ40Warlock"] = { + Title = AL["Warlock"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ40Warrior"] = { + Title = AL["Warrior"]; + Back_Page = "AQ40SET"; + Back_Title = AL["Temple of Ahn'Qiraj Sets"]; + }; + ["AQ20Druid"] = { + Title = AL["Druid"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["AQ20Hunter"] = { + Title = AL["Hunter"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["AQ20Mage"] = { + Title = AL["Mage"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["AQ20Paladin"] = { + Title = AL["Paladin"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["AQ20Priest"] = { + Title = AL["Priest"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["AQ20Rogue"] = { + Title = AL["Rogue"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["AQ20Shaman"] = { + Title = AL["Shaman"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["AQ20Warlock"] = { + Title = AL["Warlock"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["AQ20Warrior"] = { + Title = AL["Warrior"]; + Back_Page = "AQ20SET"; + Back_Title = AL["Ruins of Ahn'Qiraj Sets"]; + }; + ["ZGDruid"] = { + Title = AL["Druid"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["ZGHunter"] = { + Title = AL["Hunter"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["ZGMage"] = { + Title = AL["Mage"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["ZGPaladin"] = { + Title = AL["Paladin"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["ZGPriest"] = { + Title = AL["Priest"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["ZGRogue"] = { + Title = AL["Rogue"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["ZGShaman"] = { + Title = AL["Shaman"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["ZGWarlock"] = { + Title = AL["Warlock"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["ZGWarrior"] = { + Title = AL["Warrior"]; + Back_Page = "ZGSET"; + Back_Title = AL["Zul'Gurub Sets"]; + }; + ["DEADMINES"] = { + Title = AL["Defias Leather"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["WAILING"] = { + Title = AL["Embrace of the Viper"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["SCARLET"] = { + Title = AL["Chain of the Scarlet Crusade"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["BLACKROCKD"] = { + Title = AL["The Gladiator"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["IRONWEAVE"] = { + Title = AL["Ironweave Battlesuit"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["ScholoCloth"] = { + Title = AL["Scholomance"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["ScholoLeather"] = { + Title = AL["Scholomance"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["ScholoMail"] = { + Title = AL["Scholomance"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["ScholoPlate"] = { + Title = AL["Scholomance"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["STRAT"] = { + Title = AL["The Postmaster"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["ScourgeInvasion"] = { + Title = AL["Scourge Invasion"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["ShardOfGods"] = { + Title = AL["Shard of the Gods"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["ZGRings"] = { + Title = AL["Zul'Gurub"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["HakkariBlades"] = { + Title = AL["Zul'Gurub"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["PrimalBlessing"] = { + Title = AL["Zul'Gurub"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["SpiritofEskhandar"] = { + Title = AL["Spirit of Eskhandar"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["DalRend"] = { + Title = AL["Dal'Rend's Arms"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["SpiderKiss"] = { + Title = AL["Spider's Kiss"]; + Back_Page = "PRE60SET"; + Back_Title = AL["Pre 60 Sets"]; + }; + ["SteelPlate"] = { + Title = AL["Steel Plate"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["ImperialPlate"] = { + Title = AL["Imperial Plate"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["TheDarksoul"] = { + Title = AL["The Darksoul"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["BloodsoulEmbrace"] = { + Title = AL["Bloodsoul Embrace"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; ["AugerersAttire"] = { - Title = AL["Augerer's Attire"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; + Title = AL["Augerer's Attire"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; ["ShadoweaveSet"] = { - Title = AL["Shadoweave"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; + Title = AL["Shadoweave"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; ["DivinersGarments"] = { - Title = AL["Diviner's Garments"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; + Title = AL["Diviner's Garments"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; ["PillagersGarb"] = { - Title = AL["Pillager's Garb"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["BloodvineG"] = { - Title = AL["Bloodvine Garb"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; + Title = AL["Pillager's Garb"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["BloodvineG"] = { + Title = AL["Bloodvine Garb"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; ["GriftersArmor"] = { - Title = AL["Grifter's Armor"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; + Title = AL["Grifter's Armor"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; ["PrimalistsTrappings"] = { - Title = AL["Primalist's Trappings"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["VolcanicArmor"] = { - Title = AL["Volcanic Armor"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["IronfeatherArmor"] = { - Title = AL["Ironfeather Armor"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["StormshroudArmor"] = { - Title = AL["Stormshroud Armor"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["DevilsaurArmor"] = { - Title = AL["Devilsaur Armor"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["BloodTigerH"] = { - Title = AL["Blood Tiger Harness"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["PrimalBatskin"] = { - Title = AL["Primal Batskin"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["RedDragonM"] = { - Title = AL["Red Dragon Mail"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["GreenDragonM"] = { - Title = AL["Green Dragon Mail"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["BlueDragonM"] = { - Title = AL["Blue Dragon Mail"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["BlackDragonM"] = { - Title = AL["Black Dragon Mail"]; - Back_Page = "CRAFTSET"; - Back_Title = AL["Crafted Sets"]; - }; - ["CraftedWeapons1"] = { - Title = AL["Crafted Epic Weapons"]; - Back_Page = "CRAFTINGMENU"; - Back_Title = AL["Collections"]; - }; - ["Tabards"] = { - Title = AL["Tabards"]; - Back_Page = "SETMENU"; - Back_Title = AL["Collections"]; - }; - ["Legendaries"] = { - Title = AL["Legendary Items"]; - Back_Page = "SETMENU"; - Back_Title = AL["Collections"]; - }; - ["Artifacts"] = { - Title = AL["Artifact Items"]; - Back_Page = "SETMENU"; - Back_Title = AL["Collections"]; - }; - ["PvPMountsPvP"] = { - Title = AL["PvP Mounts"]; - Back_Page = "PVPMENU"; - Back_Title = AL["PvP Rewards"]; - }; - ["UnobMounts"] = { - Title = AL["Unobtainable Mounts"]; - Back_Page = "SETMENU"; - Back_Title = AL["Collections"]; - }; - ["OldMounts"] = { - Title = AL["Old Mounts"]; - Back_Page = "SETMENU"; - Back_Title = AL["Collections"]; - }; - ["RareMounts"] = { - Title = AL["Rare Mounts"]; - Back_Page = "SETMENU"; - Back_Title = AL["Collections"]; - }; - ["RarePets1"] = { - Title = AL["Rare Pets"]; - Next_Page = "RarePets2"; - Next_Title = AL["Rare Pets"]; - Back_Page = "SETMENU"; - Back_Title = AL["Collections"]; - }; - ["RarePets2"] = { - Title = AL["Rare Pets"]; - Prev_Page = "RarePets1"; - Prev_Title = AL["Rare Pets"]; - Back_Page = "SETMENU"; - Back_Title = AL["Collections"]; - }; - ["WorldEpics1"] = { - Title = AtlasLoot_TableNames["WorldEpics1"][1]; - Next_Page = "WorldEpics2"; - Next_Title = AtlasLoot_TableNames["WorldEpics2"][1]; - Back_Page = "WORLDEPICS"; - Back_Title = AL["World Epics"]; - }; - ["WorldEpics2"] = { - Title = AtlasLoot_TableNames["WorldEpics2"][1]; - Next_Page = "WorldEpics3"; - Next_Title = AtlasLoot_TableNames["WorldEpics3"][1]; - Prev_Page = "WorldEpics1"; - Prev_Title = AtlasLoot_TableNames["WorldEpics1"][1]; - Back_Page = "WORLDEPICS"; - Back_Title = AL["World Epics"]; - }; - ["WorldEpics3"] = { - Title = AtlasLoot_TableNames["WorldEpics3"][1]; - Prev_Page = "WorldEpics2"; - Prev_Title = AtlasLoot_TableNames["WorldEpics2"][1]; - Back_Page = "WORLDEPICS"; - Back_Title = AL["World Epics"]; - }; - ["ZGTrash1"] = { - Title = AtlasLoot_TableNames["ZGTrash1"][1]; - Next_Page = "ZGTrash2"; - Next_Title = AtlasLoot_TableNames["ZGTrash2"][1]; - }; - ["ZGTrash2"] = { - Title = AtlasLoot_TableNames["ZGTrash2"][1]; - Prev_Page = "ZGTrash1"; - Prev_Title = AtlasLoot_TableNames["ZGTrash1"][1]; - }; - ["AQ40Trash1"] = { - Title = AtlasLoot_TableNames["AQ40Trash1"][1]; - Next_Page = "AQ40Trash2"; - Next_Title = AtlasLoot_TableNames["AQ40Trash2"][1]; - }; - ["AQ40Trash2"] = { - Title = AtlasLoot_TableNames["AQ40Trash2"][1]; - Prev_Page = "AQ40Trash1"; - Prev_Title = AtlasLoot_TableNames["AQ40Trash1"][1]; - }; - ["ChildrensWeek"] = { - Title = AL["Children's Week"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["Winterviel1"] = { - Title = AL["Feast of Winter Veil"]; - Next_Page = "Winterviel2"; - Next_Title = AtlasLoot_TableNames["Winterviel2"][1]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["Winterviel2"] = { - Title = AtlasLoot_TableNames["Winterviel2"][1]; - Prev_Page = "Winterviel1"; - Prev_Title = AL["Feast of Winter Veil"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["Halloween1"] = { - Title = AL["Hallow's End"]; - Next_Page = "Halloween2"; - Next_Title = AL["Hallow's End"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["Halloween2"] = { - Title = AL["Hallow's End"]; - Prev_Page = "Halloween1"; - Prev_Title = AL["Hallow's End"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["HarvestFestival"] = { - Title = AL["Harvest Festival"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["Valentineday"] = { - Title = AL["Love is in the Air"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["LunarFestival1"] = { - Title = AL["Lunar Festival"]; - Next_Page = "LunarFestival2"; - Next_Title = AL["Lunar Festival"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["LunarFestival2"] = { - Title = AL["Lunar Festival"]; - Prev_Page = "LunarFestival1"; - Prev_Title = AL["Lunar Festival"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["MidsummerFestival"] = { - Title = AL["Midsummer Fire Festival"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["Noblegarden"] = { - Title = AL["Noblegarden"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["ElementalInvasion"] = { - Title = AL["Elemental Invasion"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["GurubashiArena"] = { - Title = AL["Gurubashi Arena Booty Run"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["ScourgeInvasionEvent1"] = { - Title = AL["Scourge Invasion"]; - Next_Page = "ScourgeInvasionEvent2"; - Next_Title = AtlasLoot_TableNames["ScourgeInvasionEvent2"][1]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["ScourgeInvasionEvent2"] = { - Title = AtlasLoot_TableNames["ScourgeInvasionEvent2"][1]; - Prev_Page = "ScourgeInvasionEvent1"; - Prev_Title = AL["Scourge Invasion"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["FishingExtravaganza"] = { - Title = AL["Stranglethorn Fishing Extravaganza"]; - Back_Page = "WORLDEVENTMENU"; - Back_Title = AL["World Events"]; - }; - ["AbyssalTemplars"] = { - Title = AL["Abyssal Council"] .. " - " .. AL["Templars"]; - Back_Page = "AbyssalCouncil"; - Back_Title = AL["Abyssal Council"]; - }; - ["AbyssalDukes"] = { - Title = AL["Abyssal Council"] .. " - " .. AL["Dukes"]; - Back_Page = "AbyssalCouncil"; - Back_Title = AL["Abyssal Council"]; - }; - ["AbyssalLords"] = { - Title = AL["Abyssal Council"] .. " - " .. AL["High Council"]; - Back_Page = "AbyssalCouncil"; - Back_Title = AL["Abyssal Council"]; - }; - ["AlchemyApprentice1"] = { - Title = AL["Alchemy"] .. ": " .. AL["Apprentice"]; - Back_Page = "ALCHEMYMENU"; - Back_Title = AL["Alchemy"]; - Next_Page = "AlchemyJourneyman1"; - Next_Title = AL["Alchemy"] .. ": " .. AL["Journeyman"]; - }; - ["AlchemyJourneyman1"] = { - Title = AL["Alchemy"] .. ": " .. AL["Journeyman"]; - Back_Page = "ALCHEMYMENU"; - Back_Title = AL["Alchemy"]; - Next_Page = "AlchemyExpert1"; - Next_Title = AL["Alchemy"] .. ": " .. AL["Expert"]; - Prev_Page = "AlchemyApprentice1"; - Prev_Title = AL["Alchemy"] .. ": " .. AL["Apprentice"]; - }; - ["AlchemyExpert1"] = { - Title = AL["Alchemy"] .. ": " .. AL["Expert"]; - Back_Page = "ALCHEMYMENU"; - Back_Title = AL["Alchemy"]; - Next_Page = "AlchemyArtisan1"; - Next_Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; - Prev_Page = "AlchemyJourneyman1"; - Prev_Title = AL["Alchemy"] .. ": " .. AL["Journeyman"]; - }; - ["AlchemyArtisan1"] = { - Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; - Back_Page = "ALCHEMYMENU"; - Back_Title = AL["Alchemy"]; - Next_Page = "AlchemyArtisan2"; - Next_Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; - Prev_Page = "AlchemyExpert1"; - Prev_Title = AL["Alchemy"] .. ": " .. AL["Expert"]; - }; - ["AlchemyArtisan2"] = { - Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; - Back_Page = "ALCHEMYMENU"; - Back_Title = AL["Alchemy"]; - Prev_Page = "AlchemyArtisan1"; - Prev_Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; - }; - ["SmithingApprentice1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Apprentice"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Next_Page = "SmithingJourneyman1"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; - }; - ["SmithingJourneyman1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "SmithingApprentice1"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Apprentice"]; - Next_Page = "SmithingJourneyman2"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; - }; - ["SmithingJourneyman2"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "SmithingJourneyman1"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; - Next_Page = "SmithingExpert1"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; - }; - ["SmithingExpert1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "SmithingJourneyman2"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; - Next_Page = "SmithingExpert2"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; - }; - ["SmithingExpert2"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "SmithingExpert1"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; - Next_Page = "SmithingArtisan1"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; - }; - ["SmithingArtisan1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "SmithingExpert2"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; - Next_Page = "SmithingArtisan2"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; - }; - ["SmithingArtisan2"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "SmithingArtisan1"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; - Next_Page = "SmithingArtisan3"; - Next_Title = AL["Blacksmithing"]; - }; - ["SmithingArtisan3"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "SmithingArtisan2"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; - Next_Page = "Armorsmith1"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"]; - }; - ["Armorsmith1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "SmithingArtisan3"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; - Next_Page = "Weaponsmith1"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Weaponsmith"]; - }; - ["Weaponsmith1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Weaponsmith"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "Armorsmith1"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"]; - Next_Page = "Axesmith1"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"]; - }; - ["Axesmith1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "Weaponsmith1"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Weaponsmith"]; - Next_Page = "Hammersmith1"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"]; - }; - ["Hammersmith1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "Axesmith1"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"]; - Next_Page = "Swordsmith1"; - Next_Title = AL["Blacksmithing"] .. ": " .. AL["Master Swordsmith"]; - }; - ["Swordsmith1"] = { - Title = AL["Blacksmithing"] .. ": " .. AL["Master Swordsmith"]; - Back_Page = "SMITHINGMENU"; - Back_Title = AL["Blacksmithing"]; - Prev_Page = "Hammersmith1"; - Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"]; - }; - ["EnchantingApprentice1"] = { - Title = AL["Enchanting"] .. ": " .. AL["Apprentice"]; - Back_Page = "ENCHANTINGMENU"; - Back_Title = AL["Enchanting"]; - Next_Page = "EnchantingJourneyman1"; - Next_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; - }; - ["EnchantingJourneyman1"] = { - Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; - Back_Page = "ENCHANTINGMENU"; - Back_Title = AL["Enchanting"]; - Prev_Page = "EnchantingApprentice1"; - Prev_Title = AL["Enchanting"] .. ": " .. AL["Apprentice"]; - Next_Page = "EnchantingJourneyman2"; - Next_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; - }; - ["EnchantingJourneyman2"] = { - Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; - Back_Page = "ENCHANTINGMENU"; - Back_Title = AL["Enchanting"]; - Prev_Page = "EnchantingJourneyman1"; - Prev_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; - Next_Page = "EnchantingExpert1"; - Next_Title = AL["Enchanting"] .. ": " .. AL["Expert"]; - }; - ["EnchantingExpert1"] = { - Title = AL["Enchanting"] .. ": " .. AL["Expert"]; - Back_Page = "ENCHANTINGMENU"; - Back_Title = AL["Enchanting"]; - Prev_Page = "EnchantingJourneyman2"; - Prev_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; - Next_Page = "EnchantingExpert2"; - Next_Title = AL["Enchanting"] .. ": " .. AL["Expert"]; - }; - ["EnchantingExpert2"] = { - Title = AL["Enchanting"] .. ": " .. AL["Expert"]; - Back_Page = "ENCHANTINGMENU"; - Back_Title = AL["Enchanting"]; - Prev_Page = "EnchantingExpert1"; - Prev_Title = AL["Enchanting"] .. ": " .. AL["Expert"]; - Next_Page = "EnchantingArtisan1"; - Next_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; - }; - ["EnchantingArtisan1"] = { - Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; - Back_Page = "ENCHANTINGMENU"; - Back_Title = AL["Enchanting"]; - Prev_Page = "EnchantingExpert2"; - Prev_Title = AL["Enchanting"] .. ": " .. AL["Expert"]; - Next_Page = "EnchantingArtisan2"; - Next_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; - }; - ["EnchantingArtisan2"] = { - Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; - Back_Page = "ENCHANTINGMENU"; - Back_Title = AL["Enchanting"]; - Prev_Page = "EnchantingArtisan1"; - Prev_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; - Next_Page = "EnchantingArtisan3"; - Next_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; - }; - ["EnchantingArtisan3"] = { - Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; - Back_Page = "ENCHANTINGMENU"; - Back_Title = AL["Enchanting"]; - Prev_Page = "EnchantingArtisan2"; - Prev_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; - }; - ["EngineeringApprentice1"] = { - Title = AL["Engineering"] .. ": " .. AL["Apprentice"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Next_Page = "EngineeringJourneyman1"; - Next_Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; - }; - ["EngineeringJourneyman1"] = { - Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Prev_Page = "EngineeringApprentice1"; - Prev_Title = AL["Engineering"] .. ": " .. AL["Apprentice"]; - Next_Page = "EngineeringJourneyman2"; - Next_Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; - }; - ["EngineeringJourneyman2"] = { - Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Prev_Page = "EngineeringJourneyman1"; - Prev_Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; - Next_Page = "EngineeringExpert1"; - Next_Title = AL["Engineering"] .. ": " .. AL["Expert"]; - }; - ["EngineeringExpert1"] = { - Title = AL["Engineering"] .. ": " .. AL["Expert"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Prev_Page = "EngineeringJourneyman2"; - Prev_Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; - Next_Page = "EngineeringExpert2"; - Next_Title = AL["Engineering"] .. ": " .. AL["Expert"]; - }; - ["EngineeringExpert2"] = { - Title = AL["Engineering"] .. ": " .. AL["Expert"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Prev_Page = "EngineeringExpert1"; - Prev_Title = AL["Engineering"] .. ": " .. AL["Expert"]; - Next_Page = "EngineeringArtisan1"; - Next_Title = AL["Engineering"] .. ": " .. AL["Artisan"]; - }; - ["EngineeringArtisan1"] = { - Title = AL["Engineering"] .. ": " .. AL["Artisan"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Prev_Page = "EngineeringExpert2"; - Prev_Title = AL["Engineering"] .. ": " .. AL["Expert"]; - Next_Page = "EngineeringArtisan2"; - Next_Title = AL["Engineering"] .. ": " .. AL["Artisan"]; - }; - ["EngineeringArtisan2"] = { - Title = AL["Engineering"] .. ": " .. AL["Artisan"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Prev_Page = "EngineeringArtisan1"; - Prev_Title = AL["Engineering"] .. ": " .. AL["Artisan"]; - Next_Page = "Gnomish1"; - Next_Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"]; - }; - ["Gnomish1"] = { - Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Prev_Page = "EngineeringArtisan2"; - Prev_Title = AL["Engineering"] .. ": " .. AL["Artisan"]; - Next_Page = "Goblin1"; - Next_Title = AL["Engineering"] .. ": " .. AL["Goblin Engineering"]; - }; - ["Goblin1"] = { - Title = AL["Engineering"] .. ": " .. AL["Goblin Engineering"]; - Back_Page = "ENGINEERINGMENU"; - Back_Title = AL["Engineering"]; - Prev_Page = "Gnomish1"; - Prev_Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"]; - }; - ["LeatherApprentice1"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Apprentice"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Next_Page = "LeatherJourneyman1"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; - }; - ["LeatherJourneyman1"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "LeatherApprentice1"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Apprentice"]; - Next_Page = "LeatherJourneyman2"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; - }; - ["LeatherJourneyman2"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "LeatherJourneyman1"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; - Next_Page = "LeatherExpert1"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; - }; - ["LeatherExpert1"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "LeatherJourneyman2"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; - Next_Page = "LeatherExpert2"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; - }; - ["LeatherExpert2"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "LeatherExpert1"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; - Next_Page = "LeatherArtisan1"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - }; - ["LeatherArtisan1"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "LeatherExpert2"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; - Next_Page = "LeatherArtisan2"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - }; - ["LeatherArtisan2"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "LeatherArtisan1"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - Next_Page = "LeatherArtisan3"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - }; - ["LeatherArtisan3"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "LeatherArtisan2"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - Next_Page = "Dragonscale1"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"]; - }; - ["Dragonscale1"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "LeatherArtisan3"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; - Next_Page = "Elemental1"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"]; - }; - ["Elemental1"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "Dragonscale1"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"]; - Next_Page = "Tribal1"; - Next_Title = AL["Leatherworking"] .. ": " .. AL["Tribal Leatherworking"]; - }; - ["Tribal1"] = { - Title = AL["Leatherworking"] .. ": " .. AL["Tribal Leatherworking"]; - Back_Page = "LEATHERWORKINGMENU"; - Back_Title = AL["Leatherworking"]; - Prev_Page = "Elemental1"; - Prev_Title = AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"]; - }; - ["Herbalism1"] = { - Title = AL["Herbalism"]; - Back_Page = "CRAFTINGMENU"; - Back_Title = AL["Crafting"]; - Next_Page = "Herbalism2"; - Next_Title = AL["Herbalism"]; - }; - ["Herbalism2"] = { - Title = AL["Herbalism"]; - Back_Page = "CRAFTINGMENU"; - Back_Title = AL["Crafting"]; - Prev_Page = "Herbalism1"; - Prev_Title = AL["Herbalism"]; - }; - ["Mining1"] = { - Title = AL["Mining"]; - Back_Page = "MININGMENU"; - Back_Title = AL["Crafting"]; - Next_Page = "Mining2"; - Next_Title = AL["Mining"]; - }; - ["Mining2"] = { - Title = AL["Mining"]; - Back_Page = "MININGMENU"; - Back_Title = AL["Crafting"]; - Next_Page = "Smelting1"; - Next_Title = AL["Smelting"]; - Prev_Page = "Mining1"; - Prev_Title = AL["Mining"]; - }; - ["Smelting1"] = { - Title = AL["Smelting"]; - Back_Page = "MININGMENU"; - Back_Title = AL["Crafting"]; - Prev_Page = "Mining2"; - Prev_Title = AL["Mining"]; - }; - ["TailoringApprentice1"] = { - Title = AL["Tailoring"] .. ": " .. AL["Apprentice"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Next_Page = "TailoringJourneyman1"; - Next_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; - }; - ["TailoringJourneyman1"] = { - Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Prev_Page = "TailoringApprentice1"; - Prev_Title = AL["Tailoring"] .. ": " .. AL["Apprentice"]; - Next_Page = "TailoringJourneyman2"; - Next_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; - }; - ["TailoringJourneyman2"] = { - Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Prev_Page = "TailoringJourneyman1"; - Prev_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; - Next_Page = "TailoringExpert1"; - Next_Title = AL["Tailoring"] .. ": " .. AL["Expert"]; - }; - ["TailoringExpert1"] = { - Title = AL["Tailoring"] .. ": " .. AL["Expert"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Prev_Page = "TailoringJourneyman2"; - Prev_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; - Next_Page = "TailoringExpert2"; - Next_Title = AL["Tailoring"] .. ": " .. AL["Expert"]; - }; - ["TailoringExpert2"] = { - Title = AL["Tailoring"] .. ": " .. AL["Expert"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Prev_Page = "TailoringExpert1"; - Prev_Title = AL["Tailoring"] .. ": " .. AL["Expert"]; - Next_Page = "TailoringArtisan1"; - Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - }; - ["TailoringArtisan1"] = { - Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Prev_Page = "TailoringExpert2"; - Prev_Title = AL["Tailoring"] .. ": " .. AL["Expert"]; - Next_Page = "TailoringArtisan2"; - Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - }; - ["TailoringArtisan2"] = { - Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Prev_Page = "TailoringArtisan1"; - Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - Next_Page = "TailoringArtisan3"; - Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - }; - ["TailoringArtisan3"] = { - Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Prev_Page = "TailoringArtisan2"; - Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - Next_Page = "TailoringArtisan4"; - Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - }; - ["TailoringArtisan4"] = { - Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - Back_Page = "TAILORINGMENU"; - Back_Title = AL["Tailoring"]; - Prev_Page = "TailoringArtisan3"; - Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; - }; - ["CookingApprentice1"] = { - Title = AL["Cooking"] .. ": " .. AL["Apprentice"]; - Back_Page = "COOKINGMENU"; - Back_Title = AL["Cooking"]; - Next_Page = "CookingJourneyman1"; - Next_Title = AL["Cooking"] .. ": " .. AL["Journeyman"]; - }; - ["CookingJourneyman1"] = { - Title = AL["Cooking"] .. ": " .. AL["Journeyman"]; - Back_Page = "COOKINGMENU"; - Back_Title = AL["Cooking"]; - Prev_Page = "CookingApprentice1"; - Prev_Title = AL["Cooking"] .. ": " .. AL["Apprentice"]; - Next_Page = "CookingExpert1"; - Next_Title = AL["Cooking"] .. ": " .. AL["Journeyman"]; - }; - ["CookingExpert1"] = { - Title = AL["Cooking"] .. ": " .. AL["Expert"]; - Back_Page = "COOKINGMENU"; - Back_Title = AL["Cooking"]; - Prev_Page = "CookingJourneyman1"; - Prev_Title = AL["Cooking"] .. ": " .. AL["Journeyman"]; - Next_Page = "CookingArtisan1"; - Next_Title = AL["Cooking"] .. ": " .. AL["Artisan"]; - }; - ["CookingArtisan1"] = { - Title = AL["Cooking"] .. ": " .. AL["Artisan"]; - Back_Page = "COOKINGMENU"; - Back_Title = AL["Cooking"]; - Prev_Page = "CookingExpert1"; - Prev_Title = AL["Cooking"] .. ": " .. AL["Expert"]; - }; - ["FirstAid1"] = { - Title = AL["First Aid"]; - Back_Page = "CRAFTINGMENU"; - Back_Title = AL["Crafting"]; - }; - ["Survival1"] = { - Title = AL["Survival"]; - Back_Page = "CRAFTINGMENU"; - Back_Title = AL["Crafting"]; - }; - ["Poisons1"] = { - Title = AL["Poisons"]; - Back_Page = "CRAFTINGMENU"; - Back_Title = AL["Crafting"]; - }; + Title = AL["Primalist's Trappings"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["VolcanicArmor"] = { + Title = AL["Volcanic Armor"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["IronfeatherArmor"] = { + Title = AL["Ironfeather Armor"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["StormshroudArmor"] = { + Title = AL["Stormshroud Armor"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["DevilsaurArmor"] = { + Title = AL["Devilsaur Armor"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["BloodTigerH"] = { + Title = AL["Blood Tiger Harness"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["PrimalBatskin"] = { + Title = AL["Primal Batskin"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["RedDragonM"] = { + Title = AL["Red Dragon Mail"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["GreenDragonM"] = { + Title = AL["Green Dragon Mail"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["BlueDragonM"] = { + Title = AL["Blue Dragon Mail"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["BlackDragonM"] = { + Title = AL["Black Dragon Mail"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["CraftedWeapons1"] = { + Title = AL["Crafted Epic Weapons"]; + Back_Page = "CRAFTINGMENU"; + Back_Title = AL["Collections"]; + }; + ["Tabards"] = { + Title = AL["Tabards"]; + Back_Page = "SETMENU"; + Back_Title = AL["Collections"]; + }; + ["Legendaries"] = { + Title = AL["Legendary Items"]; + Back_Page = "SETMENU"; + Back_Title = AL["Collections"]; + }; + ["Artifacts"] = { + Title = AL["Artifact Items"]; + Back_Page = "SETMENU"; + Back_Title = AL["Collections"]; + }; + ["PvPMountsPvP"] = { + Title = AL["PvP Mounts"]; + Back_Page = "PVPMENU"; + Back_Title = AL["PvP Rewards"]; + }; + ["UnobMounts"] = { + Title = AL["Unobtainable Mounts"]; + Back_Page = "SETMENU"; + Back_Title = AL["Collections"]; + }; + ["OldMounts"] = { + Title = AL["Old Mounts"]; + Back_Page = "SETMENU"; + Back_Title = AL["Collections"]; + }; + ["RareMounts"] = { + Title = AL["Rare Mounts"]; + Back_Page = "SETMENU"; + Back_Title = AL["Collections"]; + }; + ["RarePets1"] = { + Title = AL["Rare Pets"]; + Next_Page = "RarePets2"; + Next_Title = AL["Rare Pets"]; + Back_Page = "SETMENU"; + Back_Title = AL["Collections"]; + }; + ["RarePets2"] = { + Title = AL["Rare Pets"]; + Prev_Page = "RarePets1"; + Prev_Title = AL["Rare Pets"]; + Back_Page = "SETMENU"; + Back_Title = AL["Collections"]; + }; + ["WorldEpics1"] = { + Title = AtlasLoot_TableNames["WorldEpics1"][1]; + Next_Page = "WorldEpics2"; + Next_Title = AtlasLoot_TableNames["WorldEpics2"][1]; + Back_Page = "WORLDEPICS"; + Back_Title = AL["World Epics"]; + }; + ["WorldEpics2"] = { + Title = AtlasLoot_TableNames["WorldEpics2"][1]; + Next_Page = "WorldEpics3"; + Next_Title = AtlasLoot_TableNames["WorldEpics3"][1]; + Prev_Page = "WorldEpics1"; + Prev_Title = AtlasLoot_TableNames["WorldEpics1"][1]; + Back_Page = "WORLDEPICS"; + Back_Title = AL["World Epics"]; + }; + ["WorldEpics3"] = { + Title = AtlasLoot_TableNames["WorldEpics3"][1]; + Prev_Page = "WorldEpics2"; + Prev_Title = AtlasLoot_TableNames["WorldEpics2"][1]; + Back_Page = "WORLDEPICS"; + Back_Title = AL["World Epics"]; + }; + ["ZGTrash1"] = { + Title = AtlasLoot_TableNames["ZGTrash1"][1]; + Next_Page = "ZGTrash2"; + Next_Title = AtlasLoot_TableNames["ZGTrash2"][1]; + }; + ["ZGTrash2"] = { + Title = AtlasLoot_TableNames["ZGTrash2"][1]; + Prev_Page = "ZGTrash1"; + Prev_Title = AtlasLoot_TableNames["ZGTrash1"][1]; + }; + ["AQ40Trash1"] = { + Title = AtlasLoot_TableNames["AQ40Trash1"][1]; + Next_Page = "AQ40Trash2"; + Next_Title = AtlasLoot_TableNames["AQ40Trash2"][1]; + }; + ["AQ40Trash2"] = { + Title = AtlasLoot_TableNames["AQ40Trash2"][1]; + Prev_Page = "AQ40Trash1"; + Prev_Title = AtlasLoot_TableNames["AQ40Trash1"][1]; + }; + ["ChildrensWeek"] = { + Title = AL["Children's Week"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["Winterviel1"] = { + Title = AL["Feast of Winter Veil"]; + Next_Page = "Winterviel2"; + Next_Title = AtlasLoot_TableNames["Winterviel2"][1]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["Winterviel2"] = { + Title = AtlasLoot_TableNames["Winterviel2"][1]; + Prev_Page = "Winterviel1"; + Prev_Title = AL["Feast of Winter Veil"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["Halloween1"] = { + Title = AL["Hallow's End"]; + Next_Page = "Halloween2"; + Next_Title = AL["Hallow's End"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["Halloween2"] = { + Title = AL["Hallow's End"]; + Prev_Page = "Halloween1"; + Prev_Title = AL["Hallow's End"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["HarvestFestival"] = { + Title = AL["Harvest Festival"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["Valentineday"] = { + Title = AL["Love is in the Air"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["LunarFestival1"] = { + Title = AL["Lunar Festival"]; + Next_Page = "LunarFestival2"; + Next_Title = AL["Lunar Festival"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["LunarFestival2"] = { + Title = AL["Lunar Festival"]; + Prev_Page = "LunarFestival1"; + Prev_Title = AL["Lunar Festival"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["MidsummerFestival"] = { + Title = AL["Midsummer Fire Festival"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["Noblegarden"] = { + Title = AL["Noblegarden"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["ElementalInvasion"] = { + Title = AL["Elemental Invasion"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["GurubashiArena"] = { + Title = AL["Gurubashi Arena Booty Run"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["ScourgeInvasionEvent1"] = { + Title = AL["Scourge Invasion"]; + Next_Page = "ScourgeInvasionEvent2"; + Next_Title = AtlasLoot_TableNames["ScourgeInvasionEvent2"][1]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["ScourgeInvasionEvent2"] = { + Title = AtlasLoot_TableNames["ScourgeInvasionEvent2"][1]; + Prev_Page = "ScourgeInvasionEvent1"; + Prev_Title = AL["Scourge Invasion"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["FishingExtravaganza"] = { + Title = AL["Stranglethorn Fishing Extravaganza"]; + Back_Page = "WORLDEVENTMENU"; + Back_Title = AL["World Events"]; + }; + ["AbyssalTemplars"] = { + Title = AL["Abyssal Council"] .. " - " .. AL["Templars"]; + Back_Page = "AbyssalCouncil"; + Back_Title = AL["Abyssal Council"]; + }; + ["AbyssalDukes"] = { + Title = AL["Abyssal Council"] .. " - " .. AL["Dukes"]; + Back_Page = "AbyssalCouncil"; + Back_Title = AL["Abyssal Council"]; + }; + ["AbyssalLords"] = { + Title = AL["Abyssal Council"] .. " - " .. AL["High Council"]; + Back_Page = "AbyssalCouncil"; + Back_Title = AL["Abyssal Council"]; + }; + ["AlchemyApprentice1"] = { + Title = AL["Alchemy"] .. ": " .. AL["Apprentice"]; + Back_Page = "ALCHEMYMENU"; + Back_Title = AL["Alchemy"]; + Next_Page = "AlchemyJourneyman1"; + Next_Title = AL["Alchemy"] .. ": " .. AL["Journeyman"]; + }; + ["AlchemyJourneyman1"] = { + Title = AL["Alchemy"] .. ": " .. AL["Journeyman"]; + Back_Page = "ALCHEMYMENU"; + Back_Title = AL["Alchemy"]; + Next_Page = "AlchemyExpert1"; + Next_Title = AL["Alchemy"] .. ": " .. AL["Expert"]; + Prev_Page = "AlchemyApprentice1"; + Prev_Title = AL["Alchemy"] .. ": " .. AL["Apprentice"]; + }; + ["AlchemyExpert1"] = { + Title = AL["Alchemy"] .. ": " .. AL["Expert"]; + Back_Page = "ALCHEMYMENU"; + Back_Title = AL["Alchemy"]; + Next_Page = "AlchemyArtisan1"; + Next_Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; + Prev_Page = "AlchemyJourneyman1"; + Prev_Title = AL["Alchemy"] .. ": " .. AL["Journeyman"]; + }; + ["AlchemyArtisan1"] = { + Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; + Back_Page = "ALCHEMYMENU"; + Back_Title = AL["Alchemy"]; + Next_Page = "AlchemyArtisan2"; + Next_Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; + Prev_Page = "AlchemyExpert1"; + Prev_Title = AL["Alchemy"] .. ": " .. AL["Expert"]; + }; + ["AlchemyArtisan2"] = { + Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; + Back_Page = "ALCHEMYMENU"; + Back_Title = AL["Alchemy"]; + Prev_Page = "AlchemyArtisan1"; + Prev_Title = AL["Alchemy"] .. ": " .. AL["Artisan"]; + }; + ["SmithingApprentice1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Apprentice"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Next_Page = "SmithingJourneyman1"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; + }; + ["SmithingJourneyman1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingApprentice1"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Apprentice"]; + Next_Page = "SmithingJourneyman2"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; + }; + ["SmithingJourneyman2"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingJourneyman1"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; + Next_Page = "SmithingExpert1"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + }; + ["SmithingExpert1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingJourneyman2"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Journeyman"]; + Next_Page = "SmithingExpert2"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + }; + ["SmithingExpert2"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingExpert1"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + Next_Page = "SmithingExpert3"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + }; + ["SmithingExpert3"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingExpert2"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + Next_Page = "SmithingArtisan1"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; + }; + ["SmithingArtisan1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingExpert3"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Expert"]; + Next_Page = "SmithingArtisan2"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; + }; + ["SmithingArtisan2"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingArtisan1"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; + Next_Page = "SmithingArtisan3"; + Next_Title = AL["Blacksmithing"]; + }; + ["SmithingArtisan3"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingArtisan2"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; + Next_Page = "Armorsmith1"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"]; + }; + ["Armorsmith1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "SmithingArtisan3"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Artisan"]; + Next_Page = "Weaponsmith1"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Weaponsmith"]; + }; + ["Weaponsmith1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Weaponsmith"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "Armorsmith1"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Armorsmith"]; + Next_Page = "Axesmith1"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"]; + }; + ["Axesmith1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "Weaponsmith1"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Weaponsmith"]; + Next_Page = "Hammersmith1"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"]; + }; + ["Hammersmith1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "Axesmith1"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"]; + Next_Page = "Swordsmith1"; + Next_Title = AL["Blacksmithing"] .. ": " .. AL["Master Swordsmith"]; + }; + ["Swordsmith1"] = { + Title = AL["Blacksmithing"] .. ": " .. AL["Master Swordsmith"]; + Back_Page = "SMITHINGMENU"; + Back_Title = AL["Blacksmithing"]; + Prev_Page = "Hammersmith1"; + Prev_Title = AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"]; + }; + ["EnchantingApprentice1"] = { + Title = AL["Enchanting"] .. ": " .. AL["Apprentice"]; + Back_Page = "ENCHANTINGMENU"; + Back_Title = AL["Enchanting"]; + Next_Page = "EnchantingJourneyman1"; + Next_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; + }; + ["EnchantingJourneyman1"] = { + Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; + Back_Page = "ENCHANTINGMENU"; + Back_Title = AL["Enchanting"]; + Prev_Page = "EnchantingApprentice1"; + Prev_Title = AL["Enchanting"] .. ": " .. AL["Apprentice"]; + Next_Page = "EnchantingJourneyman2"; + Next_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; + }; + ["EnchantingJourneyman2"] = { + Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; + Back_Page = "ENCHANTINGMENU"; + Back_Title = AL["Enchanting"]; + Prev_Page = "EnchantingJourneyman1"; + Prev_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; + Next_Page = "EnchantingExpert1"; + Next_Title = AL["Enchanting"] .. ": " .. AL["Expert"]; + }; + ["EnchantingExpert1"] = { + Title = AL["Enchanting"] .. ": " .. AL["Expert"]; + Back_Page = "ENCHANTINGMENU"; + Back_Title = AL["Enchanting"]; + Prev_Page = "EnchantingJourneyman2"; + Prev_Title = AL["Enchanting"] .. ": " .. AL["Journeyman"]; + Next_Page = "EnchantingExpert2"; + Next_Title = AL["Enchanting"] .. ": " .. AL["Expert"]; + }; + ["EnchantingExpert2"] = { + Title = AL["Enchanting"] .. ": " .. AL["Expert"]; + Back_Page = "ENCHANTINGMENU"; + Back_Title = AL["Enchanting"]; + Prev_Page = "EnchantingExpert1"; + Prev_Title = AL["Enchanting"] .. ": " .. AL["Expert"]; + Next_Page = "EnchantingArtisan1"; + Next_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; + }; + ["EnchantingArtisan1"] = { + Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; + Back_Page = "ENCHANTINGMENU"; + Back_Title = AL["Enchanting"]; + Prev_Page = "EnchantingExpert2"; + Prev_Title = AL["Enchanting"] .. ": " .. AL["Expert"]; + Next_Page = "EnchantingArtisan2"; + Next_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; + }; + ["EnchantingArtisan2"] = { + Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; + Back_Page = "ENCHANTINGMENU"; + Back_Title = AL["Enchanting"]; + Prev_Page = "EnchantingArtisan1"; + Prev_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; + Next_Page = "EnchantingArtisan3"; + Next_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; + }; + ["EnchantingArtisan3"] = { + Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; + Back_Page = "ENCHANTINGMENU"; + Back_Title = AL["Enchanting"]; + Prev_Page = "EnchantingArtisan2"; + Prev_Title = AL["Enchanting"] .. ": " .. AL["Artisan"]; + }; + ["EngineeringApprentice1"] = { + Title = AL["Engineering"] .. ": " .. AL["Apprentice"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Next_Page = "EngineeringJourneyman1"; + Next_Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; + }; + ["EngineeringJourneyman1"] = { + Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Prev_Page = "EngineeringApprentice1"; + Prev_Title = AL["Engineering"] .. ": " .. AL["Apprentice"]; + Next_Page = "EngineeringJourneyman2"; + Next_Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; + }; + ["EngineeringJourneyman2"] = { + Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Prev_Page = "EngineeringJourneyman1"; + Prev_Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; + Next_Page = "EngineeringExpert1"; + Next_Title = AL["Engineering"] .. ": " .. AL["Expert"]; + }; + ["EngineeringExpert1"] = { + Title = AL["Engineering"] .. ": " .. AL["Expert"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Prev_Page = "EngineeringJourneyman2"; + Prev_Title = AL["Engineering"] .. ": " .. AL["Journeyman"]; + Next_Page = "EngineeringExpert2"; + Next_Title = AL["Engineering"] .. ": " .. AL["Expert"]; + }; + ["EngineeringExpert2"] = { + Title = AL["Engineering"] .. ": " .. AL["Expert"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Prev_Page = "EngineeringExpert1"; + Prev_Title = AL["Engineering"] .. ": " .. AL["Expert"]; + Next_Page = "EngineeringArtisan1"; + Next_Title = AL["Engineering"] .. ": " .. AL["Artisan"]; + }; + ["EngineeringArtisan1"] = { + Title = AL["Engineering"] .. ": " .. AL["Artisan"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Prev_Page = "EngineeringExpert2"; + Prev_Title = AL["Engineering"] .. ": " .. AL["Expert"]; + Next_Page = "EngineeringArtisan2"; + Next_Title = AL["Engineering"] .. ": " .. AL["Artisan"]; + }; + ["EngineeringArtisan2"] = { + Title = AL["Engineering"] .. ": " .. AL["Artisan"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Prev_Page = "EngineeringArtisan1"; + Prev_Title = AL["Engineering"] .. ": " .. AL["Artisan"]; + Next_Page = "Gnomish1"; + Next_Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"]; + }; + ["Gnomish1"] = { + Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Prev_Page = "EngineeringArtisan2"; + Prev_Title = AL["Engineering"] .. ": " .. AL["Artisan"]; + Next_Page = "Goblin1"; + Next_Title = AL["Engineering"] .. ": " .. AL["Goblin Engineering"]; + }; + ["Goblin1"] = { + Title = AL["Engineering"] .. ": " .. AL["Goblin Engineering"]; + Back_Page = "ENGINEERINGMENU"; + Back_Title = AL["Engineering"]; + Prev_Page = "Gnomish1"; + Prev_Title = AL["Engineering"] .. ": " .. AL["Gnomish Engineering"]; + }; + ["LeatherApprentice1"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Apprentice"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Next_Page = "LeatherJourneyman1"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; + }; + ["LeatherJourneyman1"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "LeatherApprentice1"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Apprentice"]; + Next_Page = "LeatherJourneyman2"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; + }; + ["LeatherJourneyman2"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "LeatherJourneyman1"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; + Next_Page = "LeatherExpert1"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; + }; + ["LeatherExpert1"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "LeatherJourneyman2"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Journeyman"]; + Next_Page = "LeatherExpert2"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; + }; + ["LeatherExpert2"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "LeatherExpert1"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; + Next_Page = "LeatherArtisan1"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + }; + ["LeatherArtisan1"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "LeatherExpert2"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Expert"]; + Next_Page = "LeatherArtisan2"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + }; + ["LeatherArtisan2"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "LeatherArtisan1"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + Next_Page = "LeatherArtisan3"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + }; + ["LeatherArtisan3"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "LeatherArtisan2"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + Next_Page = "Dragonscale1"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"]; + }; + ["Dragonscale1"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "LeatherArtisan3"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Artisan"]; + Next_Page = "Elemental1"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"]; + }; + ["Elemental1"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "Dragonscale1"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"]; + Next_Page = "Tribal1"; + Next_Title = AL["Leatherworking"] .. ": " .. AL["Tribal Leatherworking"]; + }; + ["Tribal1"] = { + Title = AL["Leatherworking"] .. ": " .. AL["Tribal Leatherworking"]; + Back_Page = "LEATHERWORKINGMENU"; + Back_Title = AL["Leatherworking"]; + Prev_Page = "Elemental1"; + Prev_Title = AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"]; + }; + ["Herbalism1"] = { + Title = AL["Herbalism"]; + Back_Page = "CRAFTINGMENU"; + Back_Title = AL["Crafting"]; + Next_Page = "Herbalism2"; + Next_Title = AL["Herbalism"]; + }; + ["Herbalism2"] = { + Title = AL["Herbalism"]; + Back_Page = "CRAFTINGMENU"; + Back_Title = AL["Crafting"]; + Prev_Page = "Herbalism1"; + Prev_Title = AL["Herbalism"]; + }; + ["Mining1"] = { + Title = AL["Mining"]; + Back_Page = "MININGMENU"; + Back_Title = AL["Crafting"]; + Next_Page = "Mining2"; + Next_Title = AL["Mining"]; + }; + ["Mining2"] = { + Title = AL["Mining"]; + Back_Page = "MININGMENU"; + Back_Title = AL["Crafting"]; + Next_Page = "Smelting1"; + Next_Title = AL["Smelting"]; + Prev_Page = "Mining1"; + Prev_Title = AL["Mining"]; + }; + ["Smelting1"] = { + Title = AL["Smelting"]; + Back_Page = "MININGMENU"; + Back_Title = AL["Crafting"]; + Prev_Page = "Mining2"; + Prev_Title = AL["Mining"]; + }; + ["TailoringApprentice1"] = { + Title = AL["Tailoring"] .. ": " .. AL["Apprentice"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Next_Page = "TailoringJourneyman1"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; + }; + ["TailoringJourneyman1"] = { + Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringApprentice1"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Apprentice"]; + Next_Page = "TailoringJourneyman2"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; + }; + ["TailoringJourneyman2"] = { + Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringJourneyman1"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; + Next_Page = "TailoringExpert1"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Expert"]; + }; + ["TailoringExpert1"] = { + Title = AL["Tailoring"] .. ": " .. AL["Expert"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringJourneyman2"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Journeyman"]; + Next_Page = "TailoringExpert2"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Expert"]; + }; + ["TailoringExpert2"] = { + Title = AL["Tailoring"] .. ": " .. AL["Expert"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringExpert1"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Expert"]; + Next_Page = "TailoringArtisan1"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + }; + ["TailoringArtisan1"] = { + Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringExpert2"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Expert"]; + Next_Page = "TailoringArtisan2"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + }; + ["TailoringArtisan2"] = { + Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringArtisan1"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + Next_Page = "TailoringArtisan3"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + }; + ["TailoringArtisan3"] = { + Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringArtisan2"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + Next_Page = "TailoringArtisan4"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + }; + ["TailoringArtisan4"] = { + Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringArtisan3"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + Next_Page = "TailoringArtisan5"; + Next_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + }; + ["TailoringArtisan5"] = { + Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + Back_Page = "TAILORINGMENU"; + Back_Title = AL["Tailoring"]; + Prev_Page = "TailoringArtisan4"; + Prev_Title = AL["Tailoring"] .. ": " .. AL["Artisan"]; + }; + ["CookingApprentice1"] = { + Title = AL["Cooking"] .. ": " .. AL["Apprentice"]; + Back_Page = "COOKINGMENU"; + Back_Title = AL["Cooking"]; + Next_Page = "CookingJourneyman1"; + Next_Title = AL["Cooking"] .. ": " .. AL["Journeyman"]; + }; + ["CookingJourneyman1"] = { + Title = AL["Cooking"] .. ": " .. AL["Journeyman"]; + Back_Page = "COOKINGMENU"; + Back_Title = AL["Cooking"]; + Prev_Page = "CookingApprentice1"; + Prev_Title = AL["Cooking"] .. ": " .. AL["Apprentice"]; + Next_Page = "CookingExpert1"; + Next_Title = AL["Cooking"] .. ": " .. AL["Journeyman"]; + }; + ["CookingExpert1"] = { + Title = AL["Cooking"] .. ": " .. AL["Expert"]; + Back_Page = "COOKINGMENU"; + Back_Title = AL["Cooking"]; + Prev_Page = "CookingJourneyman1"; + Prev_Title = AL["Cooking"] .. ": " .. AL["Journeyman"]; + Next_Page = "CookingArtisan1"; + Next_Title = AL["Cooking"] .. ": " .. AL["Artisan"]; + }; + ["CookingArtisan1"] = { + Title = AL["Cooking"] .. ": " .. AL["Artisan"]; + Back_Page = "COOKINGMENU"; + Back_Title = AL["Cooking"]; + Prev_Page = "CookingExpert1"; + Prev_Title = AL["Cooking"] .. ": " .. AL["Expert"]; + }; + ["FirstAid1"] = { + Title = AL["First Aid"]; + Back_Page = "CRAFTINGMENU"; + Back_Title = AL["Crafting"]; + }; + ["Survival1"] = { + Title = AL["Survival"]; + Back_Page = "SURVIVALMENU"; + Back_Title = AL["Survival"]; + Prev_Page = "Survival2"; + Prev_Title = AL["Garderning"]; + Next_Page = "Survival2"; + Next_Title = AL["Garderning"]; + }; + ["Survival2"] = { + Title = AL["Garderning"]; + Back_Page = "SURVIVALMENU"; + Back_Title = AL["Survival"]; + Prev_Page = "Survival1"; + Prev_Title = AL["Survival"]; + Next_Page = "Survival1"; + Next_Title = AL["Survival"]; + }; + ["Poisons1"] = { + Title = AL["Poisons"]; + Back_Page = "CRAFTINGMENU"; + Back_Title = AL["Crafting"]; + }; }; diff --git a/Core/Crafting.lua b/Core/Crafting.lua index afc04c7..eba35e5 100644 --- a/Core/Crafting.lua +++ b/Core/Crafting.lua @@ -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 \ No newline at end of file diff --git a/Core/Factions.lua b/Core/Factions.lua index b355b9e..da5ad54 100644 --- a/Core/Factions.lua +++ b/Core/Factions.lua @@ -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"); diff --git a/Core/PvP.lua b/Core/PvP.lua index 4321c43..b139bc0 100644 --- a/Core/PvP.lua +++ b/Core/PvP.lua @@ -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 diff --git a/Core/Search.lua b/Core/Search.lua index 8138162..7f43b0c 100644 --- a/Core/Search.lua +++ b/Core/Search.lua @@ -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, diff --git a/Core/Spells.lua b/Core/Spells.lua index 71852c4..8c2ad67 100644 --- a/Core/Spells.lua +++ b/Core/Spells.lua @@ -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] = { diff --git a/Core/TextParsing.lua b/Core/TextParsing.lua index b2b43ad..548daa2 100644 --- a/Core/TextParsing.lua +++ b/Core/TextParsing.lua @@ -4,234 +4,237 @@ local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot"); -- Text replacement function -------------------------------------------------------------------------------- function AtlasLoot_FixText(text) - --Armour class - text = gsub(text, "#a1#", AL["Cloth"]); - text = gsub(text, "#a2#", AL["Leather"]); - text = gsub(text, "#a3#", AL["Mail"]); - text = gsub(text, "#a4#", AL["Plate"]); + --Armour class + text = gsub(text, "#a1#", AL["Cloth"]); + text = gsub(text, "#a2#", AL["Leather"]); + text = gsub(text, "#a3#", AL["Mail"]); + text = gsub(text, "#a4#", AL["Plate"]); - --Body slot - text = gsub(text, "#s1#", AL["Head"]); - text = gsub(text, "#s2#", AL["Neck"]); - text = gsub(text, "#s3#", AL["Shoulder"]); - text = gsub(text, "#s4#", AL["Back"]); - text = gsub(text, "#s5#", AL["Chest"]); - text = gsub(text, "#s6#", AL["Shirt"]); - text = gsub(text, "#s7#", AL["Tabard"]); - text = gsub(text, "#s8#", AL["Wrist"]); - text = gsub(text, "#s9#", AL["Hands"]); - text = gsub(text, "#s10#", AL["Waist"]); - text = gsub(text, "#s11#", AL["Legs"]); - text = gsub(text, "#s12#", AL["Feet"]); - text = gsub(text, "#s13#", AL["Ring"]); - text = gsub(text, "#s14#", AL["Trinket"]); - text = gsub(text, "#s15#", AL["Held In Off-hand"]); - text = gsub(text, "#s16#", AL["Relic"]); + --Body slot + text = gsub(text, "#s1#", AL["Head"]); + text = gsub(text, "#s2#", AL["Neck"]); + text = gsub(text, "#s3#", AL["Shoulder"]); + text = gsub(text, "#s4#", AL["Back"]); + text = gsub(text, "#s5#", AL["Chest"]); + text = gsub(text, "#s6#", AL["Shirt"]); + text = gsub(text, "#s7#", AL["Tabard"]); + text = gsub(text, "#s8#", AL["Wrist"]); + text = gsub(text, "#s9#", AL["Hands"]); + text = gsub(text, "#s10#", AL["Waist"]); + text = gsub(text, "#s11#", AL["Legs"]); + text = gsub(text, "#s12#", AL["Feet"]); + text = gsub(text, "#s13#", AL["Ring"]); + text = gsub(text, "#s14#", AL["Trinket"]); + text = gsub(text, "#s15#", AL["Held In Off-hand"]); + text = gsub(text, "#s16#", AL["Relic"]); - --Weapon Weilding - text = gsub(text, "#h1#", AL["One-Hand"]); - text = gsub(text, "#h2#", AL["Two-Hand"]); - text = gsub(text, "#h3#", AL["Main Hand"]); - text = gsub(text, "#h4#", AL["Off Hand"]); + --Weapon Weilding + text = gsub(text, "#h1#", AL["One-Hand"]); + text = gsub(text, "#h2#", AL["Two-Hand"]); + text = gsub(text, "#h3#", AL["Main Hand"]); + text = gsub(text, "#h4#", AL["Off Hand"]); - --Weapon type - text = gsub(text, "#w1#", AL["Axe"]); - text = gsub(text, "#w2#", AL["Bow"]); - text = gsub(text, "#w3#", AL["Crossbow"]); - text = gsub(text, "#w4#", AL["Dagger"]); - text = gsub(text, "#w5#", AL["Gun"]); - text = gsub(text, "#w6#", AL["Mace"]); - text = gsub(text, "#w7#", AL["Polearm"]); - text = gsub(text, "#w8#", AL["Shield"]); - text = gsub(text, "#w9#", AL["Staff"]); - text = gsub(text, "#w10#", AL["Sword"]); - text = gsub(text, "#w11#", AL["Thrown"]); - text = gsub(text, "#w12#", AL["Wand"]); - text = gsub(text, "#w13#", AL["Fist Weapon"]); - text = gsub(text, "#w14#", AL["Fishing Pole"]); + --Weapon type + text = gsub(text, "#w1#", AL["Axe"]); + text = gsub(text, "#w2#", AL["Bow"]); + text = gsub(text, "#w3#", AL["Crossbow"]); + text = gsub(text, "#w4#", AL["Dagger"]); + text = gsub(text, "#w5#", AL["Gun"]); + text = gsub(text, "#w6#", AL["Mace"]); + text = gsub(text, "#w7#", AL["Polearm"]); + text = gsub(text, "#w8#", AL["Shield"]); + text = gsub(text, "#w9#", AL["Staff"]); + text = gsub(text, "#w10#", AL["Sword"]); + text = gsub(text, "#w11#", AL["Thrown"]); + text = gsub(text, "#w12#", AL["Wand"]); + text = gsub(text, "#w13#", AL["Fist Weapon"]); + text = gsub(text, "#w14#", AL["Fishing Pole"]); + text = gsub(text, "#w15#", AL["Spear"]); - -- Misc. Equipment - text = gsub(text, "#e1#", AL["Potion"]); - text = gsub(text, "#e2#", AL["Food"]); - text = gsub(text, "#e3#", AL["Drink"]); - text = gsub(text, "#e4#", AL["Bandage"]); - text = gsub(text, "#e5#", AL["Arrow"]); - text = gsub(text, "#e6#", AL["Bullet"]); - text = gsub(text, "#e7#", AL["Mount"]); - text = gsub(text, "#e8#", AL["Ammo Pouch"]); - text = gsub(text, "#e9#", AL["Quiver"]); - text = gsub(text, "#e10#", AL["Bag"]); - text = gsub(text, "#e11#", AL["Enchant"]); - text = gsub(text, "#e12#", AL["Trade Goods"]); - text = gsub(text, "#e13#", AL["Scope"]); - text = gsub(text, "#e14#", AL["Key"]); - text = gsub(text, "#e15#", AL["Pet"]); - text = gsub(text, "#e16#", AL["Idol"]); - text = gsub(text, "#e17#", AL["Totem"]); - text = gsub(text, "#e18#", AL["Libram"]); - text = gsub(text, "#e19#", AL["Darkmoon Faire Card"]); - text = gsub(text, "#e20#", AL["Book"]); - text = gsub(text, "#e21#", AL["Banner"]); - text = gsub(text, "#e22#", AL["Needed to purchase rewards"]); - text = gsub(text, "#e23#", AL["Gem"]); - text = gsub(text, "#e24#", AL["Use to purchase rewards"]); - text = gsub(text, "#e25#", AL["Use to purchase rewards (Horde)"]); - text = gsub(text, "#e26#", AL["Use to purchase rewards (Alliance)"]); - text = gsub(text, "#e27#", AL["Token"]); - text = gsub(text, "#e28#", AL["Crafting Reagent"]); - text = gsub(text, "#e31#", AL["random stats"]); + -- Misc. Equipment + text = gsub(text, "#e1#", AL["Potion"]); + text = gsub(text, "#e2#", AL["Food"]); + text = gsub(text, "#e3#", AL["Drink"]); + text = gsub(text, "#e4#", AL["Bandage"]); + text = gsub(text, "#e5#", AL["Arrow"]); + text = gsub(text, "#e6#", AL["Bullet"]); + text = gsub(text, "#e7#", AL["Mount"]); + text = gsub(text, "#e8#", AL["Ammo Pouch"]); + text = gsub(text, "#e9#", AL["Quiver"]); + text = gsub(text, "#e10#", AL["Bag"]); + text = gsub(text, "#e11#", AL["Enchant"]); + text = gsub(text, "#e12#", AL["Trade Goods"]); + text = gsub(text, "#e13#", AL["Scope"]); + text = gsub(text, "#e14#", AL["Key"]); + text = gsub(text, "#e15#", AL["Pet"]); + text = gsub(text, "#e16#", AL["Idol"]); + text = gsub(text, "#e17#", AL["Totem"]); + text = gsub(text, "#e18#", AL["Libram"]); + text = gsub(text, "#e19#", AL["Darkmoon Faire Card"]); + text = gsub(text, "#e20#", AL["Book"]); + text = gsub(text, "#e21#", AL["Banner"]); + text = gsub(text, "#e22#", AL["Needed to purchase rewards"]); + text = gsub(text, "#e23#", AL["Gem"]); + text = gsub(text, "#e24#", AL["Use to purchase rewards"]); + text = gsub(text, "#e25#", AL["Use to purchase rewards (Horde)"]); + text = gsub(text, "#e26#", AL["Use to purchase rewards (Alliance)"]); + text = gsub(text, "#e27#", AL["Token"]); + text = gsub(text, "#e28#", AL["Crafting Reagent"]); + text = gsub(text, "#e31#", AL["random stats"]); text = gsub(text, "#e32#", AL["random resistance"]); text = gsub(text, "#e33#", AL["random colour"]); + text = gsub(text, "#e34#", AL["toy"]); - -- Classes - text = gsub(text, "#c1#", AL["Druid"]); -- =q13=#c1# - text = gsub(text, "#c2#", AL["Hunter"]); -- =q14=#c2# - text = gsub(text, "#c3#", AL["Mage"]); -- =q10=#c3# - text = gsub(text, "#c4#", AL["Paladin"]); -- =q16=#c4# - text = gsub(text, "#c5#", AL["Priest"]); -- =q9=#c5# - text = gsub(text, "#c6#", AL["Rogue"]); -- =q12=#c6# - text = gsub(text, "#c7#", AL["Shaman"]); -- =q15=#c7# - text = gsub(text, "#c8#", AL["Warlock"]); -- =q11=#c8# - text = gsub(text, "#c9#", AL["Warrior"]); -- =q17=#c9# + -- Classes + text = gsub(text, "#c1#", AL["Druid"]); -- =q13=#c1# + text = gsub(text, "#c2#", AL["Hunter"]); -- =q14=#c2# + text = gsub(text, "#c3#", AL["Mage"]); -- =q10=#c3# + text = gsub(text, "#c4#", AL["Paladin"]); -- =q16=#c4# + text = gsub(text, "#c5#", AL["Priest"]); -- =q9=#c5# + text = gsub(text, "#c6#", AL["Rogue"]); -- =q12=#c6# + text = gsub(text, "#c7#", AL["Shaman"]); -- =q15=#c7# + text = gsub(text, "#c8#", AL["Warlock"]); -- =q11=#c8# + text = gsub(text, "#c9#", AL["Warrior"]); -- =q17=#c9# - --Skill - text = gsub(text, "#sk1#", AL["Apprentice"]); - text = gsub(text, "#sk2#", AL["Journeyman"]); - text = gsub(text, "#sk3#", AL["Expert"]); - text = gsub(text, "#sk4#", AL["Artisan"]); + --Skill + text = gsub(text, "#sk1#", AL["Apprentice"]); + text = gsub(text, "#sk2#", AL["Journeyman"]); + text = gsub(text, "#sk3#", AL["Expert"]); + text = gsub(text, "#sk4#", AL["Artisan"]); - --Professions - text = gsub(text, "#p1#", AL["Alchemy"]); - text = gsub(text, "#p2#", AL["Blacksmithing"]); - text = gsub(text, "#p3#", AL["Cooking"]); - text = gsub(text, "#p4#", AL["Enchanting"]); - text = gsub(text, "#p5#", AL["Engineering"]); - text = gsub(text, "#p6#", AL["First Aid"]); - text = gsub(text, "#p7#", AL["Leatherworking"]); - text = gsub(text, "#p8#", AL["Tailoring"]); - text = gsub(text, "#p9#", AL["Dragonscale"]); - text = gsub(text, "#p10#", AL["Tribal"]); - text = gsub(text, "#p11#", AL["Elemental"]); - text = gsub(text, "#p13#", AL["Lockpicking"]); - text = gsub(text, "#p14#", AL["Gnomish Engineering"]); - text = gsub(text, "#p15#", AL["Goblin Engineering"]); + --Professions + text = gsub(text, "#p1#", AL["Alchemy"]); + text = gsub(text, "#p2#", AL["Blacksmithing"]); + text = gsub(text, "#p3#", AL["Cooking"]); + text = gsub(text, "#p4#", AL["Enchanting"]); + text = gsub(text, "#p5#", AL["Engineering"]); + text = gsub(text, "#p6#", AL["First Aid"]); + text = gsub(text, "#p7#", AL["Leatherworking"]); + text = gsub(text, "#p8#", AL["Tailoring"]); + text = gsub(text, "#p9#", AL["Dragonscale"]); + text = gsub(text, "#p10#", AL["Tribal"]); + text = gsub(text, "#p11#", AL["Elemental"]); + text = gsub(text, "#p13#", AL["Lockpicking"]); + text = gsub(text, "#p14#", AL["Gnomish Engineering"]); + text = gsub(text, "#p15#", AL["Goblin Engineering"]); text = gsub(text, "#p16#", AL["Survival"]); + text = gsub(text, "#p17#", AL["Garderning"]); - --Reputation - text = gsub(text, "#r1#", AL["Neutral"]); - text = gsub(text, "#r2#", AL["Friendly"]); - text = gsub(text, "#r3#", AL["Honored"]); - text = gsub(text, "#r4#", AL["Revered"]); - text = gsub(text, "#r5#", AL["Exalted"]); + --Reputation + text = gsub(text, "#r1#", AL["Neutral"]); + text = gsub(text, "#r2#", AL["Friendly"]); + text = gsub(text, "#r3#", AL["Honored"]); + text = gsub(text, "#r4#", AL["Revered"]); + text = gsub(text, "#r5#", AL["Exalted"]); - --Battleground Factions - text = gsub(text, "#b1#", AL["Stormpike Guard"]); - text = gsub(text, "#b2#", AL["Frostwolf Clan"]); - text = gsub(text, "#b3#", AL["Silverwing Sentinels"]); - text = gsub(text, "#b4#", AL["Warsong Outriders"]); - text = gsub(text, "#b5#", AL["The League of Arathor"]); - text = gsub(text, "#b6#", AL["The Defilers"]); - - --BRDArena - text = gsub(text, "#brd1#", AL["Anub'shiah"]); - text = gsub(text, "#brd2#", AL["Eviscerator"]); - text = gsub(text, "#brd3#", AL["Gorosh the Dervish"]); - text = gsub(text, "#brd4#", AL["Grizzle"]); - text = gsub(text, "#brd5#", AL["Hedrum the Creeper"]); - text = gsub(text, "#brd6#", AL["Ok'thor the Breaker"]); + --Battleground Factions + text = gsub(text, "#b1#", "Stormpike Guard"); + text = gsub(text, "#b2#", "Frostwolf Clan"); + text = gsub(text, "#b3#", AL["Silverwing Sentinels"]); + text = gsub(text, "#b4#", AL["Warsong Outriders"]); + text = gsub(text, "#b5#", AL["The League of Arathor"]); + text = gsub(text, "#b6#", AL["The Defilers"]); + + --BRDArena + text = gsub(text, "#brd1#", AL["Anub'shiah"]); + text = gsub(text, "#brd2#", AL["Eviscerator"]); + text = gsub(text, "#brd3#", AL["Gorosh the Dervish"]); + text = gsub(text, "#brd4#", AL["Grizzle"]); + text = gsub(text, "#brd5#", AL["Hedrum the Creeper"]); + text = gsub(text, "#brd6#", AL["Ok'thor the Breaker"]); - --Sunken Temple Mini Bosses - text = gsub(text, "#st1#", AL["Gasher"]); - text = gsub(text, "#st2#", AL["Hukku"]); - text = gsub(text, "#st3#", AL["Loro"]); - text = gsub(text, "#st4#", AL["Mijan"]); - text = gsub(text, "#st5#", AL["Zolo"]); - text = gsub(text, "#st6#", AL["Zul'Lor"]); + --Sunken Temple Mini Bosses + text = gsub(text, "#st1#", AL["Gasher"]); + text = gsub(text, "#st2#", AL["Hukku"]); + text = gsub(text, "#st3#", AL["Loro"]); + text = gsub(text, "#st4#", AL["Mijan"]); + text = gsub(text, "#st5#", AL["Zolo"]); + text = gsub(text, "#st6#", AL["Zul'Lor"]); - -- Misc phrases and mod specific stuff - text = gsub(text, "#m1#", AL["Classes"]); - text = gsub(text, "#m2#", AL["This Item Begins a Quest"]); - text = gsub(text, "#m3#", AL["Quest Item"]); - text = gsub(text, "#m4#", AL["Quest Reward"]); - text = gsub(text, "#m5#", AL["Shared"]); - text = gsub(text, "#m6#", AL["Horde"]); -- =q6=#m6# - text = gsub(text, "#m7#", AL["Alliance"]); -- =q8=#m7# - text = gsub(text, "#m8#", AL["Unique"]); - text = gsub(text, "#m9#", AL["Right Half"]); - text = gsub(text, "#m10#", AL["Left Half"]); - text = gsub(text, "#m11#", AL["28 Slot Soul"]); - text = gsub(text, "#m12#", AL["18 Slot"]); - text = gsub(text, "#m13#", AL["10 Slot"]); - text = gsub(text, "#m14#", AL["(300)"]); - text = gsub(text, "#m15#", AL["(295)"]); - text = gsub(text, "#m16#", AL["(275)"]); - text = gsub(text, "#m17#", AL["(265)"]); - text = gsub(text, "#m18#", AL["(290)"]); - text = gsub(text, "#m19#", AL["Set"]); - text = gsub(text, "#m20#", AL["(285)"]); - text = gsub(text, "#m21#", AL["16 Slot"]); + -- Misc phrases and mod specific stuff + text = gsub(text, "#m1#", AL["Classes"]); + text = gsub(text, "#m2#", AL["This Item Begins a Quest"]); + text = gsub(text, "#m3#", AL["Quest Item"]); + text = gsub(text, "#m4#", AL["Quest Reward"]); + text = gsub(text, "#m5#", AL["Shared"]); + text = gsub(text, "#m6#", AL["Horde"]); -- =q6=#m6# + text = gsub(text, "#m7#", AL["Alliance"]); -- =q8=#m7# + text = gsub(text, "#m8#", AL["Unique"]); + text = gsub(text, "#m9#", AL["Right Half"]); + text = gsub(text, "#m10#", AL["Left Half"]); + text = gsub(text, "#m11#", AL["28 Slot Soul"]); + text = gsub(text, "#m12#", AL["18 Slot"]); + text = gsub(text, "#m13#", AL["10 Slot"]); + text = gsub(text, "#m14#", AL["(300)"]); + text = gsub(text, "#m15#", AL["(295)"]); + text = gsub(text, "#m16#", AL["(275)"]); + text = gsub(text, "#m17#", AL["(265)"]); + text = gsub(text, "#m18#", AL["(290)"]); + text = gsub(text, "#m19#", AL["Set"]); + text = gsub(text, "#m20#", AL["(285)"]); + text = gsub(text, "#m21#", AL["16 Slot"]); text = gsub(text, "#m22#", AL["Schematic: Field Repair Bot 74A"]); - text = gsub(text, "#m23#", AL["Container"]); - text = gsub(text, "#m24#", AL["Blacksmithing Plans"]); - text = gsub(text, "#m25#", AL["Consumable"]); - text = gsub(text, "#m26#", AL["(185)"]); - text = gsub(text, "#m27#", AL["(160)"]); - text = gsub(text, "#m28#", AL["(125)"]); - text = gsub(text, "#m29#", AL["(200)"]); - text = gsub(text, "#m30#", AL["(1)"]); - text = gsub(text, "#m31#", AL["Reagent"]); + text = gsub(text, "#m23#", AL["Container"]); + text = gsub(text, "#m24#", AL["Blacksmithing Plans"]); + text = gsub(text, "#m25#", AL["Consumable"]); + text = gsub(text, "#m26#", AL["(185)"]); + text = gsub(text, "#m27#", AL["(160)"]); + text = gsub(text, "#m28#", AL["(125)"]); + text = gsub(text, "#m29#", AL["(200)"]); + text = gsub(text, "#m30#", AL["(1)"]); + text = gsub(text, "#m31#", AL["Reagent"]); text = gsub(text, "#m32#", AL["Binds when picked up"]); text = gsub(text, "#m33#", AL["Misc"]); text = gsub(text, "#m34#", AL["Use to purchase rewards"]); text = gsub(text, "#m35#", AL["Fireworks"]); text = gsub(text, "#m36#", AL["Used to summon boss"]); - text = gsub(text, "#m37#", AL["24 Slot"]); - text = gsub(text, "#m38#", AL["Coin"]); - text = gsub(text, "#m39#", AL["Bijou"]); - text = gsub(text, "#m40#", AL["Doll"]); + text = gsub(text, "#m37#", AL["24 Slot"]); + text = gsub(text, "#m38#", AL["Coin"]); + text = gsub(text, "#m39#", AL["Bijou"]); + text = gsub(text, "#m40#", AL["Doll"]); text = gsub(text, "#m41#", AL["(250)"]); -- Random names - text = gsub(text, "#x1#", AL["Lord Cobrahn"]); - text = gsub(text, "#x2#", AL["Lady Anacondra"]); - text = gsub(text, "#x3#", AL["Lord Serpentis"]); - text = gsub(text, "#x4#", AL["Druid of the Fang"]); - text = gsub(text, "#x5#", AL["Lord Pythas"]); - text = gsub(text, "#x6#", AL["Edwin VanCleef"]); - text = gsub(text, "#x7#", AL["Captain Greenskin"]); - text = gsub(text, "#x8#", AL["Defias Strip Miner"]); - text = gsub(text, "#x9#", AL["Overseer/Taskmaster"]); - text = gsub(text, "#x10#", AL["Primal Hakkari Kossack"]); - text = gsub(text, "#x11#", AL["Primal Hakkari Shawl"]); - text = gsub(text, "#x12#", AL["Primal Hakkari Bindings"]); - text = gsub(text, "#x13#", AL["Primal Hakkari Sash"]); - text = gsub(text, "#x14#", AL["Primal Hakkari Stanchion"]); - text = gsub(text, "#x15#", AL["Primal Hakkari Aegis"]); - text = gsub(text, "#x16#", AL["Primal Hakkari Girdle"]); - text = gsub(text, "#x17#", AL["Primal Hakkari Armsplint"]); - text = gsub(text, "#x18#", AL["Primal Hakkari Tabard"]); - text = gsub(text, "#x19#", AL["Qiraji Ornate Hilt"]); - text = gsub(text, "#x20#", AL["Qiraji Martial Drape"]); - text = gsub(text, "#x21#", AL["Qiraji Magisterial Ring"]); - text = gsub(text, "#x22#", AL["Qiraji Ceremonial Ring"]); - text = gsub(text, "#x23#", AL["Qiraji Regal Drape"]); - text = gsub(text, "#x24#", AL["Qiraji Spiked Hilt"]); - text = gsub(text, "#x25#", AL["Qiraji Bindings of Dominance"]); - text = gsub(text, "#x26#", AL["Vek'nilash's Circlet"]); - text = gsub(text, "#x27#", AL["Ouro's Intact Hide"]); - text = gsub(text, "#x28#", AL["Husk of the Old God"]); - text = gsub(text, "#x29#", AL["Qiraji Bindings of Command"]); - text = gsub(text, "#x30#", AL["Vek'lor's Diadem"]); - text = gsub(text, "#x31#", AL["Skin of the Great Sandworm"]); - text = gsub(text, "#x32#", AL["Carapace of the Old God"]); - text = gsub(text, "#x33#", AL["Defender"]); - text = gsub(text, "#x34#", AL["Trash Mobs"]); - text = gsub(text, "#x35#", AL["Champion"]); - text = gsub(text, "#x36#", AL["Centurion"]); - text = gsub(text, "#x37#", AL["Herod"]); - text = gsub(text, "#x38#", AL["Protector"]); - text = gsub(text, "#x39#", AL["Myrmidon"]); + text = gsub(text, "#x1#", AL["Lord Cobrahn"]); + text = gsub(text, "#x2#", AL["Lady Anacondra"]); + text = gsub(text, "#x3#", AL["Lord Serpentis"]); + text = gsub(text, "#x4#", AL["Druid of the Fang"]); + text = gsub(text, "#x5#", AL["Lord Pythas"]); + text = gsub(text, "#x6#", AL["Edwin VanCleef"]); + text = gsub(text, "#x7#", AL["Captain Greenskin"]); + text = gsub(text, "#x8#", AL["Defias Strip Miner"]); + text = gsub(text, "#x9#", AL["Overseer/Taskmaster"]); + text = gsub(text, "#x10#", AL["Primal Hakkari Kossack"]); + text = gsub(text, "#x11#", AL["Primal Hakkari Shawl"]); + text = gsub(text, "#x12#", AL["Primal Hakkari Bindings"]); + text = gsub(text, "#x13#", AL["Primal Hakkari Sash"]); + text = gsub(text, "#x14#", AL["Primal Hakkari Stanchion"]); + text = gsub(text, "#x15#", AL["Primal Hakkari Aegis"]); + text = gsub(text, "#x16#", AL["Primal Hakkari Girdle"]); + text = gsub(text, "#x17#", AL["Primal Hakkari Armsplint"]); + text = gsub(text, "#x18#", AL["Primal Hakkari Tabard"]); + text = gsub(text, "#x19#", AL["Qiraji Ornate Hilt"]); + text = gsub(text, "#x20#", AL["Qiraji Martial Drape"]); + text = gsub(text, "#x21#", AL["Qiraji Magisterial Ring"]); + text = gsub(text, "#x22#", AL["Qiraji Ceremonial Ring"]); + text = gsub(text, "#x23#", AL["Qiraji Regal Drape"]); + text = gsub(text, "#x24#", AL["Qiraji Spiked Hilt"]); + text = gsub(text, "#x25#", AL["Qiraji Bindings of Dominance"]); + text = gsub(text, "#x26#", AL["Vek'nilash's Circlet"]); + text = gsub(text, "#x27#", AL["Ouro's Intact Hide"]); + text = gsub(text, "#x28#", AL["Husk of the Old God"]); + text = gsub(text, "#x29#", AL["Qiraji Bindings of Command"]); + text = gsub(text, "#x30#", AL["Vek'lor's Diadem"]); + text = gsub(text, "#x31#", AL["Skin of the Great Sandworm"]); + text = gsub(text, "#x32#", AL["Carapace of the Old God"]); + text = gsub(text, "#x33#", AL["Defender"]); + text = gsub(text, "#x34#", AL["Trash Mobs"]); + text = gsub(text, "#x35#", AL["Champion"]); + text = gsub(text, "#x36#", AL["Centurion"]); + text = gsub(text, "#x37#", AL["Herod"]); + text = gsub(text, "#x38#", AL["Protector"]); + text = gsub(text, "#x39#", AL["Myrmidon"]); text = gsub(text, "#x40#", AL["Defias Pirate"]); text = gsub(text, "#x41#", AL["Prisoner/Insurgent/Convict"]); text = gsub(text, "#x42#", AL["Black Guard Swordsmith"]); @@ -263,301 +266,301 @@ function AtlasLoot_FixText(text) text = gsub(text, "#x68#", AL["Scholomance Adept"]); text = gsub(text, "#x69#", AL["Scholomance Dark Summoner"]); text = gsub(text, "#x70#", AL["Spectral Researcher"]); - text = gsub(text, "#x71#", AL["Twilight Corrupter"]); - text = gsub(text, "#x72#", AL["Thuzadin Shadowcaster"]); - text = gsub(text, "#x73#", AL["Crimson Sorcerer"]); - text = gsub(text, "#x74#", AL["Crimson Battle Mage"]); - text = gsub(text, "#x75#", AL["Spectral Citizen"]); - text = gsub(text, "#x76#", AL["Ghoul Ravener"]); - text = gsub(text, "#x77#", AL["Crimson Inquisitor"]); - text = gsub(text, "#x78#", AL["Atal'ai Witch Doctor"]); - text = gsub(text, "#x79#", AL["Murk Worm"]); - text = gsub(text, "#x80#", AL["Crimson Templar"]); - text = gsub(text, "#x81#", AL["Azure Templar"]); - text = gsub(text, "#x82#", AL["Earthen Templar"]); - text = gsub(text, "#x83#", AL["Hoary Templar"]); - text = gsub(text, "#x84#", AL["The Duke of Zephyrs"]); - text = gsub(text, "#x85#", AL["The Duke of Shards"]); - text = gsub(text, "#x86#", AL["The Duke of Cynders"]); - text = gsub(text, "#x87#", AL["The Duke of Fathoms"]); - text = gsub(text, "#x88#", AL["High Marshal Whirlaxis"]); - text = gsub(text, "#x89#", AL["Baron Kazum"]); - text = gsub(text, "#x90#", AL["Prince Skaldrenox"]); - text = gsub(text, "#x91#", AL["Lord Skwol"]); - text = gsub(text, "#x92#", AL["Baron Charr"]); - text = gsub(text, "#x93#", AL["Avalanchion"]); - text = gsub(text, "#x94#", AL["Princess Tempestria"]); - text = gsub(text, "#x95#", AL["The Windreaver"]); + text = gsub(text, "#x71#", AL["Twilight Corrupter"]); + text = gsub(text, "#x72#", AL["Thuzadin Shadowcaster"]); + text = gsub(text, "#x73#", AL["Crimson Sorcerer"]); + text = gsub(text, "#x74#", AL["Crimson Battle Mage"]); + text = gsub(text, "#x75#", AL["Spectral Citizen"]); + text = gsub(text, "#x76#", AL["Ghoul Ravener"]); + text = gsub(text, "#x77#", AL["Crimson Inquisitor"]); + text = gsub(text, "#x78#", AL["Atal'ai Witch Doctor"]); + text = gsub(text, "#x79#", AL["Murk Worm"]); + text = gsub(text, "#x80#", AL["Crimson Templar"]); + text = gsub(text, "#x81#", AL["Azure Templar"]); + text = gsub(text, "#x82#", AL["Earthen Templar"]); + text = gsub(text, "#x83#", AL["Hoary Templar"]); + text = gsub(text, "#x84#", AL["The Duke of Zephyrs"]); + text = gsub(text, "#x85#", AL["The Duke of Shards"]); + text = gsub(text, "#x86#", AL["The Duke of Cynders"]); + text = gsub(text, "#x87#", AL["The Duke of Fathoms"]); + text = gsub(text, "#x88#", AL["High Marshal Whirlaxis"]); + text = gsub(text, "#x89#", AL["Baron Kazum"]); + text = gsub(text, "#x90#", AL["Prince Skaldrenox"]); + text = gsub(text, "#x91#", AL["Lord Skwol"]); + text = gsub(text, "#x92#", AL["Baron Charr"]); + text = gsub(text, "#x93#", AL["Avalanchion"]); + text = gsub(text, "#x94#", AL["Princess Tempestria"]); + text = gsub(text, "#x95#", AL["The Windreaver"]); text = gsub(text, "#x96#", AL["Mr. Smite"]); -- Misc - text = gsub(text, "#j1#", AL["Dungeon 1 Set"]); - text = gsub(text, "#j2#", AL["Dungeon 2 Set"]); - text = gsub(text, "#j3#", AL["D2 Summonable"]); - text = gsub(text, "#j4#", AL["Token Hand-Ins"]); - text = gsub(text, "#j5#", AL["Level 60"]); - text = gsub(text, "#j6#", AL["Fire Resistance Gear"]); - text = gsub(text, "#j7#", AL["Arcane Resistance Gear"]); - text = gsub(text, "#j8#", AL["Nature Resistance Gear"]); - text = gsub(text, "#j9#", AL["Frost Resistance Gear"]); - text = gsub(text, "#j10#", AL["Shadow Resistance Gear"]); - text = gsub(text, "#j11#", AL["Master Angler"]); - text = gsub(text, "#j12#", AL["First Prize"]); - text = gsub(text, "#j13#", AL["Rare Fish Rewards"]); - text = gsub(text, "#j14#", AL["Rare Fish"]); - text = gsub(text, "#j15#", AL["Fire"]); - text = gsub(text, "#j16#", AL["Water"]); - text = gsub(text, "#j17#", AL["Earth"]); - text = gsub(text, "#j18#", AL["Air"]); + text = gsub(text, "#j1#", AL["Dungeon 1 Set"]); + text = gsub(text, "#j2#", AL["Dungeon 2 Set"]); + text = gsub(text, "#j3#", AL["D2 Summonable"]); + text = gsub(text, "#j4#", AL["Token Hand-Ins"]); + text = gsub(text, "#j5#", AL["Level 60"]); + text = gsub(text, "#j6#", AL["Fire Resistance Gear"]); + text = gsub(text, "#j7#", AL["Arcane Resistance Gear"]); + text = gsub(text, "#j8#", AL["Nature Resistance Gear"]); + text = gsub(text, "#j9#", AL["Frost Resistance Gear"]); + text = gsub(text, "#j10#", AL["Shadow Resistance Gear"]); + text = gsub(text, "#j11#", AL["Master Angler"]); + text = gsub(text, "#j12#", AL["First Prize"]); + text = gsub(text, "#j13#", AL["Rare Fish Rewards"]); + text = gsub(text, "#j14#", AL["Rare Fish"]); + text = gsub(text, "#j15#", AL["Fire"]); + text = gsub(text, "#j16#", AL["Water"]); + text = gsub(text, "#j17#", AL["Earth"]); + text = gsub(text, "#j18#", AL["Air"]); - -- Blacksmithing Crafted Sets - text = gsub(text, "#craftbp1#", AL["Imperial Plate"]); - text = gsub(text, "#craftbp2#", AL["The Darksoul"]); + -- Blacksmithing Crafted Sets + text = gsub(text, "#craftbp1#", AL["Imperial Plate"]); + text = gsub(text, "#craftbp2#", AL["The Darksoul"]); text = gsub(text, "#craftbp3#", AL["Steel Plate"]); - text = gsub(text, "#craftbm1#", AL["Bloodsoul Embrace"]); + text = gsub(text, "#craftbm1#", AL["Bloodsoul Embrace"]); - -- Tailoring Crafted Sets + -- Tailoring Crafted Sets text = gsub(text, "#craftt1#", AL["Augerer's Attire"]); text = gsub(text, "#craftt2#", AL["Shadoweave"]); text = gsub(text, "#craftt3#", AL["Diviner's Garments"]); text = gsub(text, "#craftt4#", AL["Pillager's Garb"]); - text = gsub(text, "#craftt5#", AL["Bloodvine Garb"]); + text = gsub(text, "#craftt5#", AL["Bloodvine Garb"]); - -- Leatherworking Crafted Sets + -- Leatherworking Crafted Sets text = gsub(text, "#craftlwl7#", AL["Grifter's Armor"]); text = gsub(text, "#craftlwl8#", AL["Primalist's Trappings"]); - text = gsub(text, "#craftlwl1#", AL["Volcanic Armor"]); - text = gsub(text, "#craftlwl2#", AL["Ironfeather Armor"]); - text = gsub(text, "#craftlwl3#", AL["Stormshroud Armor"]); - text = gsub(text, "#craftlwl4#", AL["Devilsaur Armor"]); - text = gsub(text, "#craftlwl5#", AL["Blood Tiger Harness"]); - text = gsub(text, "#craftlwl6#", AL["Primal Batskin"]); - text = gsub(text, "#craftlwm1#", AL["Green Dragon Mail"]); - text = gsub(text, "#craftlwm2#", AL["Blue Dragon Mail"]); - text = gsub(text, "#craftlwm3#", AL["Black Dragon Mail"]); - text = gsub(text, "#craftlwm4#", AL["Red Dragon Mail"]); - + text = gsub(text, "#craftlwl1#", AL["Volcanic Armor"]); + text = gsub(text, "#craftlwl2#", AL["Ironfeather Armor"]); + text = gsub(text, "#craftlwl3#", AL["Stormshroud Armor"]); + text = gsub(text, "#craftlwl4#", AL["Devilsaur Armor"]); + text = gsub(text, "#craftlwl5#", AL["Blood Tiger Harness"]); + text = gsub(text, "#craftlwl6#", AL["Primal Batskin"]); + text = gsub(text, "#craftlwm1#", AL["Green Dragon Mail"]); + text = gsub(text, "#craftlwm2#", AL["Blue Dragon Mail"]); + text = gsub(text, "#craftlwm3#", AL["Black Dragon Mail"]); + text = gsub(text, "#craftlwm4#", AL["Red Dragon Mail"]); + -- Chests, boxes - text = gsub(text, "#cb1#", AL["Doan's Strongbox"]); - --[[text = gsub(text, "#cb2#", ATLASLOOT_Chest of The Seven); - text = gsub(text, "#cb3#", ATLASLOOT_The Vault); - text = gsub(text, "#cb4#", ATLASLOOT_Dark Coffer); - text = gsub(text, "#cb5#", ATLASLOOT_The Secret Safe); - text = gsub(text, "#cb6#", ATLASLOOT_Ogre Tannin Basket);]] - text = gsub(text, "#cb7#", AL["Fengus's Chest"]); - --[[text = gsub(text, "#cb8#", ATLASLOOT_The Princes Chest);]] - text = gsub(text, "#cb9#", AL["Felvine Shard"]); - text = gsub(text, "#cb10#", AL["Unforged Rune Covered Breastplate"]); - --[[text = gsub(text, "#cb11#", ATLASLOOT_Unfinished Painting); - text = gsub(text, "#cb12#", ATLASLOOT_Frostwhispers Embalming Fluid);--]] - text = gsub(text, "#cb13#", AL["Malor's Strongbox"]); - --[[text = gsub(text, "#cb14#", ATLASLOOT_Baelogs Chest); - text = gsub(text, "#cb15#", ATLASLOOT_Conspicuous Urn);--]] - text = gsub(text, "#cb16#", AL["Gift of Adoration"]); - text = gsub(text, "#cb17#", AL["Box of Chocolates"]); - text = gsub(text, "#cb18#", AL["Treat Bag"]); - --[[text = gsub(text, "#cb19#", ATLASLOOT_Gaily Wrapped Present); - text = gsub(text, "#cb20#", ATLASLOOT_Festive Gift); - text = gsub(text, "#cb21#", ATLASLOOT_Ticking Present); - text = gsub(text, "#cb22#", ATLASLOOT_Gently Shaken Gift); - text = gsub(text, "#cb24#", ATLASLOOT_Lunar Festival Fireworks Pack); - text = gsub(text, "#cb25#", ATLASLOOT_Lucky Red Envelope);--]] - text = gsub(text, "#cb25#", AL["Brightly Colored Egg"]); - text = gsub(text, "#cb26#", AL["Small Rocket Recipes"]); - text = gsub(text, "#cb27#", AL["Large Rocket Recipes"]); - text = gsub(text, "#cb28#", AL["Cluster Rocket Recipes"]); - text = gsub(text, "#cb29#", AL["Large Cluster Rocket Recipes"]); - text = gsub(text, "#cb30#", AL["Warpwood Pod"]); - text = gsub(text, "#cb31#", AL["Scarab Coffer"]); - text = gsub(text, "#cb32#", AL["Greater Scarab Coffer"]); + text = gsub(text, "#cb1#", AL["Doan's Strongbox"]); + --[[text = gsub(text, "#cb2#", ATLASLOOT_Chest of The Seven); + text = gsub(text, "#cb3#", ATLASLOOT_The Vault); + text = gsub(text, "#cb4#", ATLASLOOT_Dark Coffer); + text = gsub(text, "#cb5#", ATLASLOOT_The Secret Safe); + text = gsub(text, "#cb6#", ATLASLOOT_Ogre Tannin Basket);]] + text = gsub(text, "#cb7#", AL["Fengus's Chest"]); + --[[text = gsub(text, "#cb8#", ATLASLOOT_The Princes Chest);]] + text = gsub(text, "#cb9#", AL["Felvine Shard"]); + text = gsub(text, "#cb10#", AL["Unforged Rune Covered Breastplate"]); + --[[text = gsub(text, "#cb11#", ATLASLOOT_Unfinished Painting); + text = gsub(text, "#cb12#", ATLASLOOT_Frostwhispers Embalming Fluid);--]] + text = gsub(text, "#cb13#", AL["Malor's Strongbox"]); + --[[text = gsub(text, "#cb14#", ATLASLOOT_Baelogs Chest); + text = gsub(text, "#cb15#", ATLASLOOT_Conspicuous Urn);--]] + text = gsub(text, "#cb16#", AL["Gift of Adoration"]); + text = gsub(text, "#cb17#", AL["Box of Chocolates"]); + text = gsub(text, "#cb18#", AL["Treat Bag"]); + --[[text = gsub(text, "#cb19#", ATLASLOOT_Gaily Wrapped Present); + text = gsub(text, "#cb20#", ATLASLOOT_Festive Gift); + text = gsub(text, "#cb21#", ATLASLOOT_Ticking Present); + text = gsub(text, "#cb22#", ATLASLOOT_Gently Shaken Gift); + text = gsub(text, "#cb24#", ATLASLOOT_Lunar Festival Fireworks Pack); + text = gsub(text, "#cb25#", ATLASLOOT_Lucky Red Envelope);--]] + text = gsub(text, "#cb25#", AL["Brightly Colored Egg"]); + text = gsub(text, "#cb26#", AL["Small Rocket Recipes"]); + text = gsub(text, "#cb27#", AL["Large Rocket Recipes"]); + text = gsub(text, "#cb28#", AL["Cluster Rocket Recipes"]); + text = gsub(text, "#cb29#", AL["Large Cluster Rocket Recipes"]); + text = gsub(text, "#cb30#", AL["Warpwood Pod"]); + text = gsub(text, "#cb31#", AL["Scarab Coffer"]); + text = gsub(text, "#cb32#", AL["Greater Scarab Coffer"]); - --Pre60 Sets - text = gsub(text, "#pre60s1#", AL["Defias Leather"]); - text = gsub(text, "#pre60s2#", AL["Embrace of the Viper"]); - text = gsub(text, "#pre60s3#", AL["Chain of the Scarlet Crusade"]); - text = gsub(text, "#pre60s4#", AL["The Gladiator"]); - text = gsub(text, "#pre60s5#", AL["Ironweave Battlesuit"]); - text = gsub(text, "#pre60s6#", AL["Necropile Raiment"]); - text = gsub(text, "#pre60s7#", AL["Cadaverous Garb"]); - text = gsub(text, "#pre60s8#", AL["Bloodmail Regalia"]); - text = gsub(text, "#pre60s9#", AL["Deathbone Guardian"]); - text = gsub(text, "#pre60s10#", AL["The Postmaster"]); - text = gsub(text, "#pre60s11#", AL["Regalia of Undead Cleansing"]); - text = gsub(text, "#pre60s12#", AL["Undead Slayer's Armor"]); - text = gsub(text, "#pre60s13#", AL["Garb of the Undead Slayer"]); - text = gsub(text, "#pre60s14#", AL["Battlegear of Undead Slaying"]); - text = gsub(text, "#pre60s15#", AL["Shard of the Gods"]); - text = gsub(text, "#pre60s16#", AL["Major Mojo Infusion"]); - text = gsub(text, "#pre60s17#", AL["Overlord's Resolution"]); - text = gsub(text, "#pre60s18#", AL["Prayer of the Primal"]); - text = gsub(text, "#pre60s19#", AL["Zanzil's Concentration"]); - text = gsub(text, "#pre60s20#", AL["Spirit of Eskhandar"]); - text = gsub(text, "#pre60s21#", AL["The Twin Blades of Hakkari"]); - text = gsub(text, "#pre60s22#", AL["Primal Blessing"]); - text = gsub(text, "#pre60s23#", AL["Dal'Rend's Arms"]); - text = gsub(text, "#pre60s24#", AL["Spider's Kiss"]); + --Pre60 Sets + text = gsub(text, "#pre60s1#", AL["Defias Leather"]); + text = gsub(text, "#pre60s2#", AL["Embrace of the Viper"]); + text = gsub(text, "#pre60s3#", AL["Chain of the Scarlet Crusade"]); + text = gsub(text, "#pre60s4#", AL["The Gladiator"]); + text = gsub(text, "#pre60s5#", AL["Ironweave Battlesuit"]); + text = gsub(text, "#pre60s6#", AL["Necropile Raiment"]); + text = gsub(text, "#pre60s7#", AL["Cadaverous Garb"]); + text = gsub(text, "#pre60s8#", AL["Bloodmail Regalia"]); + text = gsub(text, "#pre60s9#", AL["Deathbone Guardian"]); + text = gsub(text, "#pre60s10#", AL["The Postmaster"]); + text = gsub(text, "#pre60s11#", AL["Regalia of Undead Cleansing"]); + text = gsub(text, "#pre60s12#", AL["Undead Slayer's Armor"]); + text = gsub(text, "#pre60s13#", AL["Garb of the Undead Slayer"]); + text = gsub(text, "#pre60s14#", AL["Battlegear of Undead Slaying"]); + text = gsub(text, "#pre60s15#", AL["Shard of the Gods"]); + text = gsub(text, "#pre60s16#", AL["Major Mojo Infusion"]); + text = gsub(text, "#pre60s17#", AL["Overlord's Resolution"]); + text = gsub(text, "#pre60s18#", AL["Prayer of the Primal"]); + text = gsub(text, "#pre60s19#", AL["Zanzil's Concentration"]); + text = gsub(text, "#pre60s20#", AL["Spirit of Eskhandar"]); + text = gsub(text, "#pre60s21#", AL["The Twin Blades of Hakkari"]); + text = gsub(text, "#pre60s22#", AL["Primal Blessing"]); + text = gsub(text, "#pre60s23#", AL["Dal'Rend's Arms"]); + text = gsub(text, "#pre60s24#", AL["Spider's Kiss"]); - --ZG Sets - text = gsub(text, "#zgs1#", AL["Haruspex's Garb"]); - text = gsub(text, "#zgs2#", AL["Predator's Armor"]); - text = gsub(text, "#zgs3#", AL["Illusionist's Attire"]); - text = gsub(text, "#zgs4#", AL["Freethinker's Armor"]); - text = gsub(text, "#zgs5#", AL["Confessor's Raiment"]); - text = gsub(text, "#zgs6#", AL["Madcap's Outfit"]); - text = gsub(text, "#zgs7#", AL["Augur's Regalia"]); - text = gsub(text, "#zgs8#", AL["Demoniac's Threads"]); - text = gsub(text, "#zgs9#", AL["Vindicator's Battlegear"]); - - --AQ20 Sets - text = gsub(text, "#aq20s1#", AL["Symbols of Unending Life"]); - text = gsub(text, "#aq20s2#", AL["Trappings of the Unseen Path"]); - text = gsub(text, "#aq20s3#", AL["Trappings of Vaulted Secrets"]); - text = gsub(text, "#aq20s4#", AL["Battlegear of Eternal Justice"]); - text = gsub(text, "#aq20s5#", AL["Finery of Infinite Wisdom"]); - text = gsub(text, "#aq20s6#", AL["Emblems of Veiled Shadows"]); - text = gsub(text, "#aq20s7#", AL["Gift of the Gathering Storm"]); - text = gsub(text, "#aq20s8#", AL["Implements of Unspoken Names"]); - text = gsub(text, "#aq20s9#", AL["Battlegear of Unyielding Strength"]); - - --AQ40 Sets - text = gsub(text, "#aq40s1#", AL["Genesis Raiment"]); - text = gsub(text, "#aq40s2#", AL["Striker's Garb"]); - text = gsub(text, "#aq40s3#", AL["Enigma Vestments"]); - text = gsub(text, "#aq40s4#", AL["Avenger's Battlegear"]); - text = gsub(text, "#aq40s5#", AL["Garments of the Oracle"]); - text = gsub(text, "#aq40s6#", AL["Deathdealer's Embrace"]); - text = gsub(text, "#aq40s7#", AL["Stormcaller's Garb"]); - text = gsub(text, "#aq40s8#", AL["Doomcaller's Attire"]); - text = gsub(text, "#aq40s9#", AL["Conqueror's Battlegear"]); - - --T0 Sets - text = gsub(text, "#t0s1#", AL["Wildheart Raiment"]); - text = gsub(text, "#t0s2#", AL["Beaststalker Armor"]); - text = gsub(text, "#t0s3#", AL["Magister's Regalia"]); - text = gsub(text, "#t0s4#", AL["Lightforge Armor"]); - text = gsub(text, "#t0s5#", AL["Vestments of the Devout"]); - text = gsub(text, "#t0s6#", AL["Shadowcraft Armor"]); - text = gsub(text, "#t0s7#", AL["The Elements"]); - text = gsub(text, "#t0s8#", AL["Dreadmist Raiment"]); - text = gsub(text, "#t0s9#", AL["Battlegear of Valor"]); - - --T0.5 Sets - text = gsub(text, "#t05s1#", AL["Feralheart Raiment"]); - text = gsub(text, "#t05s2#", AL["Beastmaster Armor"]); - text = gsub(text, "#t05s3#", AL["Sorcerer's Regalia"]); - text = gsub(text, "#t05s4#", AL["Soulforge Armor"]); - text = gsub(text, "#t05s5#", AL["Vestments of the Virtuous"]); - text = gsub(text, "#t05s6#", AL["Darkmantle Armor"]); - text = gsub(text, "#t05s7#", AL["The Five Thunders"]); - text = gsub(text, "#t05s8#", AL["Deathmist Raiment"]); - text = gsub(text, "#t05s9#", AL["Battlegear of Heroism"]); - - --T1 Sets - text = gsub(text, "#t1s1#", AL["Cenarion Raiment"]); - text = gsub(text, "#t1s2#", AL["Giantstalker Armor"]); - text = gsub(text, "#t1s3#", AL["Arcanist Regalia"]); - text = gsub(text, "#t1s4#", AL["Lawbringer Armor"]); - text = gsub(text, "#t1s5#", AL["Vestments of Prophecy"]); - text = gsub(text, "#t1s6#", AL["Nightslayer Armor"]); - text = gsub(text, "#t1s7#", AL["The Earthfury"]); - text = gsub(text, "#t1s8#", AL["Felheart Raiment"]); - text = gsub(text, "#t1s9#", AL["Battlegear of Might"]); - - --T2 Sets - text = gsub(text, "#t2s1#", AL["Stormrage Raiment"]); - text = gsub(text, "#t2s2#", AL["Dragonstalker Armor"]); - text = gsub(text, "#t2s3#", AL["Netherwind Regalia"]); - text = gsub(text, "#t2s4#", AL["Judgement Armor"]); - text = gsub(text, "#t2s5#", AL["Vestments of Transcendence"]); - text = gsub(text, "#t2s6#", AL["Bloodfang Armor"]); - text = gsub(text, "#t2s7#", AL["The Ten Storms"]); - text = gsub(text, "#t2s8#", AL["Nemesis Raiment"]); - text = gsub(text, "#t2s9#", AL["Battlegear of Wrath"]); - - --T3 Sets - text = gsub(text, "#t3s1#", AL["Dreamwalker Raiment"]); - text = gsub(text, "#t3s2#", AL["Cryptstalker Armor"]); - text = gsub(text, "#t3s3#", AL["Frostfire Regalia"]); - text = gsub(text, "#t3s4#", AL["Redemption Armor"]); - text = gsub(text, "#t3s5#", AL["Vestments of Faith"]); - text = gsub(text, "#t3s6#", AL["Bonescythe Armor"]); - text = gsub(text, "#t3s7#", AL["The Earthshatterer"]); - text = gsub(text, "#t3s8#", AL["Plagueheart Raiment"]); - text = gsub(text, "#t3s9#", AL["Dreadnaught's Battlegear"]); - - --BoN - text = gsub(text, "#pob1#", AL["Path of the Conqueror"]); - text = gsub(text, "#pob2#", AL["Path of the Invoker"]); - text = gsub(text, "#pob3#", AL["Path of the Protector"]); - - --PvP Epic Horde Sets - text = gsub(text, "#pvpeh1#", AL["Warlord's Sanctuary"]); - text = gsub(text, "#pvpeh2#", AL["Warlord's Pursuit"]); - text = gsub(text, "#pvpeh3#", AL["Warlord's Regalia"]); - text = gsub(text, "#pvpeh4#", AL["Warlord's Raiment"]); - text = gsub(text, "#pvpeh5#", AL["Warlord's Vestments"]); - text = gsub(text, "#pvpeh6#", AL["Warlord's Earthshaker"]); - text = gsub(text, "#pvpeh7#", AL["Warlord's Threads"]); - text = gsub(text, "#pvpeh8#", AL["Warlord's Battlegear"]); - text = gsub(text, "#pvpeh9#", AL["Warlord's Aegis"]); - - --PvP Epic Alliance Sets - text = gsub(text, "#pvpea1#", AL["Field Marshal's Sanctuary"]); - text = gsub(text, "#pvpea2#", AL["Field Marshal's Pursuit"]); - text = gsub(text, "#pvpea3#", AL["Field Marshal's Regalia"]); - text = gsub(text, "#pvpea4#", AL["Field Marshal's Aegis"]); - text = gsub(text, "#pvpea5#", AL["Field Marshal's Raiment"]); - text = gsub(text, "#pvpea6#", AL["Field Marshal's Vestments"]); - text = gsub(text, "#pvpea7#", AL["Field Marshal's Threads"]); - text = gsub(text, "#pvpea8#", AL["Field Marshal's Battlegear"]); - text = gsub(text, "#pvpea9#", AL["Field Marshal's Earthshaker"]); - - --PvP Rare Horde Sets - text = gsub(text, "#pvprh1#", AL["Champion's Refuge"]); - text = gsub(text, "#pvprh2#", AL["Champion's Pursuance"]); - text = gsub(text, "#pvprh3#", AL["Champion's Arcanum"]); - text = gsub(text, "#pvprh4#", AL["Champion's Investiture"]); - text = gsub(text, "#pvprh5#", AL["Champion's Guard"]); - text = gsub(text, "#pvprh6#", AL["Champion's Stormcaller"]); - text = gsub(text, "#pvprh7#", AL["Champion's Dreadgear"]); - text = gsub(text, "#pvprh8#", AL["Champion's Battlearmor"]); - text = gsub(text, "#pvprh9#", AL["Champion's Redoubt"]); - - --PvP Rare Alliance Sets - text = gsub(text, "#pvpra1#", AL["Lieutenant Commander's Refuge"]); - text = gsub(text, "#pvpra2#", AL["Lieutenant Commander's Pursuance"]); - text = gsub(text, "#pvpra3#", AL["Lieutenant Commander's Arcanum"]); - text = gsub(text, "#pvpra4#", AL["Lieutenant Commander's Redoubt"]); - text = gsub(text, "#pvpra5#", AL["Lieutenant Commander's Investiture"]); - text = gsub(text, "#pvpra6#", AL["Lieutenant Commander's Guard"]); - text = gsub(text, "#pvpra7#", AL["Lieutenant Commander's Dreadgear"]); - text = gsub(text, "#pvpra8#", AL["Lieutenant Commander's Battlearmor"]); - text = gsub(text, "#pvpra9#", AL["Lieutenant Commander's Stormcaller"]); - - --Rogue - text = gsub(text, "#rp1#", AL["Poisons"]); - text = gsub(text, "#rp2#", AL["Reagent"]); - - --Crafting - text = gsub(text, "#sr#", AL["Skill:"]); - text = gsub(text, "#lr#", AL["Level:"]); - text = gsub(text, "=so1=", "|cffff7f3f"); --orange skill - text = gsub(text, "=so2=", "|cffffff00"); --yellow skill - text = gsub(text, "=so3=", "|cff3fbf3f"); --green skill - text = gsub(text, "=so4=", "|cff7f7f7f"); --gray skill + --ZG Sets + text = gsub(text, "#zgs1#", AL["Haruspex's Garb"]); + text = gsub(text, "#zgs2#", AL["Predator's Armor"]); + text = gsub(text, "#zgs3#", AL["Illusionist's Attire"]); + text = gsub(text, "#zgs4#", AL["Freethinker's Armor"]); + text = gsub(text, "#zgs5#", AL["Confessor's Raiment"]); + text = gsub(text, "#zgs6#", AL["Madcap's Outfit"]); + text = gsub(text, "#zgs7#", AL["Augur's Regalia"]); + text = gsub(text, "#zgs8#", AL["Demoniac's Threads"]); + text = gsub(text, "#zgs9#", AL["Vindicator's Battlegear"]); - --Misc PvP Set Text - text = gsub(text, "#pvps1#", AL["Epic Set"]); - text = gsub(text, "#pvps2#", AL["Rare Set"]); - - --Text colouring - text = gsub(text, "=q0=", "|cff9d9d9d"); - text = gsub(text, "=q1=", "|cffFFFFFF"); - text = gsub(text, "=q2=", "|cff1eff00"); - text = gsub(text, "=q3=", "|cff0070dd"); - text = gsub(text, "=q4=", "|cffa335ee"); - text = gsub(text, "=q5=", "|cffFF8000"); - text = gsub(text, "=q6=", "|cffFF0000"); + --AQ20 Sets + text = gsub(text, "#aq20s1#", AL["Symbols of Unending Life"]); + text = gsub(text, "#aq20s2#", AL["Trappings of the Unseen Path"]); + text = gsub(text, "#aq20s3#", AL["Trappings of Vaulted Secrets"]); + text = gsub(text, "#aq20s4#", AL["Battlegear of Eternal Justice"]); + text = gsub(text, "#aq20s5#", AL["Finery of Infinite Wisdom"]); + text = gsub(text, "#aq20s6#", AL["Emblems of Veiled Shadows"]); + text = gsub(text, "#aq20s7#", AL["Gift of the Gathering Storm"]); + text = gsub(text, "#aq20s8#", AL["Implements of Unspoken Names"]); + text = gsub(text, "#aq20s9#", AL["Battlegear of Unyielding Strength"]); + + --AQ40 Sets + text = gsub(text, "#aq40s1#", AL["Genesis Raiment"]); + text = gsub(text, "#aq40s2#", AL["Striker's Garb"]); + text = gsub(text, "#aq40s3#", AL["Enigma Vestments"]); + text = gsub(text, "#aq40s4#", AL["Avenger's Battlegear"]); + text = gsub(text, "#aq40s5#", AL["Garments of the Oracle"]); + text = gsub(text, "#aq40s6#", AL["Deathdealer's Embrace"]); + text = gsub(text, "#aq40s7#", AL["Stormcaller's Garb"]); + text = gsub(text, "#aq40s8#", AL["Doomcaller's Attire"]); + text = gsub(text, "#aq40s9#", AL["Conqueror's Battlegear"]); + + --T0 Sets + text = gsub(text, "#t0s1#", AL["Wildheart Raiment"]); + text = gsub(text, "#t0s2#", AL["Beaststalker Armor"]); + text = gsub(text, "#t0s3#", AL["Magister's Regalia"]); + text = gsub(text, "#t0s4#", AL["Lightforge Armor"]); + text = gsub(text, "#t0s5#", AL["Vestments of the Devout"]); + text = gsub(text, "#t0s6#", AL["Shadowcraft Armor"]); + text = gsub(text, "#t0s7#", AL["The Elements"]); + text = gsub(text, "#t0s8#", AL["Dreadmist Raiment"]); + text = gsub(text, "#t0s9#", AL["Battlegear of Valor"]); + + --T0.5 Sets + text = gsub(text, "#t05s1#", AL["Feralheart Raiment"]); + text = gsub(text, "#t05s2#", AL["Beastmaster Armor"]); + text = gsub(text, "#t05s3#", AL["Sorcerer's Regalia"]); + text = gsub(text, "#t05s4#", AL["Soulforge Armor"]); + text = gsub(text, "#t05s5#", AL["Vestments of the Virtuous"]); + text = gsub(text, "#t05s6#", AL["Darkmantle Armor"]); + text = gsub(text, "#t05s7#", AL["The Five Thunders"]); + text = gsub(text, "#t05s8#", AL["Deathmist Raiment"]); + text = gsub(text, "#t05s9#", AL["Battlegear of Heroism"]); + + --T1 Sets + text = gsub(text, "#t1s1#", AL["Cenarion Raiment"]); + text = gsub(text, "#t1s2#", AL["Giantstalker Armor"]); + text = gsub(text, "#t1s3#", AL["Arcanist Regalia"]); + text = gsub(text, "#t1s4#", AL["Lawbringer Armor"]); + text = gsub(text, "#t1s5#", AL["Vestments of Prophecy"]); + text = gsub(text, "#t1s6#", AL["Nightslayer Armor"]); + text = gsub(text, "#t1s7#", AL["The Earthfury"]); + text = gsub(text, "#t1s8#", AL["Felheart Raiment"]); + text = gsub(text, "#t1s9#", AL["Battlegear of Might"]); + + --T2 Sets + text = gsub(text, "#t2s1#", AL["Stormrage Raiment"]); + text = gsub(text, "#t2s2#", AL["Dragonstalker Armor"]); + text = gsub(text, "#t2s3#", AL["Netherwind Regalia"]); + text = gsub(text, "#t2s4#", AL["Judgement Armor"]); + text = gsub(text, "#t2s5#", AL["Vestments of Transcendence"]); + text = gsub(text, "#t2s6#", AL["Bloodfang Armor"]); + text = gsub(text, "#t2s7#", AL["The Ten Storms"]); + text = gsub(text, "#t2s8#", AL["Nemesis Raiment"]); + text = gsub(text, "#t2s9#", AL["Battlegear of Wrath"]); + + --T3 Sets + text = gsub(text, "#t3s1#", AL["Dreamwalker Raiment"]); + text = gsub(text, "#t3s2#", AL["Cryptstalker Armor"]); + text = gsub(text, "#t3s3#", AL["Frostfire Regalia"]); + text = gsub(text, "#t3s4#", AL["Redemption Armor"]); + text = gsub(text, "#t3s5#", AL["Vestments of Faith"]); + text = gsub(text, "#t3s6#", AL["Bonescythe Armor"]); + text = gsub(text, "#t3s7#", AL["The Earthshatterer"]); + text = gsub(text, "#t3s8#", AL["Plagueheart Raiment"]); + text = gsub(text, "#t3s9#", AL["Dreadnaught's Battlegear"]); + + --BoN + text = gsub(text, "#pob1#", AL["Path of the Conqueror"]); + text = gsub(text, "#pob2#", AL["Path of the Invoker"]); + text = gsub(text, "#pob3#", AL["Path of the Protector"]); + + --PvP Epic Horde Sets + text = gsub(text, "#pvpeh1#", AL["Warlord's Sanctuary"]); + text = gsub(text, "#pvpeh2#", AL["Warlord's Pursuit"]); + text = gsub(text, "#pvpeh3#", AL["Warlord's Regalia"]); + text = gsub(text, "#pvpeh4#", AL["Warlord's Raiment"]); + text = gsub(text, "#pvpeh5#", AL["Warlord's Vestments"]); + text = gsub(text, "#pvpeh6#", AL["Warlord's Earthshaker"]); + text = gsub(text, "#pvpeh7#", AL["Warlord's Threads"]); + text = gsub(text, "#pvpeh8#", AL["Warlord's Battlegear"]); + text = gsub(text, "#pvpeh9#", AL["Warlord's Aegis"]); + + --PvP Epic Alliance Sets + text = gsub(text, "#pvpea1#", AL["Field Marshal's Sanctuary"]); + text = gsub(text, "#pvpea2#", AL["Field Marshal's Pursuit"]); + text = gsub(text, "#pvpea3#", AL["Field Marshal's Regalia"]); + text = gsub(text, "#pvpea4#", AL["Field Marshal's Aegis"]); + text = gsub(text, "#pvpea5#", AL["Field Marshal's Raiment"]); + text = gsub(text, "#pvpea6#", AL["Field Marshal's Vestments"]); + text = gsub(text, "#pvpea7#", AL["Field Marshal's Threads"]); + text = gsub(text, "#pvpea8#", AL["Field Marshal's Battlegear"]); + text = gsub(text, "#pvpea9#", AL["Field Marshal's Earthshaker"]); + + --PvP Rare Horde Sets + text = gsub(text, "#pvprh1#", AL["Champion's Refuge"]); + text = gsub(text, "#pvprh2#", AL["Champion's Pursuance"]); + text = gsub(text, "#pvprh3#", AL["Champion's Arcanum"]); + text = gsub(text, "#pvprh4#", AL["Champion's Investiture"]); + text = gsub(text, "#pvprh5#", AL["Champion's Guard"]); + text = gsub(text, "#pvprh6#", AL["Champion's Stormcaller"]); + text = gsub(text, "#pvprh7#", AL["Champion's Dreadgear"]); + text = gsub(text, "#pvprh8#", AL["Champion's Battlearmor"]); + text = gsub(text, "#pvprh9#", AL["Champion's Redoubt"]); + + --PvP Rare Alliance Sets + text = gsub(text, "#pvpra1#", AL["Lieutenant Commander's Refuge"]); + text = gsub(text, "#pvpra2#", AL["Lieutenant Commander's Pursuance"]); + text = gsub(text, "#pvpra3#", AL["Lieutenant Commander's Arcanum"]); + text = gsub(text, "#pvpra4#", AL["Lieutenant Commander's Redoubt"]); + text = gsub(text, "#pvpra5#", AL["Lieutenant Commander's Investiture"]); + text = gsub(text, "#pvpra6#", AL["Lieutenant Commander's Guard"]); + text = gsub(text, "#pvpra7#", AL["Lieutenant Commander's Dreadgear"]); + text = gsub(text, "#pvpra8#", AL["Lieutenant Commander's Battlearmor"]); + text = gsub(text, "#pvpra9#", AL["Lieutenant Commander's Stormcaller"]); + + --Rogue + text = gsub(text, "#rp1#", AL["Poisons"]); + text = gsub(text, "#rp2#", AL["Reagent"]); + + --Crafting + text = gsub(text, "#sr#", AL["Skill:"]); + text = gsub(text, "#lr#", AL["Level:"]); + text = gsub(text, "=so1=", "|cffff7f3f"); --orange skill + text = gsub(text, "=so2=", "|cffffff00"); --yellow skill + text = gsub(text, "=so3=", "|cff3fbf3f"); --green skill + text = gsub(text, "=so4=", "|cff7f7f7f"); --gray skill + + --Misc PvP Set Text + text = gsub(text, "#pvps1#", AL["Epic Set"]); + text = gsub(text, "#pvps2#", AL["Rare Set"]); + + --Text colouring + text = gsub(text, "=q0=", "|cff9d9d9d"); + text = gsub(text, "=q1=", "|cffFFFFFF"); + text = gsub(text, "=q2=", "|cff1eff00"); + text = gsub(text, "=q3=", "|cff0070dd"); + text = gsub(text, "=q4=", "|cffa335ee"); + text = gsub(text, "=q5=", "|cffFF8000"); + text = gsub(text, "=q6=", "|cffFF0000"); text = gsub(text, "=q7=", "|cff03c0f6"); -- "dropped by" colour text = gsub(text, "=q8=", "|cff2773ff"); -- alliance colour, alliance rank colour text = gsub(text, "=q9=", "|cffffffff"); -- priest colour @@ -571,99 +574,99 @@ function AtlasLoot_FixText(text) text = gsub(text, "=q17=", "|cffc69b6d"); -- warrior colour text = gsub(text, "=q18=", "|cffff3100"); -- horde rank colour text = gsub(text, "=q19=", "|cffe6cc80"); -- horde rank colour - text = gsub(text, "=ec1=", "|cffFF8400"); - text = gsub(text, "=ds=", "|cffFFd200"); + text = gsub(text, "=ec1=", "|cffFF8400"); + text = gsub(text, "=ds=", "|cffFFd200"); --Dropped by names - text = gsub(text, "#db1#", AL["Patchwerk"]); - text = gsub(text, "#db2#", AL["Grobbulus"]); - text = gsub(text, "#db3#", AL["Gluth"]); - text = gsub(text, "#db4#", AL["Thaddius"]); - text = gsub(text, "#db5#", AL["Anub'Rekhan"]); - text = gsub(text, "#db6#", AL["Faerlina"]); - text = gsub(text, "#db7#", AL["Maexxna"]); - text = gsub(text, "#db8#", AL["Noth"]); - text = gsub(text, "#db9#", AL["Heigan"]); - text = gsub(text, "#db10#", AL["Loatheb"]); - text = gsub(text, "#db11#", AL["Razuvious"]); - text = gsub(text, "#db12#", AL["Gothik"]); - text = gsub(text, "#db13#", AL["The Four Horsemen"]); - text = gsub(text, "#db14#", AL["Kel'Thuzad"]); - text = gsub(text, "#db15#", AL["Onyxia"]); - text = gsub(text, "#db16#", AL["Ragnaros"]); - text = gsub(text, "#db17#", AL["Razorgore the Untamed"]); - text = gsub(text, "#db18#", AL["Vaelastrasz the Corrupt"]); - text = gsub(text, "#db19#", AL["Broodlord Lashlayer"]); - text = gsub(text, "#db20#", AL["Firemaw"]); - text = gsub(text, "#db21#", AL["Ebonroc"]); - text = gsub(text, "#db22#", AL["Flamegor"]); - text = gsub(text, "#db23#", AL["Chromaggus"]); - text = gsub(text, "#db24#", AL["Nefarian"]); - text = gsub(text, "#db25#", AL["Lucifron"]); - text = gsub(text, "#db26#", AL["Magmadar"]); - text = gsub(text, "#db27#", AL["Gehennas"]); - text = gsub(text, "#db28#", AL["Garr"]); - text = gsub(text, "#db29#", AL["Baron Geddon"]); - text = gsub(text, "#db30#", AL["Shazzrah"]); - text = gsub(text, "#db31#", AL["Sulfuron Harbinger"]); - text = gsub(text, "#db32#", AL["Golemagg the Incinerator"]); - text = gsub(text, "#db33#", AL["Darkmaster Gandling"]); - text = gsub(text, "#db34#", AL["Baron Rivendare"]); - text = gsub(text, "#db35#", AL["General Drakkisath"]); - text = gsub(text, "#db36#", AL["Ras Frostwhisper"]); - text = gsub(text, "#db37#", AL["Doctor Theolen Krastinov"]); - text = gsub(text, "#db38#", AL["Hearthsinger Forresten"]); - text = gsub(text, "#db39#", AL["Solakar Flamewreath"]); - text = gsub(text, "#db40#", AL["Archivist Galford"]); - text = gsub(text, "#db41#", AL["Maleki the Pallid"]); - text = gsub(text, "#db42#", AL["Jandice Barov"]); - text = gsub(text, "#db43#", AL["Lorekeeper Polkelt"]); - text = gsub(text, "#db44#", AL["Baroness Anastari"]); - text = gsub(text, "#db45#", AL["Cannon Master Willey"]); - text = gsub(text, "#db46#", AL["Instructor Malicia"]); - text = gsub(text, "#db47#", AL["Shadow Hunter Vosh'gajin"]); - text = gsub(text, "#db48#", AL["Rattlegore"]); - text = gsub(text, "#db49#", AL["Gizrul the Slavener"]); - text = gsub(text, "#db50#", AL["Mother Smolderweb"]); - text = gsub(text, "#db51#", AL["The Unforgiven"]); - text = gsub(text, "#db52#", AL["The Ravenian"]); - text = gsub(text, "#db53#", AL["Overlord Wyrmthalak"]); - text = gsub(text, "#db54#", AL["War Master Voone"]); - text = gsub(text, "#db55#", AL["Nerub'enkan"]); - text = gsub(text, "#db56#", AL["Gyth"]); - text = gsub(text, "#db57#", AL["Pyroguard Emberseer"]); - text = gsub(text, "#db58#", AL["Highlord Omokk"]); - text = gsub(text, "#db59#", AL["Warchief Rend Blackhand"]); - text = gsub(text, "#db60#", AL["Ramstein the Gorger"]); - text = gsub(text, "#db61#", AL["Kirtonos the Herald"]); - text = gsub(text, "#db62#", AL["The Beast"]); - text = gsub(text, "#db63#", AL["Lord Alexei Barov"]); - text = gsub(text, "#db64#", AL["Timmy the Cruel"]); - text = gsub(text, "#db65#", AL["Balnazzar"]); + text = gsub(text, "#db1#", AL["Patchwerk"]); + text = gsub(text, "#db2#", AL["Grobbulus"]); + text = gsub(text, "#db3#", AL["Gluth"]); + text = gsub(text, "#db4#", AL["Thaddius"]); + text = gsub(text, "#db5#", AL["Anub'Rekhan"]); + text = gsub(text, "#db6#", AL["Faerlina"]); + text = gsub(text, "#db7#", AL["Maexxna"]); + text = gsub(text, "#db8#", AL["Noth"]); + text = gsub(text, "#db9#", AL["Heigan"]); + text = gsub(text, "#db10#", AL["Loatheb"]); + text = gsub(text, "#db11#", AL["Razuvious"]); + text = gsub(text, "#db12#", AL["Gothik"]); + text = gsub(text, "#db13#", AL["The Four Horsemen"]); + text = gsub(text, "#db14#", AL["Kel'Thuzad"]); + text = gsub(text, "#db15#", AL["Onyxia"]); + text = gsub(text, "#db16#", AL["Ragnaros"]); + text = gsub(text, "#db17#", AL["Razorgore the Untamed"]); + text = gsub(text, "#db18#", AL["Vaelastrasz the Corrupt"]); + text = gsub(text, "#db19#", AL["Broodlord Lashlayer"]); + text = gsub(text, "#db20#", AL["Firemaw"]); + text = gsub(text, "#db21#", AL["Ebonroc"]); + text = gsub(text, "#db22#", AL["Flamegor"]); + text = gsub(text, "#db23#", AL["Chromaggus"]); + text = gsub(text, "#db24#", AL["Nefarian"]); + text = gsub(text, "#db25#", AL["Lucifron"]); + text = gsub(text, "#db26#", AL["Magmadar"]); + text = gsub(text, "#db27#", AL["Gehennas"]); + text = gsub(text, "#db28#", AL["Garr"]); + text = gsub(text, "#db29#", AL["Baron Geddon"]); + text = gsub(text, "#db30#", AL["Shazzrah"]); + text = gsub(text, "#db31#", AL["Sulfuron Harbinger"]); + text = gsub(text, "#db32#", AL["Golemagg the Incinerator"]); + text = gsub(text, "#db33#", AL["Darkmaster Gandling"]); + text = gsub(text, "#db34#", AL["Baron Rivendare"]); + text = gsub(text, "#db35#", AL["General Drakkisath"]); + text = gsub(text, "#db36#", AL["Ras Frostwhisper"]); + text = gsub(text, "#db37#", AL["Doctor Theolen Krastinov"]); + text = gsub(text, "#db38#", AL["Hearthsinger Forresten"]); + text = gsub(text, "#db39#", AL["Solakar Flamewreath"]); + text = gsub(text, "#db40#", AL["Archivist Galford"]); + text = gsub(text, "#db41#", AL["Maleki the Pallid"]); + text = gsub(text, "#db42#", AL["Jandice Barov"]); + text = gsub(text, "#db43#", AL["Lorekeeper Polkelt"]); + text = gsub(text, "#db44#", AL["Baroness Anastari"]); + text = gsub(text, "#db45#", AL["Cannon Master Willey"]); + text = gsub(text, "#db46#", AL["Instructor Malicia"]); + text = gsub(text, "#db47#", AL["Shadow Hunter Vosh'gajin"]); + text = gsub(text, "#db48#", AL["Rattlegore"]); + text = gsub(text, "#db49#", AL["Gizrul the Slavener"]); + text = gsub(text, "#db50#", AL["Mother Smolderweb"]); + text = gsub(text, "#db51#", AL["The Unforgiven"]); + text = gsub(text, "#db52#", AL["The Ravenian"]); + text = gsub(text, "#db53#", AL["Overlord Wyrmthalak"]); + text = gsub(text, "#db54#", AL["War Master Voone"]); + text = gsub(text, "#db55#", AL["Nerub'enkan"]); + text = gsub(text, "#db56#", AL["Gyth"]); + text = gsub(text, "#db57#", AL["Pyroguard Emberseer"]); + text = gsub(text, "#db58#", AL["Highlord Omokk"]); + text = gsub(text, "#db59#", AL["Warchief Rend Blackhand"]); + text = gsub(text, "#db60#", AL["Ramstein the Gorger"]); + text = gsub(text, "#db61#", AL["Kirtonos the Herald"]); + text = gsub(text, "#db62#", AL["The Beast"]); + text = gsub(text, "#db63#", AL["Lord Alexei Barov"]); + text = gsub(text, "#db64#", AL["Timmy the Cruel"]); + text = gsub(text, "#db65#", AL["Balnazzar"]); --Zones abbreviations - text = gsub(text, "#z1#", "("..AL["MC"]..")"); - text = gsub(text, "#z2#", AL["Scholo"]); - text = gsub(text, "#z3#", AL["Strat"]); - text = gsub(text, "#z4#", AL["LBRS"]); - text = gsub(text, "#z5#", AL["UBRS"]); - - --Currency Icons - text = gsub(text, "#gold#", "Interface\\AddOns\\AtlasLoot\\Images\\gold"); - text = gsub(text, "#silver#", "Interface\\AddOns\\AtlasLoot\\Images\\silver"); - text = gsub(text, "#copper#", "Interface\\AddOns\\AtlasLoot\\Images\\bronze"); - text = gsub(text, "#wsg#", "Interface\\Icons\\INV_Misc_Rune_07"); - text = gsub(text, "#ab#", "Interface\\Icons\\INV_Jewelry_Amulet_07"); - text = gsub(text, "#av#", "Interface\\Icons\\INV_Jewelry_Necklace_21"); - text = gsub(text, "#horde#", "Interface\\AddOns\\AtlasLoot\\Images\\Horde"); - text = gsub(text, "#alliance#", "Interface\\AddOns\\AtlasLoot\\Images\\Alliance"); - text = gsub(text, "#darkmoon#", "Interface\\Icons\\INV_Misc_Ticket_Darkmoon_01"); - text = gsub(text, "#ccombat#", "Interface\\Icons\\INV_Jewelry_Talisman_06"); - text = gsub(text, "#ctactical#", "Interface\\Icons\\INV_Jewelry_Amulet_02"); - text = gsub(text, "#clogistics#", "Interface\\Icons\\INV_Jewelry_Necklace_16"); - text = gsub(text, "#cremulos#", "Interface\\Icons\\INV_Jewelry_Necklace_14"); - text = gsub(text, "#ccenarius#", "Interface\\Icons\\INV_Jewelry_Necklace_12"); - text = gsub(text, "#zandalar#", "Interface\\Icons\\INV_Misc_Coin_08"); - + text = gsub(text, "#z1#", "("..AL["MC"]..")"); + text = gsub(text, "#z2#", AL["Scholo"]); + text = gsub(text, "#z3#", AL["Strat"]); + text = gsub(text, "#z4#", AL["LBRS"]); + text = gsub(text, "#z5#", AL["UBRS"]); + + --Currency Icons + text = gsub(text, "#gold#", "Interface\\AddOns\\AtlasLoot\\Images\\gold"); + text = gsub(text, "#silver#", "Interface\\AddOns\\AtlasLoot\\Images\\silver"); + text = gsub(text, "#copper#", "Interface\\AddOns\\AtlasLoot\\Images\\bronze"); + text = gsub(text, "#wsg#", "Interface\\Icons\\INV_Misc_Rune_07"); + text = gsub(text, "#ab#", "Interface\\Icons\\INV_Jewelry_Amulet_07"); + text = gsub(text, "#av#", "Interface\\Icons\\INV_Jewelry_Necklace_21"); + text = gsub(text, "#horde#", "Interface\\AddOns\\AtlasLoot\\Images\\Horde"); + text = gsub(text, "#alliance#", "Interface\\AddOns\\AtlasLoot\\Images\\Alliance"); + text = gsub(text, "#darkmoon#", "Interface\\Icons\\INV_Misc_Ticket_Darkmoon_01"); + text = gsub(text, "#ccombat#", "Interface\\Icons\\INV_Jewelry_Talisman_06"); + text = gsub(text, "#ctactical#", "Interface\\Icons\\INV_Jewelry_Amulet_02"); + text = gsub(text, "#clogistics#", "Interface\\Icons\\INV_Jewelry_Necklace_16"); + text = gsub(text, "#cremulos#", "Interface\\Icons\\INV_Jewelry_Necklace_14"); + text = gsub(text, "#ccenarius#", "Interface\\Icons\\INV_Jewelry_Necklace_12"); + text = gsub(text, "#zandalar#", "Interface\\Icons\\INV_Misc_Coin_08"); + return text; end diff --git a/Core/WishList.lua b/Core/WishList.lua index 7a3d4e2..cc0e094 100644 --- a/Core/WishList.lua +++ b/Core/WishList.lua @@ -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? diff --git a/Crafting/crafting.en.lua b/Crafting/crafting.en.lua index c3afc77..35dc79f 100644 --- a/Crafting/crafting.en.lua +++ b/Crafting/crafting.en.lua @@ -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=?" }, }; } + diff --git a/Factions/factions.lua b/Factions/factions.lua index 053399b..99e4e41 100644 --- a/Factions/factions.lua +++ b/Factions/factions.lua @@ -1,376 +1,381 @@ AtlasLoot_Data["AtlasLootRepItems"] = { - EmptyInstance = {}; - Argent1 = { - { 0, "", "", "" }, - { 22689, "INV_Helmet_13", "=q3=Sanctified Leather Helm", "=ds=#s1#, #a2#" }, - { 22690, "INV_Pants_03", "=q3=Leggings of the Plague Hunter", "=ds=#s11#, #a3#" }, - { 22681, "INV_Jewelry_Ring_33", "=q3=Band of Piety", "=ds=#s13#" }, - { 22680, "INV_Jewelry_Ring_01", "=q3=Band of Resolution", "=ds=#s13#" }, - { 22688, "INV_Weapon_ShortBlade_03", "=q3=Verimonde's Last Resort", "=ds=#h3#, #w4#" }, - { 22679, "INV_Misc_Bag_17", "=q3=Supply Bag", "=ds=#m12# #e10#" }, - { 0, "", "", "" }, - { 22523, "INV_Misc_Token_ArgentDawn", "=q2=Insignia of the Dawn", "=ds=#e22#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 22657, "INV_Jewelry_Amulet_04", "=q4=Amulet of the Dawn", "=ds=#s2#" }, - { 22659, "INV_Jewelry_Amulet_04", "=q4=Medallion of the Dawn", "=ds=#s2#" }, - { 22667, "INV_Bracer_12", "=q4=Bracers of Hope", "=ds=#s8#, #a1#" }, - { 22668, "INV_Bracer_04", "=q4=Bracers of Subterfuge", "=ds=#s8#, #a2#" }, - { 22678, "INV_Misc_Gem_Pearl_04", "=q4=Talisman of Ascendance", "=ds=#s14#" }, - { 22656, "INV_Weapon_Rifle_06", "=q4=The Purifier", "=ds=#w5#" }, - { 0, "", "", "" }, - { 22524, "INV_Misc_Token_ScarletCrusade", "=q2=Insignia of the Crusade", "=ds=#e22#" }, - }; - Argent2 = { - { 0, "", "", "" }, - { 0, "INV_Jewelry_Talisman_08", "=q6=#r2#", "" }, - { 13724, "INV_Misc_Food_33", "=q1=Enriched Manna Biscuit", "=ds=#e2#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Jewelry_Talisman_08", "=q6=#r3#", "" }, - { 13482, "INV_Scroll_06", "=q2=Recipe: Transmute Air to Fire", "=ds=#p1# (275)" }, - { 19216, "INV_Scroll_03", "=q1=Pattern: Argent Boots", "=ds=#p8# (290)" }, - { 19328, "INV_Scroll_03", "=q1=Pattern: Dawn Treaders", "=ds=#p7# (290)" }, - { 19203, "INV_Scroll_03", "=q1=Plans: Girdle of the Dawn", "=ds=#p2# (290)" }, - { 19442, "INV_Scroll_03", "=q1=Formula: Powerful Anti-Venom", "=ds=#p6# #m14#" }, - { 19446, "INV_Misc_Note_01", "=q1=Formula: Enchant Bracer - Mana Regeneration", "=ds=#p4# (290)" }, - }; - Argent3 = { - { 0, "", "", "" }, - { 0, "INV_Jewelry_Talisman_08", "=q6=#r4#", "" }, - { 18171, "Spell_Holy_WordFortitude", "=q2=Arcane Mantle of the Dawn", "=ds=#s3# #e11#" }, - { 18169, "Spell_Fire_FlameShock", "=q2=Flame Mantle of the Dawn", "=ds=#s3# #e11#" }, - { 18170, "Spell_Frost_FrostShock", "=q2=Frost Mantle of the Dawn", "=ds=#s3# #e11#" }, - { 18172, "Spell_Nature_ProtectionformNature", "=q2=Nature Mantle of the Dawn", "=ds=#s3# #e11#" }, - { 18173, "Spell_Shadow_RagingScream", "=q2=Shadow Mantle of the Dawn", "=ds=#s3# #e11#" }, - { 19217, "INV_Scroll_03", "=q1=Pattern: Argent Shoulders", "=ds=#p8# #m14#" }, - { 19329, "INV_Scroll_03", "=q1=Pattern: Golden Mantle of the Dawn", "=ds=#p7# #m14#" }, - { 19205, "INV_Scroll_03", "=q1=Plans: Gloves of the Dawn", "=ds=#p2# #m14#" }, - { 19447, "INV_Scroll_03", "=q1=Formula: Enchant Bracer - Healing", "=ds=#p4# #m14#" }, - { 13810, "INV_Misc_Food_41", "=q1=Blessed Sunfruit", "=ds=#e2#" }, - { 13813, "INV_Drink_16", "=q1=Blessed Sunfruit Juice", "=ds=#e3#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Jewelry_Talisman_08", "=q6=#r5#", "" }, - { 18182, "INV_Misc_Gem_Variety_02", "=q2=Chromatic Mantle of the Dawn", "=ds=#s3# #e11#" }, - }; - AQBroodRings = { - { 0, "", "", "" }, - { 0, "INV_Jewelry_Ring_40", "=q6=#pob1#", "" }, - { 21201, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r1#" }, - { 21202, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r2#" }, - { 21203, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r3#" }, - { 21204, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r4#" }, - { 21205, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r5#" }, - { 0, "", "", "" }, - { 0, "INV_Jewelry_Ring_40", "=q6=#pob2#", "" }, - { 21206, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r1#" }, - { 21207, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r2#" }, - { 21208, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r3#" }, - { 21209, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r4#" }, - { 21210, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r5#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Jewelry_Ring_40", "=q6=#pob3#", "" }, - { 21196, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r1#" }, - { 21197, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r2#" }, - { 21198, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r3#" }, - { 21199, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r4#" }, - { 21200, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r5#" }, - }; - Timbermaw = { - { 0, "", "", "" }, - { 0, "INV_Misc_Horn_01", "=q6=#r2#", "" }, - { 13484, "INV_Scroll_03", "=q2=Recipe: Transmute Earth to Water", "=ds=#p1# (275)" }, - { 20254, "INV_Scroll_03", "=q1=Pattern: Warbear Woolies", "=ds=#p7# (285)" }, - { 15742, "INV_Scroll_03", "=q1=Pattern: Warbear Harness", "=ds=#p7# (275)" }, - { 22392, "INV_Misc_Note_01", "=q1=Formula: Enchant 2H Weapon - Agility", "=ds=#p4# (290)" }, - { 0, "", "", "" }, - { 0, "INV_Misc_Horn_01", "=q6=#r3#", "" }, - { 16768, "INV_Misc_Bag_11", "=q2=Furbolg Medicine Pouch", "=ds=#s15#" }, - { 16769, "INV_Mace_11", "=q2=Furbolg Medicine Totem", "=ds=#h3#, #w6#" }, - { 19202, "INV_Scroll_03", "=q1=Plans: Heavy Timbermaw Belt", "=ds=#p2# (290)" }, - { 19326, "INV_Scroll_03", "=q1=Pattern: Might of the Timbermaw", "=ds=#p7# (290)" }, - { 19215, "INV_Scroll_03", "=q1=Pattern: Wisdom of the Timbermaw", "=ds=#p8# (290)" }, - { 19445, "INV_Misc_Note_01", "=q1=Formula: Enchant Weapon - Agility", "=ds=#p4# (290)" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Misc_Horn_01", "=q6=#r4#", "" }, - { 19218, "INV_Scroll_03", "=q1=Pattern: Mantle of the Timbermaw", "=ds=#p8# #m14#" }, - { 19327, "INV_Scroll_03", "=q1=Pattern: Timbermaw Brawlers", "=ds=#p7# #m14#" }, - { 19204, "INV_Scroll_03", "=q1=Plans: Heavy Timbermaw Boots", "=ds=#p2# #m14#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Misc_Horn_01", "=q6=#r5#", "" }, - { 21326, "INV_Misc_Horn_01", "=q4=Defender of the Timbermaw", "=ds=#s14#" }, - }; - Thorium1 = { - { 0, "", "", "" }, - { 0, "INV_Ingot_Mithril", "=q6=#r2#", "" }, - { 17051, "INV_Scroll_03", "=q3=Plans: Dark Iron Bracers", "=ds=#p2# (295)" }, - { 17018, "INV_Scroll_03", "=q1=Pattern: Flarecore Gloves", "=ds=#p8# #m14#" }, - { 17023, "INV_Scroll_03", "=q1=Pattern: Molten Helm", "=ds=#p7# #m14#" }, - { 17022, "INV_Scroll_03", "=q1=Pattern: Corehound Boots", "=ds=#p7# (295)" }, - { 20761, "INV_Scroll_03", "=q1=Recipe: Transmute Elemental Fire", "=ds=#p1# #m14#" }, - { 19444, "INV_Misc_Note_01", "=q1=Formula: Enchant Weapon - Strength", "=ds=#p4# (290)" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Ingot_Mithril", "=q6=#r3#", "" }, - { 17059, "INV_Scroll_03", "=q3=Plans: Dark Iron Reaver", "=ds=#p2# #m14#" }, - { 17060, "INV_Scroll_03", "=q3=Plans: Dark Iron Destroyer", "=ds=#p2# #m14#" }, - { 17049, "INV_Scroll_03", "=q3=Plans: Fiery Chain Girdle", "=ds=#p2# (295)" }, - { 17017, "INV_Scroll_03", "=q1=Pattern: Flarecore Mantle", "=ds=#p8# #m14#" }, - { 19219, "INV_Scroll_03", "=q1=Pattern: Flarecore Robe", "=ds=#p8# #m14#" }, - { 19330, "INV_Scroll_03", "=q1=Pattern: Lava Belt", "=ds=#p7# #m14#" }, - { 17025, "INV_Scroll_03", "=q1=Pattern: Black Dragonscale Boots", "=ds=#p7# #m14#" }, - { 19206, "INV_Scroll_03", "=q1=Plans: Dark Iron Helm", "=ds=#p2# #m14#" }, - { 19448, "INV_Misc_Note_01", "=q1=Formula: Enchant Weapon - Mighty Spirit", "=ds=#p4# #m14#" }, - }; - Thorium2 = { - { 0, "", "", "" }, - { 0, "INV_Ingot_Mithril", "=q6=#r4#", "" }, - { 18592, "INV_Scroll_03", "=q4=Plans: Sulfuron Hammer", "=ds=#p2#, #m4#" }, - { 17052, "INV_Scroll_03", "=q3=Plans: Dark Iron Leggings", "=ds=#p2# #m14#" }, - { 17053, "INV_Scroll_03", "=q3=Plans: Fiery Chain Shoulders", "=ds=#p2# #m14#" }, - { 19220, "INV_Scroll_03", "=q1=Pattern: Flarecore Leggings", "=ds=#p8# #m14#" }, - { 19333, "INV_Scroll_03", "=q1=Pattern: Molten Belt", "=ds=#p7# #m14#" }, - { 19332, "INV_Scroll_03", "=q1=Pattern: Corehound Belt", "=ds=#p7# #m14#" }, - { 19331, "INV_Scroll_03", "=q1=Pattern: Chromatic Gauntlets", "=ds=#p7# #m14#" }, - { 19207, "INV_Scroll_03", "=q1=Plans: Dark Iron Gauntlets", "=ds=#p2# #m14#" }, - { 19208, "INV_Scroll_03", "=q1=Plans: Black Amnesty", "=ds=#p2# #m14#" }, - { 19209, "INV_Scroll_03", "=q1=Plans: Blackfury", "=ds=#p2# #m14#" }, - { 19449, "INV_Scroll_03", "=q1=Formula: Enchant Weapon - Mighty Intellect", "=ds=#p4# #m14#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Ingot_Mithril", "=q6=#r5#", "" }, - { 20040, "INV_Scroll_03", "=q1=Plans: Dark Iron Boots", "=ds=#p2# #m14#" }, - { 19210, "INV_Scroll_03", "=q1=Plans: Ebon Hand", "=ds=#p2# #m14#" }, - { 19211, "INV_Scroll_03", "=q1=Plans: Blackguard", "=ds=#p2# #m14#" }, - { 19212, "INV_Scroll_03", "=q1=Plans: Nightfall", "=ds=#p2# #m14#" }, - }; - Cenarion1 = { - { 0, "", "", "" }, - { 22772, "INV_Scroll_03", "=q1=Pattern: Sylvan Shoulders", "=ds=#p8# #m14#" }, - { 22769, "INV_Scroll_03", "=q1=Pattern: Bramblewood Belt", "=ds=#p7# #m14#" }, - { 20506, "INV_Scroll_03", "=q1=Pattern: Spitfire Bracers", "=ds=#p7# #m14#" }, - { 20509, "INV_Scroll_03", "=q1=Pattern: Sandstalker Bracers", "=ds=#p7# #m14#" }, - { 22768, "INV_Scroll_03", "=q1=Plans: Ironvine Belt", "=ds=#p2# #m14#" }, - { 22209, "INV_Scroll_03", "=q1=Plans: Heavy Obsidian Belt", "=ds=#p2# #m14#" }, - { 22310, "INV_Scroll_03", "=q1=Pattern: Cenarion Herb Bag", "=ds=#p8# (275)" }, - { 20732, "INV_Misc_Note_01", "=q1=Formula: Enchant Cloak - Greater Fire Resistance", "=ds=#p4# #m14#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 21187, "INV_Misc_Cape_07", "=q3=Earthweave Cloak", "=ds=#s4#", "", "", "", "5", "#ccombat#", "3", "#clogistics#", "7", "#ctactical#" }, - { 21178, "INV_Gauntlets_18", "=q3=Gloves of Earthen Power", "=ds=#s9#, #a2#", "", "", "", "5", "#ccombat#", "3", "#clogistics#", "7", "#ctactical#" }, - { 21179, "INV_Jewelry_Ring_18", "=q3=Band of Earthen Wrath", "=ds=#s13#", "", "", "", "5", "#ccombat#", "3", "#clogistics#", "7", "#ctactical#" }, - }; - Cenarion2 = { - { 0, "", "", "" }, - { 22773, "INV_Scroll_03", "=q1=Pattern: Sylvan Crown", "=ds=#p8# #m14#" }, - { 22770, "INV_Scroll_03", "=q1=Pattern: Bramblewood Boots", "=ds=#p7# #m14#" }, - { 20507, "INV_Scroll_03", "=q1=Pattern: Spitfire Gauntlets", "=ds=#p7# #m14#" }, - { 20510, "INV_Scroll_03", "=q1=Pattern: Sandstalker Gauntlets", "=ds=#p7# #m14#" }, - { 22767, "INV_Scroll_03", "=q1=Plans: Ironvine Gloves", "=ds=#p2# #m14#" }, - { 22214, "INV_Scroll_03", "=q1=Plans: Light Obsidian Belt", "=ds=#p2# #m14#" }, - { 20733, "INV_Misc_Note_01", "=q1=Formula: Enchant Cloak - Greater Nature Resistance", "=ds=#p4# #m14#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 21183, "INV_Chest_Cloth_06", "=q3=Earthpower Vest", "=ds=#s5#, #a1#", "", "", "", "7", "#ccombat#", "4", "#clogistics#", "4", "#ctactical#" }, - { 21182, "INV_Jewelry_Ring_19", "=q3=Band of Earthen Might", "=ds=#s13#", "", "", "", "7", "#ccombat#", "4", "#clogistics#", "4", "#ctactical#" }, - { 21181, "INV_Misc_Herb_02", "=q3=Grace of Earth", "=ds=#s14#", "", "", "", "7", "#ccombat#", "4", "#clogistics#", "4", "#ctactical#" }, - }; - Cenarion3 = { - { 0, "", "", "" }, - { 22683, "INV_Scroll_03", "=q1=Pattern: Gaea's Embrace", "=ds=#p8# #m14#" }, - { 22774, "INV_Scroll_03", "=q1=Pattern: Sylvan Vest", "=ds=#p8# #m14#" }, - { 22771, "INV_Scroll_03", "=q1=Pattern: Bramblewood Helm", "=ds=#p7# #m14#" }, - { 20508, "INV_Scroll_03", "=q1=Pattern: Spitfire Breastplate", "=ds=#p7# #m14#" }, - { 20511, "INV_Scroll_03", "=q1=Pattern: Sandstalker Breastplate", "=ds=#p7# #m14#" }, - { 22766, "INV_Scroll_03", "=q1=Plans: Ironvine Breastplate", "=ds=#p2# #m14#" }, - { 22219, "INV_Scroll_03", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# #m14#" }, - { 22312, "INV_Scroll_03", "=q1=Pattern: Satchel of Cenarius", "=ds=#p8# #m14#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 21186, "INV_Bracer_12", "=q4=Rockfury Bracers", "=ds=#s8#, #a1#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "17", "#ctactical#", "1", "#cremulos#" }, - { 21184, "INV_Bracer_07", "=q4=Deeprock Bracers", "=ds=#s8#, #a4#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "17", "#ctactical#", "1", "#cremulos#" }, - { 21189, "INV_Jewelry_Ring_41", "=q4=Might of Cenarius", "=ds=#s13#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "17", "#ctactical#", "1", "#cremulos#" }, - { 21185, "INV_Misc_Gem_Pearl_06", "=q4=Earthcalm Orb", "=ds=#s15#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "17", "#ctactical#", "1", "#cremulos#" }, - }; - Cenarion4 = { - { 0, "", "", "" }, - { 20382, "INV_Scroll_03", "=q1=Pattern: Dreamscale Breastplate", "=ds=#p7# #m14#" }, - { 22221, "INV_Scroll_03", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# #m14#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 21190, "INV_Jewelry_Ring_40", "=q4=Wrath of Cenarius", "=ds=#s13#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "20", "#ctactical#", "1", "#ccenarius#" }, - { 21180, "Spell_Nature_AbolishMagic", "=q4=Earthstrike", "=ds=#s14#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "20", "#ctactical#", "1", "#ccenarius#" }, - { 21188, "INV_Hammer_23", "=q4=Fist of Cenarius", "=ds=#h2#, #w6#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "20", "#ctactical#", "1", "#ccenarius#" }, - }; - Darkmoon = { - { 0, "", "", "" }, - { 19288, "INV_Misc_Ticket_Tarot_BlueDragon_01", "=q4=Darkmoon Card: Blue Dragon", "=ds=#s14#" }, - { 19289, "INV_Misc_Ticket_Tarot_Maelstrom_01", "=q4=Darkmoon Card: Maelstrom", "=ds=#s14#" }, - { 19287, "INV_Misc_Ticket_Tarot_Heroism_01", "=q4=Darkmoon Card: Heroism", "=ds=#s14#" }, - { 19290, "INV_Misc_Ticket_Tarot_TwistingNether_01", "=q4=Darkmoon Card: Twisting Nether", "=ds=#s14#" }, - { 19491, "INV_Jewelry_Necklace_14", "=q4=Amulet of the Darkmoon", "=ds=#s2#", "", "1200", "#darkmoon#" }, - { 19426, "INV_Jewelry_Necklace_16", "=q4=Orb of the Darkmoon", "=ds=#s2#", "", "1200", "#darkmoon#" }, - { 19296, "INV_Misc_Bag_21", "=q2=Greater Darkmoon Prize", "", "", "40", "#darkmoon#" }, - { 19297, "INV_Misc_Bag_07_Black", "=q2=Lesser Darkmoon Prize", "", "", "12", "#darkmoon#" }, - { 19298, "INV_Misc_Bag_04", "=q2=Minor Darkmoon Prize", "", "", "5", "#darkmoon#" }, - { 19291, "INV_Box_04", "=q1=Darkmoon Storage Box", "", "", "50", "#darkmoon#" }, - { 19293, "INV_Misc_Food_18", "=q1=Last Year's Mutton", "", "", "50", "#darkmoon#" }, - { 19292, "INV_Misc_Food_18", "=q1=Last Month's Mutton", "", "", "10", "#darkmoon#" }, - { 19295, "INV_Misc_Herb_19", "=q1=Darkmoon Flower", "", "", "5", "#darkmoon#" }, - }; - Zandalar1 = { - { 0, "", "", "" }, - { 0, "INV_Misc_Coin_08", "=q6=#r2#", "" }, - { 19766, "INV_Scroll_03", "=q1=Pattern: Bloodvine Boots", "=ds=#p8# #m14#" }, - { 19771, "INV_Scroll_03", "=q1=Pattern: Primal Batskin Bracers", "=ds=#p7# #m14#" }, - { 20001, "INV_Scroll_03", "=q1=Schematic: Bloodvine Lens", "=ds=#p5# #m14#" }, - { 19778, "INV_Scroll_03", "=q1=Plans: Bloodsoul Gauntlets", "=ds=#p2# #m14#" }, - { 19781, "INV_Scroll_03", "=q1=Plans: Darksoul Shoulders", "=ds=#p2# #m14#" }, - { 20012, "INV_Scroll_03", "=q1=Recipe: Greater Dreamless Sleep", "=ds=#p1# (275)" }, - { 20757, "INV_Misc_Note_01", "=q1=Formula: Brilliant Mana Oil", "=ds=#p4# #m14#" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Misc_Coin_08", "=q6=#r3#", "" }, - { 19765, "INV_Scroll_03", "=q1=Pattern: Bloodvine Leggings", "=ds=#p8# #m14#" }, - { 20000, "INV_Scroll_03", "=q1=Schematic: Bloodvine Goggles", "=ds=#p5# #m14#" }, - { 19770, "INV_Scroll_03", "=q1=Pattern: Primal Batskin Gloves", "=ds=#p7# #m14#" }, - { 19773, "INV_Scroll_03", "=q1=Pattern: Blood Tiger Shoulders", "=ds=#p7# #m14#" }, - { 19777, "INV_Scroll_03", "=q1=Plans: Bloodsoul Shoulders", "=ds=#p2# #m14#" }, - { 19780, "INV_Scroll_03", "=q1=Plans: Darksoul Leggings", "=ds=#p2# #m14#" }, - { 20014, "INV_Scroll_03", "=q1=Recipe: Major Troll's Blood Potion", "=ds=#p1# (290)" }, - { 20756, "INV_Misc_Note_01", "=q1=Formula: Brilliant Wizard Oil", "=ds=#p4# #m14#" }, - { 20031, "INV_Misc_Food_42", "=q1=Essence Mango", "=ds=#e2#", "", "1", "#zandalar#" }, - }; - Zandalar2 = { - { 0, "", "", "" }, - { 0, "INV_Misc_Coin_08", "=q6=#r4#", "" }, - { 20080, "INV_Potion_29", "=q2=Sheen of Zanza", "=ds=#e1#", "", "3", "#zandalar#" }, - { 20079, "INV_Potion_30", "=q2=Spirit of Zanza", "=ds=#e1#", "", "3", "#zandalar#" }, - { 20081, "INV_Potion_31", "=q2=Swiftness of Zanza", "=ds=#e1#", "", "3", "#zandalar#" }, - { 19764, "INV_Scroll_03", "=q1=Pattern: Bloodvine Vest", "=ds=#p8# #m14#" }, - { 19769, "INV_Scroll_03", "=q1=Pattern: Primal Batskin Jerkin", "=ds=#p7# #m14#" }, - { 19772, "INV_Scroll_03", "=q1=Pattern: Blood Tiger Breastplate", "=ds=#p7# #m14#" }, - { 19776, "INV_Scroll_03", "=q1=Plans: Bloodsoul Breastplate", "=ds=#p2# #m14#" }, - { 19779, "INV_Scroll_03", "=q1=Plans: Darksoul Breastplate", "=ds=#p2# #m14#" }, - { 20011, "INV_Scroll_03", "=q1=Recipe: Mageblood Potion", "=ds=#p1# (275)" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Misc_Coin_08", "=q6=#r5#", "" }, - { 20077, "INV_Misc_ArmorKit_08", "=q3=Zandalar Signet of Might", "=ds=#s3# #e11#", "", "", "", "", "", "15", "#zandalar#" }, - { 20076, "INV_Jewelry_Ring_46", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e11#", "", "", "", "", "", "15", "#zandalar#" }, - { 20078, "Spell_Holy_PowerWordShield", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e11#", "", "", "", "", "", "15", "#zandalar#" }, + EmptyInstance = {}; + Argent1 = { + { 0, "", "", "" }, + { 22689, "INV_Helmet_13", "=q3=Sanctified Leather Helm", "=ds=#s1#, #a2#" }, + { 22690, "INV_Pants_03", "=q3=Leggings of the Plague Hunter", "=ds=#s11#, #a3#" }, + { 22681, "INV_Jewelry_Ring_33", "=q3=Band of Piety", "=ds=#s13#" }, + { 22680, "INV_Jewelry_Ring_01", "=q3=Band of Resolution", "=ds=#s13#" }, + { 22688, "INV_Weapon_ShortBlade_03", "=q3=Verimonde's Last Resort", "=ds=#h3#, #w4#" }, + { 22679, "INV_Misc_Bag_17", "=q3=Supply Bag", "=ds=#m12# #e10#" }, + { 0, "", "", "" }, + { 22523, "INV_Misc_Token_ArgentDawn", "=q2=Insignia of the Dawn", "=ds=#e22#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 22657, "INV_Jewelry_Amulet_04", "=q4=Amulet of the Dawn", "=ds=#s2#" }, + { 22659, "INV_Jewelry_Amulet_04", "=q4=Medallion of the Dawn", "=ds=#s2#" }, + { 22667, "INV_Bracer_12", "=q4=Bracers of Hope", "=ds=#s8#, #a1#" }, + { 22668, "INV_Bracer_04", "=q4=Bracers of Subterfuge", "=ds=#s8#, #a2#" }, + { 22678, "INV_Misc_Gem_Pearl_04", "=q4=Talisman of Ascendance", "=ds=#s14#" }, + { 22656, "INV_Weapon_Rifle_06", "=q4=The Purifier", "=ds=#w5#" }, + { 0, "", "", "" }, + { 22524, "INV_Misc_Token_ScarletCrusade", "=q2=Insignia of the Crusade", "=ds=#e22#" }, + }; + Argent2 = { + { 0, "", "", "" }, + { 0, "INV_Jewelry_Talisman_08", "=q6=#r2#", "" }, + { 13724, "INV_Misc_Food_33", "=q1=Enriched Manna Biscuit", "=ds=#e2#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Jewelry_Talisman_08", "=q6=#r3#", "" }, + { 13482, "INV_Scroll_06", "=q2=Recipe: Transmute Air to Fire", "=ds=#p1# (275)" }, + { 19216, "INV_Scroll_03", "=q1=Pattern: Argent Boots", "=ds=#p8# (290)" }, + { 19328, "INV_Scroll_03", "=q1=Pattern: Dawn Treaders", "=ds=#p7# (290)" }, + { 19203, "INV_Scroll_03", "=q1=Plans: Girdle of the Dawn", "=ds=#p2# (290)" }, + { 19442, "INV_Scroll_03", "=q1=Formula: Powerful Anti-Venom", "=ds=#p6# #m14#" }, + { 19446, "INV_Misc_Note_01", "=q1=Formula: Enchant Bracer - Mana Regeneration", "=ds=#p4# (290)" }, + }; + Argent3 = { + { 0, "", "", "" }, + { 0, "INV_Jewelry_Talisman_08", "=q6=#r4#", "" }, + { 18171, "Spell_Holy_WordFortitude", "=q2=Arcane Mantle of the Dawn", "=ds=#s3# #e11#" }, + { 18169, "Spell_Fire_FlameShock", "=q2=Flame Mantle of the Dawn", "=ds=#s3# #e11#" }, + { 18170, "Spell_Frost_FrostShock", "=q2=Frost Mantle of the Dawn", "=ds=#s3# #e11#" }, + { 18172, "Spell_Nature_ProtectionformNature", "=q2=Nature Mantle of the Dawn", "=ds=#s3# #e11#" }, + { 18173, "Spell_Shadow_RagingScream", "=q2=Shadow Mantle of the Dawn", "=ds=#s3# #e11#" }, + { 19217, "INV_Scroll_03", "=q1=Pattern: Argent Shoulders", "=ds=#p8# #m14#" }, + { 19329, "INV_Scroll_03", "=q1=Pattern: Golden Mantle of the Dawn", "=ds=#p7# #m14#" }, + { 19205, "INV_Scroll_03", "=q1=Plans: Gloves of the Dawn", "=ds=#p2# #m14#" }, + { 19447, "INV_Scroll_03", "=q1=Formula: Enchant Bracer - Healing", "=ds=#p4# #m14#" }, + { 13810, "INV_Misc_Food_41", "=q1=Blessed Sunfruit", "=ds=#e2#" }, + { 13813, "INV_Drink_16", "=q1=Blessed Sunfruit Juice", "=ds=#e3#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Jewelry_Talisman_08", "=q6=#r5#", "" }, + { 18182, "INV_Misc_Gem_Variety_02", "=q2=Chromatic Mantle of the Dawn", "=ds=#s3# #e11#" }, + }; + AQBroodRings = { + { 0, "", "", "" }, + { 0, "INV_Jewelry_Ring_40", "=q6=#pob1#", "" }, + { 21201, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r1#" }, + { 21202, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r2#" }, + { 21203, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r3#" }, + { 21204, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r4#" }, + { 21205, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r5#" }, + { 0, "", "", "" }, + { 0, "INV_Jewelry_Ring_40", "=q6=#pob2#", "" }, + { 21206, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r1#" }, + { 21207, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r2#" }, + { 21208, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r3#" }, + { 21209, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r4#" }, + { 21210, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r5#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Jewelry_Ring_40", "=q6=#pob3#", "" }, + { 21196, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r1#" }, + { 21197, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r2#" }, + { 21198, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r3#" }, + { 21199, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r4#" }, + { 21200, "INV_Jewelry_Ring_40", "=q4=Signet Ring of the Bronze Dragonflight", "=ds=#s13#, #r5#" }, + }; + Timbermaw = { + { 0, "", "", "" }, + { 0, "INV_Misc_Horn_01", "=q6=#r2#", "" }, + { 13484, "INV_Scroll_03", "=q2=Recipe: Transmute Earth to Water", "=ds=#p1# (275)" }, + { 20254, "INV_Scroll_03", "=q1=Pattern: Warbear Woolies", "=ds=#p7# (285)" }, + { 15742, "INV_Scroll_03", "=q1=Pattern: Warbear Harness", "=ds=#p7# (275)" }, + { 22392, "INV_Misc_Note_01", "=q1=Formula: Enchant 2H Weapon - Agility", "=ds=#p4# (290)" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Horn_01", "=q6=#r3#", "" }, + { 16768, "INV_Misc_Bag_11", "=q2=Furbolg Medicine Pouch", "=ds=#s15#" }, + { 16769, "INV_Mace_11", "=q2=Furbolg Medicine Totem", "=ds=#h3#, #w6#" }, + { 19202, "INV_Scroll_03", "=q1=Plans: Heavy Timbermaw Belt", "=ds=#p2# (290)" }, + { 19326, "INV_Scroll_03", "=q1=Pattern: Might of the Timbermaw", "=ds=#p7# (290)" }, + { 19215, "INV_Scroll_03", "=q1=Pattern: Wisdom of the Timbermaw", "=ds=#p8# (290)" }, + { 19445, "INV_Misc_Note_01", "=q1=Formula: Enchant Weapon - Agility", "=ds=#p4# (290)" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Horn_01", "=q6=#r4#", "" }, + { 19218, "INV_Scroll_03", "=q1=Pattern: Mantle of the Timbermaw", "=ds=#p8# #m14#" }, + { 19327, "INV_Scroll_03", "=q1=Pattern: Timbermaw Brawlers", "=ds=#p7# #m14#" }, + { 19204, "INV_Scroll_03", "=q1=Plans: Heavy Timbermaw Boots", "=ds=#p2# #m14#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Horn_01", "=q6=#r5#", "" }, + { 21326, "INV_Misc_Horn_01", "=q4=Defender of the Timbermaw", "=ds=#s14#" }, + }; + Thorium1 = { + { 0, "", "", "" }, + { 0, "INV_Ingot_Mithril", "=q6=#r2#", "" }, + { 17051, "INV_Scroll_03", "=q3=Plans: Dark Iron Bracers", "=ds=#p2# (295)" }, + { 17018, "INV_Scroll_03", "=q1=Pattern: Flarecore Gloves", "=ds=#p8# #m14#" }, + { 17023, "INV_Scroll_03", "=q1=Pattern: Molten Helm", "=ds=#p7# #m14#" }, + { 17022, "INV_Scroll_03", "=q1=Pattern: Corehound Boots", "=ds=#p7# (295)" }, + { 20761, "INV_Scroll_03", "=q1=Recipe: Transmute Elemental Fire", "=ds=#p1# #m14#" }, + { 19444, "INV_Misc_Note_01", "=q1=Formula: Enchant Weapon - Strength", "=ds=#p4# (290)" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Ingot_Mithril", "=q6=#r3#", "" }, + { 17059, "INV_Scroll_03", "=q3=Plans: Dark Iron Reaver", "=ds=#p2# #m14#" }, + { 17060, "INV_Scroll_03", "=q3=Plans: Dark Iron Destroyer", "=ds=#p2# #m14#" }, + { 17049, "INV_Scroll_03", "=q3=Plans: Fiery Chain Girdle", "=ds=#p2# (295)" }, + { 17017, "INV_Scroll_03", "=q1=Pattern: Flarecore Mantle", "=ds=#p8# #m14#" }, + { 19219, "INV_Scroll_03", "=q1=Pattern: Flarecore Robe", "=ds=#p8# #m14#" }, + { 19330, "INV_Scroll_03", "=q1=Pattern: Lava Belt", "=ds=#p7# #m14#" }, + { 17025, "INV_Scroll_03", "=q1=Pattern: Black Dragonscale Boots", "=ds=#p7# #m14#" }, + { 19206, "INV_Scroll_03", "=q1=Plans: Dark Iron Helm", "=ds=#p2# #m14#" }, + { 19448, "INV_Misc_Note_01", "=q1=Formula: Enchant Weapon - Mighty Spirit", "=ds=#p4# #m14#" }, + }; + Thorium2 = { + { 0, "", "", "" }, + { 0, "INV_Ingot_Mithril", "=q6=#r4#", "" }, + { 18592, "INV_Scroll_03", "=q4=Plans: Sulfuron Hammer", "=ds=#p2#, #m4#" }, + { 17052, "INV_Scroll_03", "=q3=Plans: Dark Iron Leggings", "=ds=#p2# #m14#" }, + { 17053, "INV_Scroll_03", "=q3=Plans: Fiery Chain Shoulders", "=ds=#p2# #m14#" }, + { 19220, "INV_Scroll_03", "=q1=Pattern: Flarecore Leggings", "=ds=#p8# #m14#" }, + { 19333, "INV_Scroll_03", "=q1=Pattern: Molten Belt", "=ds=#p7# #m14#" }, + { 19332, "INV_Scroll_03", "=q1=Pattern: Corehound Belt", "=ds=#p7# #m14#" }, + { 19331, "INV_Scroll_03", "=q1=Pattern: Chromatic Gauntlets", "=ds=#p7# #m14#" }, + { 19207, "INV_Scroll_03", "=q1=Plans: Dark Iron Gauntlets", "=ds=#p2# #m14#" }, + { 19208, "INV_Scroll_03", "=q1=Plans: Black Amnesty", "=ds=#p2# #m14#" }, + { 19209, "INV_Scroll_03", "=q1=Plans: Blackfury", "=ds=#p2# #m14#" }, + { 19449, "INV_Scroll_03", "=q1=Formula: Enchant Weapon - Mighty Intellect", "=ds=#p4# #m14#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Ingot_Mithril", "=q6=#r5#", "" }, + { 20040, "INV_Scroll_03", "=q1=Plans: Dark Iron Boots", "=ds=#p2# #m14#" }, + { 62004, "INV_Scroll_03", "=q1=Plans: Fiery Chain Breastplate", "=ds=#p2# #m14#" }, + { 19210, "INV_Scroll_03", "=q1=Plans: Ebon Hand", "=ds=#p2# #m14#" }, + { 19211, "INV_Scroll_03", "=q1=Plans: Blackguard", "=ds=#p2# #m14#" }, + { 19212, "INV_Scroll_03", "=q1=Plans: Nightfall", "=ds=#p2# #m14#" }, + { 62005, "INV_Scroll_03", "=q1=Pattern: Flarecore Boots", "=ds=#p8# #m14#" }, + { 62006, "INV_Scroll_03", "=q1=Pattern: Chromatic Leggings", "=ds=#p7# #m14#" }, + { 62007, "INV_Scroll_03", "=q1=Pattern: Molten Leggings", "=ds=#p7# #m14#" }, + { 62003, "INV_Scroll_03", "=q1=Pattern: Corehound Gloves", "=ds=#p7# #m14#" }, + }; + Cenarion1 = { + { 0, "", "", "" }, + { 22772, "INV_Scroll_03", "=q1=Pattern: Sylvan Shoulders", "=ds=#p8# #m14#" }, + { 22769, "INV_Scroll_03", "=q1=Pattern: Bramblewood Belt", "=ds=#p7# #m14#" }, + { 20506, "INV_Scroll_03", "=q1=Pattern: Spitfire Bracers", "=ds=#p7# #m14#" }, + { 20509, "INV_Scroll_03", "=q1=Pattern: Sandstalker Bracers", "=ds=#p7# #m14#" }, + { 22768, "INV_Scroll_03", "=q1=Plans: Ironvine Belt", "=ds=#p2# #m14#" }, + { 22209, "INV_Scroll_03", "=q1=Plans: Heavy Obsidian Belt", "=ds=#p2# #m14#" }, + { 22310, "INV_Scroll_03", "=q1=Pattern: Cenarion Herb Bag", "=ds=#p8# (275)" }, + { 20732, "INV_Misc_Note_01", "=q1=Formula: Enchant Cloak - Greater Fire Resistance", "=ds=#p4# #m14#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 21187, "INV_Misc_Cape_07", "=q3=Earthweave Cloak", "=ds=#s4#", "", "", "", "5", "#ccombat#", "3", "#clogistics#", "7", "#ctactical#" }, + { 21178, "INV_Gauntlets_18", "=q3=Gloves of Earthen Power", "=ds=#s9#, #a2#", "", "", "", "5", "#ccombat#", "3", "#clogistics#", "7", "#ctactical#" }, + { 21179, "INV_Jewelry_Ring_18", "=q3=Band of Earthen Wrath", "=ds=#s13#", "", "", "", "5", "#ccombat#", "3", "#clogistics#", "7", "#ctactical#" }, + }; + Cenarion2 = { + { 0, "", "", "" }, + { 22773, "INV_Scroll_03", "=q1=Pattern: Sylvan Crown", "=ds=#p8# #m14#" }, + { 22770, "INV_Scroll_03", "=q1=Pattern: Bramblewood Boots", "=ds=#p7# #m14#" }, + { 20507, "INV_Scroll_03", "=q1=Pattern: Spitfire Gauntlets", "=ds=#p7# #m14#" }, + { 20510, "INV_Scroll_03", "=q1=Pattern: Sandstalker Gauntlets", "=ds=#p7# #m14#" }, + { 22767, "INV_Scroll_03", "=q1=Plans: Ironvine Gloves", "=ds=#p2# #m14#" }, + { 22214, "INV_Scroll_03", "=q1=Plans: Light Obsidian Belt", "=ds=#p2# #m14#" }, + { 20733, "INV_Misc_Note_01", "=q1=Formula: Enchant Cloak - Greater Nature Resistance", "=ds=#p4# #m14#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 21183, "INV_Chest_Cloth_06", "=q3=Earthpower Vest", "=ds=#s5#, #a1#", "", "", "", "7", "#ccombat#", "4", "#clogistics#", "4", "#ctactical#" }, + { 21182, "INV_Jewelry_Ring_19", "=q3=Band of Earthen Might", "=ds=#s13#", "", "", "", "7", "#ccombat#", "4", "#clogistics#", "4", "#ctactical#" }, + { 21181, "INV_Misc_Herb_02", "=q3=Grace of Earth", "=ds=#s14#", "", "", "", "7", "#ccombat#", "4", "#clogistics#", "4", "#ctactical#" }, + }; + Cenarion3 = { + { 0, "", "", "" }, + { 22683, "INV_Scroll_03", "=q1=Pattern: Gaea's Embrace", "=ds=#p8# #m14#" }, + { 22774, "INV_Scroll_03", "=q1=Pattern: Sylvan Vest", "=ds=#p8# #m14#" }, + { 22771, "INV_Scroll_03", "=q1=Pattern: Bramblewood Helm", "=ds=#p7# #m14#" }, + { 20508, "INV_Scroll_03", "=q1=Pattern: Spitfire Breastplate", "=ds=#p7# #m14#" }, + { 20511, "INV_Scroll_03", "=q1=Pattern: Sandstalker Breastplate", "=ds=#p7# #m14#" }, + { 22766, "INV_Scroll_03", "=q1=Plans: Ironvine Breastplate", "=ds=#p2# #m14#" }, + { 22219, "INV_Scroll_03", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# #m14#" }, + { 22312, "INV_Scroll_03", "=q1=Pattern: Satchel of Cenarius", "=ds=#p8# #m14#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 21186, "INV_Bracer_12", "=q4=Rockfury Bracers", "=ds=#s8#, #a1#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "17", "#ctactical#", "1", "#cremulos#" }, + { 21184, "INV_Bracer_07", "=q4=Deeprock Bracers", "=ds=#s8#, #a4#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "17", "#ctactical#", "1", "#cremulos#" }, + { 21189, "INV_Jewelry_Ring_41", "=q4=Might of Cenarius", "=ds=#s13#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "17", "#ctactical#", "1", "#cremulos#" }, + { 21185, "INV_Misc_Gem_Pearl_06", "=q4=Earthcalm Orb", "=ds=#s15#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "17", "#ctactical#", "1", "#cremulos#" }, + }; + Cenarion4 = { + { 0, "", "", "" }, + { 20382, "INV_Scroll_03", "=q1=Pattern: Dreamscale Breastplate", "=ds=#p7# #m14#" }, + { 22221, "INV_Scroll_03", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# #m14#" }, + { 83548, "INV_Scroll_04", "=q1=Plans: Dream's Herald", "=ds=#p2# #m14#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 21190, "INV_Jewelry_Ring_40", "=q4=Wrath of Cenarius", "=ds=#s13#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "20", "#ctactical#", "1", "#ccenarius#" }, + { 21180, "Spell_Nature_AbolishMagic", "=q4=Earthstrike", "=ds=#s14#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "20", "#ctactical#", "1", "#ccenarius#" }, + { 21188, "INV_Hammer_23", "=q4=Fist of Cenarius", "=ds=#h2#, #w6#", "", "", "", "15", "#ccombat#", "20", "#clogistics#", "20", "#ctactical#", "1", "#ccenarius#" }, + }; + Darkmoon = { + { 0, "", "", "" }, + { 19288, "INV_Misc_Ticket_Tarot_BlueDragon_01", "=q4=Darkmoon Card: Blue Dragon", "=ds=#s14#" }, + { 19289, "INV_Misc_Ticket_Tarot_Maelstrom_01", "=q4=Darkmoon Card: Maelstrom", "=ds=#s14#" }, + { 19287, "INV_Misc_Ticket_Tarot_Heroism_01", "=q4=Darkmoon Card: Heroism", "=ds=#s14#" }, + { 19290, "INV_Misc_Ticket_Tarot_TwistingNether_01", "=q4=Darkmoon Card: Twisting Nether", "=ds=#s14#" }, + { 19491, "INV_Jewelry_Necklace_14", "=q4=Amulet of the Darkmoon", "=ds=#s2#", "", "1200", "#darkmoon#" }, + { 19426, "INV_Jewelry_Necklace_16", "=q4=Orb of the Darkmoon", "=ds=#s2#", "", "1200", "#darkmoon#" }, + { 19296, "INV_Misc_Bag_21", "=q2=Greater Darkmoon Prize", "", "", "40", "#darkmoon#" }, + { 19297, "INV_Misc_Bag_07_Black", "=q2=Lesser Darkmoon Prize", "", "", "12", "#darkmoon#" }, + { 19298, "INV_Misc_Bag_04", "=q2=Minor Darkmoon Prize", "", "", "5", "#darkmoon#" }, + { 19291, "INV_Box_04", "=q1=Darkmoon Storage Box", "", "", "50", "#darkmoon#" }, + { 19293, "INV_Misc_Food_18", "=q1=Last Year's Mutton", "", "", "50", "#darkmoon#" }, + { 19292, "INV_Misc_Food_18", "=q1=Last Month's Mutton", "", "", "10", "#darkmoon#" }, + { 19295, "INV_Misc_Herb_19", "=q1=Darkmoon Flower", "", "", "5", "#darkmoon#" }, + }; + Zandalar1 = { + { 0, "", "", "" }, + { 0, "INV_Misc_Coin_08", "=q6=#r2#", "" }, + { 19766, "INV_Scroll_03", "=q1=Pattern: Bloodvine Boots", "=ds=#p8# #m14#" }, + { 19771, "INV_Scroll_03", "=q1=Pattern: Primal Batskin Bracers", "=ds=#p7# #m14#" }, + { 20001, "INV_Scroll_03", "=q1=Schematic: Bloodvine Lens", "=ds=#p5# #m14#" }, + { 19778, "INV_Scroll_03", "=q1=Plans: Bloodsoul Gauntlets", "=ds=#p2# #m14#" }, + { 19781, "INV_Scroll_03", "=q1=Plans: Darksoul Shoulders", "=ds=#p2# #m14#" }, + { 20012, "INV_Scroll_03", "=q1=Recipe: Greater Dreamless Sleep", "=ds=#p1# (275)" }, + { 20757, "INV_Misc_Note_01", "=q1=Formula: Brilliant Mana Oil", "=ds=#p4# #m14#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Coin_08", "=q6=#r3#", "" }, + { 19765, "INV_Scroll_03", "=q1=Pattern: Bloodvine Leggings", "=ds=#p8# #m14#" }, + { 20000, "INV_Scroll_03", "=q1=Schematic: Bloodvine Goggles", "=ds=#p5# #m14#" }, + { 19770, "INV_Scroll_03", "=q1=Pattern: Primal Batskin Gloves", "=ds=#p7# #m14#" }, + { 19773, "INV_Scroll_03", "=q1=Pattern: Blood Tiger Shoulders", "=ds=#p7# #m14#" }, + { 19777, "INV_Scroll_03", "=q1=Plans: Bloodsoul Shoulders", "=ds=#p2# #m14#" }, + { 19780, "INV_Scroll_03", "=q1=Plans: Darksoul Leggings", "=ds=#p2# #m14#" }, + { 20014, "INV_Scroll_03", "=q1=Recipe: Major Troll's Blood Potion", "=ds=#p1# (290)" }, + { 20756, "INV_Misc_Note_01", "=q1=Formula: Brilliant Wizard Oil", "=ds=#p4# #m14#" }, + { 20031, "INV_Misc_Food_42", "=q1=Essence Mango", "=ds=#e2#", "", "1", "#zandalar#" }, + }; + Zandalar2 = { + { 0, "", "", "" }, + { 0, "INV_Misc_Coin_08", "=q6=#r4#", "" }, + { 20080, "INV_Potion_29", "=q2=Sheen of Zanza", "=ds=#e1#", "", "3", "#zandalar#" }, + { 20079, "INV_Potion_30", "=q2=Spirit of Zanza", "=ds=#e1#", "", "3", "#zandalar#" }, + { 20081, "INV_Potion_31", "=q2=Swiftness of Zanza", "=ds=#e1#", "", "3", "#zandalar#" }, + { 19764, "INV_Scroll_03", "=q1=Pattern: Bloodvine Vest", "=ds=#p8# #m14#" }, + { 19769, "INV_Scroll_03", "=q1=Pattern: Primal Batskin Jerkin", "=ds=#p7# #m14#" }, + { 19772, "INV_Scroll_03", "=q1=Pattern: Blood Tiger Breastplate", "=ds=#p7# #m14#" }, + { 19776, "INV_Scroll_03", "=q1=Plans: Bloodsoul Breastplate", "=ds=#p2# #m14#" }, + { 19779, "INV_Scroll_03", "=q1=Plans: Darksoul Breastplate", "=ds=#p2# #m14#" }, + { 20011, "INV_Scroll_03", "=q1=Recipe: Mageblood Potion", "=ds=#p1# (275)" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Coin_08", "=q6=#r5#", "" }, + { 20077, "INV_Misc_ArmorKit_08", "=q3=Zandalar Signet of Might", "=ds=#s3# #e11#", "", "", "", "", "", "15", "#zandalar#" }, + { 20076, "INV_Jewelry_Ring_46", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e11#", "", "", "", "", "", "15", "#zandalar#" }, + { 20078, "Spell_Holy_PowerWordShield", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e11#", "", "", "", "", "", "15", "#zandalar#" }, { 65033, "spell_holy_devotionaura", "=q3=Zandalar Signet of Tenacity", "=ds=#s3# #e11#", "", "", "", "", "", "15", "#zandalar#" }, - { 20013, "INV_Scroll_03", "=q1=Recipe: Living Action Potion", "=ds=#p1# (285)" }, - }; - Wintersaber1 = { - { 0, "", "", "" }, - { 0, "INV_Box_01", "=q6=#r5#", "" }, - { 13086, "Ability_Mount_PinkTiger", "=q4=Reins of the Winterspring Frostsaber", "=ds=#e7#" }, - }; - Stormpike1 = { - { 0, "", "", "" }, - { 17904, "INV_Jewelry_StormPikeTrinket_05", "=q4=Stormpike Insignia Rank 6", "=ds=#s14#, #r5#" }, - { 17903, "INV_Jewelry_StormPikeTrinket_04", "=q3=Stormpike Insignia Rank 5", "=ds=#s14#, #r5#" }, - { 17902, "INV_Jewelry_StormPikeTrinket_03", "=q3=Stormpike Insignia Rank 4", "=ds=#s14#, #r4#" }, - { 17901, "INV_Jewelry_StormPikeTrinket_02", "=q2=Stormpike Insignia Rank 3", "=ds=#s14#, #r3#" }, - { 17900, "INV_Jewelry_StormPikeTrinket_01", "=q2=Stormpike Insignia Rank 2", "=ds=#s14#, #r2#" }, - { 17691, "INV_Jewelry_StormPikeTrinket_01", "=q2=Stormpike Insignia Rank 1", "=ds=#s14#, #r1#" }, - }; - Frostwolf1 = { - { 0, "", "", "" }, - { 17909, "INV_Jewelry_FrostwolfTrinket_05", "=q4=Frostwolf Insignia Rank 6", "=ds=#s14#, #r5#" }, - { 17908, "INV_Jewelry_FrostwolfTrinket_04", "=q3=Frostwolf Insignia Rank 5", "=ds=#s14#, #r5#" }, - { 17907, "INV_Jewelry_FrostwolfTrinket_03", "=q3=Frostwolf Insignia Rank 4", "=ds=#s14#, #r4#" }, - { 17906, "INV_Jewelry_FrostwolfTrinket_02", "=q2=Frostwolf Insignia Rank 3", "=ds=#s14#, #r3#" }, - { 17905, "INV_Jewelry_FrostwolfTrinket_01", "=q2=Frostwolf Insignia Rank 2", "=ds=#s14#, #r2#" }, - { 17690, "INV_Jewelry_FrostwolfTrinket_01", "=q2=Frostwolf Insignia Rank 1", "=ds=#s14#, #r1#" }, - }; - WaterLords1 = { - { 0, "", "", "" }, - { 0, "Spell_Ice_Lament", "=q6=#r3#", "" }, - { 18399, "INV_Jewelry_Ring_28", "=q3=Ocean's Breeze", "=q1=#m4# =ds=#s13#" }, - { 18398, "INV_Jewelry_Ring_10", "=q3=Tidal Loop", "=q1=#m4# =ds=#s13#" }, - { 17333, "INV_Potion_76", "=q1=Aqual Quintessence", "=ds=#m33#" }, - { 0, "", "", "" }, - { 0, "Spell_Frost_FrostArmor", "=q6=#r4#", "" }, - { 22754, "INV_Potion_83", "=q1=Eternal Quintessence", "=ds=#m33#" }, - }; - Bloodsail1 = { - { 0, "", "", "" }, - { 0, "INV_Helmet_66", "=q6=#r1#", "" }, - { 22742, "INV_Shirt_08", "=q1=Bloodsail Shirt", "=ds=#s5#" }, - { 22743, "INV_Misc_Bandana_03", "=q1=Bloodsail Sash", "=ds=#s10#" }, - { 22745, "INV_Pants_Cloth_02", "=q1=Bloodsail Pants", "=ds=#s11#" }, - { 22744, "INV_Boots_05", "=q1=Bloodsail Boots", "=ds=#s12#" }, - { 0, "", "", "" }, - { 0, "INV_Helmet_66", "=q6=#r2#", "" }, - { 12185, "INV_Helmet_66", "=q2=Bloodsail Admiral's Hat", "=ds=#s1#, #a1#" }, + { 20013, "INV_Scroll_03", "=q1=Recipe: Living Action Potion", "=ds=#p1# (285)" }, + }; + Wintersaber1 = { + { 0, "", "", "" }, + { 0, "INV_Box_01", "=q6=#r5#", "" }, + { 13086, "Ability_Mount_PinkTiger", "=q4=Reins of the Winterspring Frostsaber", "=ds=#e7#" }, + }; + Stormpike1 = { + { 0, "", "", "" }, + { 17904, "INV_Jewelry_StormPikeTrinket_05", "=q4=Stormpike Insignia Rank 6", "=ds=#s14#, #r5#" }, + { 17903, "INV_Jewelry_StormPikeTrinket_04", "=q3=Stormpike Insignia Rank 5", "=ds=#s14#, #r5#" }, + { 17902, "INV_Jewelry_StormPikeTrinket_03", "=q3=Stormpike Insignia Rank 4", "=ds=#s14#, #r4#" }, + { 17901, "INV_Jewelry_StormPikeTrinket_02", "=q2=Stormpike Insignia Rank 3", "=ds=#s14#, #r3#" }, + { 17900, "INV_Jewelry_StormPikeTrinket_01", "=q2=Stormpike Insignia Rank 2", "=ds=#s14#, #r2#" }, + { 17691, "INV_Jewelry_StormPikeTrinket_01", "=q2=Stormpike Insignia Rank 1", "=ds=#s14#, #r1#" }, + }; + Frostwolf1 = { + { 0, "", "", "" }, + { 17909, "INV_Jewelry_FrostwolfTrinket_05", "=q4=Frostwolf Insignia Rank 6", "=ds=#s14#, #r5#" }, + { 17908, "INV_Jewelry_FrostwolfTrinket_04", "=q3=Frostwolf Insignia Rank 5", "=ds=#s14#, #r5#" }, + { 17907, "INV_Jewelry_FrostwolfTrinket_03", "=q3=Frostwolf Insignia Rank 4", "=ds=#s14#, #r4#" }, + { 17906, "INV_Jewelry_FrostwolfTrinket_02", "=q2=Frostwolf Insignia Rank 3", "=ds=#s14#, #r3#" }, + { 17905, "INV_Jewelry_FrostwolfTrinket_01", "=q2=Frostwolf Insignia Rank 2", "=ds=#s14#, #r2#" }, + { 17690, "INV_Jewelry_FrostwolfTrinket_01", "=q2=Frostwolf Insignia Rank 1", "=ds=#s14#, #r1#" }, + }; + WaterLords1 = { + { 0, "", "", "" }, + { 0, "Spell_Ice_Lament", "=q6=#r3#", "" }, + { 18399, "INV_Jewelry_Ring_28", "=q3=Ocean's Breeze", "=q1=#m4# =ds=#s13#" }, + { 18398, "INV_Jewelry_Ring_10", "=q3=Tidal Loop", "=q1=#m4# =ds=#s13#" }, + { 17333, "INV_Potion_76", "=q1=Aqual Quintessence", "=ds=#m33#" }, + { 0, "", "", "" }, + { 0, "Spell_Frost_FrostArmor", "=q6=#r4#", "" }, + { 22754, "INV_Potion_83", "=q1=Eternal Quintessence", "=ds=#m33#" }, + }; + Bloodsail1 = { + { 0, "", "", "" }, + { 0, "INV_Helmet_66", "=q6=#r1#", "" }, + { 22742, "INV_Shirt_08", "=q1=Bloodsail Shirt", "=ds=#s5#" }, + { 22743, "INV_Misc_Bandana_03", "=q1=Bloodsail Sash", "=ds=#s10#" }, + { 22745, "INV_Pants_Cloth_02", "=q1=Bloodsail Pants", "=ds=#s11#" }, + { 22744, "INV_Boots_05", "=q1=Bloodsail Boots", "=ds=#s12#" }, + { 0, "", "", "" }, + { 0, "INV_Helmet_66", "=q6=#r2#", "" }, + { 12185, "INV_Helmet_66", "=q2=Bloodsail Admiral's Hat", "=ds=#s1#, #a1#" }, { 0, "", "", "" }, { 0, "INV_Helmet_66", "=q6=#r4#", "" }, - { 83494, "", "=q2=Captain's Overcoat", "=ds=#s5#, #a2#" }, + { 83494, "inv_chest_leather_10", "=q3=Captain's Overcoat", "=ds=#s5#, #a2#" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, @@ -380,369 +385,401 @@ AtlasLoot_Data["AtlasLootRepItems"] = { { 83490, "INV_Helmet_66", "=q2=Pillager Captain's Hat", "=ds=#s1#, #a1#" }, { 83492, "INV_Helmet_66", "=q2=Raider Captain's Hat", "=ds=#s1#, #a3#" }, { 83491, "INV_Helmet_66", "=q2=Swashbuckler Captain's Hat", "=ds=#s1#, #a2#" }, - }; + }; Warderns1 = { { 0, "inv_misc_head_dragon_01", "=q6=#r2#", "" }, - { 61000, "", "=q1=Time-Worn Rune", "" }, + { 61000, "inv_misc_rune_08", "=q1=Time-Worn Rune", "" }, { 0, "", "", "" }, { 0, "inv_misc_head_dragon_01", "=q6=#r4#", "" }, - { 61001, "", "=q3=Claw of the Infinite", "=ds=#h1#, #w4#" }, - { 61013, "", "=q3=Gauntlets of Temporal Guidance", "=ds=#a3#, #s9#" }, - { 61002, "", "=q3=Robe of the Custodian", "=ds=#a1#, #s5#" }, - { 61004, "", "=q3=Sandswept Ring of Arcanum", "=ds=#s13#" }, - { 61003, "", "=q3=Timeskipper's Helm of Alacrity", "=ds=#a4#, #s1#" }, - { 51043, "", "=q2=Void-Linked Satchel", "=ds=#e10#" }, - { 50070, "", "=q1=Bronze Whelpling", "=ds=#e15#" }, - { 0, "", "", "" }, + { 61001, "inv_sword_34", "=q3=Claw of the Infinite", "=ds=#h1#, #w4#" }, + { 61013, "inv_gauntlets_10", "=q3=Gauntlets of Temporal Guidance", "=ds=#a3#, #s9#" }, + { 61002, "inv_chest_cloth_30", "=q3=Robe of the Custodian", "=ds=#a1#, #s5#" }, + { 61004, "inv_jewelry_ring_33", "=q3=Sandswept Ring of Arcanum", "=ds=#s13#" }, + { 61003, "inv_helmet_09", "=q3=Timeskipper's Helm of Alacrity", "=ds=#a4#, #s1#" }, + { 51043, "inv_misc_bag_enchantedrunecloth", "=q2=Void-Linked Satchel", "=ds=#e10#" }, + { 50070, "INV_Misc_Head_Dragon_01", "=q1=Bronze Whelpling", "=ds=#e15#" }, + { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "inv_misc_head_dragon_01", "=q6=#r5#", "" }, - { 61007, "", "=q4=Temporal Bronze Boots", "=ds=#a4#, #s12#" }, - { 61009, "", "=q4=Time-Shifting Wheel", "=ds=#h4#, #w8#" }, - { 61010, "", "=q4=Wing of the Time-Lord", "=ds=#s4#" }, - { 61006, "", "=q4=Blade of Infinite Mysteries", "=ds=#w10#, #h3#" }, + { 61007, "inv_boots_plate_03", "=q4=Temporal Bronze Boots", "=ds=#a4#, #s12#" }, + { 61009, "inv_shield_10", "=q4=Time-Shifting Wheel", "=ds=#h4#, #w8#" }, + { 61010, "inv_misc_cape_14", "=q4=Wing of the Time-Lord", "=ds=#s4#" }, + { 61006, "inv_sword_22", "=q4=Blade of Infinite Mysteries", "=ds=#w10#, #h3#" }, { 61011, "INV_Weapon_Rifle_09", "=q4=Flintlocke's Hand Cannon", "=ds=#w5#" }, - { 61012, "", "=q4=Shard of Eternity", "=ds=#s2#" }, - { 51252, "", "=q4=Bronze Drake", "=ds=#e7#" }, - { 80300, "", "=q1=Time Warden's Tabard", "=ds=#s7#" }, + { 61012, "inv_archaeology_70_highborne_inertleystonecharm", "=q4=Shard of Eternity", "=ds=#s2#" }, + { 51252, "inv_misc_head_dragon_01", "=q4=Bronze Drake", "=ds=#e7#" }, + { 80300, "inv_shirt_guildtabard_01", "=q1=Time Warden's Tabard", "=ds=#s7#" }, }; - Defilers = { - { 0, "", "", "" }, - { 0, "INV_Jewelry_Amulet_07", "=q6=#r5#", "" }, - { 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "=q1=#m4#: =ds=#s7#" }, - }; - GelkisClan1 = { - { 5748, "", "=q2=Centaur Longbow", "=ds=#w2#"}, + Defilers = { { 0, "", "", "" }, - { 0, "INV_Misc_Head_Centaur_01", "=q6=#r2#", "" }, - { 6773, "INV_Chest_Chain_07", "=q2=Gelkis Marauder Chain", "=q1=#m4#: =ds=#s5#, #a3#" }, - { 6774, "INV_Wand_03", "=q2=Uthek's Finger", "=q1=#m4#: =ds=#s15#" }, + { 0, "INV_Jewelry_Amulet_07", "=q6=#r5#", "" }, + { 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "=q1=#m4#: =ds=#s7#" }, + }; + GelkisClan1 = { + { 5748, "inv_weapon_bow_07", "=q2=Centaur Longbow", "=ds=#w2#"}, + { 0, "", "", "" }, + { 0, "INV_Misc_Head_Centaur_01", "=q6=#r2#", "" }, + { 6773, "INV_Chest_Chain_07", "=q2=Gelkis Marauder Chain", "=q1=#m4#: =ds=#s5#, #a3#" }, + { 6774, "INV_Wand_03", "=q2=Uthek's Finger", "=q1=#m4#: =ds=#s15#" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "INV_Misc_Head_Centaur_01", "=q6=#r3#", "" }, - { 60899, "", "=q2=Grips of the Unified Storm", "=ds=#s9#, #a1#"}, - { 60900, "", "=q2=Warleader Sash", "=ds=#s8#, #a2#"}, - { 60901, "", "=q2=Centaur Skullcap", "=ds=#s1#, #a3#"}, + { 60899, "inv_gauntlets_21", "=q2=Grips of the Unified Storm", "=ds=#s9#, #a1#"}, + { 60900, "inv_belt_12", "=q2=Warleader Sash", "=ds=#s8#, #a2#"}, + { 60901, "inv_helmet_36", "=q2=Centaur Skullcap", "=ds=#s1#, #a3#"}, { 0, "", "", "" }, - { 60854, "", "=q2=Blood of the First Khan", "=q1=#m4#"}, - { 60860, "", "=q2=Triskelion of Roving Elements", "=q1=#m4#"}, + { 60854, "inv_potion_50", "=q2=Blood of the First Khan", "=q1=#m4#"}, + { 60860, "spell_frost_windwalkon", "=q2=Triskelion of Roving Elements", "=q1=#m4#"}, { 60859, "INV_Misc_Gem_CystalCut_01", "=q2=Theradras' Shed Tear", "=q1=#m4#"}, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "INV_Misc_Head_Centaur_01", "=q6=#r4#", "" }, - { 60902, "", "=q3=Gelkis Earthbinder", "=ds=#h3#, #w6#"}, - { 60903, "", "=q3=Ceremonial Centaur Ring", "=ds=#s13#"}, - { 60904, "", "=q3=Maraudine Oath Pauldrons", "=ds=#s1#, #a4#"}, + { 60902, "inv_mace_11", "=q3=Gelkis Earthbinder", "=ds=#h3#, #w6#"}, + { 60903, "inv_belt_27", "=q3=Ceremonial Centaur Ring", "=ds=#s13#"}, + { 60904, "inv_shoulder_28", "=q3=Maraudine Oath Pauldrons", "=ds=#s1#, #a4#"}, { 0, "", "", "" }, { 0, "INV_Misc_Head_Centaur_01", "=q6=#r5#", "" }, - { 60905, "", "=q4=Batu'kar of the Second Khan", "=ds=#w9#"}, - { 60964, "", "=q3=Plans: Mantle of Centaur Authority", "=ds=#p2# (300)"}, - { 60965, "", "=q3=Pattern: Windbinder Gloves", "=ds=#p8# (300)"}, - { 60966, "", "=q3=Formula: Enchant Bracer - Spell Power", "=ds=#p4# (300)"}, + { 60905, "inv_wand_07", "=q4=Batu'kar of the Second Khan", "=ds=#w9#"}, + { 60964, "inv_scroll_04", "=q3=Plans: Mantle of Centaur Authority", "=ds=#p2# (300)"}, + { 60908, "inv_shoulder_13", "=q3=Mantle of Centaur Authority", "=ds=#s3#, #a4#"}, + { 60965, "inv_scroll_05", "=q3=Pattern: Windbinder Gloves", "=ds=#p8# (300)"}, + { 60907, "inv_gauntlets_12", "=q3=Windbinder Gloves", "=ds=#s9#, #a1#"}, + { 60966, "inv_misc_note_01", "=q3=Formula: Enchant Bracer - Spell Power", "=ds=#p4# (300)"}, - }; - LeagueofArathor = { - { 0, "", "", "" }, - { 0, "INV_Jewelry_Amulet_07", "=q6=#r5#", "" }, - { 20132, "INV_Shirt_GuildTabard_01", "=q1=Arathor Battle Tabard", "=q1=#m4#: =ds=#s7#" }, - }; - MagramClan1 = { - { 5748, "", "=q2=Centaur Longbow", "=ds=#w2#"}, + }; + LeagueofArathor = { { 0, "", "", "" }, - { 0, "INV_Misc_Head_Centaur_01", "=q6=#r2#", "" }, - { 6789, "INV_Misc_Cape_12", "=q2=Ceremonial Centaur Blanket", "=q1=#m4#: =ds=#s4#" }, - { 6788, "INV_Belt_11", "=q2=Magram Hunter's Belt", "=q1=#m4#: =ds=#s10#, #a2#" }, + { 0, "INV_Jewelry_Amulet_07", "=q6=#r5#", "" }, + { 20132, "INV_Shirt_GuildTabard_01", "=q1=Arathor Battle Tabard", "=q1=#m4#: =ds=#s7#" }, + }; + MagramClan1 = { + { 5748, "inv_weapon_bow_07", "=q2=Centaur Longbow", "=ds=#w2#"}, + { 0, "", "", "" }, + { 0, "INV_Misc_Head_Centaur_01", "=q6=#r2#", "" }, + { 6789, "INV_Misc_Cape_12", "=q2=Ceremonial Centaur Blanket", "=q1=#m4#: =ds=#s4#" }, + { 6788, "INV_Belt_11", "=q2=Magram Hunter's Belt", "=q1=#m4#: =ds=#s10#, #a2#" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "INV_Misc_Head_Centaur_01", "=q6=#r3#", "" }, - { 60879, "", "=q2=Centaur Stompers", "=ds=#s12#, #a2#"}, - { 60880, "", "=q2=Packrunner Harness", "=ds=#s5#, #a3#"}, - { 60881, "", "=q2=Windwatcher Sash", "=ds=#s10#, #a1#"}, + { 60879, "inv_boots_07", "=q2=Centaur Stompers", "=ds=#s12#, #a2#"}, + { 60880, "inv_chest_leather_07", "=q2=Packrunner Harness", "=ds=#s5#, #a3#"}, + { 60881, "inv_belt_01", "=q2=Windwatcher Sash", "=ds=#s10#, #a1#"}, { 0, "", "", "" }, - { 60853, "", "=q2=Dyad of Twitching Elven Ears", "=q1=#m4#"}, - { 60854, "", "=q2=Blood of the First Khan", "=q1=#m4#"}, - { 60855, "", "=q2=Ritual Dust of Satiation", "=q1=#m4#"}, + { 60853, "inv_misc_ear_nightelf_01", "=q2=Dyad of Twitching Elven Ears", "=q1=#m4#"}, + { 60854, "inv_potion_50", "=q2=Blood of the First Khan", "=q1=#m4#"}, + { 60855, "inv_misc_powder_black", "=q2=Ritual Dust of Satiation", "=q1=#m4#"}, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "INV_Misc_Head_Centaur_01", "=q6=#r4#", "" }, - { 60884, "", "=q3=Ceremonial Magram Dagger", "=ds=#h1#, #w4#"}, - { 60883, "", "=q3=Gauntlets of the Khan", "=ds=#s9#, #a4#"}, - { 60882, "", "=q3=Magram Windstriker", "=ds=#w2#"}, + { 60884, "inv_weapon_shortblade_15", "=q3=Ceremonial Magram Dagger", "=ds=#h1#, #w4#"}, + { 60883, "inv_gauntlets_30", "=q3=Gauntlets of the Khan", "=ds=#s9#, #a4#"}, + { 60882, "inv_weapon_bow_01", "=q3=Magram Windstriker", "=ds=#w2#"}, { 0, "", "", "" }, { 0, "INV_Misc_Head_Centaur_01", "=q6=#r5#", "" }, - { 60885, "", "=q4=Dar'kar of the Third Khan", "=ds=#h2#, #w1#"}, - { 60968, "", "=q3=Pattern: Centaur Battle Harness", "=ds=#p7# (300)"}, - { 60967, "", "=q3=Pattern: Dustguider Sash", "=ds=#p8# (300)"}, - { 60969, "", "=q3=Formula: Enchant Bracer - Greater Agility", "=ds=#p4# (300)"}, + { 60885, "inv_axe_04", "=q4=Dar'kar of the Third Khan", "=ds=#h2#, #w1#"}, + { 60968, "inv_scroll_04", "=q3=Pattern: Centaur Battle Harness", "=ds=#p7# (300)"}, + { 60910, "inv_chest_leather_04", "=q3=Centaur Battle Harness", "=ds=#s5#, #a2#"}, + { 60967, "inv_scroll_06", "=q3=Pattern: Dustguider Sash", "=ds=#p8# (300)"}, + { 60909, "inv_belt_01", "=q3=Dustguider Sash", "=ds=#s10#, #a1#"}, + { 60969, "inv_misc_note_01", "=q3=Formula: Enchant Bracer - Greater Agility", "=ds=#p4# (300)"}, - }; - Helf = { - { 0, "INV_Staff_13", "=q2=Cloaks", "" }, - { 80505, "", "=q2=", "" }, - { 80506, "", "=q2=", "" }, - { 80527, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Cloth Armor", "" }, - { 80512, "", "=q2=", "" }, - { 80513, "", "=q2=", "" }, - { 80514, "", "=q2=", "" }, - { 80515, "", "=q2=", "" }, - { 80516, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Leather Armor", "" }, - { 80517, "", "=q2=", "" }, - { 80518, "", "=q2=", "" }, - { 80519, "", "=q2=", "" }, - { 80520, "", "=q2=", "" }, - { 80521, "", "=q2=", "" }, - }; - Helf2 = { - { 0, "INV_Staff_13", "=q2=Mail Armor", "" }, - { 80522, "", "=q2=", "" }, - { 80523, "", "=q2=", "" }, - { 80524, "", "=q2=", "" }, - { 80525, "", "=q2=", "" }, - { 80526, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Plate Armor", "" }, - { 80507, "", "=q2=", "" }, - { 80508, "", "=q2=", "" }, - { 80509, "", "=q2=", "" }, - { 80510, "", "=q2=", "" }, - { 80511, "", "=q2=", "" }, - }; - - Helf3 = { - { 0, "INV_Staff_13", "=q2=Weapons", "" }, - { 80502, "", "=q1=", "" }, - { 80504, "", "=q1=", "" }, - { 80501, "", "=q1=", "" }, - { 80500, "", "=q1=", "" }, - { 80503, "", "=q1=", "" }, + }; + Helf = { + { 0, "INV_Staff_13", "=q2=Cloth Armor", "" }, + { 80512, "INV_Chest_Cloth_43", "=q3=Quel'dorei Magister's Robe", "=ds=#s5#, #a1#" }, + { 80513, "inv_boots_02", "=q3=Quel'dorei Magister's Boots", "=ds=#s12#, #a1#" }, + { 80514, "INV_Belt_06", "=q3=Quel'dorei Magister's Belt", "=ds=#s10#, #a1#" }, + { 80515, "inv_gauntlets_06", "=q3=Quel'dorei Magister's Gloves", "=ds=#s9#, #a1#" }, + { 80516, "Inv_pants_cloth_02", "=q3=Quel'dorei Magister's Leggings", "=ds=#s11#, #a1#" }, { 0, "", "", "" }, - { 80529, "", "=q2=", "" }, - { 80530, "", "=q2=", "" }, - { 80531, "", "=q2=", "" }, - { 80532, "", "=q2=", "" }, - { 80533, "", "=q2=", "" }, - { 80534, "", "=q2=", "" }, - { 80535, "", "=q2=", "" }, - { 80536, "", "=q2=", "" }, - { 80537, "", "=q2=", "" }, - { 80538, "", "=q2=", "" }, - { 80539, "", "=q2=", "" }, - { 80540, "", "=q2=", "" }, - { 80541, "", "=q2=", "" }, - { 80542, "", "=q2=", "" }, - { 80543, "", "=q2=", "" }, - { 80544, "", "=q2=", "" }, - { 80545, "", "=q2=", "" }, - { 80546, "", "=q2=", "" }, - { 80547, "", "=q2=", "" }, - }; - - Revantusk = { - { 0, "INV_Misc_Head_Troll_01", "=q2=Cloaks", "" }, - { 80605, "", "=q2=", "" }, - { 80606, "", "=q2=", "" }, - { 80627, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Misc_Head_Troll_01", "=q2=Cloth Armor", "" }, - { 80612, "", "=q2=", "" }, - { 80613, "", "=q2=", "" }, - { 80614, "", "=q2=", "" }, - { 80615, "", "=q2=", "" }, - { 80616, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Misc_Head_Troll_01", "=q2=Leather Armor", "" }, - { 80617, "", "=q2=", "" }, - { 80618, "", "=q2=", "" }, - { 80619, "", "=q2=", "" }, - { 80620, "", "=q2=", "" }, - { 80621, "", "=q2=", "" }, - }; - Revantusk2 = { - { 0, "INV_Misc_Head_Troll_01", "=q2=Mail Armor", "" }, - { 80622, "", "=q2=", "" }, - { 80623, "", "=q2=", "" }, - { 80624, "", "=q2=", "" }, - { 80625, "", "=q2=", "" }, - { 80626, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "", "", "" }, - { 0, "INV_Misc_Head_Troll_01", "=q2=Plate Armor", "" }, - { 80607, "", "=q2=", "" }, - { 80608, "", "=q2=", "" }, - { 80609, "", "=q2=", "" }, - { 80610, "", "=q2=", "" }, - { 80611, "", "=q2=", "" }, - }; - Revantusk3 = { - { 0, "INV_Misc_Head_Troll_01", "=q2=Weapons", "" }, - { 80602, "", "=q1=", "" }, - { 80601, "", "=q1=", "" }, - { 80600, "", "=q1=", "" }, - { 80603, "", "=q1=", "" }, - { 80604, "", "=q1=", "" }, + { 0, "INV_Staff_13", "=q2=Leather Armor", "" }, + { 80517, "inv_chest_leather_05", "=q3=Quel'dorei Assassin's Tunic", "=ds=#s5#, #a2#" }, + { 80518, "inv_boots_05", "=q3=Quel'dorei Assassin's Boots", "=ds=#s12#, #a2#" }, + { 80519, "inv_belt_26", "=q3=Quel'dorei Assassin's Belt", "=ds=#s10#, #a2#" }, + { 80520, "inv_gauntlets_15", "=q3=Quel'dorei Assassin's Vices", "=ds=#s9#, #a2#" }, + { 80521, "INV_Pants_02", "=q3=Quel'dorei Assassin's Leggings", "=ds=#s11#, #a2#" }, { 0, "", "", "" }, - { 80629, "", "=q2=", "" }, - { 80630, "", "=q2=", "" }, - { 80631, "", "=q2=", "" }, - { 80632, "", "=q2=", "" }, - { 80633, "", "=q2=", "" }, - { 80634, "", "=q2=", "" }, - { 80635, "", "=q2=", "" }, - { 80636, "", "=q2=", "" }, - { 80637, "", "=q2=", "" }, - { 80638, "", "=q2=", "" }, - { 80639, "", "=q2=", "" }, - { 80640, "", "=q2=", "" }, - { 80641, "", "=q2=", "" }, - { 80642, "", "=q2=", "" }, - { 80643, "", "=q2=", "" }, - { 80644, "", "=q2=", "" }, - { 80645, "", "=q2=", "" }, - { 80646, "", "=q2=", "" }, - --{ 80647, "", "=q2=", "" }, - }; - Ironforge = { + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Mail Armor", "" }, + { 80522, "INV_Chest_Leather_08", "=q3=Quel'dorei Ranger's Hauberk", "=ds=#s5#, #a3#" }, + { 80523, "INV_Boots_05", "=q3=Quel'dorei Ranger's Boots", "=ds=#s12#, #a3#" }, + { 80524, "INV_Belt_26", "=q3=Quel'dorei Ranger's Belt", "=ds=#s10#, #a3#" }, + { 80525, "Inv_gauntlets_25", "=q3=Quel'dorei Ranger's Gauntlets", "=ds=#s9#, #a3#" }, + { 80526, "INV_Pants_12", "=q3=Quel'dorei Ranger's Legguards", "=ds=#s11#, #a3#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Plate Armor", "" }, + { 80507, "inv_chest_chain_13", "=q3=Quel'dorei Guardian's Chestplate", "=ds=#s5#, #a4#" }, + { 80508, "Inv_boots_chain_06", "=q3=Quel'dorei Guardian's Boots", "=ds=#s12#, #a4#" }, + { 80509, "inv_belt_11", "=q3=Quel'dorei Guardian's Girdle", "=ds=#s10#, #a4#" }, + { 80510, "Inv_gauntlets_10", "=q3=Quel'dorei Guardian's Handguards", "=ds=#s9#, #a4#" }, + { 80511, "inv_pants_03", "=q3=Quel'dorei Guardian's Legplates", "=ds=#s11#, #a4#" }, + }; + Helf2 = { + { 0, "INV_Staff_13", "=q3=Cloaks", "" }, + { 80505, "inv_misc_cape_10", "=q3=Quel'dorei Hero's Cape", "=ds=#s4#" }, + { 80506, "inv_misc_cape_16", "=q3=Quel'dorei Hero's Cloak", "=ds=#s4#" }, + { 80527, "inv_misc_cape_16", "=q3=Quel'dorei Hero's Drape", "=ds=#s4#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Weapons", "" }, + { 80502, "Inv_staff_38", "=q2=Curved Ceremonial Staff", "=ds=#w9#" }, + { 80504, "INV_Staff_25", "=q2=Hardened Root Staff", "=ds=#w9#" }, + { 80501, "INV_Sword_04", "=q2=Sturdy Broadsword", "=ds=#h1#, #w10#" }, + { 80500, "INV_Mace_30", "=q2=Tempered Argus Mace", "=ds=#h1#, #w6#" }, + { 80503, "INV_Weapon_Bow_02", "=q2=Well-balanced Short Bow", "=ds=#w2#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 80317, "inv_misc_tournaments_tabard_bloodelf", "=q1=Quel'Thalas Tabard", "=ds=#s7#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q1=Pets", "" }, + { 80003, "inv_misc_foxkit", "=q1=Black-Footed Fox", "=ds=#e15#" }, + { 80007, "INV_Staff_08", "=q1=Enchanted Broom", "=ds=#e15#" }, + { 80000, "INV_Box_PetCarrier_01", "=q1=Golden Dragonhawk Hatchling", "=ds=#e15#" }, + { 80001, "INV_Misc_Herb_14", "=q1=Thalassian Tender", "=ds=#e15#" }, + }; + + Helf3 = { + { 0, "", "", "" }, + { 80529, "INV_Weapon_ShortBlade_15", "=q3=Quel'dorei Magister's Channeling Blade", "=ds=#h3#, #w4#" }, + { 80539, "INV_Offhand_Blood_02", "=q3=Quel'dorei Magister's Focus", "=ds=#s15#" }, + { 80541, "Inv_staff_38", "=q3=Quel'dorei Magister's Staff", "=ds=#h2#, #w9#" }, + { 80544, "INV_Staff_06", "=q3=Quel'dorei Magister's Spellflinger", "=ds=#w12#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 80532, "INV_Mace_02", "=q3=Quel'dorei Cleric's Hammer", "=ds=#h3#, #w6#" }, + { 80540, "INV_Misc_Book_09", "=q3=Quel'dorei Cleric's Tome", "=ds=#s15#" }, + { 80542, "INV_Staff_39", "=q3=Quel'dorei Cleric's Staff", "=ds=#h2#, #w9#" }, + { 80545, "INV_WAND_07", "=q2=Quel'dorei Cleric's Wand", "=ds=#w12#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 80546, "INV_Weapon_Bow_17", "=q3=Quel'dorei Ranger's Longbow", "=ds=#w2#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 80530, "INV_Hammer_02", "=q3=Quel'dorei Guardian's Mace", "=ds=#h1#, #w6#" }, + { 80531, "INV_Mace_30", "=q3=Quel'dorei Guardian's Warhammer", "=ds=#h2#, #w6#" }, + { 0, "", "", "" }, + { 80533, "INV_Axe_30", "=q3=Quel'dorei Guardian's Handaxe", "=ds=#h1#, #w1#" }, + { 80547, "INV_Axe_04", "=q3=Quel'dorei Guardian's Battle Axe", "=ds=#h2#, #w1#" }, + { 0, "", "", "" }, + { 80535, "INV_Sword_04", "=q3=Quel'dorei Defender's Deflector", "=ds=#h3#, #w10#" }, + { 80536, "INV_Sword_BloodElf_03", "=q3=Quel'dorei Assassin's Sword", "=ds=#h1#, #w10#" }, + { 80534, "INV_Spear_08", "=q3=Quel'dorei Guardian's Battle Glaive", "=ds=#h2#, #w10#" }, + { 80537, "INV_Sword_2H_Blood_C_01", "=q3=Quel'dorei Guardian's Twinblade", "=ds=#h2#, #w10#" }, + { 0, "", "", "" }, + { 80538, "INV_Spear_10", "=q3=Quel'dorei Ranger's Spear", "=ds=#h2#, #w7#" }, + { 80543, "INV_Shield_36", "=q3=Quel'dorei Defender's Bulwark", "=ds=#w8#, #h4#" }, + }; + + Revantusk = { + { 0, "INV_Misc_Head_Troll_01", "=q2=Cloth Armor", "" }, + { 80612, "inv_chest_cloth_20", "=q3=Revantusk Mystic's Robe", "=ds=#s5#, #a1#" }, + { 80613, "INV_Boots_05", "=q3=Revantusk Mystic's Boots", "=ds=#s12#, #a1#" }, + { 80614, "INV_Belt_04", "=q3=Revantusk Mystic's Belt", "=ds=#s10#, #a1#" }, + { 80615, "INV_Gauntlets_19", "=q3=Revantusk Mystic's Gloves", "=ds=#s9#, #a1#" }, + { 80616, "INV_Pants_13", "=q3=Revantusk Mystic's Leggings", "=ds=#s11#, #a1#" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Head_Troll_01", "=q2=Leather Armor", "" }, + { 80617, "Inv_chest_chain_16", "=q3=Revantusk Stalker's Tunic", "=ds=#s5#, #a2#" }, + { 80618, "Inv_boots_chain_01", "=q3=Revantusk Stalker's Boots", "=ds=#s12#, #a2#" }, + { 80619, "Inv_belt_23", "=q3=Revantusk Stalker's Belt", "=ds=#s10#, #a2#" }, + { 80620, "Inv_gauntlets_25", "=q3=Revantusk Stalker's Vices", "=ds=#s9#, #a2#" }, + { 80621, "Inv_pants_mail_04", "=q3=Revantusk Stalker's Leggings", "=ds=#s11#, #a2#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Head_Troll_01", "=q2=Mail Armor", "" }, + { 80622, "inv_chest_leather_07", "=q3=Revantusk Shadow Hunter's Hauberk", "=ds=#s5#, #a3#" }, + { 80623, "inv_boots_02", "=q3=Revantusk Shadow Hunter's Boots", "=ds=#s12#, #a3#" }, + { 80624, "Inv_belt_23", "=q3=Revantusk Shadow Hunter's Belt", "=ds=#s10#, #a3#" }, + { 80625, "INV_Gauntlets_19", "=q3=Revantusk Shadow Hunter's Gauntlets", "=ds=#s9#, #a3#" }, + { 80626, "inv_pants_03", "=q3=Revantusk Shadow Hunter's Legguards", "=ds=#s11#, #a3#" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Head_Troll_01", "=q2=Plate Armor", "" }, + { 80607, "inv_chest_chain_17", "=q3=Revantusk Watcher's Chestplate", "=ds=#s5#, #a4#" }, + { 80608, "Inv_boots_chain_03", "=q3=Revantusk Watcher's Boots", "=ds=#s12#, #a4#" }, + { 80609, "Inv_belt_23", "=q3=Revantusk Watcher's Girdle", "=ds=#s10#, #a4#" }, + { 80610, "Inv_gauntlets_21", "=q3=Revantusk Watcher's Handguards", "=ds=#s9#, #a4#" }, + { 80611, "Inv_pants_leather_07", "=q3=Revantusk Watcher's Legplates", "=ds=#s11#, #a4#" }, + }; + Revantusk2 = { + { 0, "INV_Misc_Head_Troll_01", "=q2=Cloaks", "" }, + { 80605, "INV_Misc_Cape_15", "=q3=Revantusk Hero's Cape", "=ds=#s4#, #a1#" }, + { 80606, "INV_Misc_Cape_18", "=q3=Revantusk Hero's Cloak", "=ds=#s4#, #a1#" }, + { 80627, "INV_Misc_Cape_17", "=q3=Revantusk Hero's Drape", "=ds=#s4#, #a1#" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Head_Troll_01", "=q2=Weapons", "" }, + { 80602, "INV_Staff_Goldfeathered_01", "=q2=Crude Channeling Staff", "=ds=#h2#, #w9#" }, + { 80601, "Inv_sword_33", "=q2=Flesh Cutter", "=ds=#h1#, #w10#" }, + { 80600, "INV_Axe_01", "=q2=Rockslicer", "=ds=#h1#, #w1#" }, + { 80603, "INV_Weapon_Bow_02", "=q2=Sturdy Short Bow", "=ds=#w2#" }, + { 80604, "INV_Staff_25", "=q2=Withered Root Staff", "=ds=#h2#, #w9#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 81098, "inv_misc_tournaments_tabard_troll", "=q1=Revantusk Tabard", "=ds=#s7#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Head_Troll_01", "=q1=Pets", "" }, + { 80878, "INV_Feather_14", "=q1=Amani Eagle", "=ds=#e15#" }, + { 0, "", "", "" }, + { 0, "INV_Misc_Head_Troll_01", "=q1=Mounts", "" }, + { 81226, "Ability_Hunter_Pet_Bear", "=q4=Armored Brown Bear", "=ds=#e7#" }, + { 80433, "Ability_Druid_DemoralizingRoar", "=q4=Black Bear", "=ds=#e7#" }, + { 80438, "Ability_Druid_DemoralizingRoar", "=q4=Brown Bear", "=ds=#e7#" }, + }; + Revantusk3 = { + { 0, "", "", "" }, + { 80629, "INV_Misc_MonsterFang_01", "=q3=Revantusk Mystic's Chanting Blade", "=ds=#h3#, #w4#" }, + { 80639, "INV_Staff_13", "=q3=Revantusk Mystic's Hex Skull", "=ds=#s15#" }, + { 80641, "INV_Misc_Bone_ElfSkull_01", "=q3=Revantusk Mystic's Staff", "=ds=#h2#, #w9#" }, + { 80644, "INV_Wand_01", "=q3=Revantusk Mystic's Mojobender", "=ds=#w12#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 80632, "INV_Misc_Bone_ElfSkull_01", "=q3=Revantusk Mender's Scepter", "=ds=#h3#, #w6#" }, + { 80640, "INV_Misc_Bone_01", "=q3=Revantusk Mender's Mojo", "=ds=#s15#" }, + { 80642, "INV_Staff_Goldfeathered_01", "=q3=Revantusk Mender's Cane", "=ds=#h2#, #w9#" }, + { 80645, "INV_Wand_01", "=q3=Revantusk Mender's Wand", "=ds=#w12#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 80646, "INV_Weapon_Bow_08", "=q3=Revantusk Shadow Hunter's Longbow", "=ds=#w2#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 80630, "INV_Mace_01", "=q3=Revantusk Watcher's Mace", "=ds=#h1#, #w6#" }, + { 80631, "INV_Hammer_09", "=q3=Revantusk Watcher's Maul", "=ds=#h2#, #w6#" }, + { 0, "", "", "" }, + { 80633, "INV_Axe_01", "=q3=Revantusk Watcher's Slicer", "=ds=#h1#, #w1#" }, + { 80635, "INV_Axe_18", "=q3=Revantusk Defender's Deflector", "=ds=#h3#, #w1#" }, + { 80634, "INV_Axe_04", "=q3=Revantusk Watcher's Carver", "=ds=#h2#, #w1#" }, + { 0, "", "", "" }, + { 80636, "INV_Sword_18", "=q3=Revantusk Stalker's Blade", "=ds=#h1#, #w10#" }, + { 80637, "INV_Sword_02", "=q3=Revantusk Watcher's Warblade", "=ds=#h2#, #w10#" }, + { 0, "", "", "" }, + { 80638, "INV_Spear_02", "=q3=Revantusk Shadow Hunter's Striker", "=ds=#w7#" }, + { 80643, "INV_Shield_16", "=q3=Revantusk Defender's Bulwark", "=ds=#w8#, #h4#" }, + }; + Ironforge = { { 0, "inv_drink_08", "=q6=#r3#", "" }, - { 81214, "", "=q2=", "" }, - { 81211, "", "=q2=", "" }, - { 81212, "", "=q2=", "" }, - { 81215, "", "=q2=", "" }, - { 81213, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "inv_drink_08", "=q6=#r5#", "" }, - { 80303, "", "=q2=", "" }, - { 81233, "", "=q2=", "" }, - }; - Darnassus = { - { 0, "INV_Staff_13", "=q2=Honored", "" }, - { 60746, "", "=q2=", "" }, - { 60747, "", "=q2=", "" }, - { 60748, "", "=q2=", "" }, - { 60749, "", "=q2=", "" }, - { 60750, "", "=q2=", "" }, - { 60751, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Revered", "" }, - { 60752, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Exalted", "" }, - { 80305, "", "=q2=", "" }, - }; - Stormwind = { - { 0, "INV_Staff_13", "=q2=Exalted", "" }, - { 80320, "", "=q2=", "" }, - }; - GnomereganExiles = { - { 0, "INV_Staff_13", "=q2=Exalted", "" }, - { 81192, "", "=q2=", "" }, - { 81193, "", "=q2=", "" }, - { 81194, "", "=q2=", "" }, - { 81195, "", "=q2=", "" }, - { 80306, "", "=q2=", "" }, - }; + { 81214, "INV_Belt_27", "=q2=Girdle of Anvilmar", "=ds=#s10#, #a2#" }, + { 81211, "inv_boots_02", "=q2=Boots of Anvilmar", "=ds=#s12#, #a2#" }, + { 81212, "inv_chest_plate03", "=q2=Tunic of Anvilmar", "=ds=#s5#, #a2#" }, + { 81215, "INV_Gauntlets_25", "=q2=Armguards of Anvilmar", "=ds=#s9#, #a2#" }, + { 81213, "inv_pants_12", "=q2=Pants of Anvilmar", "=ds=#s11#, #a2#" }, + { 0, "", "", "" }, + { 0, "inv_drink_08", "=q6=#r5#", "" }, + { 80303, "inv_misc_tournaments_tabard_dwarf", "=q1=Ironforge Tabard", "=ds=#s7#" }, + { 81233, "Ability_Mount_MountainRam", "=q4=Armored Ironforge Ram", "=ds=#e7#" }, + }; + Darnassus = { + { 0, "INV_Staff_13", "=q2=Honored", "" }, + { 60746, "inv_chest_plate09", "=q2=Sentinel's Breastplate", "=ds=#s5#, #a3#" }, + { 60747, "inv_boots_chain_08", "=q2=Sentinel's Boots", "=ds=#s12#, #a3#" }, + { 60748, "inv_helmet_19", "=q2=Sentinel's Crown", "=ds=#s1#, #a3#" }, + { 60749, "inv_pants_mail_11", "=q2=Sentinel's Leggings", "=ds=#s11#, #a3#" }, + { 60750, "inv_gauntlets_06", "=q2=Sentinel's Gauntlets", "=ds=#s9#, #a3#" }, + { 60751, "INV_Shoulder_13", "=q2=Sentinel's Pauldrons", "=ds=#s3#, #a3#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Revered", "" }, + { 60752, "INV_Spear_08", "=q3=Sentinel's Glaive", "=ds=#h1#, #w10#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Exalted", "" }, + { 80305, "inv_misc_tournaments_tabard_nightelf", "=q1=Darnassus Tabard", "=ds=#s7#" }, + }; + Stormwind = { + { 0, "INV_Staff_13", "=q2=Exalted", "" }, + { 80320, "INV_Shirt_GuildTabard_01", "=q1=Stormwind Tabard", "=ds=#s7#" }, + }; + GnomereganExiles = { + { 0, "INV_Staff_13", "=q2=Exalted", "" }, + { 81192, "INV_Misc_Gear_01", "=q4=Black Scrapforged Mechaspider", "=ds=#e7#" }, + { 81193, "INV_Misc_Gear_01", "=q4=Blue Scrapforged Mechaspider", "=ds=#e7#" }, + { 81194, "INV_Misc_Gear_01", "=q4=Green Scrapforged Mechaspider", "=ds=#e7#" }, + { 81195, "INV_Misc_Gear_01", "=q4=Red Scrapforged Mechaspider", "=ds=#e7#" }, + { 80306, "inv_misc_tournaments_tabard_gnome", "=q1=Gnomeregan Tabard", "=ds=#s7#" }, + }; DarkspearTrolls = { { 0, "inv_misc_head_troll_01", "=q6=#r4#", "" }, - { 80806, "", "=q3=", "" }, - { 80785, "", "=q3=", "" }, - { 80797, "", "=q3=", "" }, + { 80806, "INV_Banner_01", "=q3=Healing Ward", "=ds=#s14#" }, + { 80785, "INV_Potion_07", "=q3=Bottle of Good Mojo", "=ds=#s15#" }, + { 80797, "INV_Jewelry_Necklace_02", "=q3=Pendant of Troll Regeneration", "=ds=#s2#" }, { 0, "", "", "" }, { 0, "inv_misc_head_troll_01", "=q6=#r5#", "" }, - { 83064, "", "=q3=", "" }, - { 81183, "", "=q1=", "" }, - { 80304, "", "=q1=", "" }, - { 81182, "", "=q4=", "" }, + { 83064, "spell_nature_agitatingtotem", "=q3=Hexed Voodoo Pads", "=ds=#s3#, #a1#" }, + { 81183, "Ability_Hunter_Pet_WindSerpent", "=q1=Sunscale Hatchling", "=ds=#e15#" }, + { 80304, "inv_misc_tournaments_tabard_troll", "=q1=Darkspear Tribe Tabard", "=ds=#s7#" }, + { 81182, "Ability_Mount_Raptor", "=q4=Armored Darkspear Raptor", "=ds=#e7#" }, }, - DurotarLaborUnion = { - { 0, "INV_Staff_13", "=q2=Friendly", "" }, - { 50068, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Revered", "" }, - { 81196, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Exalted", "" }, - { 81190, "", "=q2=", "" }, - { 81191, "", "=q2=", "" }, - { 81089, "", "=q2=", "" }, - }; - Undercity = { + DurotarLaborUnion = { + { 0, "INV_Staff_13", "=q2=Friendly", "" }, + { 50068, "Spell_Nature_GuardianWard", "=q1=Green Water Snake", "=ds=#e15#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Revered", "" }, + { 81196, "INV_Scroll_06", "=q3=Schematic: Goblin Radio", "=ds=#p5# #m14#" }, + { 10585, "INV_Gizmo_GoblinBoomBox_01", "=q3=Goblin Radio KABOOM-Box X23B76", "=ds=#e34#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Exalted", "" }, + { 81190, "INV_Misc_Key_06", "=q4=Red Shredder X-0524A", "=ds=#e7#, Goblin Only" }, + { 81191, "INV_Misc_Key_05", "=q4=Green Shredder X-0524B", "=ds=#e7#, Goblin Only" }, + { 81089, "inv_shirt_guildtabard_01", "=q1=Durotar Labor Union Tabard", "=ds=#s7#" }, + }; + Undercity = { { 0, "inv_misc_head_undead_02", "=q6=#r5#", "" }, - { 81244, "", "=q2=", "" }, - { 81245, "", "=q2=", "" }, - { 81246, "", "=q2=", "" }, - { 81247, "", "=q2=", "" }, - { 80309, "", "=q2=", "" }, - }; - Orgrimmar = { - { 0, "INV_Staff_13", "=q2=Honored", "" }, - { 81216, "", "=q2=", "" }, - { 81217, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Exalted", "" }, - { 81241, "", "=q2=", "" }, - { 80307, "", "=q2=", "" }, - }; - ThunderBluff = { - { 0, "INV_Staff_13", "=q2=Revered", "" }, - { 81199, "", "=q2=", "" }, - { 81218, "", "=q2=", "" }, - { 81219, "", "=q2=", "" }, - { 81220, "", "=q2=", "" }, - { 81221, "", "=q2=", "" }, - { 81222, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q2=Exalted", "" }, - { 81167, "", "=q2=", "" }, - { 81223, "", "=q2=", "" }, - { 81198, "", "=q2=", "" }, - { 81237, "", "=q2=", "" }, - { 80308, "", "=q2=", "" }, - }; + { 81244, "Ability_Mount_Undeadhorse", "=q4=Armored Ebon Deathcharger", "=ds=#e7#" }, + { 81245, "Ability_Mount_Undeadhorse", "=q4=Armored Crimson Deathcharger", "=ds#e7#" }, + { 81246, "Ability_Mount_Undeadhorse", "=q4=Armored Emerald Deathcharger", "=ds=#e7#" }, + { 81247, "Ability_Mount_Undeadhorse", "=q4=Armored Ivory Deathcharger", "=ds=#e7#" }, + { 80309, "inv_misc_tournaments_tabard_scourge", "=q1=Undercity Tabard", "=ds=#s7#" }, + }; + Orgrimmar = { + { 0, "INV_Staff_13", "=q2=Honored", "" }, + { 81216, "inv_helmet_08", "=q2=Fur-Lined Orcish Helm", "=ds=#s1#, #a2#" }, + { 81217, "inv_helmet_08", "=q2=Protective Orcish Helm", "=ds=#s1#, #a3#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Exalted", "" }, + { 81241, "Ability_Hunter_Pet_Wolf", "=q4=Armored Orgrimmar Wolf", "=ds=#e7#" }, + { 80307, "inv_misc_tournaments_tabard_orc", "=q1=Orgrimmar Tabard", "=ds=#s7#" }, + }; + ThunderBluff = { + { 0, "INV_Staff_13", "=q2=Revered", "" }, + { 81199, "INV_Staff_03", "=q3=Ancestral War Totem", "=ds=#h2#, #w6#" }, + { 81218, "inv_chest_plate08", "=q2=Chieftain's Ceremonial Harness", "=ds=#s5#, #a2#" }, + { 81219, "inv_boots_plate_05", "=q2=Chieftain's Ceremonial Anklewraps", "=ds=#s12#, #a2#" }, + { 81220, "inv_pants_04", "=q2=Chieftain's Ceremonial Legwraps", "=ds=#s11#, #a2#" }, + { 81221, "INV_Belt_13", "=q2=Chieftain's Ceremonial Belt", "=ds=#s10#, #a2#" }, + { 81222, "INV_Gauntlets_09", "=q2=Chieftain's Ceremonial Handwraps", "=ds=#s9#, #a2#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q2=Exalted", "" }, + { 81167, "INV_Shoulder_06", "=q3=Chieftain's Ceremonial Mantle", "=ds=#s3#, #a2#" }, + { 81223, "INV_Helmet_04", "=q3=Chieftain's Ceremonial Headdress", "=ds=#s1#, #a2#" }, + { 81198, "Ability_Mount_Kodo_01", "=q4=Armored Thunder Bluff Kodo", "=ds=#e7#" }, + { 81237, "Ability_Mount_Kodo_01", "=q4=Chieftain's Kodo", "=ds=#e7#" }, + { 80308, "inv_misc_tournaments_tabard_tauren", "=q1=Thunder Bluff Tabard", "=ds=#s7#" }, + }; Dalaran = { - { 0, "INV_Staff_13", "=q2=Revered", "" }, - { 60728, "", "=q2=", "" }, - { 60730, "", "=q2=", "" }, - { 60727, "", "=q2=", "" }, - { 60729, "", "=q2=", "" }, - { 60729, "", "=q2=", "" }, - { 0, "", "", "" }, - { 0, "INV_Staff_13", "=q3=Exalted", "" }, - { 60724, "", "=q2=", "" }, - { 60725, "", "=q2=", "" }, - }; + { 0, "INV_Staff_13", "=q2=Revered", "" }, + { 60728, "INV_Boots_05", "=q3=Boots of the Hermit Magi", "=ds=#s12#, #a1#" }, + { 60730, "INV_Belt_33", "=q3=Girdle of the Warden", "=ds=#s10#, #a4#" }, + { 60727, "INV_Shoulder_18", "=q3=Pauldrons of Sealed Magics", "=ds=#s3#, #a3#" }, + { 60726, "INV_Shield_06", "=q3=Spellguard's Shield", "=ds=#w8#, #h4#" }, + { 60729, "INV_Gauntlets_09", "=q3=Skulker's Gloves", "=ds=#s9#, #a2#" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q3=Exalted", "" }, + { 60724, "INV_Helmet_11", "=q4=Dalarani Conjurer's Hat", "=ds=#s1#, #a1#" }, + { 60725, "INV_Jewelry_Ring_34", "=q4=Ring of Flowing Leylines", "=ds=#s13#" }, + }; + Wildhammer = { + { 0, "inv_misc_tabard_wildhammerclan", "=q3=Exalted", "" }, + { 81185, "Ability_Mount_Gryphon_01", "=q3=Aerie Peak Gryphon", "=ds=#e7#" }, + { 81186, "Ability_Mount_Gryphon_01", "=q3=Armored Aerie Peak Gryphon", "=ds=#e7#" }, + { 81243, "inv_misc_birdbeck_01", "=q1=Beaky", "=ds=#e15#" }, + { 80312, "inv_misc_tabard_wildhammerclan", "=q1=Wildhammer Tabard", "=ds=#s7#" }, + }; }; diff --git a/Images/Alliance.tga b/Images/Alliance.tga index 6381696..8ac63a8 100644 Binary files a/Images/Alliance.tga and b/Images/Alliance.tga differ diff --git a/Images/Horde.tga b/Images/Horde.tga index 3d070d8..f1e9371 100644 Binary files a/Images/Horde.tga and b/Images/Horde.tga differ diff --git a/Instances/instances.en.lua b/Instances/instances.en.lua index 49fcb9d..277eae6 100644 --- a/Instances/instances.en.lua +++ b/Instances/instances.en.lua @@ -621,53 +621,58 @@ AtlasLootBossButtons = { TheCrescentGrove = { ""; ""; - "TCGGrovetenderEngryss"; - "TCGKeeperRanathos"; - "TCGHighPriestessAlathea"; - "TCGFenektistheDeceiver"; - "TCGMasterRaxxieth"; + "TCGGrovetenderEngryss"; + "TCGKeeperRanathos"; + "TCGHighPriestessAlathea"; + "TCGFenektistheDeceiver"; + "TCGMasterRaxxieth"; "TCGTrash"; }; KarazhanCrypt = { ""; ""; - "KCMarrowspike"; - "KCHivaxxis"; - "KCCorpsemuncher"; + "KCMarrowspike"; + "KCHivaxxis"; + "KCCorpsemuncher"; "KCGuardCaptainGort"; - "KCArchlichEnkhraz"; + "KCArchlichEnkhraz"; "KCCommanderAnderson"; - "KCAlarus"; + "KCAlarus"; "KCTreasure"; + "KCTrash"; }; CavernsOfTimeBlackMorass = { ""; ""; - "COTBMChronar"; + "COTBMChronar"; "COTBMHarbingerAphygth"; - "COTBMTimeLordEpochronos"; - "COTBMAntnormi"; + "COTBMEpidamu"; + "COTBMDriftingAvatar"; + "COTBMTimeLordEpochronos"; + "COTBMMossheart"; + "COTBMRotmaw"; + "COTBMAntnormi"; "COTBMInfiniteChromie"; }; StormwindVault = { ""; ""; - "SWVAszoshGrimflame"; - "SWVThamGrarr"; - "SWVBlackBride"; - "SWVDamian"; - "SWVVolkanCruelblade"; - "SWVArctiras"; - "SWVVaultArmoryEquipment"; + "SWVAszoshGrimflame"; + "SWVThamGrarr"; + "SWVBlackBride"; + "SWVDamian"; + "SWVVolkanCruelblade"; + "SWVArctiras"; + "SWVVaultArmoryEquipment"; }; HateforgeQuarry = { ""; ""; - "HQHighForemanBargulBlackhammer"; - "HQEngineerFiggles"; - "HQCorrosis"; - "HQHatereaverAnnihilator"; - "HQHargeshDoomcaller"; + "HQHighForemanBargulBlackhammer"; + "HQEngineerFiggles"; + "HQCorrosis"; + "HQHatereaverAnnihilator"; + "HQHargeshDoomcaller"; "HQTrash"; }; TheDeadmines = { @@ -824,6 +829,17 @@ AtlasLootBossButtons = { "UldGarrettFamilyChest"; "UldShovelphlange"; }; + GilneasCity = { + "GCMatthiasHoltz"; + "GCPackmasterRagetooth"; + "GCJudgeSutherland"; + "GCDustivanBlackcowl"; + "GCMarshalMagnusGreystone"; + "GCHorsemasterLevvin"; + "GCHarlowFamilyChest"; + "GCGennGreymane"; + "GCTrash"; + }; WailingCaverns = { ""; ""; @@ -915,6 +931,23 @@ AtlasLootBossButtons = { "ZGSET"; "ZGEnchants"; }; + LowerKara = { + "LKHRolfen"; + "LKHBroodQueenAraxxna"; + "LKHGrizikil"; + "LKHClawlordHowlfang"; + "LKHLordBlackwaldII"; + "LKHMoroes"; + "LKHTrash"; + "LKHEnchants"; + }; + EmeraldSanctum = { + "ESErennius"; + "ESSolnius1"; + "ESSolnius2"; + "ESHardMode"; + "ESTrash"; + } }; -------------------------------------------------------------------------------- -- ItemIDs (default english) @@ -953,253 +986,253 @@ AtlasLoot_Data["AtlasLootItems"] = { { 22057, "INV_Misc_EngGizmos_23", "=q1=Brazier of Invocation", "=ds=#m36#" }, { 21986, "INV_BRD_Banner", "=q1=Banner of Provocation", "=ds=#m36#" }, }; - BWLRazorgore = { - { 16926, "INV_Bracer_09", "=q4=Bindings of Transcendence", "=ds=#s8#, #a1# =q9=#c5#", "20.37%" }, - { 16918, "INV_Bracer_09", "=q4=Netherwind Bindings", "=ds=#s8#, #a1# =q10=#c3#", "20.41%" }, - { 16934, "INV_Bracer_07", "=q4=Nemesis Bracers", "=ds=#s8#, #a1# =q11=#c8#", "18.11%" }, - { 16911, "INV_Bracer_02", "=q4=Bloodfang Bracers", "=ds=#s8#, #a2# =q12=#c6#", "20.69%" }, - { 16904, "INV_Bracer_03", "=q4=Stormrage Bracers", "=ds=#s8#, #a2# =q13=#c1#", "17.38%" }, - { 16935, "INV_Bracer_17", "=q4=Dragonstalker's Bracers", "=ds=#s8#, #a3# =q14=#c2#", "19.13%" }, - { 16943, "INV_Bracer_16", "=q4=Bracers of Ten Storms", "=ds=#s8#, #a3# =q15=#c7#", "7.54%" }, - { 16951, "INV_Bracer_18", "=q4=Judgement Bindings", "=ds=#s8#, #a4# =q16=#c4#", "13.61%" }, - { 16959, "INV_Bracer_19", "=q4=Bracelets of Wrath", "=ds=#s8#, #a4# =q17=#c9#", "20.29%" }, + BWLRazorgore = { --https://database.turtle-wow.org/?npc=12435 + { 16926, "INV_Bracer_09", "=q4=Bindings of Transcendence", "=ds=#s8#, #a1# =q9=#c5#", "11%" }, + { 16918, "INV_Bracer_09", "=q4=Netherwind Bindings", "=ds=#s8#, #a1# =q10=#c3#", "11%" }, + { 16934, "INV_Bracer_07", "=q4=Nemesis Bracers", "=ds=#s8#, #a1# =q11=#c8#", "11%" }, + { 16911, "INV_Bracer_02", "=q4=Bloodfang Bracers", "=ds=#s8#, #a2# =q12=#c6#", "11%" }, + { 16904, "INV_Bracer_03", "=q4=Stormrage Bracers", "=ds=#s8#, #a2# =q13=#c1#", "11%" }, + { 16935, "INV_Bracer_17", "=q4=Dragonstalker's Bracers", "=ds=#s8#, #a3# =q14=#c2#", "11%" }, + { 16943, "INV_Bracer_16", "=q4=Bracers of Ten Storms", "=ds=#s8#, #a3# =q15=#c7#", "11%" }, + { 16951, "INV_Bracer_18", "=q4=Judgement Bindings", "=ds=#s8#, #a4# =q16=#c4#", "11%" }, + { 16959, "INV_Bracer_19", "=q4=Bracelets of Wrath", "=ds=#s8#, #a4# =q17=#c9#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19336, "Spell_Nature_WispSplode", "=q4=Arcane Infused Gem", "=ds=#s14# =q14=#c2#", "17.33%" }, - { 19337, "INV_Misc_Book_06", "=q4=The Black Book", "=ds=#s14# =q11=#c8#", "18.37%" }, + { 19336, "Spell_Nature_WispSplode", "=q4=Arcane Infused Gem", "=ds=#s14# =q14=#c2#", "20%" }, + { 19337, "INV_Misc_Book_06", "=q4=The Black Book", "=ds=#s14# =q11=#c8#", "20%" }, { 0,"","","" }, - { 19370, "INV_Shoulder_25", "=q4=Mantle of the Blackwing Cabal", "=ds=#s3#, #a1#", "18.57%" }, - { 19369, "INV_Gauntlets_06", "=q4=Gloves of Rapid Evolution", "=ds=#s9#, #a1#", "17.52%" }, - { 19335, "INV_Mace_06", "=q4=Spineshatter", "=ds=#h3#, #w6#", "10.44%" }, - { 19334, "INV_Sword_50", "=q4=The Untamed Blade", "=ds=#h2#, #w10#", "9.76%" }, + { 19370, "INV_Shoulder_25", "=q4=Mantle of the Blackwing Cabal", "=ds=#s3#, #a1#", "20%" }, + { 19369, "INV_Gauntlets_06", "=q4=Gloves of Rapid Evolution", "=ds=#s9#, #a1#", "20%" }, + { 19335, "INV_Mace_06", "=q4=Spineshatter", "=ds=#h3#, #w6#", "10%" }, + { 19334, "INV_Sword_50", "=q4=The Untamed Blade", "=ds=#h2#, #w10#", "10%" }, }; - BWLVaelastrasz = { - { 16925, "INV_Belt_22", "=q4=Belt of Transcendence", "=ds=#s10#, #a1# =q9=#c5#", "18.76%" }, - { 16818, "INV_Belt_22", "=q4=Netherwind Belt", "=ds=#s10#, #a1# =q10=#c3#", "19.94%" }, - { 16933, "INV_Belt_13", "=q4=Nemesis Belt", "=ds=#s10#, #a1# =q11=#c8#", "18.42%" }, - { 16910, "INV_Belt_23", "=q4=Bloodfang Belt", "=ds=#s10#, #a2# =q12=#c6#", "19.69%" }, - { 16903, "INV_Belt_06", "=q4=Stormrage Belt", "=ds=#s10#, #a2# =q13=#c1#", "16.90%" }, - { 16936, "INV_Belt_28", "=q4=Dragonstalker's Belt", "=ds=#s10#, #a3# =q14=#c2#", "20.17%" }, - { 16944, "INV_Belt_14", "=q4=Belt of Ten Storms", "=ds=#s10#, #a3# =q15=#c7#", "6.93%" }, - { 16952, "INV_Belt_27", "=q4=Judgement Belt", "=ds=#s10#, #a4# =q16=#c4#", "12.23%" }, - { 16960, "INV_Belt_09", "=q4=Waistband of Wrath", "=ds=#s10#, #a4# =q17=#c9#", "20.03%" }, + BWLVaelastrasz = { --https://database.turtle-wow.org/?npc=13020 + { 16925, "INV_Belt_22", "=q4=Belt of Transcendence", "=ds=#s10#, #a1# =q9=#c5#", "11%" }, + { 16818, "INV_Belt_22", "=q4=Netherwind Belt", "=ds=#s10#, #a1# =q10=#c3#", "11%" }, + { 16933, "INV_Belt_13", "=q4=Nemesis Belt", "=ds=#s10#, #a1# =q11=#c8#", "11%" }, + { 16910, "INV_Belt_23", "=q4=Bloodfang Belt", "=ds=#s10#, #a2# =q12=#c6#", "11%" }, + { 16903, "INV_Belt_06", "=q4=Stormrage Belt", "=ds=#s10#, #a2# =q13=#c1#", "11%" }, + { 16936, "INV_Belt_28", "=q4=Dragonstalker's Belt", "=ds=#s10#, #a3# =q14=#c2#", "11%" }, + { 16944, "INV_Belt_14", "=q4=Belt of Ten Storms", "=ds=#s10#, #a3# =q15=#c7#", "11%" }, + { 16952, "INV_Belt_27", "=q4=Judgement Belt", "=ds=#s10#, #a4# =q16=#c4#", "11%" }, + { 16960, "INV_Belt_09", "=q4=Waistband of Wrath", "=ds=#s10#, #a4# =q17=#c9#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19339, "Spell_Nature_WispHeal", "=q4=Mind Quickening Gem", "=ds=#s14# =q10=#c3#", "18.96%" }, - { 19340, "INV_Misc_Rune_06", "=q4=Rune of Metamorphosis", "=ds=#s14# =q13=#c1#", "17.66%" }, + { 19339, "Spell_Nature_WispHeal", "=q4=Mind Quickening Gem", "=ds=#s14# =q10=#c3#", "20%" }, + { 19340, "INV_Misc_Rune_06", "=q4=Rune of Metamorphosis", "=ds=#s14# =q13=#c1#", "20%" }, { 0,"","","" }, - { 19372, "INV_Helmet_10", "=q4=Helm of Endless Rage", "=ds=#s1#, #a4#", "16.76%" }, - { 19371, "INV_Jewelry_Necklace_12", "=q4=Pendant of the Fallen Dragon", "=ds=#s2#", "18.56%" }, - { 19348, "INV_Shield_20", "=q4=Red Dragonscale Protector", "=ds=#w8#", "8.57%" }, - { 19346, "INV_Weapon_Shortblade_29", "=q4=Dragonfang Blade", "=ds=#h1#, #w4#", "9.40%" }, + { 19372, "INV_Helmet_10", "=q4=Helm of Endless Rage", "=ds=#s1#, #a4#", "20%" }, + { 19371, "INV_Jewelry_Necklace_12", "=q4=Pendant of the Fallen Dragon", "=ds=#s2#", "20%" }, + { 19348, "INV_Shield_20", "=q4=Red Dragonscale Protector", "=ds=#w8#", "10%" }, + { 19346, "INV_Weapon_Shortblade_29", "=q4=Dragonfang Blade", "=ds=#h1#, #w4#", "10%" }, }; - BWLLashlayer = { - { 16919, "INV_Boots_07", "=q4=Boots of Transcendence", "=ds=#s12#, #a1# =q9=#c5#", "14.61%" }, - { 16912, "INV_Boots_07", "=q4=Netherwind Boots", "=ds=#s12#, #a1# =q10=#c3#", "17.17%" }, - { 16927, "INV_Boots_05", "=q4=Nemesis Boots", "=ds=#s12#, #a1# =q11=#c8#", "15.32%" }, - { 16906, "INV_Boots_08", "=q4=Bloodfang Boots", "=ds=#s12#, #a2# =q12=#c6#", "15.66%" }, - { 16898, "INV_Boots_08", "=q4=Stormrage Boots", "=ds=#s12#, #a2# =q13=#c1#", "13.79%" }, - { 16941, "INV_Boots_Plate_07", "=q4=Dragonstalker's Greaves", "=ds=#s12#, #a3# =q14=#c2#", "17.78%" }, - { 16949, "INV_Boots_Plate_06", "=q4=Greaves of Ten Storms", "=ds=#s12#, #a3# =q15=#c7#", "5.57%" }, - { 16957, "INV_Boots_Plate_09", "=q4=Judgement Sabatons", "=ds=#s12#, #a4# =q16=#c4#", "11.28%" }, - { 16965, "INV_Boots_Plate_04", "=q4=Sabatons of Wrath", "=ds=#s12#, #a4# =q17=#c9#", "16.84%" }, + BWLLashlayer = { --https://database.turtle-wow.org/?npc=12017 + { 16919, "INV_Boots_07", "=q4=Boots of Transcendence", "=ds=#s12#, #a1# =q9=#c5#", "11%" }, + { 16912, "INV_Boots_07", "=q4=Netherwind Boots", "=ds=#s12#, #a1# =q10=#c3#", "11%" }, + { 16927, "INV_Boots_05", "=q4=Nemesis Boots", "=ds=#s12#, #a1# =q11=#c8#", "11%" }, + { 16906, "INV_Boots_08", "=q4=Bloodfang Boots", "=ds=#s12#, #a2# =q12=#c6#", "11%" }, + { 16898, "INV_Boots_08", "=q4=Stormrage Boots", "=ds=#s12#, #a2# =q13=#c1#", "11%" }, + { 16941, "INV_Boots_Plate_07", "=q4=Dragonstalker's Greaves", "=ds=#s12#, #a3# =q14=#c2#", "11%" }, + { 16949, "INV_Boots_Plate_06", "=q4=Greaves of Ten Storms", "=ds=#s12#, #a3# =q15=#c7#", "11%" }, + { 16957, "INV_Boots_Plate_09", "=q4=Judgement Sabatons", "=ds=#s12#, #a4# =q16=#c4#", "11%" }, + { 16965, "INV_Boots_Plate_04", "=q4=Sabatons of Wrath", "=ds=#s12#, #a4# =q17=#c9#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 20383, "Spell_Shadow_CurseOfTounges", "=q4=Head of the Broodlord Lashlayer", "=ds=#m3#", "100%" }, - { 19341, "INV_Misc_Gem_Pearl_05", "=q4=Lifegiving Gem", "=ds=#s14# =q17=#c9#", "14.27%" }, - { 19342, "INV_Misc_Idol_03", "=q4=Venomous Totem", "=ds=#s14# =q12=#c6#", "15.06%" }, + { 19341, "INV_Misc_Gem_Pearl_05", "=q4=Lifegiving Gem", "=ds=#s14# =q17=#c9#", "20%" }, + { 19342, "INV_Misc_Idol_03", "=q4=Venomous Totem", "=ds=#s14# =q12=#c6#", "20%" }, { 0,"","","" }, - { 19373, "INV_Shoulder_14", "=q4=Black Brood Pauldrons", "=ds=#s3#, #a3#", "17.25%" }, - { 19374, "INV_Bracer_07", "=q4=Bracers of Arcane Accuracy", "=ds=#s8#, #a1#", "15.03%" }, - { 19350, "INV_Weapon_Bow_09", "=q4=Heartstriker", "=ds=#w2#", "8.45%" }, - { 19351, "INV_Sword_49", "=q4=Maladath, Runed Blade of the Black Flight", "=ds=#h1#, #w10#", "9.62%" }, + { 19373, "INV_Shoulder_14", "=q4=Black Brood Pauldrons", "=ds=#s3#, #a3#", "20%" }, + { 19374, "INV_Bracer_07", "=q4=Bracers of Arcane Accuracy", "=ds=#s8#, #a1#", "20%" }, + { 19350, "INV_Weapon_Bow_09", "=q4=Heartstriker", "=ds=#w2#", "10%" }, + { 19351, "INV_Sword_49", "=q4=Maladath, Runed Blade of the Black Flight", "=ds=#h1#, #w10#", "10%" }, }; - BWLFiremaw = { - { 16920, "INV_Gauntlets_14", "=q4=Handguards of Transcendence", "=ds=#s9#, #a1# =q9=#c5#", "6.01%" }, - { 16913, "INV_Gauntlets_14", "=q4=Netherwind Gloves", "=ds=#s9#, #a1# =q10=#c3#", "7.37%" }, - { 16928, "INV_Gauntlets_19", "=q4=Nemesis Gloves", "=ds=#s9#, #a1# =q11=#c8#", "5.28%" }, - { 16907, "INV_Gauntlets_21", "=q4=Bloodfang Gloves", "=ds=#s9#, #a2# =q12=#c6#", "6.84%" }, - { 16899, "INV_Gauntlets_25", "=q4=Stormrage Handguards", "=ds=#s9#, #a2# =q13=#c1#", "5.34%" }, - { 16940, "INV_Gauntlets_10", "=q4=Dragonstalker's Gauntlets", "=ds=#s9#, #a3# =q14=#c2#", "6.13%" }, - { 16948, "INV_Gauntlets_11", "=q4=Gauntlets of Ten Storms", "=ds=#s9#, #a3# =q15=#c7#", "2.13%" }, - { 16956, "INV_Gauntlets_29", "=q4=Judgement Gauntlets", "=ds=#s9#, #a4# =q16=#c4#", "3.58%" }, - { 16964, "INV_Gauntlets_10", "=q4=Gauntlets of Wrath", "=ds=#s9#, #a4# =q17=#c9#", "5.93%" }, + BWLFiremaw = { --https://database.turtle-wow.org/?npc=11983 + { 16920, "INV_Gauntlets_14", "=q4=Handguards of Transcendence", "=ds=#s9#, #a1# =q9=#c5#", "7%" }, + { 16913, "INV_Gauntlets_14", "=q4=Netherwind Gloves", "=ds=#s9#, #a1# =q10=#c3#", "7%" }, + { 16928, "INV_Gauntlets_19", "=q4=Nemesis Gloves", "=ds=#s9#, #a1# =q11=#c8#", "7%" }, + { 16907, "INV_Gauntlets_21", "=q4=Bloodfang Gloves", "=ds=#s9#, #a2# =q12=#c6#", "7%" }, + { 16899, "INV_Gauntlets_25", "=q4=Stormrage Handguards", "=ds=#s9#, #a2# =q13=#c1#", "7%" }, + { 16940, "INV_Gauntlets_10", "=q4=Dragonstalker's Gauntlets", "=ds=#s9#, #a3# =q14=#c2#", "7%" }, + { 16948, "INV_Gauntlets_11", "=q4=Gauntlets of Ten Storms", "=ds=#s9#, #a3# =q15=#c7#", "7%" }, + { 16956, "INV_Gauntlets_29", "=q4=Judgement Gauntlets", "=ds=#s9#, #a4# =q16=#c4#", "7%" }, + { 16964, "INV_Gauntlets_10", "=q4=Gauntlets of Wrath", "=ds=#s9#, #a4# =q17=#c9#", "7%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19344, "INV_Misc_Gem_03", "=q4=Natural Alignment Crystal", "=ds=#s14# =q15=#c7#", "4.03%" }, - { 19343, "INV_Scroll_08", "=q4=Scrolls of Blinding Light", "=ds=#s14# =q16=#c4#", "9.17%" }, + { 19344, "INV_Misc_Gem_03", "=q4=Natural Alignment Crystal", "=ds=#s14# =q15=#c7#", "13%" }, + { 19343, "INV_Scroll_08", "=q4=Scrolls of Blinding Light", "=ds=#s14# =q16=#c4#", "13%" }, { 0,"","","" }, - { 19394, "INV_Shoulder_23", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "6.76%" }, - { 19398, "INV_Misc_Cape_18", "=q4=Cloak of Firemaw", "=ds=#s4#", "15.39%" }, - { 19399, "INV_Chest_Cloth_50", "=q4=Black Ash Robe", "=ds=#s5#, #a1#", "15.00%" }, - { 19400, "INV_Belt_10", "=q4=Firemaw's Clutch", "=ds=#s10#, #a1#", "14.75%" }, - { 19396, "INV_Belt_16", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "5.44%" }, - { 19401, "INV_Pants_Mail_19", "=q4=Primalist's Linked Legguards", "=ds=#s11#, #a3#", "5.37%" }, - { 19402, "INV_Pants_Plate_16", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "9.50%" }, + { 19394, "INV_Shoulder_23", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "7%" }, + { 19398, "INV_Misc_Cape_18", "=q4=Cloak of Firemaw", "=ds=#s4#", "13%" }, + { 19399, "INV_Chest_Cloth_50", "=q4=Black Ash Robe", "=ds=#s5#, #a1#", "13%" }, + { 19400, "INV_Belt_10", "=q4=Firemaw's Clutch", "=ds=#s10#, #a1#", "13%" }, + { 19396, "INV_Belt_16", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "13%" }, + { 19401, "INV_Pants_Mail_19", "=q4=Primalist's Linked Legguards", "=ds=#s11#, #a3#", "13%" }, + { 19402, "INV_Pants_Plate_16", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "13%" }, { 0,"","","" }, - { 19365, "INV_Weapon_ShortBlade_27", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "15.97%" }, - { 19353, "INV_Axe_10", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "3.18%" }, - { 19355, "INV_Staff_13", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "3.70%" }, + { 19365, "INV_Weapon_ShortBlade_27", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "13%" }, + { 19353, "INV_Axe_10", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "7%" }, + { 19355, "INV_Staff_13", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "7%" }, { 0,"","","" }, - { 19397, "INV_Jewelry_Ring_43", "=q4=Ring of Blackrock", "=ds=#s13#", "5.98%" }, - { 19395, "INV_Misc_Gem_Topaz_02", "=q4=Rejuvenating Gem", "=ds=#s14#", "5.30%" }, + { 19397, "INV_Jewelry_Ring_43", "=q4=Ring of Blackrock", "=ds=#s13#", "7%" }, + { 19395, "INV_Misc_Gem_Topaz_02", "=q4=Rejuvenating Gem", "=ds=#s14#", "7%" }, }; - BWLEbonroc = { - { 16920, "INV_Gauntlets_14", "=q4=Handguards of Transcendence", "=ds=#s9#, #a1# =q9=#c5#", "6.59%" }, - { 16913, "INV_Gauntlets_14", "=q4=Netherwind Gloves", "=ds=#s9#, #a1# =q10=#c3#", "6.44%" }, - { 16928, "INV_Gauntlets_19", "=q4=Nemesis Gloves", "=ds=#s9#, #a1# =q11=#c8#", "7.15%" }, - { 16907, "INV_Gauntlets_21", "=q4=Bloodfang Gloves", "=ds=#s9#, #a2# =q12=#c6#", "7.07%" }, - { 16899, "INV_Gauntlets_25", "=q4=Stormrage Handguards", "=ds=#s9#, #a2# =q13=#c1#", "6.32%" }, - { 16940, "INV_Gauntlets_10", "=q4=Dragonstalker's Gauntlets", "=ds=#s9#, #a3# =q14=#c2#", "6.91%" }, - { 16948, "INV_Gauntlets_11", "=q4=Gauntlets of Ten Storms", "=ds=#s9#, #a3# =q15=#c7#", "1.93%" }, - { 16956, "INV_Gauntlets_29", "=q4=Judgement Gauntlets", "=ds=#s9#, #a4# =q16=#c4#", "4.45%" }, - { 16964, "INV_Gauntlets_10", "=q4=Gauntlets of Wrath", "=ds=#s9#, #a4# =q17=#c9#", "6.19%" }, + BWLEbonroc = { --https://database.turtle-wow.org/?npc=14601 + { 16920, "INV_Gauntlets_14", "=q4=Handguards of Transcendence", "=ds=#s9#, #a1# =q9=#c5#", "7%" }, + { 16913, "INV_Gauntlets_14", "=q4=Netherwind Gloves", "=ds=#s9#, #a1# =q10=#c3#", "7%" }, + { 16928, "INV_Gauntlets_19", "=q4=Nemesis Gloves", "=ds=#s9#, #a1# =q11=#c8#", "7%" }, + { 16907, "INV_Gauntlets_21", "=q4=Bloodfang Gloves", "=ds=#s9#, #a2# =q12=#c6#", "7%" }, + { 16899, "INV_Gauntlets_25", "=q4=Stormrage Handguards", "=ds=#s9#, #a2# =q13=#c1#", "7%" }, + { 16940, "INV_Gauntlets_10", "=q4=Dragonstalker's Gauntlets", "=ds=#s9#, #a3# =q14=#c2#", "7%" }, + { 16948, "INV_Gauntlets_11", "=q4=Gauntlets of Ten Storms", "=ds=#s9#, #a3# =q15=#c7#", "7%" }, + { 16956, "INV_Gauntlets_29", "=q4=Judgement Gauntlets", "=ds=#s9#, #a4# =q16=#c4#", "7%" }, + { 16964, "INV_Gauntlets_10", "=q4=Gauntlets of Wrath", "=ds=#s9#, #a4# =q17=#c9#", "7%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19345, "Spell_Holy_BlessingOfProtection", "=q4=Aegis of Preservation", "=ds=#s14# =q9=#c5#", "16.47%" }, + { 19345, "Spell_Holy_BlessingOfProtection", "=q4=Aegis of Preservation", "=ds=#s14# =q9=#c5#", "17%" }, { 0,"","","" }, { 0,"","","" }, - { 19394, "INV_Shoulder_23", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "5.68%" }, - { 19407, "INV_Gauntlets_27", "=q4=Ebony Flame Gloves", "=ds=#s9#, #a1#", "16.59%" }, - { 19396, "INV_Belt_16", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "5.99%" }, - { 19405, "INV_Chest_Leather_08", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "17.03%" }, + { 19394, "INV_Shoulder_23", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "7%" }, + { 19407, "INV_Gauntlets_27", "=q4=Ebony Flame Gloves", "=ds=#s9#, #a1#", "17%" }, + { 19396, "INV_Belt_16", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "7%" }, + { 19405, "INV_Chest_Leather_08", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "17%" }, { 0,"","","" }, - { 19368, "INV_Weapon_Rifle_02", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "8.58%" }, - { 19353, "INV_Axe_10", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "3.60%" }, - { 19355, "INV_Staff_13", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "2.77%" }, + { 19368, "INV_Weapon_Rifle_02", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "17%" }, + { 19353, "INV_Axe_10", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "7%" }, + { 19355, "INV_Staff_13", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "7%" }, { 0,"","","" }, - { 19403, "INV_Jewelry_Ring_34", "=q4=Band of Forced Concentration", "=ds=#s13#", "14.63%" }, - { 19397, "INV_Jewelry_Ring_43", "=q4=Ring of Blackrock", "=ds=#s13#", "5.99%" }, - { 19406, "INV_Misc_Bone_06", "=q4=Drake Fang Talisman", "=ds=#s14#", "17.41%" }, - { 19395, "INV_Misc_Gem_Topaz_02", "=q4=Rejuvenating Gem", "=ds=#s14#", "5.62%" }, + { 19403, "INV_Jewelry_Ring_34", "=q4=Band of Forced Concentration", "=ds=#s13#", "17%" }, + { 19397, "INV_Jewelry_Ring_43", "=q4=Ring of Blackrock", "=ds=#s13#", "7%" }, + { 19406, "INV_Misc_Bone_06", "=q4=Drake Fang Talisman", "=ds=#s14#", "17%" }, + { 19395, "INV_Misc_Gem_Topaz_02", "=q4=Rejuvenating Gem", "=ds=#s14#", "7%" }, }; - BWLFlamegor = { - { 16920, "INV_Gauntlets_14", "=q4=Handguards of Transcendence", "=ds=#s9#, #a1# =q9=#c5#", "6.47%" }, - { 16913, "INV_Gauntlets_14", "=q4=Netherwind Gloves", "=ds=#s9#, #a1# =q10=#c3#", "6.91%" }, - { 16928, "INV_Gauntlets_19", "=q4=Nemesis Gloves", "=ds=#s9#, #a1# =q11=#c8#", "6.65%" }, - { 16907, "INV_Gauntlets_21", "=q4=Bloodfang Gloves", "=ds=#s9#, #a2# =q12=#c6#", "6.41%" }, - { 16899, "INV_Gauntlets_25", "=q4=Stormrage Handguards", "=ds=#s9#, #a2# =q13=#c1#", "5.66%" }, - { 16940, "INV_Gauntlets_10", "=q4=Dragonstalker's Gauntlets", "=ds=#s9#, #a3# =q14=#c2#", "6.73%" }, - { 16948, "INV_Gauntlets_11", "=q4=Gauntlets of Ten Storms", "=ds=#s9#, #a3# =q15=#c7#", "2.72%" }, - { 16956, "INV_Gauntlets_29", "=q4=Judgement Gauntlets", "=ds=#s9#, #a4# =q16=#c4#", "3.64%" }, - { 16964, "INV_Gauntlets_10", "=q4=Gauntlets of Wrath", "=ds=#s9#, #a4# =q17=#c9#", "6.63%" }, + BWLFlamegor = { --https://database.turtle-wow.org/?npc=11981 + { 16920, "INV_Gauntlets_14", "=q4=Handguards of Transcendence", "=ds=#s9#, #a1# =q9=#c5#", "7%" }, + { 16913, "INV_Gauntlets_14", "=q4=Netherwind Gloves", "=ds=#s9#, #a1# =q10=#c3#", "7%" }, + { 16928, "INV_Gauntlets_19", "=q4=Nemesis Gloves", "=ds=#s9#, #a1# =q11=#c8#", "7%" }, + { 16907, "INV_Gauntlets_21", "=q4=Bloodfang Gloves", "=ds=#s9#, #a2# =q12=#c6#", "7%" }, + { 16899, "INV_Gauntlets_25", "=q4=Stormrage Handguards", "=ds=#s9#, #a2# =q13=#c1#", "7%" }, + { 16940, "INV_Gauntlets_10", "=q4=Dragonstalker's Gauntlets", "=ds=#s9#, #a3# =q14=#c2#", "7%" }, + { 16948, "INV_Gauntlets_11", "=q4=Gauntlets of Ten Storms", "=ds=#s9#, #a3# =q15=#c7#", "7%" }, + { 16956, "INV_Gauntlets_29", "=q4=Judgement Gauntlets", "=ds=#s9#, #a4# =q16=#c4#", "7%" }, + { 16964, "INV_Gauntlets_10", "=q4=Gauntlets of Wrath", "=ds=#s9#, #a4# =q17=#c9#", "7%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19394, "INV_Shoulder_23", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "5.95%" }, - { 19430, "INV_Misc_Cape_16", "=q4=Shroud of Pure Thought", "=ds=#s4#", "17.50%" }, - { 19396, "INV_Belt_16", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "6.41%" }, - { 19433, "INV_Pants_Mail_17", "=q4=Emberweave Leggings", "=ds=#s11#, #a3#", "18.73%" }, + { 19394, "INV_Shoulder_23", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "7%" }, + { 19430, "INV_Misc_Cape_16", "=q4=Shroud of Pure Thought", "=ds=#s4#", "17%" }, + { 19396, "INV_Belt_16", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "7%" }, + { 19433, "INV_Pants_Mail_17", "=q4=Emberweave Leggings", "=ds=#s11#, #a3#", "17%" }, { 0,"","","" }, - { 19367, "INV_Wand_11", "=q4=Dragon's Touch", "=ds=#w12#", "9.06%" }, - { 19353, "INV_Axe_10", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "3.79%" }, - { 19357, "INV_Mace_05", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "9.07%" }, - { 19355, "INV_Staff_13", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "2.66%" }, + { 19367, "INV_Wand_11", "=q4=Dragon's Touch", "=ds=#w12#", "17%" }, + { 19353, "INV_Axe_10", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "7%" }, + { 19357, "INV_Mace_05", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "17%" }, + { 19355, "INV_Staff_13", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "7%" }, { 0,"","","" }, - { 19432, "INV_Jewelry_Ring_37", "=q4=Circle of Applied Force", "=ds=#s13#", "18.69%" }, - { 19397, "INV_Jewelry_Ring_43", "=q4=Ring of Blackrock", "=ds=#s13#", "6.25%" }, - { 19395, "INV_Misc_Gem_Topaz_02", "=q4=Rejuvenating Gem", "=ds=#s14#", "5.46%" }, - { 19431, "INV_Misc_ArmorKit_10", "=q4=Styleen's Impeding Scarab", "=ds=#s14#", "17.02%" }, + { 19432, "INV_Jewelry_Ring_37", "=q4=Circle of Applied Force", "=ds=#s13#", "17%" }, + { 19397, "INV_Jewelry_Ring_43", "=q4=Ring of Blackrock", "=ds=#s13#", "7%" }, + { 19395, "INV_Misc_Gem_Topaz_02", "=q4=Rejuvenating Gem", "=ds=#s14#", "7%" }, + { 19431, "INV_Misc_ArmorKit_10", "=q4=Styleen's Impeding Scarab", "=ds=#s14#", "17%" }, }; - BWLChromaggus = { - { 16924, "INV_Shoulder_02", "=q4=Pauldrons of Transcendence", "=ds=#s3#, #a1# =q9=#c5#", "17.83%" }, - { 16917, "INV_Shoulder_32", "=q4=Netherwind Mantle", "=ds=#s3#, #a1# =q10=#c3#", "18.09%" }, - { 16932, "INV_Shoulder_19", "=q4=Nemesis Spaulders", "=ds=#s3#, #a1# =q11=#c8#", "16.26%" }, - { 16832, "INV_Shoulder_23", "=q4=Bloodfang Spaulders", "=ds=#s3#, #a2# =q12=#c6#", "17.03%" }, - { 16902, "INV_Shoulder_07", "=q4=Stormrage Pauldrons", "=ds=#s3#, #a2# =q13=#c1#", "14.63%" }, - { 16937, "INV_Shoulder_10", "=q4=Dragonstalker's Spaulders", "=ds=#s3#, #a3# =q14=#c2#", "16.20%" }, - { 16945, "INV_Shoulder_33", "=q4=Epaulets of Ten Storms", "=ds=#s3#, #a3# =q15=#c7#", "6.73%" }, - { 16953, "INV_Shoulder_37", "=q4=Judgement Spaulders", "=ds=#s3#, #a4# =q16=#c4#", "10.97%" }, - { 16961, "INV_Shoulder_34", "=q4=Pauldrons of Wrath", "=ds=#s3#, #a4# =q17=#c9#", "16.83%" }, + BWLChromaggus = { --https://database.turtle-wow.org/?npc=14020 + { 16924, "INV_Shoulder_02", "=q4=Pauldrons of Transcendence", "=ds=#s3#, #a1# =q9=#c5#", "11%" }, + { 16917, "INV_Shoulder_32", "=q4=Netherwind Mantle", "=ds=#s3#, #a1# =q10=#c3#", "11%" }, + { 16932, "INV_Shoulder_19", "=q4=Nemesis Spaulders", "=ds=#s3#, #a1# =q11=#c8#", "11%" }, + { 16832, "INV_Shoulder_23", "=q4=Bloodfang Spaulders", "=ds=#s3#, #a2# =q12=#c6#", "11%" }, + { 16902, "INV_Shoulder_07", "=q4=Stormrage Pauldrons", "=ds=#s3#, #a2# =q13=#c1#", "11%" }, + { 16937, "INV_Shoulder_10", "=q4=Dragonstalker's Spaulders", "=ds=#s3#, #a3# =q14=#c2#", "11%" }, + { 16945, "INV_Shoulder_33", "=q4=Epaulets of Ten Storms", "=ds=#s3#, #a3# =q15=#c7#", "11%" }, + { 16953, "INV_Shoulder_37", "=q4=Judgement Spaulders", "=ds=#s3#, #a4# =q16=#c4#", "11%" }, + { 16961, "INV_Shoulder_34", "=q4=Pauldrons of Wrath", "=ds=#s3#, #a4# =q17=#c9#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19389, "INV_Shoulder_08", "=q4=Taut Dragonhide Shoulderpads", "=ds=#s3#, #a2#", "16.89%" }, - { 19386, "INV_Misc_Cape_01", "=q4=Elementium Threaded Cloak", "=ds=#s4#", "18.93%" }, - { 19390, "INV_Gauntlets_19", "=q4=Taut Dragonhide Gloves", "=ds=#s9#, #a2#", "18.84%" }, - { 19388, "INV_Belt_13", "=q4=Angelista's Grasp", "=ds=#s10#, #a1#", "16.86%" }, - { 19393, "INV_Belt_21", "=q4=Primalist's Linked Waistguard", "=ds=#s10#, #a3#", "6.17%" }, - { 19392, "INV_Belt_11", "=q4=Girdle of the Fallen Crusader", "=ds=#s10#, #a4#", "10.97%" }, - { 19385, "INV_Pants_Cloth_19", "=q4=Empowered Leggings", "=ds=#s11#, #a1#", "16.27%" }, - { 19391, "INV_Boots_Cloth_01", "=q4=Shimmering Geta", "=ds=#s12#, #a1#", "17.46%" }, - { 19387, "INV_Boots_Plate_04", "=q4=Chromatic Boots", "=ds=#s12#, #a4#", "16.46%" }, + { 19389, "INV_Shoulder_08", "=q4=Taut Dragonhide Shoulderpads", "=ds=#s3#, #a2#", "16%" }, + { 19386, "INV_Misc_Cape_01", "=q4=Elementium Threaded Cloak", "=ds=#s4#", "16%" }, + { 19390, "INV_Gauntlets_19", "=q4=Taut Dragonhide Gloves", "=ds=#s9#, #a2#", "16%" }, + { 19388, "INV_Belt_13", "=q4=Angelista's Grasp", "=ds=#s10#, #a1#", "20%" }, + { 19393, "INV_Belt_21", "=q4=Primalist's Linked Waistguard", "=ds=#s10#, #a3#", "16%" }, + { 19392, "INV_Belt_11", "=q4=Girdle of the Fallen Crusader", "=ds=#s10#, #a4#", "16%" }, + { 19385, "INV_Pants_Cloth_19", "=q4=Empowered Leggings", "=ds=#s11#, #a1#", "20%" }, + { 19391, "INV_Boots_Cloth_01", "=q4=Shimmering Geta", "=ds=#s12#, #a1#", "16%" }, + { 19387, "INV_Boots_Plate_04", "=q4=Chromatic Boots", "=ds=#s12#, #a4#", "20%" }, { 0,"","","" }, - { 19361, "INV_Weapon_Crossbow_09", "=q4=Ashjre'thul, Crossbow of Smiting", "=ds=#w3#", "7.51%" }, - { 19349, "INV_Shield_17", "=q4=Elementium Reinforced Bulwark", "=ds=#w8#", "8.04%" }, - { 19347, "INV_Weapon_Shortblade_28", "=q4=Claw of Chromaggus", "=ds=#h1#, #w4#", "8.39%" }, - { 19352, "INV_Sword_51", "=q4=Chromatically Tempered Sword", "=ds=#h1#, #w10#", "9.05%" }, + { 19361, "INV_Weapon_Crossbow_09", "=q4=Ashjre'thul, Crossbow of Smiting", "=ds=#w3#", "10%" }, + { 19349, "INV_Shield_17", "=q4=Elementium Reinforced Bulwark", "=ds=#w8#", "10%" }, + { 19347, "INV_Weapon_Shortblade_28", "=q4=Claw of Chromaggus", "=ds=#h1#, #w4#", "10%" }, + { 19352, "INV_Sword_51", "=q4=Chromatically Tempered Sword", "=ds=#h1#, #w10#", "10%" }, }; - BWLNefarian = { - { 16923, "INV_Chest_Cloth_03", "=q4=Robes of Transcendence", "=ds=#s1#, #a1# =q9=#c5#", "14.83%" }, - { 16916, "INV_Chest_Cloth_03", "=q4=Netherwind Robes", "=ds=#s1#, #a1# =q10=#c3#", "14.03%" }, - { 16931, "INV_Chest_Leather_01", "=q4=Nemesis Robes", "=ds=#s1#, #a1# =q11=#c8#", "12.46%" }, - { 16905, "INV_Chest_Cloth_07", "=q4=Bloodfang Chestpiece", "=ds=#s1#, #a2# =q12=#c6#", "14.21%" }, - { 16897, "INV_Chest_Chain_16", "=q4=Stormrage Chestguard", "=ds=#s1#, #a2# =q13=#c1#", "11.89%" }, - { 16942, "INV_Chest_Chain_03", "=q4=Dragonstalker's Breastplate", "=ds=#s1#, #a3# =q14=#c2#", "13.30%" }, - { 16950, "INV_Chest_Chain_11", "=q4=Breastplate of Ten Storms", "=ds=#s1#, #a3# =q15=#c7#", "5.65%" }, - { 16958, "INV_Chest_Plate03", "=q4=Judgement Breastplate", "=ds=#s1#, #a4# =q16=#c4#", "9.24%" }, - { 16966, "INV_Chest_Plate16", "=q4=Breastplate of Wrath", "=ds=#s1#, #a4# =q17=#c9#", "15.06%" }, + BWLNefarian = { --https://database.turtle-wow.org/?npc=11583 + { 16923, "INV_Chest_Cloth_03", "=q4=Robes of Transcendence", "=ds=#s1#, #a1# =q9=#c5#", "11%" }, + { 16916, "INV_Chest_Cloth_03", "=q4=Netherwind Robes", "=ds=#s1#, #a1# =q10=#c3#", "11%" }, + { 16931, "INV_Chest_Leather_01", "=q4=Nemesis Robes", "=ds=#s1#, #a1# =q11=#c8#", "11%" }, + { 16905, "INV_Chest_Cloth_07", "=q4=Bloodfang Chestpiece", "=ds=#s1#, #a2# =q12=#c6#", "11%" }, + { 16897, "INV_Chest_Chain_16", "=q4=Stormrage Chestguard", "=ds=#s1#, #a2# =q13=#c1#", "11%" }, + { 16942, "INV_Chest_Chain_03", "=q4=Dragonstalker's Breastplate", "=ds=#s1#, #a3# =q14=#c2#", "11%" }, + { 16950, "INV_Chest_Chain_11", "=q4=Breastplate of Ten Storms", "=ds=#s1#, #a3# =q15=#c7#", "11%" }, + { 16958, "INV_Chest_Plate03", "=q4=Judgement Breastplate", "=ds=#s1#, #a4# =q16=#c4#", "11%" }, + { 16966, "INV_Chest_Plate16", "=q4=Breastplate of Wrath", "=ds=#s1#, #a4# =q17=#c9#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 19003, "INV_Misc_Head_Dragon_Black", "=q4=Head of Nefarian", "=ds=#m2#", "100%" }, { 19383,"INV_Jewelry_Necklace_18","=q4=Master Dragonslayer's Medallion","=q1=#m4# =ds=#s2#" }, { 19384,"INV_Jewelry_Ring_41","=q4=Master Dragonslayer's Ring","=q1=#m4# =ds=#s13#" }, { 19366,"INV_Misc_Orb_03","=q4=Master Dragonslayer's Orb","=q1=#m4# =ds=#s15#" }, - { 19360, "INV_Mace_06", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "6.98%" }, - { 19363, "INV_Axe_12", "=q4=Crul'shorukh, Edge of Chaos", "=ds=#h1#, #w1#", "7.00%" }, - { 19364, "INV_Sword_50", "=q4=Ashkandi, Greatsword of the Brotherhood", "=ds=#h2#, #w10#", "7.21%" }, - { 19356, "INV_Staff_06", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "7.27%" }, + { 19360, "INV_Mace_06", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "10%" }, + { 19363, "INV_Axe_12", "=q4=Crul'shorukh, Edge of Chaos", "=ds=#h1#, #w1#", "10%" }, + { 19364, "INV_Sword_50", "=q4=Ashkandi, Greatsword of the Brotherhood", "=ds=#h2#, #w10#", "10%" }, + { 19356, "INV_Staff_06", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "10%" }, { 0,"","","" }, - { 19375, "INV_Helmet_52", "=q4=Mish'undare, Circlet of the Mind Flayer", "=ds=#s1#, #a1#", "14.80%" }, - { 19377, "INV_Jewelry_Necklace_17", "=q4=Prestor's Talisman of Connivery", "=ds=#s2#", "14.33%" }, - { 19378, "INV_Misc_Cape_20", "=q4=Cloak of the Brood Lord", "=ds=#s4#", "14.95%" }, - { 19380, "INV_Belt_18", "=q4=Therazane's Link", "=ds=#s10#, #a3#", "16.82%" }, - { 19381, "INV_Boots_Cloth_05", "=q4=Boots of the Shadow Flame", "=ds=#s12#, #a2#", "15.70%" }, - { 19376, "INV_Jewelry_Ring_40", "=q4=Archimtiros' Ring of Reckoning", "=ds=#s13#", "13.93%" }, - { 19382, "INV_Jewelry_Ring_42", "=q4=Pure Elementium Band", "=ds=#s13#", "15.15%" }, - { 19379, "INV_Stone_15", "=q4=Neltharion's Tear", "=ds=#s14#", "14.26%" }, + { 19375, "INV_Helmet_52", "=q4=Mish'undare, Circlet of the Mind Flayer", "=ds=#s1#, #a1#", "20%" }, + { 19377, "INV_Jewelry_Necklace_17", "=q4=Prestor's Talisman of Connivery", "=ds=#s2#", "20%" }, + { 19378, "INV_Misc_Cape_20", "=q4=Cloak of the Brood Lord", "=ds=#s4#", "20%" }, + { 19380, "INV_Belt_18", "=q4=Therazane's Link", "=ds=#s10#, #a3#", "20%" }, + { 19381, "INV_Boots_Cloth_05", "=q4=Boots of the Shadow Flame", "=ds=#s12#, #a2#", "20%" }, + { 19376, "INV_Jewelry_Ring_40", "=q4=Archimtiros' Ring of Reckoning", "=ds=#s13#", "20%" }, + { 19382, "INV_Jewelry_Ring_42", "=q4=Pure Elementium Band", "=ds=#s13#", "20%" }, + { 19379, "INV_Stone_15", "=q4=Neltharion's Tear", "=ds=#s14#", "20%" }, { 0,"","","" }, - { 17962,"INV_Misc_Bag_10_Blue","=q2=Blue Sack of Gems","=ds=#m23# =q2=#e33#", "21.31%" }, + { 17962,"INV_Misc_Bag_10_Blue","=q2=Blue Sack of Gems","=ds=#m23# =q2=#e33#", "100%" }, }; BWLTrashMobs = { - { 19436, "INV_Misc_Cape_11", "=q4=Cloak of Draconic Might", "=ds=#s4#", "2.53%" }, - { 19439, "INV_Chest_Leather_03", "=q4=Interlaced Shadow Jerkin", "=ds=#s5#, #a2#", "4.62%" }, - { 19437, "INV_Boots_Cloth_03", "=q4=Boots of Pure Thought", "=ds=#s12#, #a1#", "2.33%" }, - { 19438, "INV_Boots_Cloth_16", "=q4=Ringo's Blizzard Boots", "=ds=#s12#, #a1#", "4.42%" }, - { 19434, "INV_Jewelry_Ring_24", "=q4=Band of Dark Dominion", "=ds=#s13#", "1.57%" }, - { 19435, "INV_Wand_06", "=q4=Essence Gatherer", "=ds=#w12#", "1.61%" }, - { 19362, "INV_Axe_15", "=q4=Doom's Edge", "=ds=#h1#, #w1#", "1.67%" }, - { 19354, "INV_Axe_21", "=q4=Draconic Avenger", "=ds=#h2#, #w1#", "5.96%" }, - { 19358, "INV_Mace_05", "=q4=Draconic Maul", "=ds=#h2#, #w6#", "2.30%" }, + { 19436, "INV_Misc_Cape_11", "=q4=Cloak of Draconic Might", "=ds=#s4#", "4%" }, + { 19439, "INV_Chest_Leather_03", "=q4=Interlaced Shadow Jerkin", "=ds=#s5#, #a2#", "5%" }, + { 19437, "INV_Boots_Cloth_03", "=q4=Boots of Pure Thought", "=ds=#s12#, #a1#", "4%" }, + { 19438, "INV_Boots_Cloth_16", "=q4=Ringo's Blizzard Boots", "=ds=#s12#, #a1#", "5%" }, + { 19434, "INV_Jewelry_Ring_24", "=q4=Band of Dark Dominion", "=ds=#s13#", "2%" }, + { 19435, "INV_Wand_06", "=q4=Essence Gatherer", "=ds=#w12#", "2%" }, + { 19362, "INV_Axe_15", "=q4=Doom's Edge", "=ds=#h1#, #w1#", "2%" }, + { 19354, "INV_Axe_21", "=q4=Draconic Avenger", "=ds=#h2#, #w1#", "5%" }, + { 19358, "INV_Mace_05", "=q4=Draconic Maul", "=ds=#h2#, #w6#", "4%" }, { 0,"","","" }, - { 18562, "INV_Stone_SharpeningStone_01", "=q4=Elementium Ore", "=ds=#e12#", "4.75%" }, + { 18562, "INV_Stone_SharpeningStone_01", "=q4=Elementium Ore", "=ds=#e12#", "8%" }, }; - MCLucifron = { - { 16800, "INV_Boots_07", "=q4=Arcanist Boots", "=ds=#s12#, #a1# =q10=#c3#", "12.06%" }, - { 16805, "INV_Gauntlets_19", "=q4=Felheart Gloves", "=ds=#s9#, #a1# =q11=#c8#", "14.89%" }, - { 16829, "INV_Boots_08", "=q4=Cenarion Boots", "=ds=#s12#, #a2# =q13=#c1#", "10.72%" }, - { 16837, "INV_Boots_Plate_06", "=q4=Earthfury Boots", "=ds=#s12#, #a3# =q15=#c7#", "4.16%" }, - { 16859, "INV_Boots_Plate_09", "=q4=Lawbringer Boots", "=ds=#s12#, #a4# =q16=#c4# ", "7.20%" }, - { 16863, "INV_Gauntlets_10", "=q4=Gauntlets of Might", "=ds=#s9#, #a4# =q17=#c9#", "16.40%" }, + MCLucifron = { --https://database.turtle-wow.org/?npc=12118 + { 16800, "INV_Boots_07", "=q4=Arcanist Boots", "=ds=#s12#, #a1# =q10=#c3#", "20%" }, + { 16805, "INV_Gauntlets_19", "=q4=Felheart Gloves", "=ds=#s9#, #a1# =q11=#c8#", "30%" }, + { 16829, "INV_Boots_08", "=q4=Cenarion Boots", "=ds=#s12#, #a2# =q13=#c1#", "20%" }, + { 16837, "INV_Boots_Plate_06", "=q4=Earthfury Boots", "=ds=#s12#, #a3# =q15=#c7#", "20%" }, + { 16859, "INV_Boots_Plate_09", "=q4=Lawbringer Boots", "=ds=#s12#, #a4# =q16=#c4# ", "20%" }, + { 16863, "INV_Gauntlets_10", "=q4=Gauntlets of Might", "=ds=#s9#, #a4# =q17=#c9#", "30%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -1209,61 +1242,61 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 18870, "INV_Helmet_18", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "1.09%" }, - { 17109, "INV_Jewelry_Necklace_10", "=q4=Choker of Enlightenment", "=ds=#s2#", "12.61%" }, - { 19145, "INV_Chest_Cloth_18", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "1.84%" }, - { 19146, "INV_Bracer_04", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "1.95%" }, - { 18872, "INV_Pants_08", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "1.93%" }, - { 18875, "INV_Pants_12", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "2.00%" }, - { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "2.15%" }, - { 18879, "INV_Jewelry_Ring_14", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "2.04%" }, - { 19147, "INV_Jewelry_Ring_38", "=q4=Ring of Spell Power", "=ds=#s13#", "2.23%" }, - { 17077, "INV_Staff_13", "=q4=Crimson Shocker", "=ds=#w12#", "1.60%" }, - { 18878, "INV_Weapon_ShortBlade_07", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "2.23%" }, + { 18870, "INV_Helmet_18", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "4%" }, + { 17109, "INV_Jewelry_Necklace_10", "=q4=Choker of Enlightenment", "=ds=#s2#", "20%" }, + { 19145, "INV_Chest_Cloth_18", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "4%" }, + { 19146, "INV_Bracer_04", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "4%" }, + { 18872, "INV_Pants_08", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "4%" }, + { 18875, "INV_Pants_12", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "4%" }, + { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "4%" }, + { 18879, "INV_Jewelry_Ring_14", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "4%" }, + { 19147, "INV_Jewelry_Ring_38", "=q4=Ring of Spell Power", "=ds=#s13#", "4%" }, + { 17077, "INV_Staff_13", "=q4=Crimson Shocker", "=ds=#w12#", "4%" }, + { 18878, "INV_Weapon_ShortBlade_07", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "4%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 16665, "INV_Misc_Book_11", "=q2=Tome of Tranquilizing Shot", "=ds=#e20# =q14=#c2#", "100%" }, }; - MCMagmadar = { - { 16814, "INV_Pants_08", "=q4=Pants of Prophecy", "=ds=#s11#, #a1# =q9=#c5#", "14.33%" }, - { 16796, "INV_Pants_08", "=q4=Arcanist Leggings", "=ds=#s11#, #a1# =q10=#c3#", "14.57%" }, - { 16810, "INV_Pants_Cloth_14", "=q4=Felheart Pants", "=ds=#s11#, #a1# =q11=#c8#", "13.75%" }, - { 16822, "INV_Pants_06", "=q4=Nightslayer Pants", "=ds=#s11#, #a2# =q12=#c6#", "13.83%" }, - { 16835, "INV_Pants_06", "=q4=Cenarion Leggings", "=ds=#s11#, #a2# =q13=#c1#", "12.90%" }, - { 16847, "INV_Pants_Mail_03", "=q4=Giantstalker's Leggings", "=ds=#s11#, #a3# =q14=#c2#", "13.28%" }, - { 16843, "INV_Pants_03", "=q4=Earthfury Legguards", "=ds=#s11#, #a3# =q15=#c7#", "4.73%" }, - { 16855, "INV_Pants_04", "=q4=Lawbringer Legplates", "=ds=#s11#, #a4# =q16=#c4#", "8.54%" }, - { 16867, "INV_Pants_04", "=q4=Legplates of Might", "=ds=#s11#, #a4# =q17=#c9#", "13.97%" }, + MCMagmadar = { --https://database.turtle-wow.org/?npc=11982 + { 16814, "INV_Pants_08", "=q4=Pants of Prophecy", "=ds=#s11#, #a1# =q9=#c5#", "20%" }, + { 16796, "INV_Pants_08", "=q4=Arcanist Leggings", "=ds=#s11#, #a1# =q10=#c3#", "20%" }, + { 16810, "INV_Pants_Cloth_14", "=q4=Felheart Pants", "=ds=#s11#, #a1# =q11=#c8#", "20%" }, + { 16822, "INV_Pants_06", "=q4=Nightslayer Pants", "=ds=#s11#, #a2# =q12=#c6#", "20%" }, + { 16835, "INV_Pants_06", "=q4=Cenarion Leggings", "=ds=#s11#, #a2# =q13=#c1#", "17%" }, + { 16847, "INV_Pants_Mail_03", "=q4=Giantstalker's Leggings", "=ds=#s11#, #a3# =q14=#c2#", "17%" }, + { 16843, "INV_Pants_03", "=q4=Earthfury Legguards", "=ds=#s11#, #a3# =q15=#c7#", "17%" }, + { 16855, "INV_Pants_04", "=q4=Lawbringer Legplates", "=ds=#s11#, #a4# =q16=#c4#", "17%" }, + { 16867, "INV_Pants_04", "=q4=Legplates of Might", "=ds=#s11#, #a4# =q17=#c9#", "17%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 17065, "INV_Jewelry_Amulet_03", "=q4=Medallion of Steadfast Might", "=ds=#s2#", "14.05%" }, - { 18829, "INV_Shoulder_04", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "2.10%" }, - { 18823, "INV_Gauntlets_23", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "6.18%" }, - { 19143, "INV_Gauntlets_26", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "5.48%" }, - { 19136, "INV_Belt_11", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "4.79%" }, - { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "3.98%" }, - { 19144, "INV_Boots_Chain_05", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "1.86%" }, - { 18824, "INV_Boots_Plate_08", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "3.22%" }, - { 18821, "INV_Jewelry_Ring_07", "=q4=Quick Strike Ring", "=ds=#s13#", "5.79%" }, - { 18820, "INV_Misc_StoneTablet_11", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "5.55%" }, - { 19142, "INV_Misc_Book_09", "=q4=Fire Runed Grimoire", "=ds=#s15#", "5.42%" }, - { 17069, "INV_Weapon_Bow_08", "=q4=Striker's Mark", "=ds=#w2#", "16.37%" }, - { 18203, "INV_Misc_MonsterClaw_04", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#", "17.82%" }, - { 17073, "INV_Hammer_04", "=q4=Earthshaker", "=ds=#h2#, #w6#", "16.75%" }, - { 18822, "INV_Sword_28", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "5.68%" }, + { 17065, "INV_Jewelry_Amulet_03", "=q4=Medallion of Steadfast Might", "=ds=#s2#", "17%" }, + { 18829, "INV_Shoulder_04", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "5%" }, + { 18823, "INV_Gauntlets_23", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "5%" }, + { 19143, "INV_Gauntlets_26", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "5%" }, + { 19136, "INV_Belt_11", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "5%" }, + { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "5%" }, + { 19144, "INV_Boots_Chain_05", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "5%" }, + { 18824, "INV_Boots_Plate_08", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "5%" }, + { 18821, "INV_Jewelry_Ring_07", "=q4=Quick Strike Ring", "=ds=#s13#", "5%" }, + { 18820, "INV_Misc_StoneTablet_11", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "5%" }, + { 19142, "INV_Misc_Book_09", "=q4=Fire Runed Grimoire", "=ds=#s15#", "5%" }, + { 17069, "INV_Weapon_Bow_08", "=q4=Striker's Mark", "=ds=#w2#", "20%" }, + { 18203, "INV_Misc_MonsterClaw_04", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#", "20%" }, + { 17073, "INV_Hammer_04", "=q4=Earthshaker", "=ds=#h2#, #w6#", "20%" }, + { 18822, "INV_Sword_28", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "5%" }, }; - MCGehennas = { - { 16812, "INV_Gauntlets_14", "=q4=Gloves of Prophecy", "=ds=#s9#, #a1# =q9=#c5#", "18.65%" }, - { 16826, "INV_Gauntlets_21", "=q4=Nightslayer Gloves", "=ds=#s9#, #a2# =q12=#c6#", "19.47%" }, - { 16849, "INV_Boots_Chain_13", "=q4=Giantstalker's Boots", "=ds=#s12#, #a3# =q14=#c2#", "14.54%" }, - { 16839, "INV_Gauntlets_11", "=q4=Earthfury Gauntlets", "=ds=#s9#, #a3# =q15=#c7#", "7.38%" }, - { 16860, "INV_Gauntlets_29", "=q4=Lawbringer Gauntlets", "=ds=#s9#, #a4# =q16=#c4#", "11.77%" }, - { 16862, "INV_Boots_Plate_04", "=q4=Sabatons of Might", "=ds=#s12#, #a4# =q17=#c9#", "14.48%" }, + MCGehennas = { --https://database.turtle-wow.org/?npc=12259 + { 16812, "INV_Gauntlets_14", "=q4=Gloves of Prophecy", "=ds=#s9#, #a1# =q9=#c5#", "25%" }, + { 16826, "INV_Gauntlets_21", "=q4=Nightslayer Gloves", "=ds=#s9#, #a2# =q12=#c6#", "25%" }, + { 16849, "INV_Boots_Chain_13", "=q4=Giantstalker's Boots", "=ds=#s12#, #a3# =q14=#c2#", "25%" }, + { 16839, "INV_Gauntlets_11", "=q4=Earthfury Gauntlets", "=ds=#s9#, #a3# =q15=#c7#", "25%" }, + { 16860, "INV_Gauntlets_29", "=q4=Lawbringer Gauntlets", "=ds=#s9#, #a4# =q16=#c4#", "25%" }, + { 16862, "INV_Boots_Plate_04", "=q4=Sabatons of Might", "=ds=#s12#, #a4# =q17=#c9#", "25%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -1273,56 +1306,56 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 18870, "INV_Helmet_18", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "1.77%" }, - { 19145, "INV_Chest_Cloth_18", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "3.83%" }, - { 19146, "INV_Bracer_04", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "3.53%" }, - { 18872, "INV_Pants_08", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "3.37%" }, - { 18875, "INV_Pants_12", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "3.57%" }, - { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "3.48%" }, - { 18879, "INV_Jewelry_Ring_14", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "3.78%" }, - { 19147, "INV_Jewelry_Ring_38", "=q4=Ring of Spell Power", "=ds=#s13#", "3.78%" }, - { 17077, "INV_Staff_13", "=q4=Crimson Shocker", "=ds=#w12#", "3.34%" }, - { 18878, "INV_Weapon_ShortBlade_07", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "3.79%" }, + { 18870, "INV_Helmet_18", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "5%" }, + { 19145, "INV_Chest_Cloth_18", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "5%" }, + { 19146, "INV_Bracer_04", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "5%" }, + { 18872, "INV_Pants_08", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "5%" }, + { 18875, "INV_Pants_12", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "5%" }, + { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "5%" }, + { 18879, "INV_Jewelry_Ring_14", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "5%" }, + { 19147, "INV_Jewelry_Ring_38", "=q4=Ring of Spell Power", "=ds=#s13#", "5%" }, + { 17077, "INV_Staff_13", "=q4=Crimson Shocker", "=ds=#w12#", "5%" }, + { 18878, "INV_Weapon_ShortBlade_07", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "5%" }, }; - MCGarr = { - { 16813, "INV_Helmet_34", "=q4=Circlet of Prophecy", "=ds=#s1#, #a1# =q9=#c5#", "11.36%" }, - { 16795, "INV_Helmet_53", "=q4=Arcanist Crown", "=ds=#s1#, #a1# =q10=#c3#", "11.31%" }, - { 16808, "INV_Helmet_08", "=q4=Felheart Horns", "=ds=#s1#, #a1# =q11=#c8#", "10.62%" }, - { 16821, "INV_Helmet_41", "=q4=Nightslayer Cover", "=ds=#s1#, #a2# =q12=#c6#", "10.38%" }, - { 16834, "INV_Helmet_09", "=q4=Cenarion Helm", "=ds=#s1#, #a2# =q13=#c1#", "11.51%" }, - { 16846, "INV_Helmet_05", "=q4=Giantstalker's Helmet", "=ds=#s1#, #a3# =q14=#c2#", "11.57%" }, - { 16842, "INV_Helmet_09", "=q4=Earthfury Helmet", "=ds=#s1#, #a3# =q15=#c7#", "3.91%" }, - { 16854, "INV_Helmet_05", "=q4=Lawbringer Helm", "=ds=#s1#, #a4# =q16=#c4#", "7.23%" }, - { 16866, "INV_Helmet_09", "=q4=Helm of Might", "=ds=#s1#, #a4# =q17=#c9#", "11.39%" }, + MCGarr = { --https://database.turtle-wow.org/?npc=12057 + { 16813, "INV_Helmet_34", "=q4=Circlet of Prophecy", "=ds=#s1#, #a1# =q9=#c5#", "20%" }, + { 16795, "INV_Helmet_53", "=q4=Arcanist Crown", "=ds=#s1#, #a1# =q10=#c3#", "20%" }, + { 16808, "INV_Helmet_08", "=q4=Felheart Horns", "=ds=#s1#, #a1# =q11=#c8#", "20%" }, + { 16821, "INV_Helmet_41", "=q4=Nightslayer Cover", "=ds=#s1#, #a2# =q12=#c6#", "20%" }, + { 16834, "INV_Helmet_09", "=q4=Cenarion Helm", "=ds=#s1#, #a2# =q13=#c1#", "17%" }, + { 16846, "INV_Helmet_05", "=q4=Giantstalker's Helmet", "=ds=#s1#, #a3# =q14=#c2#", "17%" }, + { 16842, "INV_Helmet_09", "=q4=Earthfury Helmet", "=ds=#s1#, #a3# =q15=#c7#", "17%" }, + { 16854, "INV_Helmet_05", "=q4=Lawbringer Helm", "=ds=#s1#, #a4# =q16=#c4#", "17%" }, + { 16866, "INV_Helmet_09", "=q4=Helm of Might", "=ds=#s1#, #a4# =q17=#c9#", "17%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 17782, "", "=q5=Talisman of Binding Shard", "=q1=#s2#", "4%" }, - { 18564, "Spell_Ice_Lament", "=q5=Bindings of the Windseeker", "=q1=#m3# =ds=#m9#", "3.74%" }, + { 17782, "INV_Jewelry_Amulet_04", "=q5=Talisman of Binding Shard", "=q1=#s2#", "5%" }, + { 18564, "Spell_Ice_Lament", "=q5=Bindings of the Windseeker", "=q1=#m3# =ds=#m9#", "5%" }, { 19019, "INV_Sword_39", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4# =ds=#h1#, #w10#" }, - { 18829, "INV_Shoulder_04", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "1.68%" }, - { 18823, "INV_Gauntlets_23", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "5.23%" }, - { 19143, "INV_Gauntlets_26", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "3.84%" }, - { 19136, "INV_Belt_11", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "4.80%" }, - { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "2.82%" }, - { 19144, "INV_Boots_Chain_05", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "1.48%" }, - { 18824, "INV_Boots_Plate_08", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "3.05%" }, - { 18821, "INV_Jewelry_Ring_07", "=q4=Quick Strike Ring", "=ds=#s13#", "4.48%" }, - { 18820, "INV_Misc_StoneTablet_11", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "4.13%" }, - { 19142, "INV_Misc_Book_09", "=q4=Fire Runed Grimoire", "=ds=#s15#", "3.69%" }, - { 17066, "INV_Shield_10", "=q4=Drillborer Disk", "=ds=#w8#", "11.85%" }, - { 17071, "INV_Weapon_ShortBlade_18", "=q4=Gutgore Ripper", "=ds=#h1#, #w4#", "11.21%" }, - { 17105, "INV_Hammer_05", "=q4=Aurastone Hammer", "=ds=#h1#, #w6#", "12.67%" }, - { 18832, "INV_Sword_15", "=q4=Brutality Blade", "=ds=#h1#, #w10#", "13.27%" }, - { 18822, "INV_Sword_28", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "4.09%" }, + { 18829, "INV_Shoulder_04", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "5%" }, + { 18823, "INV_Gauntlets_23", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "5%" }, + { 19143, "INV_Gauntlets_26", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "5%" }, + { 19136, "INV_Belt_11", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "5%" }, + { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "5%" }, + { 19144, "INV_Boots_Chain_05", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "5%" }, + { 18824, "INV_Boots_Plate_08", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "5%" }, + { 18821, "INV_Jewelry_Ring_07", "=q4=Quick Strike Ring", "=ds=#s13#", "5%" }, + { 18820, "INV_Misc_StoneTablet_11", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "5%" }, + { 19142, "INV_Misc_Book_09", "=q4=Fire Runed Grimoire", "=ds=#s15#", "5%" }, + { 17066, "INV_Shield_10", "=q4=Drillborer Disk", "=ds=#w8#", "17%" }, + { 17071, "INV_Weapon_ShortBlade_18", "=q4=Gutgore Ripper", "=ds=#h1#, #w4#", "20%" }, + { 17105, "INV_Hammer_05", "=q4=Aurastone Hammer", "=ds=#h1#, #w6#", "20%" }, + { 18832, "INV_Sword_15", "=q4=Brutality Blade", "=ds=#h1#, #w10#", "20%" }, + { 18822, "INV_Sword_28", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "5%" }, }; - MCShazzrah = { - { 16811, "INV_Boots_07", "=q4=Boots of Prophecy", "=ds=#s12#, #a1# =q9=#c5#", "14.90%" }, - { 16801, "INV_Gauntlets_14", "=q4=Arcanist Gloves", "=ds=#s9#, #a1# =q10=#c3#", "19.59%" }, - { 16803, "INV_Boots_Cloth_05", "=q4=Felheart Slippers", "=ds=#s12#, #a1# =q11=#c8#", "15.28%" }, - { 16824, "INV_Boots_08", "=q4=Nightslayer Boots", "=ds=#s12#, #a2# =q12=#c6#", "15.58%" }, - { 16831, "INV_Gauntlets_07", "=q4=Cenarion Gloves", "=ds=#s9#, #a2# =q13=#c1#", "19.53%" }, - { 16852, "INV_Gauntlets_10", "=q4=Giantstalker's Gloves", "=ds=#s9#, #a3# =q14=#c2#", "18.58%" }, + MCShazzrah = { --https://database.turtle-wow.org/?npc=12264 + { 16811, "INV_Boots_07", "=q4=Boots of Prophecy", "=ds=#s12#, #a1# =q9=#c5#", "25%" }, + { 16801, "INV_Gauntlets_14", "=q4=Arcanist Gloves", "=ds=#s9#, #a1# =q10=#c3#", "33%" }, + { 16803, "INV_Boots_Cloth_05", "=q4=Felheart Slippers", "=ds=#s12#, #a1# =q11=#c8#", "25%" }, + { 16824, "INV_Boots_08", "=q4=Nightslayer Boots", "=ds=#s12#, #a2# =q12=#c6#", "25%" }, + { 16831, "INV_Gauntlets_07", "=q4=Cenarion Gloves", "=ds=#s9#, #a2# =q13=#c1#", "33%" }, + { 16852, "INV_Gauntlets_10", "=q4=Giantstalker's Gloves", "=ds=#s9#, #a3# =q14=#c2#", "33%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -1332,23 +1365,23 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 18870, "INV_Helmet_18", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "0.78%" }, - { 19145, "INV_Chest_Cloth_18", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "1.97%" }, - { 19146, "INV_Bracer_04", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "1.85%" }, - { 18872, "INV_Pants_08", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "1.84%" }, - { 18875, "INV_Pants_12", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "1.81%" }, - { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "2.22%" }, - { 18879, "INV_Jewelry_Ring_14", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "1.72%" }, - { 19147, "INV_Jewelry_Ring_38", "=q4=Ring of Spell Power", "=ds=#s13#", "1.99%" }, - { 17077, "INV_Staff_13", "=q4=Crimson Shocker", "=ds=#w12#", "3.32%" }, - { 18878, "INV_Weapon_ShortBlade_07", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "2.27%" }, + { 18870, "INV_Helmet_18", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "3%" }, + { 19145, "INV_Chest_Cloth_18", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "3%" }, + { 19146, "INV_Bracer_04", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "3%" }, + { 18872, "INV_Pants_08", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "3%" }, + { 18875, "INV_Pants_12", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "3%" }, + { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "3%" }, + { 18879, "INV_Jewelry_Ring_14", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "3%" }, + { 19147, "INV_Jewelry_Ring_38", "=q4=Ring of Spell Power", "=ds=#s13#", "3%" }, + { 17077, "INV_Staff_13", "=q4=Crimson Shocker", "=ds=#w12#", "3%" }, + { 18878, "INV_Weapon_ShortBlade_07", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "3%" }, }; - MCGeddon = { - { 16797, "INV_Shoulder_02", "=q4=Arcanist Mantle", "=ds=#s3#, #a1# =q10=#c3#", "19.92%" }, - { 16807, "INV_Shoulder_23", "=q4=Felheart Shoulder Pads", "=ds=#s3#, #a1# =q11=#c8#", "19.78%" }, - { 16836, "INV_Shoulder_07", "=q4=Cenarion Spaulders", "=ds=#s3#, #a2# =q13=#c1#", "19.52%" }, - { 16844, "INV_Shoulder_29", "=q4=Earthfury Epaulets", "=ds=#s3#, #a3# =q15=#c7#", "7.29%" }, - { 16856, "INV_Shoulder_20", "=q4=Lawbringer Spaulders", "=ds=#s3#, #a4# =q16=#c4#", "12.62%" }, + MCGeddon = { --https://database.turtle-wow.org/?npc=12056 + { 16797, "INV_Shoulder_02", "=q4=Arcanist Mantle", "=ds=#s3#, #a1# =q10=#c3#", "33%" }, + { 16807, "INV_Shoulder_23", "=q4=Felheart Shoulder Pads", "=ds=#s3#, #a1# =q11=#c8#", "33%" }, + { 16836, "INV_Shoulder_07", "=q4=Cenarion Spaulders", "=ds=#s3#, #a2# =q13=#c1#", "30%" }, + { 16844, "INV_Shoulder_29", "=q4=Earthfury Epaulets", "=ds=#s3#, #a3# =q15=#c7#", "30%" }, + { 16856, "INV_Shoulder_20", "=q4=Lawbringer Spaulders", "=ds=#s3#, #a4# =q16=#c4#", "60%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -1357,57 +1390,57 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 18563, "Spell_Ice_Lament", "=q5=Bindings of the Windseeker", "=q1=#m3# =ds=#m10#", "3.78%" }, + { 18563, "Spell_Ice_Lament", "=q5=Bindings of the Windseeker", "=q1=#m3# =ds=#m10#", "6%" }, { 19019, "INV_Sword_39", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4# =ds=#h1#, #w10#" }, - { 18829, "INV_Shoulder_04", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "1.04%" }, - { 18823, "INV_Gauntlets_23", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "3.04%" }, - { 19143, "INV_Gauntlets_26", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "2.61%" }, - { 19136, "INV_Belt_11", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "2.44%" }, - { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "1.77%" }, - { 19144, "INV_Boots_Chain_05", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "1.00%" }, - { 18824, "INV_Boots_Plate_08", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "1.48%" }, - { 18821, "INV_Jewelry_Ring_07", "=q4=Quick Strike Ring", "=ds=#s13#", "2.61%" }, - { 17110, "INV_Jewelry_Ring_21", "=q4=Seal of the Archmagus", "=ds=#s13#", "21.93%" }, - { 18820, "INV_Misc_StoneTablet_11", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "2.68%" }, - { 19142, "INV_Misc_Book_09", "=q4=Fire Runed Grimoire", "=ds=#s15#", "2.59%" }, - { 18822, "INV_Sword_28", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "2.70%" }, + { 18829, "INV_Shoulder_04", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "4%" }, + { 18823, "INV_Gauntlets_23", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "1%" }, + { 19143, "INV_Gauntlets_26", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "4%" }, + { 19136, "INV_Belt_11", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "4%" }, + { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "4%" }, + { 19144, "INV_Boots_Chain_05", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "4%" }, + { 18824, "INV_Boots_Plate_08", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "4%" }, + { 18821, "INV_Jewelry_Ring_07", "=q4=Quick Strike Ring", "=ds=#s13#", "4%" }, + { 17110, "INV_Jewelry_Ring_21", "=q4=Seal of the Archmagus", "=ds=#s13#", "4%" }, + { 18820, "INV_Misc_StoneTablet_11", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "4%" }, + { 19142, "INV_Misc_Book_09", "=q4=Fire Runed Grimoire", "=ds=#s15#", "4%" }, + { 18822, "INV_Sword_28", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "4%" }, }; - MCGolemagg = { - { 16815, "INV_Chest_Cloth_03", "=q4=Robes of Prophecy", "=ds=#s5#, #a1# =q9=#c5#", "15.65%" }, - { 16798, "INV_Chest_Cloth_03", "=q4=Arcanist Robes", "=ds=#s5#, #a1# =q10=#c3#", "16.51%" }, - { 16809, "INV_Chest_Cloth_09", "=q4=Felheart Robes", "=ds=#s5#, #a1# =q11=#c8#", "15.66%" }, - { 16820, "INV_Chest_Cloth_07", "=q4=Nightslayer Chestpiece", "=ds=#s5#, #a2# =q12=#c6#", "16.76%" }, - { 16833, "INV_Chest_Cloth_06", "=q4=Cenarion Vestments", "=ds=#s5#, #a2# =q13=#c1#", "15.21%" }, - { 16845, "INV_Chest_Chain_03", "=q4=Giantstalker's Breastplate", "=ds=#s5#, #a3# =q14=#c2#", "15.83%" }, - { 16841, "INV_Chest_Chain_11", "=q4=Earthfury Vestments", "=ds=#s5#, #a3# =q15=#c7#", "6.08%" }, - { 16853, "INV_Chest_Plate03", "=q4=Lawbringer Chestguard", "=ds=#s5#, #a4# =q16=#c4#", "9.53%" }, - { 16865, "INV_Chest_Plate16", "=q4=Breastplate of Might", "=ds=#s5#, #a4# =q17=#c9#", "15.28%" }, + MCGolemagg = { --https://database.turtle-wow.org/?npc=11988 + { 16815, "INV_Chest_Cloth_03", "=q4=Robes of Prophecy", "=ds=#s5#, #a1# =q9=#c5#", "25%" }, + { 16798, "INV_Chest_Cloth_03", "=q4=Arcanist Robes", "=ds=#s5#, #a1# =q10=#c3#", "25%" }, + { 16809, "INV_Chest_Cloth_09", "=q4=Felheart Robes", "=ds=#s5#, #a1# =q11=#c8#", "25%" }, + { 16820, "INV_Chest_Cloth_07", "=q4=Nightslayer Chestpiece", "=ds=#s5#, #a2# =q12=#c6#", "25%" }, + { 16833, "INV_Chest_Cloth_06", "=q4=Cenarion Vestments", "=ds=#s5#, #a2# =q13=#c1#", "20%" }, + { 16845, "INV_Chest_Chain_03", "=q4=Giantstalker's Breastplate", "=ds=#s5#, #a3# =q14=#c2#", "20%" }, + { 16841, "INV_Chest_Chain_11", "=q4=Earthfury Vestments", "=ds=#s5#, #a3# =q15=#c7#", "20%" }, + { 16853, "INV_Chest_Plate03", "=q4=Lawbringer Chestguard", "=ds=#s5#, #a4# =q16=#c4#", "20%" }, + { 16865, "INV_Chest_Plate16", "=q4=Breastplate of Might", "=ds=#s5#, #a4# =q17=#c9#", "20%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 17203, "Spell_Fire_SealOfFire", "=q4=Sulfuron Ingot", "=q1=#m3#=ds=, =q1=#m31#", "11.98%" }, + { 17203, "Spell_Fire_SealOfFire", "=q4=Sulfuron Ingot", "=q1=#m3#=ds=, =q1=#m31#", "80%" }, { 17182, "INV_Hammer_Unique_Sulfuras", "=q5=Sulfuras, Hand of Ragnaros", "=ds=#h2#, #w6#" }, - { 18829, "INV_Shoulder_04", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "1.20%" }, - { 18823, "INV_Gauntlets_23", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "2.65%" }, - { 19143, "INV_Gauntlets_26", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "2.17%" }, - { 19136, "INV_Belt_11", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "2.18%" }, - { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "1.44%" }, - { 19144, "INV_Boots_Chain_05", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "1.00%" }, - { 18824, "INV_Boots_Plate_08", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "1.69%" }, - { 18821, "INV_Jewelry_Ring_07", "=q4=Quick Strike Ring", "=ds=#s13#", "2.26%" }, - { 18820, "INV_Misc_StoneTablet_11", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "2.91%" }, - { 19142, "INV_Misc_Book_09", "=q4=Fire Runed Grimoire", "=ds=#s15#", "2.46%" }, - { 17072, "INV_Weapon_Rifle_09", "=q4=Blastershot Launcher", "=ds=#w5#", "17.83%" }, - { 17103, "INV_Sword_39", "=q4=Azuresong Mageblade", "=ds=#h3#, #w10#", "17.59%" }, - { 18822, "INV_Sword_28", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "2.89%" }, - { 18842, "INV_Staff_13", "=q4=Staff of Dominance", "=ds=#w9#", "18.95%" }, + { 18829, "INV_Shoulder_04", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "2%" }, + { 18823, "INV_Gauntlets_23", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "2%" }, + { 19143, "INV_Gauntlets_26", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "2%" }, + { 19136, "INV_Belt_11", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "2%" }, + { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "2%" }, + { 19144, "INV_Boots_Chain_05", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "2%" }, + { 18824, "INV_Boots_Plate_08", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "2%" }, + { 18821, "INV_Jewelry_Ring_07", "=q4=Quick Strike Ring", "=ds=#s13#", "2%" }, + { 18820, "INV_Misc_StoneTablet_11", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "2%" }, + { 19142, "INV_Misc_Book_09", "=q4=Fire Runed Grimoire", "=ds=#s15#", "2%" }, + { 17072, "INV_Weapon_Rifle_09", "=q4=Blastershot Launcher", "=ds=#w5#", "25%" }, + { 17103, "INV_Sword_39", "=q4=Azuresong Mageblade", "=ds=#h3#, #w10#", "25%" }, + { 18822, "INV_Sword_28", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "2%" }, + { 18842, "INV_Staff_13", "=q4=Staff of Dominance", "=ds=#w9#", "25%" }, }; - MCSulfuron = { - { 16816, "INV_Shoulder_02", "=q4=Mantle of Prophecy", "=ds=#s3#, #a1# =q9=#c5#", "21.06%" }, - { 16823, "INV_Shoulder_25", "=q4=Nightslayer Shoulder Pads", "=ds=#s3#, #a2# =q12=#c6#", "20.66%" }, - { 16848, "INV_Shoulder_10", "=q4=Giantstalker's Epaulets", "=ds=#s3#, #a3# =q14=#c2#", "19.64%" }, - { 16868, "INV_Shoulder_15", "=q4=Pauldrons of Might", "=ds=#s3#, #a4# =q17=#c9#", "21.14%" }, + MCSulfuron = { --https://database.turtle-wow.org/?npc=12098 + { 16816, "INV_Shoulder_02", "=q4=Mantle of Prophecy", "=ds=#s3#, #a1# =q9=#c5#", "33%" }, + { 16823, "INV_Shoulder_25", "=q4=Nightslayer Shoulder Pads", "=ds=#s3#, #a2# =q12=#c6#", "30%" }, + { 16848, "INV_Shoulder_10", "=q4=Giantstalker's Epaulets", "=ds=#s3#, #a3# =q14=#c2#", "33%" }, + { 16868, "INV_Shoulder_15", "=q4=Pauldrons of Might", "=ds=#s3#, #a4# =q17=#c9#", "30%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -1419,490 +1452,490 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 18870, "INV_Helmet_18", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "1.26%" }, - { 19145, "INV_Chest_Cloth_18", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "2.80%" }, - { 19146, "INV_Bracer_04", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "2.70%" }, - { 18872, "INV_Pants_08", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "2.54%" }, - { 18875, "INV_Pants_12", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "2.58%" }, - { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "2.54%" }, - { 18879, "INV_Jewelry_Ring_14", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "2.32%" }, - { 19147, "INV_Jewelry_Ring_38", "=q4=Ring of Spell Power", "=ds=#s13#", "2.39%" }, - { 17077, "INV_Staff_13", "=q4=Crimson Shocker", "=ds=#w12#", "2.26%" }, - { 18878, "INV_Weapon_ShortBlade_07", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "2.53%" }, - { 17074, "INV_Spear_08", "=q4=Shadowstrike", "=ds=#w7#", "23.50%" }, + { 18870, "INV_Helmet_18", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "4%" }, + { 19145, "INV_Chest_Cloth_18", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "4%" }, + { 19146, "INV_Bracer_04", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "4%" }, + { 18872, "INV_Pants_08", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "4%" }, + { 18875, "INV_Pants_12", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "4%" }, + { 18861, "INV_Pants_04", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "4%" }, + { 18879, "INV_Jewelry_Ring_14", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "4%" }, + { 19147, "INV_Jewelry_Ring_38", "=q4=Ring of Spell Power", "=ds=#s13#", "4%" }, + { 17077, "INV_Staff_13", "=q4=Crimson Shocker", "=ds=#w12#", "4%" }, + { 18878, "INV_Weapon_ShortBlade_07", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "4%" }, + { 17074, "INV_Spear_08", "=q4=Shadowstrike", "=ds=#w7#", "3%" }, { 17223, "INV_Spear_08", "=q4=Thunderstrike", "=ds=#w7#" }, }; - MCMajordomo = { - { 19139, "INV_Shoulder_23", "=q4=Fireguard Shoulders", "=ds=#s3#, #a2#", "15.87%" }, - { 18810, "INV_Shoulder_18", "=q4=Wild Growth Spaulders", "=ds=#s3#, #a2#", "16.91%" }, - { 18811, "INV_Misc_Cape_18", "=q4=Fireproof Cloak", "=ds=#s4#", "15.12%" }, - { 18808, "INV_Gauntlets_03", "=q4=Gloves of the Hypnotic Flame", "=ds=#s9#, #a1#", "15.36%" }, - { 18809, "INV_Belt_12", "=q4=Sash of Whispered Secrets", "=ds=#s10#, #a1#", "15.93%" }, - { 18812, "INV_Bracer_02", "=q4=Wristguards of True Flight", "=ds=#s8#, #a3#", "18.04%" }, - { 18806, "INV_Boots_Plate_09", "=q4=Core Forged Greaves", "=ds=#s12#, #a4#", "16.53%" }, - { 19140, "INV_Jewelry_Ring_39", "=q4=Cauterizing Band", "=ds=#s13#", "15.10%" }, - { 18805, "INV_Weapon_ShortBlade_11", "=q4=Core Hound Tooth", "=ds=#h1#, #w4#", "16.06%" }, - { 18803, "INV_Gizmo_02", "=q4=Finkle's Lava Dredger", "=ds=#h2#, #w6#", "12.43%" }, + MCMajordomo = { --https://database.turtle-wow.org/?object=179703 + { 19139, "INV_Shoulder_23", "=q4=Fireguard Shoulders", "=ds=#s3#, #a2#", "20%" }, + { 18810, "INV_Shoulder_18", "=q4=Wild Growth Spaulders", "=ds=#s3#, #a2#", "20%" }, + { 18811, "INV_Misc_Cape_18", "=q4=Fireproof Cloak", "=ds=#s4#", "20%" }, + { 18808, "INV_Gauntlets_03", "=q4=Gloves of the Hypnotic Flame", "=ds=#s9#, #a1#", "20%" }, + { 18809, "INV_Belt_12", "=q4=Sash of Whispered Secrets", "=ds=#s10#, #a1#", "20%" }, + { 18812, "INV_Bracer_02", "=q4=Wristguards of True Flight", "=ds=#s8#, #a3#", "20%" }, + { 18806, "INV_Boots_Plate_09", "=q4=Core Forged Greaves", "=ds=#s12#, #a4#", "20%" }, + { 19140, "INV_Jewelry_Ring_39", "=q4=Cauterizing Band", "=ds=#s13#", "20%" }, + { 18805, "INV_Weapon_ShortBlade_11", "=q4=Core Hound Tooth", "=ds=#h1#, #w4#", "20%" }, + { 18803, "INV_Gizmo_02", "=q4=Finkle's Lava Dredger", "=ds=#h2#, #w6#", "20%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 18703, "Spell_Nature_ResistNature", "=q4=Ancient Petrified Leaf", "=ds=#m2# =q14=#c2#", "35.25%" }, + { 18703, "Spell_Nature_ResistNature", "=q4=Ancient Petrified Leaf", "=ds=#m2# =q14=#c2#", "50%" }, { 18714, "INV_Misc_Quiver_03", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4# =ds=#e9# =q14=#c2#" }, { 18713, "INV_Weapon_Bow_01", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4# =ds=#w2# =q14=#c2#" }, { 18715, "INV_Staff_21", "=q4=Lok'delar, Stave of the Ancient Keepers", "=q1=#m4# =ds=#w9# =q14=#c2#" }, { 0,"","","" }, - { 18646, "Spell_Holy_MindSooth", "=q4=The Eye of Divinity", "=ds=#s14# =q9=#c5#", "28.30%" }, + { 18646, "Spell_Holy_MindSooth", "=q4=The Eye of Divinity", "=ds=#s14# =q9=#c5#", "50%" }, { 18608, "INV_Staff_30", "=q4=Benediction", "=q1=#m4# =ds=#w9# =q9=#c5#" }, { 18609, "INV_Staff_12", "=q4=Anathema", "=q1=#m4# =ds=#w9# =q9=#c5#" }, }; - MCRagnaros = { - { 16922, "INV_Pants_08", "=q4=Leggings of Transcendence", "=ds=#s11#, #a1# =q9=#c5#", "17.30%" }, - { 16915, "INV_Pants_08", "=q4=Netherwind Pants", "=ds=#s11#, #a1# =q10=#c3#", "17.37%" }, - { 16930, "INV_Pants_07", "=q4=Nemesis Leggings", "=ds=#s11#, #a1# =q11=#c8#", "16.87%" }, - { 16909, "INV_Pants_06", "=q4=Bloodfang Pants", "=ds=#s11#, #a2# =q12=#c6#", "17.18%" }, - { 16901, "INV_Pants_06", "=q4=Stormrage Legguards", "=ds=#s11#, #a2# =q13=#c1#", "15.49%" }, - { 16938, "INV_Pants_03", "=q4=Dragonstalker's Legguards", "=ds=#s11#, #a3# =q14=#c2#", "16.02%" }, - { 16946, "INV_Pants_03", "=q4=Legplates of Ten Storms", "=ds=#s11#, #a3# =q15=#c7#", "5.97% " }, - { 16954, "INV_Pants_04", "=q4=Judgement Legplates", "=ds=#s11#, #a4# =q16=#c4#", "10.81%" }, - { 16962, "INV_Pants_04", "=q4=Legplates of Wrath", "=ds=#s11#, #a4# =q17=#c9#", "17.23%" }, + MCRagnaros = { --https://database.turtle-wow.org/?npc=11502 + { 16922, "INV_Pants_08", "=q4=Leggings of Transcendence", "=ds=#s11#, #a1# =q9=#c5#", "13%" }, + { 16915, "INV_Pants_08", "=q4=Netherwind Pants", "=ds=#s11#, #a1# =q10=#c3#", "13%" }, + { 16930, "INV_Pants_07", "=q4=Nemesis Leggings", "=ds=#s11#, #a1# =q11=#c8#", "13%" }, + { 16909, "INV_Pants_06", "=q4=Bloodfang Pants", "=ds=#s11#, #a2# =q12=#c6#", "13%" }, + { 16901, "INV_Pants_06", "=q4=Stormrage Legguards", "=ds=#s11#, #a2# =q13=#c1#", "13%" }, + { 16938, "INV_Pants_03", "=q4=Dragonstalker's Legguards", "=ds=#s11#, #a3# =q14=#c2#", "13%" }, + { 16946, "INV_Pants_03", "=q4=Legplates of Ten Storms", "=ds=#s11#, #a3# =q15=#c7#", "13%" }, + { 16954, "INV_Pants_04", "=q4=Judgement Legplates", "=ds=#s11#, #a4# =q16=#c4#", "13%" }, + { 16962, "INV_Pants_04", "=q4=Legplates of Wrath", "=ds=#s11#, #a4# =q17=#c9#", "13%" }, { 0,"","","" }, - { 17204, "INV_Misc_Gem_Pearl_05", "=q5=Eye of Sulfuras", "=q1=#m31#", "3.42%" }, + { 17204, "INV_Misc_Gem_Pearl_05", "=q5=Eye of Sulfuras", "=q1=#m31#", "6%" }, { 17182, "INV_Hammer_Unique_Sulfuras", "=q5=Sulfuras, Hand of Ragnaros", "=ds=#h2#, #w6#" }, { 0,"","","" }, - { 19017, "Spell_Fire_SelfDestruct", "=q5=Essence of the Firelord", "=q1=#m3#", "100%" }, + { 19017, "Spell_Fire_SelfDestruct", "=q5=Essence of the Firelord", "=q1=#m3#", "20%" }, { 19019, "INV_Sword_39", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4# =ds=#h1#, #w10#" }, - { 18817, "INV_Crown_02", "=q4=Crown of Destruction", "=ds=#s1#, #a3#", "16.75%" }, - { 18814, "INV_Jewelry_Amulet_05", "=q4=Choker of the Fire Lord", "=ds=#s2#", "16.08%" }, - { 17102, "INV_Misc_Cape_17", "=q4=Cloak of the Shrouded Mists", "=ds=#s4#", "14.31%" }, - { 17107, "INV_Misc_Cape_08", "=q4=Dragon's Blood Cape", "=ds=#s4#", "15.32%" }, - { 19137, "INV_Belt_29", "=q4=Onslaught Girdle", "=ds=#s10#, #a4#", "13.18%" }, - { 17063, "INV_Jewelry_Ring_15", "=q4=Band of Accuria", "=ds=#s13#", "14.81%" }, - { 19138, "INV_Jewelry_Ring_36", "=q4=Band of Sulfuras", "=ds=#s13#", "15.64%" }, - { 18815, "Spell_Fire_Fire", "=q4=Essence of the Pure Flame", "=ds=#s14#", "17.80%" }, - { 17082, "INV_Misc_Orb_05", "=q4=Shard of the Flame", "=ds=#s14#", "4.65%" }, - { 17106, "INV_Shield_08", "=q4=Malistar's Defender", "=ds=#w8#", "13.88%" }, - { 18816, "INV_Sword_48", "=q4=Perdition's Blade", "=ds=#h1#, #w4#", "15.90%" }, - { 17104, "INV_Axe_09", "=q4=Spinal Reaper", "=ds=#h2#, #w1#", "4.63%" }, - { 17076, "INV_Sword_12", "=q4=Bonereaver's Edge", "=ds=#h2#, #w10#", "5.12%" }, + { 18817, "INV_Crown_02", "=q4=Crown of Destruction", "=ds=#s1#, #a3#", "20%" }, + { 18814, "INV_Jewelry_Amulet_05", "=q4=Choker of the Fire Lord", "=ds=#s2#", "20%" }, + { 17102, "INV_Misc_Cape_17", "=q4=Cloak of the Shrouded Mists", "=ds=#s4#", "20%" }, + { 17107, "INV_Misc_Cape_08", "=q4=Dragon's Blood Cape", "=ds=#s4#", "20%" }, + { 19137, "INV_Belt_29", "=q4=Onslaught Girdle", "=ds=#s10#, #a4#", "20%" }, + { 17063, "INV_Jewelry_Ring_15", "=q4=Band of Accuria", "=ds=#s13#", "20%" }, + { 19138, "INV_Jewelry_Ring_36", "=q4=Band of Sulfuras", "=ds=#s13#", "20%" }, + { 18815, "Spell_Fire_Fire", "=q4=Essence of the Pure Flame", "=ds=#s14#", "8%" }, + { 17082, "INV_Misc_Orb_05", "=q4=Shard of the Flame", "=ds=#s14#", "8%" }, + { 17106, "INV_Shield_08", "=q4=Malistar's Defender", "=ds=#w8#", "20%" }, + { 18816, "INV_Sword_48", "=q4=Perdition's Blade", "=ds=#h1#, #w4#", "20%" }, + { 17104, "INV_Axe_09", "=q4=Spinal Reaper", "=ds=#h2#, #w1#", "8%" }, + { 17076, "INV_Sword_12", "=q4=Bonereaver's Edge", "=ds=#h2#, #w10#", "8%" }, }; MCTrashMobs = { - { 16817, "INV_Belt_22", "=q4=Girdle of Prophecy", "=ds=#s10#, #a1# =q9=#c5#", "0.24%" }, - { 16802, "INV_Belt_30", "=q4=Arcanist Belt", "=ds=#s10#, #a1# =q10=#c3#", "0.24%" }, - { 16806, "INV_Belt_13", "=q4=Felheart Belt", "=ds=#s10#, #a1# =q11=#c8#", "0.36%" }, - { 16827, "INV_Belt_23", "=q4=Nightslayer Belt", "=ds=#s10#, #a2# =q12=#c6#", "0.28%" }, + { 16817, "INV_Belt_22", "=q4=Girdle of Prophecy", "=ds=#s10#, #a1# =q9=#c5#", "0.3%" }, + { 16802, "INV_Belt_30", "=q4=Arcanist Belt", "=ds=#s10#, #a1# =q10=#c3#", "0.3%" }, + { 16806, "INV_Belt_13", "=q4=Felheart Belt", "=ds=#s10#, #a1# =q11=#c8#", "0.3%" }, + { 16827, "INV_Belt_23", "=q4=Nightslayer Belt", "=ds=#s10#, #a2# =q12=#c6#", "0.3%" }, { 16828, "INV_Belt_06", "=q4=Cenarion Belt", "=ds=#s10#, #a2# =q13=#c1#", "0.3%" }, - { 16851, "INV_Belt_28", "=q4=Giantstalker's Belt", "=ds=#s10#, #a3# =q14=#c2#", "0.22%" }, - { 16838, "INV_Belt_14", "=q4=Earthfury Belt", "=ds=#s10#, #a3# =q15=#c7#", "0.2%" }, - { 16858, "INV_Belt_27", "=q4=Lawbringer Belt", "=ds=#s10#, #a4# =q16=#c4#", "0.2%" }, - { 16864, "INV_Belt_09", "=q4=Belt of Might", "=ds=#s10#, #a4# =q17=#c9#", "0.2%" }, + { 16851, "INV_Belt_28", "=q4=Giantstalker's Belt", "=ds=#s10#, #a3# =q14=#c2#", "0.3%" }, + { 16838, "INV_Belt_14", "=q4=Earthfury Belt", "=ds=#s10#, #a3# =q15=#c7#", "0.3%" }, + { 16858, "INV_Belt_27", "=q4=Lawbringer Belt", "=ds=#s10#, #a4# =q16=#c4#", "0.3%" }, + { 16864, "INV_Belt_09", "=q4=Belt of Might", "=ds=#s10#, #a4# =q17=#c9#", "0.3%" }, { 0,"","","" }, - { 81260, "", "=q4=Lavashard Axe", "=ds=#h1#, #w1#", "0.2%" }, - { 17011,"Spell_Nature_Earthquake","=q3=Lava Core","=ds=#m31#", "21.29%" }, - { 17010,"Spell_Fire_FlameBolt","=q3=Fiery Core","=ds=#m31#", "43.98%" }, - { 11382,"INV_Misc_Gem_Bloodstone_03","=q2=Blood of the Mountain","=ds=#m31# =q7=#x63#", "8.85%" }, - { 17012,"INV_Ammo_FireTar","=q1=Core Leather","=ds=#m31#" }, - { 16819, "INV_Bracer_09", "=q4=Vambraces of Prophecy", "=ds=#s8#, #a1# =q9=#c5#", "0.24%" }, - { 16799, "INV_Belt_29", "=q4=Arcanist Bindings", "=ds=#s8#, #a1# =q10=#c3#", "0.22%" }, - { 16804, "INV_Bracer_07", "=q4=Felheart Bracers", "=ds=#s8#, #a1# =q11=#c8#", "0.28%" }, - { 16825, "INV_Bracer_02", "=q4=Nightslayer Bracelets", "=ds=#s8#, #a2# =q12=#c6#", "0.2%" }, - { 16830, "INV_Bracer_03", "=q4=Cenarion Bracers", "=ds=#s8#, #a2# =q13=#c1#", "0.32%" }, - { 16850, "INV_Bracer_17", "=q4=Giantstalker's Bracers", "=ds=#s8#, #a3# =q14=#c2#", "0.28%" }, - { 16840, "INV_Bracer_16", "=q4=Earthfury Bracers", "=ds=#s8#, #a3# =q15=#c7#", "0.16%" }, - { 16857, "INV_Bracer_18", "=q4=Lawbringer Bracers", "=ds=#s8#, #a4# =q16=#c4#", "0.14%" }, - { 16861, "INV_Bracer_19", "=q4=Bracers of Might", "=ds=#s8#, #a4# =q17=#c9#", "0.24%" }, + { 81260, "INV_Axe_23", "=q4=Lavashard Axe", "=ds=#h1#, #w1#", "0.2%" }, + { 17011, "Spell_Nature_Earthquake","=q3=Lava Core","=ds=#m31#", "15%" }, + { 17010, "Spell_Fire_FlameBolt","=q3=Fiery Core","=ds=#m31#", "35%" }, + { 11382, "INV_Misc_Gem_Bloodstone_03","=q2=Blood of the Mountain","=ds=#m31# =q7=#x63#", "0.02%" }, + { 17012, "INV_Ammo_FireTar","=q1=Core Leather","=ds=#m31#" }, + { 16819, "INV_Bracer_09", "=q4=Vambraces of Prophecy", "=ds=#s8#, #a1# =q9=#c5#", "0.3%" }, + { 16799, "INV_Belt_29", "=q4=Arcanist Bindings", "=ds=#s8#, #a1# =q10=#c3#", "0.3%" }, + { 16804, "INV_Bracer_07", "=q4=Felheart Bracers", "=ds=#s8#, #a1# =q11=#c8#", "0.3%" }, + { 16825, "INV_Bracer_02", "=q4=Nightslayer Bracelets", "=ds=#s8#, #a2# =q12=#c6#", "0.3%" }, + { 16830, "INV_Bracer_03", "=q4=Cenarion Bracers", "=ds=#s8#, #a2# =q13=#c1#", "0.3%" }, + { 16850, "INV_Bracer_17", "=q4=Giantstalker's Bracers", "=ds=#s8#, #a3# =q14=#c2#", "0.3%" }, + { 16840, "INV_Bracer_16", "=q4=Earthfury Bracers", "=ds=#s8#, #a3# =q15=#c7#", "0.3%" }, + { 16857, "INV_Bracer_18", "=q4=Lawbringer Bracers", "=ds=#s8#, #a4# =q16=#c4#", "0.3%" }, + { 16861, "INV_Bracer_19", "=q4=Bracers of Might", "=ds=#s8#, #a4# =q17=#c9#", "0.3%" }, { 0,"","","" }, - { 81261, "", "=q4=Boots of Blistering Flames", "=ds=#s12#, #a1#", "0.2%" }, - { 81262, "", "=q4=Core Forged Helmet", "=ds=#s1#, #a4#", "0.2%" }, - { 81263, "", "=q4=Lost Dark Iron Chain", "=ds=#s2#", "0.2%" }, - { 81264, "", "=q4=Shoulderpads of True Flight", "=ds=#s3#, #a3#", "0.2%" }, - { 81265, "", "=q4=Ashskin Belt", "=ds=#s10#, #a2#", "0.2%" }, + { 81261, "inv_boots_02", "=q4=Boots of Blistering Flames", "=ds=#s12#, #a1#", "0.2%" }, + { 81262, "inv_helmet_10", "=q4=Core Forged Helmet", "=ds=#s1#, #a4#", "0.2%" }, + { 81263, "inv_belt_18", "=q4=Lost Dark Iron Chain", "=ds=#s2#", "0.2%" }, + { 81264, "inv_shoulder_28", "=q4=Shoulderpads of True Flight", "=ds=#s3#, #a3#", "0.2%" }, + { 81265, "inv_belt_16", "=q4=Ashskin Belt", "=ds=#s10#, #a2#", "0.2%" }, }; MCRANDOMBOSSDROPS = { - { 18264, "INV_Scroll_05", "=q3=Plans: Elemental Sharpening Stone", "=ds=#p2# #m14#", "1.02%" }, + { 18264, "INV_Scroll_05", "=q3=Plans: Elemental Sharpening Stone", "=ds=#p2# #m14#", "1%" }, { 18262, "INV_Stone_02", "=q2=Elemental Sharpening Stone", "=ds=#e12#" }, { 0,"","","" }, - { 18292, "INV_Scroll_05", "=q3=Schematic: Core Marksman Rifle", "=ds=#p5# #m14#", "0.96%" }, + { 18292, "INV_Scroll_05", "=q3=Schematic: Core Marksman Rifle", "=ds=#p5# #m14#", "1%" }, { 18282, "INV_Weapon_Rifle_05", "=q4=Core Marksman Rifle", "=ds=#w5#" }, { 0,"","","" }, - { 18291, "INV_Scroll_05", "=q3=Schematic: Force Reactive Disk", "=ds=#p5# #m14#", "0.92%" }, + { 18291, "INV_Scroll_05", "=q3=Schematic: Force Reactive Disk", "=ds=#p5# #m14#", "1%" }, { 18168, "Spell_Arcane_PortalDarnassus", "=q4=Force Reactive Disk", "=ds=#w8#" }, { 0,"","","" }, - { 18290, "INV_Scroll_05", "=q3=Schematic: Biznicks 247x128 Accurascope", "=ds=#p5# #m14#", "0.11%" }, + { 18290, "INV_Scroll_05", "=q3=Schematic: Biznicks 247x128 Accurascope", "=ds=#p5# #m14#", "1%" }, { 18283, "INV_Misc_Spyglass_02", "=q3=Biznicks 247x128 Accurascope", "=ds=#e13#" }, { 0,"","","" }, - { 18259, "INV_Misc_Note_01", "=q3=Formula: Enchant Weapon - Spell Power", "=ds=#p4# #m14#", "0.85%" }, + { 18259, "INV_Misc_Note_01", "=q3=Formula: Enchant Weapon - Spell Power", "=ds=#p4# #m14#", "1%" }, { 0,"","","" }, { 0,"","","" }, - { 18252, "INV_Scroll_05", "=q3=Pattern: Core Armor Kit", "=ds=#p7# #m14#", "0.85%" }, + { 18252, "INV_Scroll_05", "=q3=Pattern: Core Armor Kit", "=ds=#p7# #m14#", "1%" }, { 18251, "INV_Misc_ArmorKit_05", "=q3=Core Armor Kit", "=ds=#e12#" }, { 0,"","","" }, - { 18265, "INV_Scroll_05", "=q3=Pattern: Flarecore Wraps", "=ds=#p8# #m14#", "0.72%" }, + { 18265, "INV_Scroll_05", "=q3=Pattern: Flarecore Wraps", "=ds=#p8# #m14#", "1%" }, { 18263, "INV_Bracer_09", "=q4=Flarecore Wraps", "=ds=#s8#, #a1#" }, { 0,"","","" }, - { 21371, "INV_Scroll_05", "=q3=Pattern: Core Felcloth Bag", "=ds=#p8# #m14#", "0.33%" }, + { 21371, "INV_Scroll_05", "=q3=Pattern: Core Felcloth Bag", "=ds=#p8# #m14#", "1%" }, { 21342, "INV_Misc_Bag_CoreFelclothBag", "=q4=Core Felcloth Bag", "=ds=#m11# #e10# =q11=#c8#" }, { 0,"","","" }, - { 18257, "INV_Scroll_05", "=q3=Recipe: Major Rejuvenation Potion", "=ds=#p1# #m14#", "0.76%" }, + { 18257, "INV_Scroll_05", "=q3=Recipe: Major Rejuvenation Potion", "=ds=#p1# #m14#", "1%" }, { 18253, "INV_Potion_47", "=q1=Major Rejuvenation Potion", "=ds=#e1#" }, { 0,"","","" }, - { 18260, "INV_Misc_Note_01", "=q3=Formula: Enchant Weapon - Healing Power", "=ds=#p4# #m14#", "0.75%" }, + { 18260, "INV_Misc_Note_01", "=q3=Formula: Enchant Weapon - Healing Power", "=ds=#p4# #m14#", "1%" }, }; Onyxia = { - { 16921, "INV_Helmet_24", "=q4=Halo of Transcendence", "=ds=#s1#, #a1# =q9=#c5#", "13.39%" }, - { 16914, "INV_Helmet_70", "=q4=Netherwind Crown", "=ds=#s1#, #a1# =q10=#c3#", "14.09%" }, - { 16929, "INV_Helmet_08", "=q4=Nemesis Skullcap", "=ds=#s1#, #a1# =q11=#c8#", "13.54%" }, - { 16908, "INV_Helmet_41", "=q4=Bloodfang Hood", "=ds=#s1#, #a2# =q12=#c6#", "13.21%" }, - { 16900, "INV_Helmet_09", "=q4=Stormrage Cover", "=ds=#s1#, #a2# =q13=#c1#", "13.08%" }, - { 16939, "INV_Helmet_05", "=q4=Dragonstalker's Helm", "=ds=#s1#, #a3# =q14=#c2#", "13.91%" }, - { 16947, "INV_Helmet_69", "=q4=Helmet of Ten Storms", "=ds=#s1#, #a3# =q15=#c7#", "4.86%" }, - { 16955, "INV_Helmet_74", "=q4=Judgement Crown", "=ds=#s1#, #a4# =q16=#c4#", "8.64%" }, - { 16963, "INV_Helmet_71", "=q4=Helm of Wrath", "=ds=#s1#, #a4# =q17=#c9#", "13.65%" }, + { 16921, "INV_Helmet_24", "=q4=Halo of Transcendence", "=ds=#s1#, #a1# =q9=#c5#", "13%" }, + { 16914, "INV_Helmet_70", "=q4=Netherwind Crown", "=ds=#s1#, #a1# =q10=#c3#", "13%" }, + { 16929, "INV_Helmet_08", "=q4=Nemesis Skullcap", "=ds=#s1#, #a1# =q11=#c8#", "13%" }, + { 16908, "INV_Helmet_41", "=q4=Bloodfang Hood", "=ds=#s1#, #a2# =q12=#c6#", "13%" }, + { 16900, "INV_Helmet_09", "=q4=Stormrage Cover", "=ds=#s1#, #a2# =q13=#c1#", "13%" }, + { 16939, "INV_Helmet_05", "=q4=Dragonstalker's Helm", "=ds=#s1#, #a3# =q14=#c2#", "13%" }, + { 16947, "INV_Helmet_69", "=q4=Helmet of Ten Storms", "=ds=#s1#, #a3# =q15=#c7#", "13%" }, + { 16955, "INV_Helmet_74", "=q4=Judgement Crown", "=ds=#s1#, #a4# =q16=#c4#", "13%" }, + { 16963, "INV_Helmet_71", "=q4=Helm of Wrath", "=ds=#s1#, #a4# =q17=#c9#", "13%" }, { 0,"","","" }, { 18423, "INV_Misc_Head_Dragon_01", "=q4=Head of Onyxia", "=ds=#m2#", "100%" }, { 18404, "INV_Jewelry_Necklace_09", "=q4=Onyxia Tooth Pendant", "=q1=#m4# =ds=#s2#" }, { 18403, "INV_Jewelry_Ring_27", "=q4=Dragonslayer's Signet", "=q1=#m4# =ds=#s13#" }, { 18406, "Spell_Shadow_LifeDrain", "=q4=Onyxia Blood Talisman", "=q1=#m4# =ds=#s14#" }, { 15138,"INV_Misc_Cape_05","=q3=Onyxia Scale Cloak","=q1=#m4# =ds=#s4# =q5=LW #m14#" }, - { 18705, "Spell_Holy_DispelMagic", "=q4=Mature Black Dragon Sinew", "=ds=#m3# =q14=#c2#", " 24.53%" }, + { 18705, "Spell_Holy_DispelMagic", "=q4=Mature Black Dragon Sinew", "=ds=#m3# =q14=#c2#", " 40%%" }, { 18713, "INV_Weapon_Bow_01", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4# =ds=#w2# =q14=#c2#" }, { 0,"","","" }, - { 18205, "INV_Belt_12", "=q4=Eskhandar's Collar", "=ds=#s2#", "14.88%" }, - { 17078, "INV_Misc_Cape_16", "=q4=Sapphiron Drape", "=ds=#s4#", "15.28%" }, - { 18813, "INV_Jewelry_Ring_13", "=q4=Ring of Binding", "=ds=#s13#", "16.28%" }, - { 17064, "INV_Misc_MonsterScales_15", "=q4=Shard of the Scale", "=ds=#s14#", "4.08%" }, - { 17067, "INV_Misc_Book_07", "=q4=Ancient Cornerstone Grimoire", "=ds=#s15#", "16.07%" }, - { 17068, "INV_Axe_09", "=q4=Deathbringer", "=ds=#h1#, #w1#", "4.31%" }, - { 17075, "INV_Sword_18", "=q4=Vis'kag the Bloodletter", "=ds=#h1#, #w10#", "4.00%" }, + { 18205, "INV_Belt_12", "=q4=Eskhandar's Collar", "=ds=#s2#", "25%" }, + { 17078, "INV_Misc_Cape_16", "=q4=Sapphiron Drape", "=ds=#s4#", "25%" }, + { 18813, "INV_Jewelry_Ring_13", "=q4=Ring of Binding", "=ds=#s13#", "25%" }, + { 17064, "INV_Misc_MonsterScales_15", "=q4=Shard of the Scale", "=ds=#s14#", "8%" }, + { 17067, "INV_Misc_Book_07", "=q4=Ancient Cornerstone Grimoire", "=ds=#s15#", "25%" }, + { 17068, "INV_Axe_09", "=q4=Deathbringer", "=ds=#h1#, #w1#", "8%" }, + { 17075, "INV_Sword_18", "=q4=Vis'kag the Bloodletter", "=ds=#h1#, #w10#", "8%" }, { 0,"","","" }, { 17966,"INV_Misc_Bag_22","=q2=Onyxia Hide Backpack","=ds=#m12# #e10#", "100%" }, - { 17962,"INV_Misc_Bag_10_Blue","=q2=Blue Sack of Gems","=ds=#m23# =q2=#e33#", "20.50%" }, + { 17962,"INV_Misc_Bag_10_Blue","=q2=Blue Sack of Gems","=ds=#m23# =q2=#e33#", "100%" }, { 0,"","","" }, { 15410, "INV_Misc_MonsterScales_07","=q3=Scale of Onyxia", "=ds=#e12# =q5=Skinning (315)" }, }; - ZGJeklik = { - { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "5.89%" }, - { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "2.33%" }, - { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "2.32%" }, - { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "2.17%" }, - { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11.41%" }, - { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11.02%" }, - { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "10.84%" }, - { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "5.56%" }, - { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "5.80%" }, + ZGJeklik = { --https://database.turtle-wow.org/?npc=14517 + { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "11%" }, + { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "11%" }, + { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "11%" }, + { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, + { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19918, "INV_Mace_19", "=q4=Jeklik's Crusher", "=ds=#h2#, #w6#", "3.96%" }, + { 19918, "INV_Mace_19", "=q4=Jeklik's Crusher", "=ds=#h2#, #w6#", "14%" }, { 0,"","","" }, - { 19923, "INV_Jewelry_Necklace_03", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "12.22%" }, - { 19928, "INV_Shoulder_09", "=q3=Animist's Spaulders", "=ds=#s3#, #a2#", "3.39%" }, - { 20262, "INV_Boots_Chain_11", "=q3=Seafury Boots", "=ds=#s12#, #a3#", "4.31%" }, - { 20265, "INV_Boots_Plate_03", "=q3=Peacekeeper Boots", "=ds=#s12#, #a4#", "6.99%" }, - { 19920, "INV_Jewelry_Ring_47", "=q3=Primalist's Band", "=ds=#s13#", "11.89%" }, - { 19915, "INV_Shield_22", "=q3=Zulian Defender", "=ds=#w8#", "11.36%" }, + { 19923, "INV_Jewelry_Necklace_03", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "14%" }, + { 19928, "INV_Shoulder_09", "=q3=Animist's Spaulders", "=ds=#s3#, #a2#", "14%" }, + { 20262, "INV_Boots_Chain_11", "=q3=Seafury Boots", "=ds=#s12#, #a3#", "14%" }, + { 20265, "INV_Boots_Plate_03", "=q3=Peacekeeper Boots", "=ds=#s12#, #a4#", "14%" }, + { 19920, "INV_Jewelry_Ring_47", "=q3=Primalist's Band", "=ds=#s13#", "14%" }, + { 19915, "INV_Shield_22", "=q3=Zulian Defender", "=ds=#w8#", "14%" }, }; - ZGVenoxis = { - { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "5.67%" }, - { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "2.00%" }, - { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "2.02%" }, - { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "2.18%" }, - { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "10.18%" }, - { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11.01%" }, - { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "10.55%" }, - { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "5.52%" }, - { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "5.93%" }, + ZGVenoxis = { --https://database.turtle-wow.org/?npc=14507 + { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "11%" }, + { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "11%" }, + { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "11%" }, + { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, + { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19904, "INV_Chest_Plate08", "=q4=Runed Bloodstained Hauberk", "=ds=#s5#, #a3#", "3.70%" }, - { 19903, "INV_Weapon_Shortblade_31", "=q4=Fang of Venoxis", "=ds=#h3#, #w4#", "3.68%" }, + { 19904, "INV_Chest_Plate08", "=q4=Runed Bloodstained Hauberk", "=ds=#s5#, #a3#", "17%" }, + { 19903, "INV_Weapon_Shortblade_31", "=q4=Fang of Venoxis", "=ds=#h3#, #w4#", "17%" }, { 0,"","","" }, - { 19907, "INV_Misc_Cape_10", "=q3=Zulian Tigerhide Cloak", "=ds=#s4#", "12.09%" }, - { 19906, "INV_Boots_Chain_04", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "11.36%" }, - { 19905, "INV_Jewelry_Ring_46", "=q3=Zanzil's Band", "=ds=#s13#", "6.99%" }, - { 19900, "INV_Axe_34", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "11.89%" }, + { 19907, "INV_Misc_Cape_10", "=q3=Zulian Tigerhide Cloak", "=ds=#s4#", "17%" }, + { 19906, "INV_Boots_Chain_04", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "17%" }, + { 19905, "INV_Jewelry_Ring_46", "=q3=Zanzil's Band", "=ds=#s13#", "17%" }, + { 19900, "INV_Axe_34", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "17%" }, }; - ZGMarli = { - { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "13.64%" }, - { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "2.30%" }, - { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "2.55%" }, - { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "2.56%" }, - { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "6.31%" }, - { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "6.49%" }, - { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "6.55%" }, - { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "13.69%" }, - { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "13.69%" }, + ZGMarli = { --https://database.turtle-wow.org/?npc=14510 + { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "11%" }, + { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "11%" }, + { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "11%" }, + { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, + { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 20032, "INV_Chest_Cloth_25", "=q4=Flowing Ritual Robes", "=ds=#s5#, #a1#", "4.46%" }, - { 19927, "INV_Wand_06", "=q4=Mar'li's Touch", "=ds=#w12#", "4.35%" }, + { 20032, "INV_Chest_Cloth_25", "=q4=Flowing Ritual Robes", "=ds=#s5#, #a1#", "17%" }, + { 19927, "INV_Wand_06", "=q4=Mar'li's Touch", "=ds=#w12#", "17%" }, { 0,"","","" }, - { 19871, "INV_Jewelry_Necklace_21", "=q3=Talisman of Protection", "=ds=#s2#", "11.36%" }, - { 19919, "INV_Boots_Chain_04", "=q3=Bloodstained Greaves", "=ds=#s12#, #a3#", "11.89%" }, - { 19925, "INV_Jewelry_Ring_44", "=q3=Band of Jin", "=ds=#s13#", "6.99%" }, - { 19930, "INV_ZulGurubTrinket", "=q3=Mar'li's Eye", "=ds=#s14#", "12.09%" }, + { 19871, "INV_Jewelry_Necklace_21", "=q3=Talisman of Protection", "=ds=#s2#", "17%" }, + { 19919, "INV_Boots_Chain_04", "=q3=Bloodstained Greaves", "=ds=#s12#, #a3#", "17%" }, + { 19925, "INV_Jewelry_Ring_44", "=q3=Band of Jin", "=ds=#s13#", "17%" }, + { 19930, "INV_ZulGurubTrinket", "=q3=Mar'li's Eye", "=ds=#s14#", "17%" }, { 0, "", "", "", "" }, - { 81003, "", "=q3=", "", "10%" }, + { 81003, "inv_misc_monsterclaw_03", "=q3=Ancient Hakkari Flayer", "=ds=#h3#, #w13#", "10%" }, }; - ZGMandokir = { - { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "6.52%" }, - { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "12.07%" }, - { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "12.94%" }, - { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "11.56%" }, - { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "2.48%" }, - { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "2.98%" }, - { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "2.65%" }, - { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "6.55%" }, - { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "6.65%" }, + ZGMandokir = { --https://database.turtle-wow.org/?npc=11382 + { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "11%" }, + { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "11%" }, + { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "11%" }, + { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, + { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, { 0,"","","" }, { 22637,"INV_ZulGurubTrinket","=q3=Primal Hakkari Idol","=ds=#e16#", "100%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19872, "Ability_Mount_Raptor", "=q4=Swift Razzashi Raptor", "=ds=#e7#", "0.43%" }, - { 20038, "INV_Waepon_Bow_ZulGrub_D_01", "=q4=Mandokir's Sting", "=ds=#w2#", "5.96%" }, - { 19867, "INV_Sword_54", "=q4=Bloodlord's Defender", "=ds=#h3#, #w10#", "5.83%" }, - { 19866, "INV_Sword_55", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#", "3.96%" }, - { 19874, "INV_Weapon_Halberd_12", "=q4=Halberd of Smiting", "=ds=#w7#", "6.35%" }, + { 19872, "Ability_Mount_Raptor", "=q4=Swift Razzashi Raptor", "=ds=#e7#", "2%" }, + { 20038, "INV_Waepon_Bow_ZulGrub_D_01", "=q4=Mandokir's Sting", "=ds=#w2#", "8%" }, + { 19867, "INV_Sword_54", "=q4=Bloodlord's Defender", "=ds=#h3#, #w10#", "8%" }, + { 19866, "INV_Sword_55", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#", "8%" }, + { 19874, "INV_Weapon_Halberd_12", "=q4=Halberd of Smiting", "=ds=#w7#", "8%" }, { 0,"","","" }, - { 19878, "INV_Shoulder_01", "=q3=Bloodsoaked Pauldrons", "=ds=#s3#, #a4#", "12.31%" }, - { 19870, "INV_Misc_Cape_18", "=q3=Hakkari Loa Cloak", "=ds=#s4#", "12.54%" }, - { 19869, "INV_Gauntlets_26", "=q3=Blooddrenched Grips", "=ds=#s9#, #a2#", "12.87%" }, - { 19895, "INV_Pants_Cloth_14", "=q3=Bloodtinged Kilt", "=ds=#s11#, #a1#", "13.50%" }, - { 19877, "INV_Pants_Mail_14", "=q3=Animist's Leggings", "=ds=#s11#, #a2#", "12.14%" }, - { 19873, "INV_Jewelry_Ring_39", "=q3=Overlord's Crimson Band", "=ds=#s13#", "12.28%" }, - { 19863, "INV_Jewelry_Ring_47", "=q3=Primalist's Seal", "=ds=#s13#", "12.32%" }, - { 19893, "INV_Jewelry_Ring_46", "=q3=Zanzil's Seal", "=ds=#s13#", "13.11%" }, + { 19878, "INV_Shoulder_01", "=q3=Bloodsoaked Pauldrons", "=ds=#s3#, #a4#", "8%" }, + { 19870, "INV_Misc_Cape_18", "=q3=Hakkari Loa Cloak", "=ds=#s4#", "8%" }, + { 19869, "INV_Gauntlets_26", "=q3=Blooddrenched Grips", "=ds=#s9#, #a2#", "8%" }, + { 19895, "INV_Pants_Cloth_14", "=q3=Bloodtinged Kilt", "=ds=#s11#, #a1#", "8%" }, + { 19877, "INV_Pants_Mail_14", "=q3=Animist's Leggings", "=ds=#s11#, #a2#", "8%" }, + { 19873, "INV_Jewelry_Ring_39", "=q3=Overlord's Crimson Band", "=ds=#s13#", "8%" }, + { 19863, "INV_Jewelry_Ring_47", "=q3=Primalist's Seal", "=ds=#s13#", "8%" }, + { 19893, "INV_Jewelry_Ring_46", "=q3=Zanzil's Seal", "=ds=#s13#", "8%" }, }; - ZGGrilek = { - { 19961, "INV_Mace_04", "=q3=Gri'lek's Grinder", "=ds=#h1#, #w6#", "43.90%" }, - { 19962, "INV_Axe_24", "=q3=Gri'lek's Carver", "=ds=#h2#, #w1#", "41.99%" }, + ZGGrilek = { --https://database.turtle-wow.org/?npc=15082 + { 19961, "INV_Mace_04", "=q3=Gri'lek's Grinder", "=ds=#h1#, #w6#", "43%" }, + { 19962, "INV_Axe_24", "=q3=Gri'lek's Carver", "=ds=#h2#, #w1#", "43%" }, { 0,"","","" }, { 19939, "INV_Potion_26", "=q2=Gri'lek's Blood", "=ds=#m3#", "100%" }, }; - ZGHazzarah = { - { 19967, "INV_Wand_05", "=q3=Thoughtblighter", "=ds=#w12#", "45.49%" }, - { 19968, "INV_Sword_01", "=q3=Fiery Retributer", "=ds=#h3#, #w10#", "38.37%" }, + ZGHazzarah = { --https://database.turtle-wow.org/?npc=15083 + { 19967, "INV_Wand_05", "=q3=Thoughtblighter", "=ds=#w12#", "45%" }, + { 19968, "INV_Sword_01", "=q3=Fiery Retributer", "=ds=#h3#, #w10#", "40%" }, { 0,"","","" }, { 19942, "INV_Misc_Bandage_16", "=q2=Hazza'rah's Dream Thread", "=ds=#m3#", "100%" }, }; - ZGRenataki = { - { 19964, "INV_Sword_37", "=q3=Renataki's Soul Conduit", "=ds=#h3#, #w10#", "40.06%" }, - { 19963, "INV_Spear_03", "=q3=Pitchfork of Madness", "=ds=#w7#", "45.51%" }, + ZGRenataki = { --https://database.turtle-wow.org/?npc=15084 + { 19964, "INV_Sword_37", "=q3=Renataki's Soul Conduit", "=ds=#h3#, #w10#", "40%" }, + { 19963, "INV_Spear_03", "=q3=Pitchfork of Madness", "=ds=#w7#", "45%" }, { 0,"","","" }, { 19940, "INV_Misc_MonsterFang_01", "=q2=Renataki's Tooth", "=ds=#m3#", "100%" }, }; - ZGWushoolay = { - { 19993, "INV_Waepon_Bow_ZulGrub_D_02", "=q3=Hoodoo Hunting Bow", "=ds=#w2#", "40.96%" }, - { 19965, "INV_Sword_37", "=q3=Wushoolay's Poker", "=ds=#h3#, #w4#", "45.21%" }, + ZGWushoolay = { --https://database.turtle-wow.org/?npc=15085 + { 19993, "INV_Waepon_Bow_ZulGrub_D_02", "=q3=Hoodoo Hunting Bow", "=ds=#w2#", "45%" }, + { 19965, "INV_Sword_37", "=q3=Wushoolay's Poker", "=ds=#h3#, #w4#", "40%" }, { 0,"","","" }, { 19941, "INV_Misc_MonsterTail_02", "=q2=Wushoolay's Mane", "=ds=#m3#", "100%" }, }; - ZGGahzranka = { - { 19945, "INV_Helmet_46", "=q4=Foror's Eyepatch", "=ds=#s1#, #a2#", "8,82%" }, - { 19944, "INV_Fishingpole_02", "=q4=Nat Pagle's Fish Terminator", "=ds=#w9#", "2.39%" }, + ZGGahzranka = { --https://database.turtle-wow.org/?npc=15114 + { 19945, "INV_Helmet_46", "=q4=Foror's Eyepatch", "=ds=#s1#, #a2#", "25%" }, + { 19944, "INV_Fishingpole_02", "=q4=Nat Pagle's Fish Terminator", "=ds=#w9#", "25%" }, { 0,"","","" }, - { 19947, "INV_Gizmo_09", "=q3=Nat Pagle's Broken Reel", "=ds=#s14#", "28.20%" }, - { 19946, "INV_Spear_04", "=q3=Tigule's Harpoon", "=ds=#w7#", "29.22%" }, + { 19947, "INV_Gizmo_09", "=q3=Nat Pagle's Broken Reel", "=ds=#s14#", "25%" }, + { 19946, "INV_Spear_04", "=q3=Tigule's Harpoon", "=ds=#w7#", "25%" }, { 0,"","","" }, { 22739, "INV_Misc_Book_07", "=q3=Tome of Polymorph: Turtle", "=ds=#e20# =q10=#c3#" }, }; ZGThekal = { - { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "13.74%" }, - { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "2.19%" }, - { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "3.06%" }, - { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "3.18%" }, - { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "6.45%" }, - { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "6.60%" }, - { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "6.56%" }, - { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "12.95%" }, - { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "14.95%" }, + { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "11%" }, + { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "11%" }, + { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "11%" }, + { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, + { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19902, "Ability_Mount_JungleTiger", "=q4=Swift Zulian Tiger", "=ds=#e7#", "0.70%" }, - { 19897, "INV_Boots_Cloth_09", "=q4=Betrayer's Boots", "=ds=#s12#, #a1#", "5.83%" }, - { 19896, "INV_Weapon_Hand_01", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#", "4.23%" }, + { 19902, "Ability_Mount_JungleTiger", "=q4=Swift Zulian Tiger", "=ds=#e7#", "2%" }, + { 19897, "INV_Boots_Cloth_09", "=q4=Betrayer's Boots", "=ds=#s12#, #a1#", "14%" }, + { 19896, "INV_Weapon_Hand_01", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#", "14%" }, { 0,"","","" }, - { 19899, "INV_Pants_Cloth_14", "=q3=Ritualistic Legguards", "=ds=#s11#, #a1#", "13.41%" }, - { 20260, "INV_Pants_Mail_06", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "4.30%" }, - { 20266, "INV_Pants_Plate_04", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", " 8.69%" }, - { 19898, "INV_Jewelry_Ring_44", "=q3=Seal of Jin", "=ds=#s13#", "13.65%" }, - { 19901, "INV_Sword_35", "=q3=Zulian Slicer", "=ds=#h1#, #w10#", "13.36%" }, + { 19899, "INV_Pants_Cloth_14", "=q3=Ritualistic Legguards", "=ds=#s11#, #a1#", "14%" }, + { 20260, "INV_Pants_Mail_06", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "14%" }, + { 20266, "INV_Pants_Plate_04", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", "14%" }, + { 19898, "INV_Jewelry_Ring_44", "=q3=Seal of Jin", "=ds=#s13#", "14%" }, + { 19901, "INV_Sword_35", "=q3=Zulian Slicer", "=ds=#h1#, #w10#", "14%" }, }; - ZGArlokk = { - { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "15.49%" }, - { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "2.41%" }, - { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "2.60%" }, - { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "2.75%" }, - { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "6.65%" }, - { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "6.94%" }, - { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "6.21%" }, - { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "13.17%" }, - { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "12.52%" }, + ZGArlokk = { --https://database.turtle-wow.org/?npc=14515 + { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "11%" }, + { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "11%" }, + { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "11%" }, + { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, + { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19910, "INV_Weapon_Hand_01", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "3.62%" }, - { 19909, "INV_Staff_35", "=q4=Will of Arlokk", "=ds=#w9#", "5.14%" }, + { 19910, "INV_Weapon_Hand_01", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "20%" }, + { 19909, "INV_Staff_35", "=q4=Will of Arlokk", "=ds=#w9#", "20%" }, { 0,"","","" }, - { 19913, "INV_Boots_Plate_06", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "13.29%" }, - { 19912, "INV_Jewelry_Ring_39", "=q3=Overlord's Onyx Band", "=ds=#s13#", "13.95%" }, - { 19922, "INV_Misc_Bone_DwarfSkull_01", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "13.66%" }, - { 19914, "INV_Misc_Bag_14", "=q3=Panther Hide Sack", "=ds=#m12# #e10#", "14.03%" }, + { 19913, "INV_Boots_Plate_06", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "20%" }, + { 19912, "INV_Jewelry_Ring_39", "=q3=Overlord's Onyx Band", "=ds=#s13#", "20%" }, + { 19922, "INV_Misc_Bone_DwarfSkull_01", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "20%" }, + { 19914, "INV_Misc_Bag_14", "=q3=Panther Hide Sack", "=ds=#m12# #e10#", "12%" }, }; - ZGJindo = { - { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "7.30%" }, - { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "12.09%" }, - { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "13.56%" }, - { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "13.48%" }, - { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "2.70%" }, - { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "2.85%" }, - { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "2.36%" }, - { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "6.37%" }, - { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "6.10%" }, + ZGJindo = { --https://database.turtle-wow.org/?npc=11380 + { 19721, "INV_Shoulder_19", "=q4=Primal Hakkari Shawl", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19724, "INV_Chest_Chain_12", "=q4=Primal Hakkari Aegis", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "11%" }, + { 19723, "INV_Shirt_07", "=q4=Primal Hakkari Kossack", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q11=#c8#", "11%" }, + { 19722, "INV_Banner_01", "=q4=Primal Hakkari Tabard", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q13=#c1#", "11%" }, + { 19717, "INV_Bracer_18", "=q4=Primal Hakkari Armsplint", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19716, "INV_Bracer_05", "=q4=Primal Hakkari Bindings", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q10=#c3#", "11%" }, + { 19718, "INV_Bracer_14", "=q4=Primal Hakkari Stanchion", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, + { 19719, "INV_Belt_12", "=q4=Primal Hakkari Girdle", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q15=#c7#", "11%" }, + { 19720, "INV_Belt_07", "=q4=Primal Hakkari Sash", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11%" }, { 0,"","","" }, { 22637,"INV_ZulGurubTrinket","=q3=Primal Hakkari Idol","=ds=#e16#", "100%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19885, "INV_Jewelry_Ring_45", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "6.82%" }, - { 19891, "INV_Misc_Bag_10_Black", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "7.70%" }, - { 19890, "INV_Mace_17", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "8.08%" }, - { 19884, "INV_Staff_33", "=q4=Jin'do's Judgement", "=ds=#w9#", "8.36%" }, + { 19885, "INV_Jewelry_Ring_45", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "8%" }, + { 19891, "INV_Misc_Bag_10_Black", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "8%" }, + { 19890, "INV_Mace_17", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "8%" }, + { 19884, "INV_Staff_33", "=q4=Jin'do's Judgement", "=ds=#w9#", "8%" }, { 0,"","","" }, - { 19886, "INV_Mask_02", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "12.11%" }, - { 19875, "INV_Helmet_39", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "13.73%" }, - { 19888, "INV_Misc_Cape_21", "=q3=Overlord's Embrace", "=ds=#s4#", "12.72%" }, - { 19929, "INV_Gauntlets_16", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "11.75%" }, - { 19894, "INV_Gauntlets_14", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "12.93%" }, - { 19889, "INV_Pants_Leather_09", "=q3=Blooddrenched Leggings", "=ds=#s11#, #a2#", "11.97%" }, - { 19887, "INV_Pants_Mail_09", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "11.11%" }, - { 19892, "INV_Boots_Chain_13", "=q3=Animist's Boots", "=ds=#s12#, #a2#", "12.28%" }, + { 19886, "INV_Mask_02", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "8%" }, + { 19875, "INV_Helmet_39", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "8%" }, + { 19888, "INV_Misc_Cape_21", "=q3=Overlord's Embrace", "=ds=#s4#", "8%" }, + { 19929, "INV_Gauntlets_16", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "8%" }, + { 19894, "INV_Gauntlets_14", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "8%" }, + { 19889, "INV_Pants_Leather_09", "=q3=Blooddrenched Leggings", "=ds=#s11#, #a2#", "8%" }, + { 19887, "INV_Pants_Mail_09", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "8%" }, + { 19892, "INV_Boots_Chain_13", "=q3=Animist's Boots", "=ds=#s12#, #a2#", "8%" }, }; - ZGHakkar = { - { 19857, "INV_Misc_Cape_22", "=q4=Cloak of Consumption", "=ds=#s4#", "11.65%" }, - { 20257, "INV_Gauntlets_30", "=q4=Seafury Gauntlets", "=ds=#s9#, #a3#", "4.11%" }, - { 20264, "INV_Gauntlets_10", "=q4=Peacekeeper Gauntlets", "=ds=#s9#, #a4#", "7.37%" }, - { 19855, "INV_Pants_Plate_21", "=q4=Bloodsoaked Legplates", "=ds=#s11#, #a4#", "10.52%" }, + ZGHakkar = { --https://database.turtle-wow.org/?npc=14834 + { 19857, "INV_Misc_Cape_22", "=q4=Cloak of Consumption", "=ds=#s4#", "14%" }, + { 20257, "INV_Gauntlets_30", "=q4=Seafury Gauntlets", "=ds=#s9#, #a3#", "14%" }, + { 20264, "INV_Gauntlets_10", "=q4=Peacekeeper Gauntlets", "=ds=#s9#, #a4#", "14%" }, + { 19855, "INV_Pants_Plate_21", "=q4=Bloodsoaked Legplates", "=ds=#s11#, #a4#", "14%" }, { 0, "", "", "", "" }, - { 19876, "INV_Jewelry_Necklace_19", "=q4=Soul Corrupter's Necklace", "=ds=#s2#", "10.11%" }, - { 19856, "INV_Jewelry_Necklace_22", "=q4=The Eye of Hakkar", "=ds=#s2#", "12.02%" }, - { 19861, "INV_Wand_09", "=q4=Touch of Chaos", "=ds=#w12#", "7.24%" }, - { 19853, "INV_Weapon_Rifle_10", "=q4=Gurubashi Dwarf Destroyer", "=ds=#w5#", "6.12%" }, - { 19862, "INV_Shield_12", "=q4=Aegis of the Blood God", "=ds=#w8#", "9.99%" }, - { 19864, "INV_Sword_18", "=q4=Bloodcaller", "=ds=#h3#, #w10#", "7.69%" }, - { 19865, "INV_Sword_55", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#", "3.67%" }, - { 19852, "INV_Axe_35", "=q4=Ancient Hakkari Manslayer", "=ds=#h1#, #w1#", "6.62%" }, - { 19859, "INV_Weapon_Shortblade_30", "=q4=Fang of the Faceless", "=ds=#h1#, #w4#", "7.33%" }, - { 19854, "INV_Sword_55", "=q4=Zin'rokh, Destroyer of Worlds", "=ds=#h2#, #w10#", "6.78%" }, - { 19802, "INV_Misc_Gem_Bloodstone_02", "=q4=Heart of Hakkar", "=ds=#m2#", "100.00%" }, + { 19876, "INV_Jewelry_Necklace_19", "=q4=Soul Corrupter's Necklace", "=ds=#s2#", "14%" }, + { 19856, "INV_Jewelry_Necklace_22", "=q4=The Eye of Hakkar", "=ds=#s2#", "14%" }, + { 19861, "INV_Wand_09", "=q4=Touch of Chaos", "=ds=#w12#", "14%" }, + { 19853, "INV_Weapon_Rifle_10", "=q4=Gurubashi Dwarf Destroyer", "=ds=#w5#", "14%" }, + { 19862, "INV_Shield_12", "=q4=Aegis of the Blood God", "=ds=#w8#", "14%" }, + { 19864, "INV_Sword_18", "=q4=Bloodcaller", "=ds=#h3#, #w10#", "14%" }, + { 19865, "INV_Sword_55", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#", "14%" }, + { 19852, "INV_Axe_35", "=q4=Ancient Hakkari Manslayer", "=ds=#h1#, #w1#", "14%" }, + { 19859, "INV_Weapon_Shortblade_30", "=q4=Fang of the Faceless", "=ds=#h1#, #w4#", "14%" }, + { 19854, "INV_Sword_55", "=q4=Zin'rokh, Destroyer of Worlds", "=ds=#h2#, #w10#", "14%" }, + { 19802, "INV_Misc_Gem_Bloodstone_02", "=q4=Heart of Hakkar", "=ds=#m2#", "100%" }, { 19950, "INV_Jewelry_Necklace_13", "=q4=Zandalarian Hero Charm(ZHC)", "=q1=#m4# =ds=#s14#" }, { 19949, "INV_Jewelry_Necklace_13", "=q4=Zandalarian Hero Medallion", "=q1=#m4# =ds=#s14#" }, { 19948, "INV_Jewelry_Necklace_13", "=q4=Zandalarian Hero Badge", "=q1=#m4# =ds=#s14#" }, }; - ZGShared = { - { 22721, "INV_Jewelry_Ring_16", "=q4=Band of Servitude", "=ds=#s13#" }; - { 22722, "INV_Jewelry_Ring_20", "=q4=Seal of the Gurubashi Berserker", "=ds=#s13#" }; + ZGShared = { + { 22721, "INV_Jewelry_Ring_16", "=q4=Band of Servitude", "=ds=#s13#", "10%" }; + { 22722, "INV_Jewelry_Ring_20", "=q4=Seal of the Gurubashi Berserker", "=ds=#s13#", "10%" }; { 0, "", "", "", "" }, - { 22720, "INV_Helmet_61", "=q3=Zulian Headdress", "=ds=#s1#, #a1#" }, - { 22718, "INV_Helmet_41", "=q3=Blooddrenched Mask", "=ds=#s1#, #a2#" }, - { 22711, "INV_Misc_Cape_16", "=q3=Cloak of the Hakkari Worshipers", "=ds=#s4#" }, - { 22712, "INV_Misc_Cape_16", "=q3=Might of the Tribe", "=ds=#s4#" }, - { 22715, "INV_Gauntlets_10", "=q3=Gloves of the Tormented", "=ds=#s9#, #a3#" }, - { 22714, "INV_Gauntlets_31", "=q3=Sacrificial Gauntlets", "=ds=#s9#, #a4#" }, - { 22716, "INV_Belt_01", "=q3=Belt of Untapped Power", "=ds=#s10#, #a1#" }, - { 22713, "INV_Waepon_Bow_ZulGrub_D_01", "=q3=Zulian Scepter of Rites", "=ds=#h1#, #w6#" }, + { 22720, "INV_Helmet_61", "=q3=Zulian Headdress", "=ds=#s1#, #a1#", "10%" }; + { 22718, "INV_Helmet_41", "=q3=Blooddrenched Mask", "=ds=#s1#, #a2#", "10%" }; + { 22711, "INV_Misc_Cape_16", "=q3=Cloak of the Hakkari Worshipers", "=ds=#s4#", "10%" }; + { 22712, "INV_Misc_Cape_16", "=q3=Might of the Tribe", "=ds=#s4#", "10%" }; + { 22715, "INV_Gauntlets_10", "=q3=Gloves of the Tormented", "=ds=#s9#, #a3#", "10%" }; + { 22714, "INV_Gauntlets_31", "=q3=Sacrificial Gauntlets", "=ds=#s9#, #a4#", "10%" }; + { 22716, "INV_Belt_01", "=q3=Belt of Untapped Power", "=ds=#s10#, #a1#", "10%" }; + { 22713, "INV_Waepon_Bow_ZulGrub_D_01", "=q3=Zulian Scepter of Rites", "=ds=#h1#, #w6#", "10%" }; }; - ZGMuddyChurningWaters = { + ZGMuddyChurningWaters = { { 19975, "INV_Misc_Fish_05", "=q1=Zulian Mudskunk", "=ds=#m36#" }, }; - ZGJinxedHoodooPile = { - { 19727, "INV_Weapon_Shortblade_29", "=q3=Blood Scythe", "=ds=#m8#", "0.02%" }, + ZGJinxedHoodooPile = { --https://database.turtle-wow.org/?object=180229 + { 19727, "INV_Weapon_Shortblade_29", "=q3=Blood Scythe", "=ds=#m8#", "26%" }, { 0,"","","" }, - { 19820, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q9=#c5#" }, - { 19818, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q10=#c3#" }, - { 19819, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q11=#c8#" }, - { 19814, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q12=#c6#" }, - { 19821, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q13=#c1#" }, - { 19816, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q14=#c2#" }, - { 19817, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q15=#c7#" }, - { 19815, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q16=#c4#" }, - { 19813, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q17=#c9#" }, + { 19820, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q9=#c5#", "11%" }; + { 19818, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q10=#c3#", "11%" }; + { 19819, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q11=#c8#", "11%" }; + { 19814, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q12=#c6#", "11%" }; + { 19821, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q13=#c1#", "11%" }; + { 19816, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q14=#c2#", "11%" }; + { 19817, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q15=#c7#", "11%" }; + { 19815, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q16=#c4#", "11%" }; + { 19813, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q17=#c9#", "11%" }; }; ZGTrash1 = { - { 20263, "INV_Helmet_25", "=q3=Gurubashi Helm", "=ds=#s1#, #a4#" }, - { 20259, "INV_Gauntlets_25", "=q3=Shadow Panther Hide Gloves", "=ds=#s9#, #a2#" }, - { 20261, "INV_Belt_26", "=q3=Shadow Panther Hide Belt", "=ds=#s10#, #a2#" }, - { 19921, "INV_Axe_08", "=q3=Zulian Hacker", "=ds=#h1#, #w1#" }, - { 19908, "INV_Mace_08", "=q3=Sceptre of Smiting", "=ds=#h1#, #w6#" }, - { 20258, "INV_Staff_34", "=q3=Zulian Ceremonial Staff", "=ds=#w9#" }, + { 20263, "INV_Helmet_25", "=q3=Gurubashi Helm", "=ds=#s1#, #a4#", "0.03%" }, + { 20259, "INV_Gauntlets_25", "=q3=Shadow Panther Hide Gloves", "=ds=#s9#, #a2#", "0.03%" }, + { 20261, "INV_Belt_26", "=q3=Shadow Panther Hide Belt", "=ds=#s10#, #a2#", "0.03%" }, + { 19921, "INV_Axe_08", "=q3=Zulian Hacker", "=ds=#h1#, #w1#", "0.03%" }, + { 19908, "INV_Mace_08", "=q3=Sceptre of Smiting", "=ds=#h1#, #w6#", "0.03%" }, + { 20258, "INV_Staff_34", "=q3=Zulian Ceremonial Staff", "=ds=#w9#", "0.03%" }, { 0,"","","" }, - { 19727, "INV_Weapon_Shortblade_29", "=q3=Blood Scythe", "=ds=#m8#", "0.02%" }, + { 19727, "INV_Weapon_Shortblade_29", "=q3=Blood Scythe", "=ds=#m8#", "0.03%" }, { 0,"","","" }, - { 19726, "INV_Misc_Herb_09", "=q2=Bloodvine", "=ds=#e12#", "" }, - { 19774, "INV_Misc_Gem_01", "=q2=Souldarite", "=ds=#e12#", "" }, - { 19767, "INV_Misc_Pelt_01", "=q1=Primal Bat Leather", "=ds=#e12#", "" }, - { 19768, "INV_Misc_Pelt_04", "=q1=Primal Tiger Leather", "=ds=#e12#", "" }, + { 19726, "INV_Misc_Herb_09", "=q2=Bloodvine", "=ds=#e12#", "1%" }, + { 19774, "INV_Misc_Gem_01", "=q2=Souldarite", "=ds=#e12#", "0.05%" }, + { 19767, "INV_Misc_Pelt_01", "=q1=Primal Bat Leather", "=ds=#e12#", "10%" }, + { 19768, "INV_Misc_Pelt_04", "=q1=Primal Tiger Leather", "=ds=#e12#", "20%" }, { 0,"","","" }, { 0,"","","" }, - { 19820, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q9=#c5#", "0.01%" }, - { 19818, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q10=#c3#", "0.01%" }, - { 19819, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q11=#c8#", "0.01%" }, - { 19814, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q12=#c6#", "0.01%" }, - { 19821, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q13=#c1#", "0.01%" }, - { 19816, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q14=#c2#", "0.01%" }, - { 19817, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q15=#c7#", "0.01%" }, - { 19815, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q16=#c4#", "0.01%" }, - { 19813, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q17=#c9#", "0.01%" }, + { 19820, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q9=#c5#", "0.03%" }, + { 19818, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q10=#c3#", "0.03%" }, + { 19819, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q11=#c8#", "0.03%" }, + { 19814, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q12=#c6#", "0.03%" }, + { 19821, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q13=#c1#", "0.03%" }, + { 19816, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q14=#c2#", "0.03%" }, + { 19817, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q15=#c7#", "0.03%" }, + { 19815, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q16=#c4#", "0.03%" }, + { 19813, "INV_Misc_Idol_02", "=q2=Punctured Voodoo Doll", "=ds=#m40# =q17=#c9#", "0.03%" }, }; ZGTrash2 = { - { 19706, "INV_Misc_Coin_11", "=q2=Bloodscalp Coin", "=ds=#m38#", "3.01%" }, - { 19701, "INV_Misc_Coin_07", "=q2=Gurubashi Coin", "=ds=#m38#", "3.12%" }, - { 19700, "INV_Misc_Coin_09", "=q2=Hakkari Coin", "=ds=#m38#", "3.19%" }, - { 19699, "INV_Misc_Coin_10", "=q2=Razzashi Coin", "=ds=#m38#", "3.36%" }, - { 19704, "INV_Misc_Coin_15", "=q2=Sandfury Coin", "=ds=#m38#", "3.47%" }, - { 19705, "INV_Misc_Coin_12", "=q2=Skullsplitter Coin", "=ds=#m38#", "3.32%" }, - { 19702, "INV_Misc_Coin_13", "=q2=Vilebranch Coin", "=ds=#m38#", "3.27%" }, - { 19703, "INV_Misc_Coin_14", "=q2=Witherbark Coin","=ds=#m38#" }, - { 19698, "INV_Misc_ArmorKit_11", "=q2=Zulian Coin", "=ds=#m38#", "3.01%" }, + { 19706, "INV_Misc_Coin_11", "=q2=Bloodscalp Coin", "=ds=#m38#", "5%" }, + { 19701, "INV_Misc_Coin_07", "=q2=Gurubashi Coin", "=ds=#m38#", "5%" }, + { 19700, "INV_Misc_Coin_09", "=q2=Hakkari Coin", "=ds=#m38#", "5%" }, + { 19699, "INV_Misc_Coin_10", "=q2=Razzashi Coin", "=ds=#m38#", "5%" }, + { 19704, "INV_Misc_Coin_15", "=q2=Sandfury Coin", "=ds=#m38#", "5%" }, + { 19705, "INV_Misc_Coin_12", "=q2=Skullsplitter Coin", "=ds=#m38#", "5%" }, + { 19702, "INV_Misc_Coin_13", "=q2=Vilebranch Coin", "=ds=#m38#", "5%" }, + { 19703, "INV_Misc_Coin_14", "=q2=Witherbark Coin","=ds=#m38#", "5%" }, + { 19698, "INV_Misc_ArmorKit_11", "=q2=Zulian Coin", "=ds=#m38#", "5%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19708, "INV_Bijou_Blue", "=q3=Blue Hakkari Bijou", "=ds=#m39#", "1.48%" }, - { 19713, "INV_Bijou_Bronze", "=q3=Bronze Hakkari Bijou", "=ds=#m39#", "1.57%" }, - { 19715, "INV_Bijou_Gold", "=q3=Gold Hakkari Bijou", "=ds=#m39#", "1.63%" }, - { 19711, "INV_Bijou_Green", "=q3=Green Hakkari Bijou", "=ds=#m39#", "1.67%" }, - { 19710, "INV_Bijou_Orange", "=q3=Orange Hakkari Bijou", "=ds=#m39#", "1.76%" }, - { 19712, "INV_Bijou_Purple", "=q3=Purple Hakkari Bijou", "=ds=#m39#", "1.67%" }, - { 19707, "INV_Bijou_Red", "=q3=Red aHakkari Bijou", "=ds=#m39#", "1.63%" }, - { 19714, "INV_Bijou_Silver", "=q3=Silver Hakkari Bijou", "=ds=#m39#", "1.59%" }, - { 19709, "INV_Bijou_Yellow", "=q3=Yellow Hakkari Bijou", "=ds=#m39#", "1.50%" }, + { 19708, "INV_Bijou_Blue", "=q3=Blue Hakkari Bijou", "=ds=#m39#", "2%" }, + { 19713, "INV_Bijou_Bronze", "=q3=Bronze Hakkari Bijou", "=ds=#m39#", "2%" }, + { 19715, "INV_Bijou_Gold", "=q3=Gold Hakkari Bijou", "=ds=#m39#", "2%" }, + { 19711, "INV_Bijou_Green", "=q3=Green Hakkari Bijou", "=ds=#m39#", "2%" }, + { 19710, "INV_Bijou_Orange", "=q3=Orange Hakkari Bijou", "=ds=#m39#", "2%" }, + { 19712, "INV_Bijou_Purple", "=q3=Purple Hakkari Bijou", "=ds=#m39#", "2%" }, + { 19707, "INV_Bijou_Red", "=q3=Red aHakkari Bijou", "=ds=#m39#", "2%" }, + { 19714, "INV_Bijou_Silver", "=q3=Silver Hakkari Bijou", "=ds=#m39#", "2%" }, + { 19709, "INV_Bijou_Yellow", "=q3=Yellow Hakkari Bijou", "=ds=#m39#", "2%" }, }; ZGEnchants = { { 19789, "Spell_Holy_HolyProtection", "=q3=Prophetic Aura", "=ds=#s1#/#s11# #e11# =q9=#c5#" }, @@ -1927,14 +1960,14 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0, "", "", "", "" }, { 22635, "Spell_Nature_SpiritArmor", "=q3=Savage Guard", "=ds=#s1#/#s11# #e11#" }, }; - AQ20Kurinnaxx = { - { 21499, "INV_Chest_Cloth_17", "=q4=Vestments of the Shifting Sands", "=ds=#s5#, #a1#", "7.34%" }, - { 21498, "INV_Weapon_ShortBlade_12", "=q4=Qiraji Sacrificial Dagger", "=ds=#h1#, #w4#", "7.53%" }, + AQ20Kurinnaxx = { --https://database.turtle-wow.org/?npc=15348 + { 21499, "INV_Chest_Cloth_17", "=q4=Vestments of the Shifting Sands", "=ds=#s5#, #a1#", "17%" }, + { 21498, "INV_Weapon_ShortBlade_12", "=q4=Qiraji Sacrificial Dagger", "=ds=#h1#, #w4#", "17%" }, { 0,"","","" }, - { 21502, "INV_Bracer_19", "=q3=Sand Reaver Wristguards", "=ds=#s8#, #a3#", "13.79%" }, - { 21501, "INV_Gauntlets_24", "=q3=Toughened Silithid Hide Gloves", "=ds=#s9#, #a2#", "12.91%" }, - { 21500, "INV_Belt_05", "=q3=Belt of the Inquisition", "=ds=#s10#, #a1#", "14.84%" }, - { 21503, "INV_Belt_13", "=q3=Belt of the Sand Reaver", "=ds=#s10#, #a4#", "14.38%" }, + { 21502, "INV_Bracer_19", "=q3=Sand Reaver Wristguards", "=ds=#s8#, #a3#", "17%" }, + { 21501, "INV_Gauntlets_24", "=q3=Toughened Silithid Hide Gloves", "=ds=#s9#, #a2#", "17%" }, + { 21500, "INV_Belt_05", "=q3=Belt of the Inquisition", "=ds=#s10#, #a1#", "17%" }, + { 21503, "INV_Belt_13", "=q3=Belt of the Sand Reaver", "=ds=#s10#, #a4#", "17%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -1945,24 +1978,24 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 20885, "INV_Qiraj_DrapeMartial", "=q3=Qiraji Martial Drape", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q10=#c3#", "30.25%" }, - { 20889, "INV_Bracer_18", "=q3=Qiraji Regal Drape", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30.83%" }, - { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "7.80%" }, - { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "7.98%" }, + { 20885, "INV_Qiraj_DrapeMartial", "=q3=Qiraji Martial Drape", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q10=#c3#", "25%" }, + { 20889, "INV_Bracer_18", "=q3=Qiraji Regal Drape", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "25%" }, + { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "25%" }, + { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "25%" }, }; AQ20CAPTAIN = { - { 21809, "INV_Jewelry_Necklace_14", "=q3=Fury of the Forgotten Swarm", "=ds=#s2#", "3.20%" }, - { 21810, "INV_Boots_Cloth_05", "=q3=Treads of the Wandering Nomad", "=ds=#s12#, #a1#", "3.11%" }, - { 21806, "INV_Hammer_04", "=q3=Gavel of Qiraji Authority", "=ds=#h2#, #w6#", "3.04%" }, + { 21809, "INV_Jewelry_Necklace_14", "=q3=Fury of the Forgotten Swarm", "=ds=#s2#", "3-13%" }, + { 21810, "INV_Boots_Cloth_05", "=q3=Treads of the Wandering Nomad", "=ds=#s12#, #a1#", "4-13%" }, + { 21806, "INV_Hammer_04", "=q3=Gavel of Qiraji Authority", "=ds=#h2#, #w6#", "2-7%" }, }; AQ20Rajaxx = { - { 21493, "INV_Boots_08", "=q4=Boots of the Vanguard", "=ds=#s12#, #a2#", "8.13%" }, - { 21492, "INV_Sword_56", "=q4=Manslayer of the Qiraji", "=ds=#h2#, #w10#", "10.04%" }, + { 21493, "INV_Boots_08", "=q4=Boots of the Vanguard", "=ds=#s12#, #a2#", "17%" }, + { 21492, "INV_Sword_56", "=q4=Manslayer of the Qiraji", "=ds=#h2#, #w10#", "17%" }, { 0,"","","" }, - { 21496, "INV_Bracer_13", "=q3=Bracers of Qiraji Command", "=ds=#s8#, #a1#", "15.79%" }, - { 21494, "INV_Belt_25", "=q3=Southwind's Grasp", "=ds=#s10#, #a2#", "15.13%" }, - { 21495, "INV_Pants_Plate_15", "=q3=Legplates of the Qiraji Command", "=ds=#s11#, #a4#", "15.47" }, - { 21497, "INV_Boots_Chain_11", "=q3=Boots of the Qiraji General", "=ds=#s12#, #a3#", "15.45%" }, + { 21496, "INV_Bracer_13", "=q3=Bracers of Qiraji Command", "=ds=#s8#, #a1#", "17%" }, + { 21494, "INV_Belt_25", "=q3=Southwind's Grasp", "=ds=#s10#, #a2#", "17%" }, + { 21495, "INV_Pants_Plate_15", "=q3=Legplates of the Qiraji Command", "=ds=#s11#, #a4#", "17%" }, + { 21497, "INV_Boots_Chain_11", "=q3=Boots of the Qiraji General", "=ds=#s12#, #a3#", "17%" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, @@ -1973,48 +2006,48 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 20885, "INV_Qiraj_DrapeMartial", "=q3=Qiraji Martial Drape", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q10=#c3#", "33.97%" }, - { 20889, "INV_Bracer_18", "=q3=Qiraji Regal Drape", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "36.51%" }, - { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "8.56%" }, - { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "8.82%" }, + { 20885, "INV_Qiraj_DrapeMartial", "=q3=Qiraji Martial Drape", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q10=#c3#", "25%" }, + { 20889, "INV_Bracer_18", "=q3=Qiraji Regal Drape", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "25%" }, + { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "25%" }, + { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "25%" }, { 0, "", "", "" }, - { 81004, "", "=q3=", "", "10%" }, + { 81004, "inv_weapon_shortblade_27", "=q3=Sandswept Obsidian Dagger", "=ds=#h1#, #w4#", "10%" }, }; AQ20Moam = { - { 21472, "INV_Helmet_62", "=q4=Dustwind Turban", "=ds=#s1#, #a1#", "7.76%" }, - { 21467, "INV_Chest_Leather_07", "=q4=Thick Silithid Chestguard", "=ds=#s5#, #a2#", "6.76%" }, - { 21479, "INV_Gauntlets_31", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "7.12%" }, - { 21471, "INV_Mace_21", "=q4=Talon of Furious Concentration", "=ds=#s15#", "7.39%" }, + { 21472, "INV_Helmet_62", "=q4=Dustwind Turban", "=ds=#s1#, #a1#", "25%" }, + { 21467, "INV_Chest_Leather_07", "=q4=Thick Silithid Chestguard", "=ds=#s5#, #a2#", "25%" }, + { 21479, "INV_Gauntlets_31", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "25%" }, + { 21471, "INV_Mace_21", "=q4=Talon of Furious Concentration", "=ds=#s15#", "25%" }, { 0,"","","" }, - { 21455, "INV_Helmet_01", "=q3=Southwind Helm", "=ds=#s1#, #a2#", "14.08%" }, - { 21468, "INV_Shoulder_25", "=q3=Mantle of Maz'Nadir", "=ds=#s3#, #a1#", "15.86%" }, - { 21474, "INV_Shoulder_29", "=q3=Chitinous Shoulderguards", "=ds=#s3#, #a2#", "15.25%" }, - { 21470, "INV_Misc_Cape_16", "=q3=Cloak of the Savior", "=ds=#s4#", "14.23%" }, - { 21469, "INV_Gauntlets_05", "=q3=Gauntlets of Southwind", "=ds=#s9#, #a2#", "15.28%" }, - { 21476, "INV_Pants_Mail_15", "=q3=Obsidian Scaled Leggings", "=ds=#s11#, #a3#", "6.81%" }, - { 21475, "INV_Pants_Plate_01", "=q3=Legplates of the Destroyer", "=ds=#s11#, #a4#", "10.39%" }, - { 21477, "INV_Jewelry_Ring_AhnQiraj_04", "=q3=Ring of Fury", "=ds=#s13#", "14.42%" }, - { 21473, "INV_Misc_Eye_01", "=q3=Eye of Moam", "=ds=#s14#", "14.74%" }, + { 21455, "INV_Helmet_01", "=q3=Southwind Helm", "=ds=#s1#, #a2#", "11%" }, + { 21468, "INV_Shoulder_25", "=q3=Mantle of Maz'Nadir", "=ds=#s3#, #a1#", "11%" }, + { 21474, "INV_Shoulder_29", "=q3=Chitinous Shoulderguards", "=ds=#s3#, #a2#", "11%" }, + { 21470, "INV_Misc_Cape_16", "=q3=Cloak of the Savior", "=ds=#s4#", "11%" }, + { 21469, "INV_Gauntlets_05", "=q3=Gauntlets of Southwind", "=ds=#s9#, #a2#", "11%" }, + { 21476, "INV_Pants_Mail_15", "=q3=Obsidian Scaled Leggings", "=ds=#s11#, #a3#", "11%" }, + { 21475, "INV_Pants_Plate_01", "=q3=Legplates of the Destroyer", "=ds=#s11#, #a4#", "11%" }, + { 21477, "INV_Jewelry_Ring_AhnQiraj_04", "=q3=Ring of Fury", "=ds=#s13#", "11%" }, + { 21473, "INV_Misc_Eye_01", "=q3=Eye of Moam", "=ds=#s14#", "11%" }, { 0, "", "", "" }, - { 20890, "INV_Qiraj_HiltOrnate", "=q4=Qiraji Ornate Hilt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "33.16%" }, - { 20886, "INV_Qiraj_HiltSpiked", "=q4=Qiraji Spiked Hilt", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "36.38%" }, + { 20890, "INV_Qiraj_HiltOrnate", "=q4=Qiraji Ornate Hilt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "25%" }, + { 20886, "INV_Qiraj_HiltSpiked", "=q4=Qiraji Spiked Hilt", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "25%" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "8.34%" }, - { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "7.56%" }, + { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "25%" }, + { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "25%" }, { 0, "", "", "" }, - { 22220, "INV_Scroll_05", "=q3=Plans: Black Grasp of the Destroyer", "=ds=#p2# #m14#", "4.11%" }, + { 22220, "INV_Scroll_05", "=q3=Plans: Black Grasp of the Destroyer", "=ds=#p2# #m14#", "15%" }, { 22194, "INV_Gauntlets_31", "=q4=Black Grasp of the Destroyer", "=ds=#s9#, #a3#" }, }; AQ20Buru = { - { 21487, "INV_Gauntlets_12", "=q4=Slimy Scaled Gauntlets", "=ds=#s9#, #a3#", "2.64%" }, - { 21486, "INV_Gauntlets_30", "=q4=Gloves of the Swarm", "=ds=#s9#, #a4#", "5.22%" }, - { 21485, "INV_Shield_22", "=q4=Buru's Skull Fragment", "=ds=#w8#", "7.88%" }, + { 21487, "INV_Gauntlets_12", "=q4=Slimy Scaled Gauntlets", "=ds=#s9#, #a3#", "14%" }, + { 21486, "INV_Gauntlets_30", "=q4=Gloves of the Swarm", "=ds=#s9#, #a4#", "14%" }, + { 21485, "INV_Shield_22", "=q4=Buru's Skull Fragment", "=ds=#w8#", "14%" }, { 0,"","","" }, - { 21491, "INV_Bracer_03", "=q3=Scaled Bracers of the Gorger", "=ds=#s8#, #a2#", "16.51%" }, - { 21489, "INV_Boots_Cloth_05", "=q3=Quicksand Waders", "=ds=#s12#, #a1#", "15.95%" }, - { 21490, "INV_Boots_Plate_04", "=q3=Slime Kickers", "=ds=#s12#, #a4#", "15.99%" }, - { 21488, "INV_Misc_AhnQirajTrinket_02", "=q3=Fetish of Chitinous Spikes", "=ds=#s14#", "17.22%" }, + { 21491, "INV_Bracer_03", "=q3=Scaled Bracers of the Gorger", "=ds=#s8#, #a2#", "14%" }, + { 21489, "INV_Boots_Cloth_05", "=q3=Quicksand Waders", "=ds=#s12#, #a1#", "14%" }, + { 21490, "INV_Boots_Plate_04", "=q3=Slime Kickers", "=ds=#s12#, #a4#", "14%" }, + { 21488, "INV_Misc_AhnQirajTrinket_02", "=q3=Fetish of Chitinous Spikes", "=ds=#s14#", "14%" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, @@ -2022,60 +2055,60 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 20890, "INV_Qiraj_HiltOrnate", "=q4=Qiraji Ornate Hilt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "8.98%" }, - { 20886, "INV_Qiraj_HiltSpiked", "=q4=Qiraji Spiked Hilt", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "8.31%" }, - { 20885, "INV_Qiraj_DrapeMartial", "=q3=Qiraji Martial Drape", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q10=#c3#", "9.84%" }, - { 20889, "INV_Bracer_18", "=q3=Qiraji Regal Drape", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "9.77%" }, - { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "25.58%" }, - { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "26.98%" }, + { 20890, "INV_Qiraj_HiltOrnate", "=q4=Qiraji Ornate Hilt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "17%" }, + { 20886, "INV_Qiraj_HiltSpiked", "=q4=Qiraji Spiked Hilt", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "17%" }, + { 20885, "INV_Qiraj_DrapeMartial", "=q3=Qiraji Martial Drape", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q10=#c3#", "17%" }, + { 20889, "INV_Bracer_18", "=q3=Qiraji Regal Drape", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "17%" }, + { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "17%" }, + { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "17%" }, }; AQ20Ayamiss = { - { 21479, "INV_Gauntlets_31", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "6.18%" }, - { 21478, "INV_Weapon_Bow_13", "=q4=Bow of Taut Sinew", "=ds=#w2#", "10.14%" }, - { 21466, "INV_Mace23", "=q4=Stinger of Ayamiss", "=ds=#h3#, #w6#", "2.06%" }, + { 21479, "INV_Gauntlets_31", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "13%" }, + { 21478, "INV_Weapon_Bow_13", "=q4=Bow of Taut Sinew", "=ds=#w2#", "13%" }, + { 21466, "INV_Mace23", "=q4=Stinger of Ayamiss", "=ds=#h3#, #w6#", "13%" }, { 0,"","","" }, - { 21484, "INV_Helmet_15", "=q3=Helm of Regrowth", "=ds=#s1#, #a2#", "15.85%" }, - { 21480, "INV_Gauntlets_10", "=q3=Scaled Silithid Gauntlets", "=ds=#s9#, #a3#", "17.10%" }, - { 21482, "INV_Boots_Chain_02", "=q3=Boots of the Fiery Sands", "=ds=#s12#, #a3#", "4.92%" }, - { 21481, "INV_Boots_Plate_05", "=q3=Boots of the Desert Protector", "=ds=#s12#, #a4#", "11.08%" }, - { 21483, "INV_Jewelry_Ring_AhnQiraj_05", "=q3=Ring of the Desert Winds", "=ds=#s13#", "16.32%" }, + { 21484, "INV_Helmet_15", "=q3=Helm of Regrowth", "=ds=#s1#, #a2#", "13%" }, + { 21480, "INV_Gauntlets_10", "=q3=Scaled Silithid Gauntlets", "=ds=#s9#, #a3#", "13%" }, + { 21482, "INV_Boots_Chain_02", "=q3=Boots of the Fiery Sands", "=ds=#s12#, #a3#", "13%" }, + { 21481, "INV_Boots_Plate_05", "=q3=Boots of the Desert Protector", "=ds=#s12#, #a4#", "13%" }, + { 21483, "INV_Jewelry_Ring_AhnQiraj_05", "=q3=Ring of the Desert Winds", "=ds=#s13#", "13%" }, { 0, "", "", "" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 20890, "INV_Qiraj_HiltOrnate", "=q4=Qiraji Ornate Hilt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "8.21%" }, - { 20886, "INV_Qiraj_HiltSpiked", "=q4=Qiraji Spiked Hilt", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "8.24%" }, - { 20885, "INV_Qiraj_DrapeMartial", "=q3=Qiraji Martial Drape", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q10=#c3#", "10.97%" }, - { 20889, "INV_Bracer_18", "=q3=Qiraji Regal Drape", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "8.85%" }, - { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "27.50%" }, - { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "26.98%" }, + { 20890, "INV_Qiraj_HiltOrnate", "=q4=Qiraji Ornate Hilt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "17%" }, + { 20886, "INV_Qiraj_HiltSpiked", "=q4=Qiraji Spiked Hilt", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "17%" }, + { 20885, "INV_Qiraj_DrapeMartial", "=q3=Qiraji Martial Drape", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q10=#c3#", "17%" }, + { 20889, "INV_Bracer_18", "=q3=Qiraji Regal Drape", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "17%" }, + { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "17%" }, + { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "17%" }, }; AQ20Ossirian = { - { 21460, "INV_Helmet_09", "=q4=Helm of Domination", "=ds=#s1#, #a4#", "12.18%" }, - { 21454, "INV_Shoulder_18", "=q4=Runic Stone Shoulders", "=ds=#s3#, #a3#", "4.10%" }, - { 21453, "INV_Shoulder_28", "=q4=Mantle of the Horusath", "=ds=#s3#, #a4#", "6.96%" }, - { 21456, "INV_Misc_Cape_06", "=q4=Sandstorm Cloak", "=ds=#s4#", "10.89%" }, - { 21464, "INV_Bracer_07", "=q4=Shackles of the Unscarred", "=ds=#s8#, #a1#", "12.62%" }, - { 21457, "INV_Bracer_19", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "10.74%" }, - { 21462, "INV_Gauntlets_19", "=q4=Gloves of Dark Wisdom", "=ds=#s9#, #a1#", "11.89%" }, - { 21458, "INV_Gauntlets_24", "=q4=Gauntlets of New Life", "=ds=#s9#, #a2#", "13.25%" }, - { 21463, "INV_Belt_18", "=q4=Ossirian's Binding", "=ds=#s10#, #a3#", "12.27%" }, - { 21461, "INV_Pants_Cloth_06", "=q4=Leggings of the Black Blizzard", "=ds=#s11#, #a1#", "12.83%" }, - { 21459, "INV_Weapon_Crossbow_06", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "6.12%" }, - { 21715, "INV_Mace_24", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "5.95%" }, - { 21452, "INV_Staff_12", "=q4=Staff of the Ruins", "=ds=#w9#", "10.32%" }, + { 21460, "INV_Helmet_09", "=q4=Helm of Domination", "=ds=#s1#, #a4#", "15%" }, + { 21454, "INV_Shoulder_18", "=q4=Runic Stone Shoulders", "=ds=#s3#, #a3#", "18%" }, + { 21453, "INV_Shoulder_28", "=q4=Mantle of the Horusath", "=ds=#s3#, #a4#", "18%" }, + { 21456, "INV_Misc_Cape_06", "=q4=Sandstorm Cloak", "=ds=#s4#", "18%" }, + { 21464, "INV_Bracer_07", "=q4=Shackles of the Unscarred", "=ds=#s8#, #a1#", "15%" }, + { 21457, "INV_Bracer_19", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "15%" }, + { 21462, "INV_Gauntlets_19", "=q4=Gloves of Dark Wisdom", "=ds=#s9#, #a1#", "15%" }, + { 21458, "INV_Gauntlets_24", "=q4=Gauntlets of New Life", "=ds=#s9#, #a2#", "18%" }, + { 21463, "INV_Belt_18", "=q4=Ossirian's Binding", "=ds=#s10#, #a3#", "15%" }, + { 21461, "INV_Pants_Cloth_06", "=q4=Leggings of the Black Blizzard", "=ds=#s11#, #a1#", "15%" }, + { 21459, "INV_Weapon_Crossbow_06", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "15%" }, + { 21715, "INV_Mace_24", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "15%" }, + { 21452, "INV_Staff_12", "=q4=Staff of the Ruins", "=ds=#w9#", "18%" }, { 0,"","","" }, { 0,"","","" }, - { 20890, "INV_Qiraj_HiltOrnate", "=q4=Qiraji Ornate Hilt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30.69%" }, - { 20886, "INV_Qiraj_HiltSpiked", "=q4=Qiraji Spiked Hilt", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "35.27%" }, + { 20890, "INV_Qiraj_HiltOrnate", "=q4=Qiraji Ornate Hilt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "50%" }, + { 20886, "INV_Qiraj_HiltSpiked", "=q4=Qiraji Spiked Hilt", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "50%" }, { 0,"","","" }, { 0,"","","" }, - { 20888, "INV_Qiraj_RingCeremonial", "=q3=Qiraji Ceremonial Ring", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#=ds=, =q11=#c8#", "8.53%" }, - { 20884, "INV_Qiraj_RingMagisterial", "=q3=Qiraji Magisterial Ring", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q13=#c1#", "9.65%" }, { 0,"","","" }, - { 21220, "Ability_Hunter_Pet_Owl", "=q4=Head of Ossirian the Unscarred", "=ds=#m2#", "100.00%" }, + { 0,"","","" }, + { 0,"","","" }, + { 21220, "Ability_Hunter_Pet_Owl", "=q4=Head of Ossirian the Unscarred", "=ds=#m2#", "100%" }, { 21504, "INV_Jewelry_Necklace_AhnQiraj_03", "=q4=Charm of the Shifting Sands", "=q1=#m4# =ds=#s2#" }, { 21507, "INV_Jewelry_Necklace_AhnQiraj_03", "=q4=Amulet of the Shifting Sands", "=q1=#m4# =ds=#s2#" }, { 21505, "INV_Jewelry_Necklace_AhnQiraj_03", "=q4=Choker of the Shifting Sands", "=q1=#m4# =ds=#s2#" }, @@ -2101,186 +2134,186 @@ AtlasLoot_Data["AtlasLootItems"] = { { 22198, "INV_Shield_22", "=q4=Jagged Obsidian Shield", "=ds=#w8#" }, }; AQ20ClassBooks = { - { 21284, "INV_Misc_Book_09", "=q3=Codex of Greater Heal V", "=ds=#e20# =q9=#c5#", "5.15%" }, - { 21287, "INV_Misc_Book_09", "=q3=Codex of Prayer of Healing V", "=ds=#e20# =q9=#c5#", "4.89%" }, - { 21285, "INV_Misc_Book_09", "=q3=Codex of Renew X", "=ds=#e20# =q9=#c5#", "4.91%" }, - { 21279, "INV_Misc_Book_07", "=q3=Tome of Fireball XII", "=ds=#e20# =q10=#c3#", "5.15%" }, - { 21214, "INV_Misc_Book_07", "=q3=Tome of Frostbolt XI", "=ds=#e20# =q10=#c3#", "5.10%" }, - { 21280, "INV_Misc_Book_07", "=q3=Tome of Arcane Missiles VIII", "=ds=#e20# =q10=#c3#", "5.03%" }, - { 21281, "INV_Misc_Book_06", "=q3=Grimoire of Shadow Bolt X", "=ds=#e20# =q11=#c8#", "4.23%" }, - { 21283, "INV_Misc_Book_06", "=q3=Grimoire of Corruption VII", "=ds=#e20# =q11=#c8#", "3.82%" }, - { 21282, "INV_Misc_Book_06", "=q3=Grimoire of Immolate VIII", "=ds=#e20# =q11=#c8#", "4.51%" }, - { 21300, "INV_Misc_Book_10", "=q3=Handbook of Backstab IX", "=ds=#e20# =q12=#c6#", "4.29%" }, - { 21303, "INV_Misc_Book_10", "=q3=Handbook of Feint V", "=ds=#e20# =q12=#c6#", "4.79%" }, - { 21302, "INV_Misc_Book_10", "=q3=Handbook of Deadly Poison V", "=ds=#e20# =q12=#c6#", "5.47%" }, - { 21294, "INV_Misc_Book_11", "=q3=Book of Healing Touch XI", "=ds=#e20# =q13=#c1#", "4.12%" }, - { 21296, "INV_Misc_Book_11", "=q3=Book of Rejuvenation XI", "=ds=#e20# =q13=#c1#", "4.20%" }, - { 21295, "INV_Misc_Book_11", "=q3=Book of Starfire VII", "=ds=#e20# =q13=#c1#", "4.00%" }, - { 21306, "INV_Misc_Book_02", "=q3=Guide: Serpent Sting IX", "=ds=#e20# =q14=#c2#", "4.85%" }, - { 21304, "INV_Misc_Book_02", "=q3=Guide: Multi-Shot V", "=ds=#e20# =q14=#c2#", "4.66%" }, - { 21307, "INV_Misc_Book_02", "=q3=Guide: Aspect of the Hawk VII", "=ds=#e20# =q14=#c2#", "4.65%" }, - { 21291, "INV_Misc_StoneTablet_11", "=q3=Tablet of Healing Wave X", "=ds=#e20# =q15=#c7#", "2.05%" }, - { 21292, "INV_Misc_StoneTablet_11", "=q3=Tablet of Strength of Earth Totem V", "=ds=#e20# =q15=#c7#", "1.67%" }, - { 21293, "INV_Misc_StoneTablet_11", "=q3=Tablet of Grace of Air Totem III", "=ds=#e20# =q15=#c7#", "1.81%" }, - { 21288, "INV_Misc_Book_08", "=q3=Libram: Blessing of Wisdom VI", "=ds=#e20# =q16=#c4#", "3.50%" }, - { 21289, "INV_Misc_Book_08", "=q3=Libram: Blessing of Might VII", "=ds=#e20# =q16=#c4#", "3.07%" }, - { 21290, "INV_Misc_Book_08", "=q3=Libram: Holy Light IX", "=ds=#e20# =q16=#c4#", "3.09%" }, - { 21298, "INV_Misc_Book_03", "=q3=Manual of Battle Shout VII", "=ds=#e20# =q17=#c9#", "4.84%" }, - { 21299, "INV_Misc_Book_03", "=q3=Manual of Revenge VI", "=ds=#e20# =q17=#c9#", "4.78%" }, - { 21297, "INV_Misc_Book_03", "=q3=Manual of Heroic Strike IX", "=ds=#e20# =q17=#c9#", "4.83%" }, + { 21284, "INV_Misc_Book_09", "=q3=Codex of Greater Heal V", "=ds=#e20# =q9=#c5#", "4%" }, + { 21287, "INV_Misc_Book_09", "=q3=Codex of Prayer of Healing V", "=ds=#e20# =q9=#c5#", "4%" }, + { 21285, "INV_Misc_Book_09", "=q3=Codex of Renew X", "=ds=#e20# =q9=#c5#", "4%" }, + { 21279, "INV_Misc_Book_07", "=q3=Tome of Fireball XII", "=ds=#e20# =q10=#c3#", "4%" }, + { 21214, "INV_Misc_Book_07", "=q3=Tome of Frostbolt XI", "=ds=#e20# =q10=#c3#", "4%" }, + { 21280, "INV_Misc_Book_07", "=q3=Tome of Arcane Missiles VIII", "=ds=#e20# =q10=#c3#", "4%" }, + { 21281, "INV_Misc_Book_06", "=q3=Grimoire of Shadow Bolt X", "=ds=#e20# =q11=#c8#", "4%" }, + { 21283, "INV_Misc_Book_06", "=q3=Grimoire of Corruption VII", "=ds=#e20# =q11=#c8#", "4%" }, + { 21282, "INV_Misc_Book_06", "=q3=Grimoire of Immolate VIII", "=ds=#e20# =q11=#c8#", "4%" }, + { 21300, "INV_Misc_Book_10", "=q3=Handbook of Backstab IX", "=ds=#e20# =q12=#c6#", "4%" }, + { 21303, "INV_Misc_Book_10", "=q3=Handbook of Feint V", "=ds=#e20# =q12=#c6#", "4%" }, + { 21302, "INV_Misc_Book_10", "=q3=Handbook of Deadly Poison V", "=ds=#e20# =q12=#c6#", "4%" }, + { 21294, "INV_Misc_Book_11", "=q3=Book of Healing Touch XI", "=ds=#e20# =q13=#c1#", "4%" }, + { 21296, "INV_Misc_Book_11", "=q3=Book of Rejuvenation XI", "=ds=#e20# =q13=#c1#", "4%" }, + { 21295, "INV_Misc_Book_11", "=q3=Book of Starfire VII", "=ds=#e20# =q13=#c1#", "4%" }, + { 21306, "INV_Misc_Book_02", "=q3=Guide: Serpent Sting IX", "=ds=#e20# =q14=#c2#", "4%" }, + { 21304, "INV_Misc_Book_02", "=q3=Guide: Multi-Shot V", "=ds=#e20# =q14=#c2#", "4%" }, + { 21307, "INV_Misc_Book_02", "=q3=Guide: Aspect of the Hawk VII", "=ds=#e20# =q14=#c2#", "4%" }, + { 21291, "INV_Misc_StoneTablet_11", "=q3=Tablet of Healing Wave X", "=ds=#e20# =q15=#c7#", "4%" }, + { 21292, "INV_Misc_StoneTablet_11", "=q3=Tablet of Strength of Earth Totem V", "=ds=#e20# =q15=#c7#", "4%" }, + { 21293, "INV_Misc_StoneTablet_11", "=q3=Tablet of Grace of Air Totem III", "=ds=#e20# =q15=#c7#", "4%" }, + { 21288, "INV_Misc_Book_08", "=q3=Libram: Blessing of Wisdom VI", "=ds=#e20# =q16=#c4#", "4%" }, + { 21289, "INV_Misc_Book_08", "=q3=Libram: Blessing of Might VII", "=ds=#e20# =q16=#c4#", "4%" }, + { 21290, "INV_Misc_Book_08", "=q3=Libram: Holy Light IX", "=ds=#e20# =q16=#c4#", "4%" }, + { 21298, "INV_Misc_Book_03", "=q3=Manual of Battle Shout VII", "=ds=#e20# =q17=#c9#", "4%" }, + { 21299, "INV_Misc_Book_03", "=q3=Manual of Revenge VI", "=ds=#e20# =q17=#c9#", "4%" }, + { 21297, "INV_Misc_Book_03", "=q3=Manual of Heroic Strike IX", "=ds=#e20# =q17=#c9#", "4%" }, }; AQ20Trash = { - { 21804, "INV_Helmet_24", "=q3=Coif of Elemental Fury", "=ds=#s1#, #a3#", "0.12%" }, - { 21803, "INV_Helmet_03", "=q3=Helm of the Holy Avenger", "=ds=#s1#, #a4#", "0.14%" }, - { 21805, "INV_Shoulder_26", "=q3=Polished Obsidian Pauldrons", "=ds=#s3#, #a4#", "0.25%" }, + { 21804, "INV_Helmet_24", "=q3=Coif of Elemental Fury", "=ds=#s1#, #a3#", "0.2%" }, + { 21803, "INV_Helmet_03", "=q3=Helm of the Holy Avenger", "=ds=#s1#, #a4#", "0.02%" }, + { 21805, "INV_Shoulder_26", "=q3=Polished Obsidian Pauldrons", "=ds=#s3#, #a4#", "0.02%" }, { 0, "", "", "", "" }, - { 20873, "INV_QirajIdol_Alabaster", "=q3=Alabaster Idol", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q13=#c1#", "0.5%" }, - { 20869, "INV_QirajIdol_Amber", "=q3=Amber Idol", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#", "0.6%" }, - { 20866, "INV_QirajIdol_Azure", "=q3=Azure Idol", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q10=#c3#", "0.6%" }, - { 20870, "INV_QirajIdol_Jasper", "=q3=Jasper Idol", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "0.6%" }, - { 20868, "INV_QirajIdol_Lambent", "=q3=Lambent Idol", "=q17=#c9#=ds=, =q14=#c2#=ds=, =q9=#c5#", "0.6%" }, - { 20871, "INV_QirajIdol_Obsidian", "=q3=Obsidian Idol", "=q16=#c4#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#", "0.6%" }, - { 20867, "INV_QirajIdol_Onyx", "=q3=Onyx Idol", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q11=#c8# ", "0.5%" }, - { 20872, "INV_QirajIdol_Vermillion", "=q3=Vermillion Idol", "=q16=#c4#=ds=, =q12=#c6#=ds=, =q15=#c7#=ds=, =q13=#c1#", "0.5%" }, + { 20873, "INV_QirajIdol_Alabaster", "=q3=Alabaster Idol", "=q17=#c9#=ds=, =q10=#c3#=ds=, =q13=#c1#", "0.4%" }, + { 20869, "INV_QirajIdol_Amber", "=q3=Amber Idol", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q11=#c8#", "0.4%" }, + { 20866, "INV_QirajIdol_Azure", "=q3=Azure Idol", "=q14=#c2#=ds=, =q12=#c6#=ds=, =q10=#c3#", "0.4%" }, + { 20870, "INV_QirajIdol_Jasper", "=q3=Jasper Idol", "=q9=#c5#=ds=, =q11=#c8#=ds=, =q13=#c1#", "0.4%" }, + { 20868, "INV_QirajIdol_Lambent", "=q3=Lambent Idol", "=q17=#c9#=ds=, =q14=#c2#=ds=, =q9=#c5#", "0.4%" }, + { 20871, "INV_QirajIdol_Obsidian", "=q3=Obsidian Idol", "=q16=#c4#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#", "0.4%" }, + { 20867, "INV_QirajIdol_Onyx", "=q3=Onyx Idol", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q11=#c8# ", "0.4%" }, + { 20872, "INV_QirajIdol_Vermillion", "=q3=Vermillion Idol", "=q16=#c4#=ds=, =q12=#c6#=ds=, =q15=#c7#=ds=, =q13=#c1#", "0.4%" }, { 0, "", "", "", "" }, - { 21761, "INV_Misc_Key_08", "=q1=Scarab Coffer Key", "=ds=#e14#", "8.78%" }, - { 21156, "INV_Misc_Bag_13", "=q1=Scarab Bag", "=ds=#m23# =q7=#cb31#", "100%" }, - { 21801, "INV_Wand_04", "=q3=Antenna of Invigoration", "=ds=#w12#", "0.17%" }, - { 21800, "INV_Weapon_Rifle_10", "=q3=Silithid Husked Launcher", "=ds=#w5#", "0.10%" }, - { 21802, "INV_Sword_32", "=q3=The Lost Kris of Zedd", "=ds=#h3#, #w4#", "0.14%" }, + { 21761, "INV_Misc_Key_08", "=q1=Scarab Coffer Key", "=ds=#e14#", "7%" }, + { 21156, "INV_Misc_Bag_13", "=q1=Scarab Bag", "=ds=#m23# =q7=#cb31#", "0.1%" }, + { 21801, "INV_Wand_04", "=q3=Antenna of Invigoration", "=ds=#w12#", "0.1%" }, + { 21800, "INV_Weapon_Rifle_10", "=q3=Silithid Husked Launcher", "=ds=#w5#", "0.1%" }, + { 21802, "INV_Sword_32", "=q3=The Lost Kris of Zedd", "=ds=#h3#, #w4#", "0.1%" }, { 0, "", "", "", "" }, - { 20864, "INV_Scarab_Bone", "=q2=Bone Scarab", "=ds=#m3#", "0.84%" }, - { 20861, "INV_Scarab_Bronze", "=q2=Bronze Scarab", "=ds=#m3#", "0.88%" }, - { 20863, "INV_Scarab_Clay", "=q2=Clay Scarab", "=ds=#m3#", "0.95%" }, - { 20862, "INV_Scarab_Crystal", "=q2=Crystal Scarab", "=ds=#m3#", "0.99%" }, - { 20859, "INV_Scarab_Gold", "=q2=Gold Scarab", "=ds=#m3#", "0.96%" }, - { 20865, "INV_Scarab_Ivory", "=q2=Ivory Scarab", "=ds=#m3#", "0.93%" }, - { 20860, "INV_Scarab_Silver", "=q2=Silver Scarab", "=ds=#m3#", "1.82%" }, - { 20858, "INV_Scarab_Stone", "=q2=Stone Scarab", "=ds=#m3#", "0.86%" }, + { 20864, "INV_Scarab_Bone", "=q2=Bone Scarab", "=ds=#m3#", "2%" }, + { 20861, "INV_Scarab_Bronze", "=q2=Bronze Scarab", "=ds=#m3#", "2%" }, + { 20863, "INV_Scarab_Clay", "=q2=Clay Scarab", "=ds=#m3#", "2%" }, + { 20862, "INV_Scarab_Crystal", "=q2=Crystal Scarab", "=ds=#m3#", "2%" }, + { 20859, "INV_Scarab_Gold", "=q2=Gold Scarab", "=ds=#m3#", "2%" }, + { 20865, "INV_Scarab_Ivory", "=q2=Ivory Scarab", "=ds=#m3#", "2%" }, + { 20860, "INV_Scarab_Silver", "=q2=Silver Scarab", "=ds=#m3#", "2%" }, + { 20858, "INV_Scarab_Stone", "=q2=Stone Scarab", "=ds=#m3#", "2%" }, { 0, "", "", "", "" }, { 22203, "INV_Stone_15", "=q1=Large Obsidian Shard", "=ds=#e12#" }, { 22202, "INV_Misc_StoneTablet_01", "=q1=Small Obsidian Shard", "=ds=#e12#" }, }; - AQ40Skeram = { - { 21699, "INV_Shoulder_14", "=q4=Barrage Shoulders", "=ds=#s3#, #a3#", "11.50%" }, - { 21814, "INV_Chest_Plate02", "=q4=Breastplate of Annihilation", "=ds=#s5#, #a4#", "11.01%" }, - { 21708, "INV_Bracer_12", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "12.85%" }, - { 21698, "INV_Pants_Leather_11", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "10.99%" }, - { 21705, "INV_Boots_Chain_06", "=q4=Boots of the Fallen Prophet", "=ds=#s12#, #a3#", "3.33%" }, - { 21704, "INV_Boots_Plate_08", "=q4=Boots of the Redeemed Prophecy", "=ds=#s12#, #a4#", "7.75%" }, - { 21706, "INV_Boots_Plate_06", "=q4=Boots of the Unwavering Will", "=ds=#s12#, #a4#", "12.23%" }, + AQ40Skeram = { + { 21699, "INV_Shoulder_14", "=q4=Barrage Shoulders", "=ds=#s3#, #a3#", "18%" }, + { 21814, "INV_Chest_Plate02", "=q4=Breastplate of Annihilation", "=ds=#s5#, #a4#", "15%" }, + { 21708, "INV_Bracer_12", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "15%" }, + { 21698, "INV_Pants_Leather_11", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "18%" }, + { 21705, "INV_Boots_Chain_06", "=q4=Boots of the Fallen Prophet", "=ds=#s12#, #a3#", "15%" }, + { 21704, "INV_Boots_Plate_08", "=q4=Boots of the Redeemed Prophecy", "=ds=#s12#, #a4#", "15%" }, + { 21706, "INV_Boots_Plate_06", "=q4=Boots of the Unwavering Will", "=ds=#s12#, #a4#", "15%" }, { 0,"","","" }, - { 21702, "INV_Jewelry_Necklace_12", "=q4=Amulet of Foul Warding", "=ds=#s2#", "12.20%" }, - { 21700, "INV_Jewelry_Necklace_AhnQiraj_01", "=q4=Pendant of the Qiraji Guardian", "=ds=#s2#", "11.57%" }, - { 21701, "INV_Misc_Cape_02", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "11.81%" }, - { 21707, "INV_Jewelry_Ring_AhnQiraj_04", "=q4=Ring of Swarming Thought", "=ds=#s13#", "12.57%" }, - { 21703, "INV_Mace_21", "=q4=Hammer of Ji'zhi", "=ds=#h2#, #w6#", "7.14%" }, - { 21128, "INV_Staff_01", "=q4=Staff of the Qiraji Prophets", "=ds=#w9#", "6.32%" }, + { 21702, "INV_Jewelry_Necklace_12", "=q4=Amulet of Foul Warding", "=ds=#s2#", "18%" }, + { 21700, "INV_Jewelry_Necklace_AhnQiraj_01", "=q4=Pendant of the Qiraji Guardian", "=ds=#s2#", "18%" }, + { 21701, "INV_Misc_Cape_02", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "18%" }, + { 21707, "INV_Jewelry_Ring_AhnQiraj_04", "=q4=Ring of Swarming Thought", "=ds=#s13#", "15%" }, + { 21703, "INV_Mace_21", "=q4=Hammer of Ji'zhi", "=ds=#h2#, #w6#", "10%" }, + { 21128, "INV_Staff_01", "=q4=Staff of the Qiraji Prophets", "=ds=#w9#", "10%" }, { 0,"","","" }, - { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "1.74%" }, + { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4%" }, { 21268, "INV_Mace_24", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#" }, { 21273, "INV_Staff_20", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#" }, { 21275, "INV_Staff_20", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#" }, { 0,"","","" }, - { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "1.32%" }, + { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4%" }, { 21242, "INV_Axe_26", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#" }, { 21244, "INV_Weapon_Shortblade_35", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#" }, { 21272, "INV_Weapon_Rifle_11", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#" }, { 21269, "INV_Shield_23", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#" }, { 0,"","","" }, - { 22222, "INV_Scroll_05", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# #m14#", "5.00%" }, + { 22222, "INV_Scroll_05", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# #m14#", "15%" }, { 22196, "INV_Chest_Chain_17", "=q4=Thick Obsidian Breastplate", "=ds=#s5#, #a4#" }, }; - AQ40Trio = { - { 21693, "INV_Helmet_06", "=q4=Guise of the Devourer", "=ds=#s1#, #a2# =q2=#m5#" }, - { 21694, "INV_Shoulder_05", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#" }, - { 21697, "INV_Misc_Cape_18", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#" }, - { 21696, "INV_Chest_Cloth_22", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#" }, - { 21692, "INV_Belt_18", "=q4=Triad Girdle", "=ds=#s10#, #a4# =q2=#m5#" }, - { 21695, "INV_Jewelry_Ring_AhnQiraj_04", "=q4=Angelista's Touch", "=ds=#s13# =q2=#m5#" }, + AQ40Trio = { + { 21693, "INV_Helmet_06", "=q4=Guise of the Devourer", "=ds=#s1#, #a2# =q2=#m5#", "17%" }, + { 21694, "INV_Shoulder_05", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#", "17%" }, + { 21697, "INV_Misc_Cape_18", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#", "17%" }, + { 21696, "INV_Chest_Cloth_22", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#", "17%" }, + { 21692, "INV_Belt_18", "=q4=Triad Girdle", "=ds=#s10#, #a4# =q2=#m5#", "17%" }, + { 21695, "INV_Jewelry_Ring_AhnQiraj_04", "=q4=Angelista's Touch", "=ds=#s13# =q2=#m5#", "17%" }, { 0,"","","" }, - { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# =q2=#m5#" }, - { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# =q2=#m5#" }, + { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# =q2=#m5#", "4%" }, + { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# =q2=#m5#", "4%" }, { 0,"","","" }, - { 21680, "INV_Chest_Cloth_45", "=q4=Vest of Swift Execution", "=ds=#s5#, #a2# =q7=Lord Kri" }, - { 21681, "INV_Jewelry_Ring_AhnQiraj_05", "=q4=Ring of the Devoured", "=ds=#s13# =q7=Lord Kri" }, - { 21685, "INV_Misc_AhnQirajTrinket_01", "=q4=Petrified Scarab", "=ds=#s14# =q7=Lord Kri" }, - { 21603, "INV_Wand_06", "=q4=Wand of Qiraji Nobility", "=ds=#w12# =q7=Lord Kri" }, + { 21680, "INV_Chest_Cloth_45", "=q4=Vest of Swift Execution", "=ds=#s5#, #a2# =q7=Lord Kri", "25%" }, + { 21681, "INV_Jewelry_Ring_AhnQiraj_05", "=q4=Ring of the Devoured", "=ds=#s13# =q7=Lord Kri", "25%" }, + { 21685, "INV_Misc_AhnQirajTrinket_01", "=q4=Petrified Scarab", "=ds=#s14# =q7=Lord Kri", "25%" }, + { 21603, "INV_Wand_06", "=q4=Wand of Qiraji Nobility", "=ds=#w12# =q7=Lord Kri", "25%" }, { 0,"","","" }, - { 21690, "INV_Jewelry_Necklace_20", "=q4=Angelista's Charm", "=ds=#s2# =q7=Vem" }, - { 21689, "INV_Gauntlets_23", "=q4=Gloves of Ebru", "=ds=#s9#, #a2# =q7=Vem" }, - { 21691, "INV_Gauntlets_11", "=q4=Ooze-ridden Gauntlets", "=ds=#s9#, #a4# =q7=Vem" }, - { 21688, "INV_Boots_Plate_01", "=q4=Boots of the Fallen Hero", "=ds=#s12#, #a4# =q7=Vem" }, + { 21690, "INV_Jewelry_Necklace_20", "=q4=Angelista's Charm", "=ds=#s2# =q7=Vem", "25%" }, + { 21689, "INV_Gauntlets_23", "=q4=Gloves of Ebru", "=ds=#s9#, #a2# =q7=Vem", "25%" }, + { 21691, "INV_Gauntlets_11", "=q4=Ooze-ridden Gauntlets", "=ds=#s9#, #a4# =q7=Vem", "25%" }, + { 21688, "INV_Boots_Plate_01", "=q4=Boots of the Fallen Hero", "=ds=#s12#, #a4# =q7=Vem", "25%" }, { 0,"","","" }, - { 21686, "INV_Shoulder_02", "=q4=Mantle of Phrenic Power", "=ds=#s3#, #a1# =q7=Princess Yauj" }, - { 21684, "INV_Shoulder_28", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q7=Princess Yauj" }, - { 21683, "INV_Shoulder_29", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q7=Princess Yauj" }, - { 21682, "INV_Gauntlets_21", "=q4=Bile-Covered Gauntlets", "=ds=#s9#, #a2# =q7=Princess Yauj" }, - { 21687, "INV_Jewelry_Ring_24", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q7=Princess Yauj" }, + { 21686, "INV_Shoulder_02", "=q4=Mantle of Phrenic Power", "=ds=#s3#, #a1# =q7=Princess Yauj", "25%" }, + { 21684, "INV_Shoulder_28", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q7=Princess Yauj", "25%" }, + { 21683, "INV_Shoulder_29", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q7=Princess Yauj", "25%" }, + { 21682, "INV_Gauntlets_21", "=q4=Bile-Covered Gauntlets", "=ds=#s9#, #a2# =q7=Princess Yauj", "25%" }, + { 21687, "INV_Jewelry_Ring_24", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q7=Princess Yauj", "25%" }, }; - AQ40Sartura = { - { 21669, "INV_Helmet_01", "=q4=Creeping Vine Helm", "=ds=#s1#, #a2#", "12.33%" }, - { 21678, "INV_Jewelry_Necklace_AhnQiraj_04", "=q4=Necklace of Purity", "=ds=#s2#", "14.21%" }, - { 21671, "INV_Chest_Cloth_26", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "13.30%" }, - { 21672, "INV_Gauntlets_17", "=q4=Gloves of Enforcement", "=ds=#s9#, #a2#", "11.87%" }, - { 21674, "INV_Gauntlets_31", "=q4=Gauntlets of Steadfast Determination", "=ds=#s9#, #a4#", "11.07%" }, - { 21675, "INV_Belt_15", "=q4=Thick Qirajihide Belt", "=ds=#s10#, #a2#", "13.26%" }, - { 21676, "INV_Pants_Cloth_02", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "13.02%" }, - { 21668, "INV_Pants_Mail_15", "=q4=Scaled Leggings of Qiraji Fury", "=ds=#s11#, #a3#", "4.03%" }, - { 21667, "INV_Pants_Plate_11", "=q4=Legplates of Blazing Light", "=ds=#s11#, #a4#", "7.44%" }, - { 21648, "INV_Boots_Cloth_07", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "7.64%" }, - { 21670, "INV_Misc_AhnQirajTrinket_04", "=q4=Badge of the Swarmguard", "=ds=#s14#", "13.22%" }, - { 21666, "INV_QirajIdol_War", "=q4=Sartura's Might", "=ds=#s15#", "6.47%" }, - { 21673, "INV_Misc_MonsterClaw_03", "=q4=Silithid Claw", "=ds=#h3#, #w13#", "7.16%" }, + AQ40Sartura = { + { 21669, "INV_Helmet_01", "=q4=Creeping Vine Helm", "=ds=#s1#, #a2#", "15%" }, + { 21678, "INV_Jewelry_Necklace_AhnQiraj_04", "=q4=Necklace of Purity", "=ds=#s2#", "18%" }, + { 21671, "INV_Chest_Cloth_26", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "15%" }, + { 21672, "INV_Gauntlets_17", "=q4=Gloves of Enforcement", "=ds=#s9#, #a2#", "15%" }, + { 21674, "INV_Gauntlets_31", "=q4=Gauntlets of Steadfast Determination", "=ds=#s9#, #a4#", "18%" }, + { 21675, "INV_Belt_15", "=q4=Thick Qirajihide Belt", "=ds=#s10#, #a2#", "18%" }, + { 21676, "INV_Pants_Cloth_02", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "18%" }, + { 21668, "INV_Pants_Mail_15", "=q4=Scaled Leggings of Qiraji Fury", "=ds=#s11#, #a3#", "15%" }, + { 21667, "INV_Pants_Plate_11", "=q4=Legplates of Blazing Light", "=ds=#s11#, #a4#", "15%" }, + { 21648, "INV_Boots_Cloth_07", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "18%" }, + { 21670, "INV_Misc_AhnQirajTrinket_04", "=q4=Badge of the Swarmguard", "=ds=#s14#", "15%" }, + { 21666, "INV_QirajIdol_War", "=q4=Sartura's Might", "=ds=#s15#", "10%" }, + { 21673, "INV_Misc_MonsterClaw_03", "=q4=Silithid Claw", "=ds=#h3#, #w13#", "10%" }, { 0,"","","" }, { 0,"","","" }, - { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4.01%" }, + { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4%" }, { 21268, "INV_Mace_24", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#" }, { 21273, "INV_Staff_20", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#" }, { 21275, "INV_Staff_20", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#" }, { 0,"","","" }, - { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4.02%" }, + { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4%" }, { 21242, "INV_Axe_26", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#" }, { 21244, "INV_Weapon_Shortblade_35", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#" }, { 21272, "INV_Weapon_Rifle_11", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#" }, { 21269, "INV_Shield_23", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#" }, }; - AQ40Fankriss = { - { 21665, "INV_Shoulder_30", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "13.25%" }, - { 21639, "INV_Shoulder_29", "=q4=Pauldrons of the Unrelenting", "=ds=#s3#, #a4#", "14.78%" }, - { 21627, "INV_Misc_Cape_20", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "12.51%" }, - { 21663, "INV_Chest_Cloth_23", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "12.95%" }, - { 21652, "INV_Chest_Plate09", "=q4=Silithid Carapace Chestguard", "=ds=#s5#, #a4#", "10.29%" }, - { 21651, "INV_Pants_Mail_10", "=q4=Scaled Sand Reaver Leggings", "=ds=#s11#, #a3#", "12.91%" }, - { 21645, "INV_Boots_04", "=q4=Hive Tunneler's Boots", "=ds=#s12#, #a2#", "14.04%" }, - { 21650, "INV_Sword_59", "=q4=Ancient Qiraji Ripper", "=ds=#h1#, #w10#", "7.19%" }, - { 21635, "INV_Weapon_Halberd_AhnQiraj", "=q4=Barb of the Sand Reaver", "=ds=#w7#", "6.61%" }, + AQ40Fankriss = { + { 21665, "INV_Shoulder_30", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "18%" }, + { 21639, "INV_Shoulder_29", "=q4=Pauldrons of the Unrelenting", "=ds=#s3#, #a4#", "15%" }, + { 21627, "INV_Misc_Cape_20", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "15%" }, + { 21663, "INV_Chest_Cloth_23", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "18%" }, + { 21652, "INV_Chest_Plate09", "=q4=Silithid Carapace Chestguard", "=ds=#s5#, #a4#", "18%" }, + { 21651, "INV_Pants_Mail_10", "=q4=Scaled Sand Reaver Leggings", "=ds=#s11#, #a3#", "18%" }, + { 21645, "INV_Boots_04", "=q4=Hive Tunneler's Boots", "=ds=#s12#, #a2#", "15%" }, + { 21650, "INV_Sword_59", "=q4=Ancient Qiraji Ripper", "=ds=#h1#, #w10#", "10%" }, + { 21635, "INV_Weapon_Halberd_AhnQiraj", "=q4=Barb of the Sand Reaver", "=ds=#w7#", "10%" }, { 0,"","","" }, - { 21664, "INV_Jewelry_Necklace_AhnQiraj_02", "=q4=Barbed Choker", "=ds=#s2#", "12.63%" }, - { 21647, "INV_Misc_AhnQirajTrinket_03", "=q4=Fetish of the Sand Reaver", "=ds=#s14#", "13.82%" }, - { 22402, "INV_Relics_LibramofGrace", "=q4=Libram of Grace", "=ds=#s16#, #e18# =q16=#c4#", "4.21%" }, - { 22396, "INV_Relics_TotemofLife", "=q4=Totem of Life", "=ds=#s16#, #e17# =q15=#c7#", "1.69%" }, + { 21664, "INV_Jewelry_Necklace_AhnQiraj_02", "=q4=Barbed Choker", "=ds=#s2#", "18%" }, + { 21647, "INV_Misc_AhnQirajTrinket_03", "=q4=Fetish of the Sand Reaver", "=ds=#s14#", "15%" }, + { 22402, "INV_Relics_LibramofGrace", "=q4=Libram of Grace", "=ds=#s16#, #e18# =q16=#c4#", "15%" }, + { 22396, "INV_Relics_TotemofLife", "=q4=Totem of Life", "=ds=#s16#, #e17# =q15=#c7#", "15%" }, { 0,"","","" }, - { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4.84%" }, + { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4%" }, { 21268, "INV_Mace_24", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#" }, { 21273, "INV_Staff_20", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#" }, { 21275, "INV_Staff_20", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#" }, { 0,"","","" }, - { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4.09%" }, + { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4%" }, { 21242, "INV_Axe_26", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#" }, { 21244, "INV_Weapon_Shortblade_35", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#" }, { 21272, "INV_Weapon_Rifle_11", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#" }, { 21269, "INV_Shield_23", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#" }, }; - AQ40Viscidus = { - { 21624, "INV_Gauntlets_26", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "3.90%" }, - { 21623, "INV_Gauntlets_26", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "5.37%" }, - { 21626, "INV_Pants_Mail_11", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "13.66%" }, - { 21622, "INV_Sword_58", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "15.12%" }, + AQ40Viscidus = { + { 21624, "INV_Gauntlets_26", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "14%" }, + { 21623, "INV_Gauntlets_26", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "14%" }, + { 21626, "INV_Pants_Mail_11", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "14%" }, + { 21622, "INV_Sword_58", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "14%" }, { 0,"","","" }, { 21677, "INV_jewelry_ring_AhnQiraj_01", "=q4=Ring of the Qiraji Fury", "=ds=#s13#", "2.93% " }, - { 21625, "INV_Misc_AhnQirajTrinket_06", "=q4=Scarab Brooch", "=ds=#s14#", "21.46%" }, - { 22399, "INV_Relics_IdolofHealth", "=q4=Idol of Health", "=ds=#s16#, #e16# =q13=#c1#", "7.32%" }, + { 21625, "INV_Misc_AhnQirajTrinket_06", "=q4=Scarab Brooch", "=ds=#s14#", "14%" }, + { 22399, "INV_Relics_IdolofHealth", "=q4=Idol of Health", "=ds=#s16#, #e16# =q13=#c1#", "14%" }, { 0,"","","" }, { 20928, "INV_Qiraj_BindingsCommand", "=q4=Qiraji Bindings of Command", "=q17=#c9#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "100%" }, { 20932, "INV_Qiraj_BindingsDominance", "=q4=Qiraji Bindings of Dominance", "=q16=#c4#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "100%" }, @@ -2288,24 +2321,24 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "3.19%" }, + { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4%" }, { 21268, "INV_Mace_24", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#" }, { 21273, "INV_Staff_20", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#" }, { 21275, "INV_Staff_20", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#" }, { 0,"","","" }, - { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "6.86%" }, + { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4%" }, { 21242, "INV_Axe_26", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#" }, { 21244, "INV_Weapon_Shortblade_35", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#" }, { 21272, "INV_Weapon_Rifle_11", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#" }, { 21269, "INV_Shield_23", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#" }, }; - AQ40Huhuran = { - { 21621, "INV_Misc_Cape_01", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "12.56%" }, - { 21618, "INV_Bracer_02", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "10.34%" }, - { 21619, "INV_Gauntlets_17", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "12.01%" }, - { 21617, "INV_Gauntlets_17", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "11.97%" }, - { 21620, "INV_Jewelry_Ring_AhnQiraj_01", "=q4=Ring of the Martyr", "=ds=#s13#", "12.97%" }, - { 21616, "INV_Weapon_Bow_14", "=q4=Huhuran's Stinger", "=ds=#w2#", "5.71%" }, + AQ40Huhuran = { + { 21621, "INV_Misc_Cape_01", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "17%" }, + { 21618, "INV_Bracer_02", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "17%" }, + { 21619, "INV_Gauntlets_17", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "17%" }, + { 21617, "INV_Gauntlets_17", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "17%" }, + { 21620, "INV_Jewelry_Ring_AhnQiraj_01", "=q4=Ring of the Martyr", "=ds=#s13#", "17%" }, + { 21616, "INV_Weapon_Bow_14", "=q4=Huhuran's Stinger", "=ds=#w2#", "17%" }, { 0,"","","" }, { 0,"","","" }, { 20928, "INV_Qiraj_BindingsCommand", "=q4=Qiraji Bindings of Command", "=q17=#c9#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q9=#c5#", "100%" }, @@ -2315,45 +2348,45 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4.31%" }, + { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4%" }, { 21268, "INV_Mace_24", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#" }, { 21273, "INV_Staff_20", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#" }, { 21275, "INV_Staff_20", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#" }, { 0,"","","" }, - { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4.11%" }, + { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4%" }, { 21242, "INV_Axe_26", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#" }, { 21244, "INV_Weapon_Shortblade_35", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#" }, { 21272, "INV_Weapon_Rifle_11", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#" }, { 21269, "INV_Shield_23", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#" }, }; - AQ40Emperors = { + AQ40Emperors = { { 0, "INV_Box_01", "=q6=Emperor Vek'lor", "" }, { 20930, "INV_Bracer_18", "=q4=Vek'lor's Diadem", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#=ds=, =q13=#c1#", "100%" }, - { 21602, "INV_Bracer_13", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "15.95%" }, - { 21599, "INV_Gauntlets_28", "=q4=Vek'lor's Gloves of Devastation", "=ds=#s9#, #a3#", "15.77%" }, - { 21598, "INV_Belt_31", "=q4=Royal Qiraji Belt", "=ds=#s10#, #a4#", "9.84%" }, - { 21600, "INV_Boots_Cloth_05", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "15.77%" }, - { 21601, "INV_jewelry_ring_AhnQiraj_01", "=q4=Ring of Emperor Vek'lor", "=ds=#s13#", "17.27%" }, - { 21597, "INV_Wand_10", "=q4=Royal Scepter of Vek'lor", "=ds=#s15#", "6.99%" }, - { 20735, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# #m14#", "6.62%" }, + { 21602, "INV_Bracer_13", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "17%" }, + { 21599, "INV_Gauntlets_28", "=q4=Vek'lor's Gloves of Devastation", "=ds=#s9#, #a3#", "17%" }, + { 21598, "INV_Belt_31", "=q4=Royal Qiraji Belt", "=ds=#s10#, #a4#", "17%" }, + { 21600, "INV_Boots_Cloth_05", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "17%" }, + { 21601, "INV_jewelry_ring_AhnQiraj_01", "=q4=Ring of Emperor Vek'lor", "=ds=#s13#", "17%" }, + { 21597, "INV_Wand_10", "=q4=Royal Scepter of Vek'lor", "=ds=#s15#", "17%" }, + { 20735, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# #m14#", "7%" }, { 0, "", "", "" }, - { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "6.25%" }, + { 21232, "INV_Staff_24", "=q4=Imperial Qiraji Armaments", "=ds=#m3# ", "4%" }, { 21242, "INV_Axe_26", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#" }, { 21244, "INV_Weapon_Shortblade_35", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#" }, { 21272, "INV_Weapon_Rifle_11", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#" }, { 21269, "INV_Shield_23", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#" }, { 0, "INV_Box_01", "=q6=Emperor Vek'nilash", "" }, { 20926, "INV_Bracer_18", "=q4=Vek'nilash's Circlet", "=q17=#c9#=ds=, =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "100%" }, - { 21608, "INV_Jewelry_Necklace_AhnQiraj_01", "=q4=Amulet of Vek'nilash", "=ds=#s2#", "14.25%" }, - { 21604, "INV_Bracer_13", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "12.51% " }, - { 21605, "INV_Gauntlets_19", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "15.45%" }, - { 21609, "INV_Belt_11", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "13.35%" }, - { 21607, "INV_Belt_32", "=q4=Grasp of the Fallen Emperor", "=ds=#s10#, #a3#", "2.72%" }, - { 21606, "INV_Belt_34", "=q4=Belt of the Fallen Emperor", "=ds=#s10#, #a4#", "12.22%" }, - { 21679, "INV_Sword_56", "=q4=Kalimdor's Revenge", "=ds=#h2#, #w10#", "9.25%" }, - { 20726, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# #m14#", "6.24%" }, + { 21608, "INV_Jewelry_Necklace_AhnQiraj_01", "=q4=Amulet of Vek'nilash", "=ds=#s2#", "14%" }, + { 21604, "INV_Bracer_13", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "14%" }, + { 21605, "INV_Gauntlets_19", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "14%" }, + { 21609, "INV_Belt_11", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "14%" }, + { 21607, "INV_Belt_32", "=q4=Grasp of the Fallen Emperor", "=ds=#s10#, #a3#", "14%" }, + { 21606, "INV_Belt_34", "=q4=Belt of the Fallen Emperor", "=ds=#s10#, #a4#", "14%" }, + { 21679, "INV_Sword_56", "=q4=Kalimdor's Revenge", "=ds=#h2#, #w10#", "14%" }, + { 20726, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# #m14#", "7%" }, { 0,"","","" }, - { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "5.00%" }, + { 21237, "INV_Staff_20", "=q4=Imperial Qiraji Regalia", "=ds=#m3# ", "4%" }, { 21268, "INV_Mace_24", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#" }, { 21273, "INV_Staff_20", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#" }, { 21275, "INV_Staff_20", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#" }, @@ -2386,19 +2419,19 @@ AtlasLoot_Data["AtlasLootItems"] = { { 21269, "INV_Shield_23", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#" }, }; AQ40CThun = { - { 22732, "INV_Jewelry_Necklace_AhnQiraj_04", "=q4=Mark of C'Thun", "=ds=#s2#", "10.62%" }, - { 21583, "INV_Misc_Cape_02", "=q4=Cloak of Clarity", "=ds=#s4#", "14.45%" }, - { 22731, "INV_Misc_Cape_18", "=q4=Cloak of the Devoured", "=ds=#s4#", "16.34%" }, - { 22730, "INV_Belt_12", "=q4=Eyestalk Waist Cord", "=ds=#s10#, #a1#", "10.41%" }, - { 21582, "INV_Belt_31", "=q4=Grasp of the Old God", "=ds=#s10#, #a1#", "15.04%" }, - { 21586, "INV_Belt_26", "=q4=Belt of Never-ending Agony", "=ds=#s10#, #a2#", "11.24%" }, - { 21585, "INV_Gauntlets_17", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "13.63%" }, - { 21581, "INV_Gauntlets_31", "=q4=Gauntlets of Annihilation", "=ds=#s9#, #a4#", "12.04%" }, - { 21596, "INV_Jewelry_Ring_AhnQiraj_06", "=q4=Ring of the Godslayer", "=ds=#s13#", "11.83%" }, - { 21579, "INV_Misc_AhnQirajTrinket_05", "=q4=Vanquished Tentacle of C'Thun", "=ds=#s14#", "12.18%" }, - { 21839, "INV_Mace22", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "4.75%" }, - { 21126, "INV_Weapon_Shortblade_33", "=q4=Death's Sting", "=ds=#h1#, #w4#", "6.84%" }, - { 21134, "INV_Axe_24", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "5.93%" }, + { 22732, "INV_Jewelry_Necklace_AhnQiraj_04", "=q4=Mark of C'Thun", "=ds=#s2#", "21%" }, + { 21583, "INV_Misc_Cape_02", "=q4=Cloak of Clarity", "=ds=#s4#", "21%" }, + { 22731, "INV_Misc_Cape_18", "=q4=Cloak of the Devoured", "=ds=#s4#", "18%" }, + { 22730, "INV_Belt_12", "=q4=Eyestalk Waist Cord", "=ds=#s10#, #a1#", "18%" }, + { 21582, "INV_Belt_31", "=q4=Grasp of the Old God", "=ds=#s10#, #a1#", "21%" }, + { 21586, "INV_Belt_26", "=q4=Belt of Never-ending Agony", "=ds=#s10#, #a2#", "18%" }, + { 21585, "INV_Gauntlets_17", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "18%" }, + { 21581, "INV_Gauntlets_31", "=q4=Gauntlets of Annihilation", "=ds=#s9#, #a4#", "21%" }, + { 21596, "INV_Jewelry_Ring_AhnQiraj_06", "=q4=Ring of the Godslayer", "=ds=#s13#", "18%" }, + { 21579, "INV_Misc_AhnQirajTrinket_05", "=q4=Vanquished Tentacle of C'Thun", "=ds=#s14#", "15%" }, + { 21839, "INV_Mace22", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "8%" }, + { 21126, "INV_Weapon_Shortblade_33", "=q4=Death's Sting", "=ds=#h1#, #w4#", "8%" }, + { 21134, "INV_Axe_24", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "8%" }, { 0,"","","" }, { 0,"","","" }, { 20929, "INV_Qiraj_CarapaceOldGod", "=q4=Carapace of the Old God", "=q17=#c9#=ds=, =q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#", "100%" }, @@ -2415,15 +2448,15 @@ AtlasLoot_Data["AtlasLootItems"] = { { 22630, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=q1=#m4# =ds=#w9# =q11=#c8#" }, { 22632, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=q1=#m4# =ds=#w9# =q13=#c1#" }, }; - AQ40Trash1 = { - { 21838, "INV_Chest_Cloth_48", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "0.20%" }, - { 21888, "INV_Gauntlets_14", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "0.16%" }, - { 21890, "", "=q4=Gloves of the Fallen Prophet", "=ds=#s9#, #a3# =q16=#c7#", "0.36%" }, - { 21889, "INV_Gauntlets_19", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q16=#c4#", "0.39%" }, - { 21856, "INV_Axe_09", "=q4=Neretzek, The Blood Drinker", "=ds=#h2#, #w1#", "0.20%" }, - { 21837, "INV_Hammer_11", "=q4=Anubisath Warhammer", "=ds=#h1#, #w6#", "0.21%" }, - { 21836, "INV_Jewelry_Ring_34", "=q4=Ritssyn's Ring of Chaos", "=ds=#s13#", "0.18%" }, - { 21891, "INV_Misc_AhnQirajTrinket_04", "=q4=Shard of the Fallen Star", "=ds=#s14#", "0.59%" }, + AQ40Trash1 = { --Drop Chances done 26/06/23 + { 21838, "INV_Chest_Cloth_48", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "0.8% to 0.58%" }, + { 21888, "INV_Gauntlets_14", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "0.05% to 0.31%" }, + { 21890, "INV_Gauntlets_11", "=q4=Gloves of the Fallen Prophet", "=ds=#s9#, #a3# =q16=#c7#", "0.11% to 1.76%" }, + { 21889, "INV_Gauntlets_19", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q16=#c4#", "0.11% to 1.76%" }, + { 21856, "INV_Axe_09", "=q4=Neretzek, The Blood Drinker", "=ds=#h2#, #w1#", "0.08% to 0.28%" }, + { 21837, "INV_Hammer_11", "=q4=Anubisath Warhammer", "=ds=#h1#, #w6#", "0.12% to 0.32%" }, + { 21836, "INV_Jewelry_Ring_34", "=q4=Ritssyn's Ring of Chaos", "=ds=#s13#", "0.08% to 0.34%" }, + { 21891, "INV_Misc_AhnQirajTrinket_04", "=q4=Shard of the Fallen Star", "=ds=#s14#", "0.11% to 0.82%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -2432,35 +2465,35 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 21218, "INV_Misc_QirajiCrystal_04", "=q3=Blue Qiraji Resonating Crystal", "=ds=#e7#", "10.64%" }, - { 21324, "INV_Misc_QirajiCrystal_01", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e7#", "12.15%" }, - { 21323, "INV_Misc_QirajiCrystal_03", "=q3=Green Qiraji Resonating Crystal", "=ds=#e7#", "11.62%" }, - { 21321, "INV_Misc_QirajiCrystal_02", "=q3=Red Qiraji Resonating Crystal", "=ds=#e7#", "1.39%" }, + { 21218, "INV_Misc_QirajiCrystal_04", "=q3=Blue Qiraji Resonating Crystal", "=ds=#e7#", "9% to 14%" }, + { 21324, "INV_Misc_QirajiCrystal_01", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e7#", "11% to 18%" }, + { 21323, "INV_Misc_QirajiCrystal_03", "=q3=Green Qiraji Resonating Crystal", "=ds=#e7#", "9% to 17%" }, + { 21321, "INV_Misc_QirajiCrystal_02", "=q3=Red Qiraji Resonating Crystal", "=ds=#e7#", "1.13% to 1.89%" }, }; AQ40Trash2 = { - { 20876, "INV_QirajIdol_Death", "=q3=Idol of Death", "=q17=#c9#=ds=, =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "0.26%" }, - { 20879, "INV_QirajIdol_Life", "=q3=Idol of Life", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q13=#c1#", "0.29%" }, - { 20875, "INV_QirajIdol_Night", "=q3=Idol of Night", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q10=#c3#=ds=, =q11=#c8#", "0.29%" }, - { 20878, "INV_QirajIdol_Rebirth", "=q3=Idol of Rebirth", "=q16=#c4#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "0.28%" }, - { 20881, "INV_QirajIdol_Strife", "=q3=Idol of Strife", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#=ds=, =q13=#c1#", "0.21%" }, - { 20877, "INV_QirajIdol_Sage", "=q3=Idol of the Sage", "=q16=#c4#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#", "0.33%" }, - { 20874, "INV_QirajIdol_Sun", "=q3=Idol of the Sun", "=q17=#c9#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q10=#c3#", "0.21%" }, - { 20882, "INV_QirajIdol_War", "=q3=Idol of War", "=q17=#c9#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q13=#c1#", "0.30%" }, + { 20876, "INV_QirajIdol_Death", "=q3=Idol of Death", "=q17=#c9#=ds=, =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "0.4%" }, + { 20879, "INV_QirajIdol_Life", "=q3=Idol of Life", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q13=#c1#", "1%" }, + { 20875, "INV_QirajIdol_Night", "=q3=Idol of Night", "=q17=#c9#=ds=, =q12=#c6#=ds=, =q10=#c3#=ds=, =q11=#c8#", "1%" }, + { 20878, "INV_QirajIdol_Rebirth", "=q3=Idol of Rebirth", "=q16=#c4#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q11=#c8#=ds=, =q13=#c1#", "1%" }, + { 20881, "INV_QirajIdol_Strife", "=q3=Idol of Strife", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q15=#c7#=ds=, =q13=#c1#", "1%" }, + { 20877, "INV_QirajIdol_Sage", "=q3=Idol of the Sage", "=q16=#c4#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#", "1%" }, + { 20874, "INV_QirajIdol_Sun", "=q3=Idol of the Sun", "=q17=#c9#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q10=#c3#", "1%" }, + { 20882, "INV_QirajIdol_War", "=q3=Idol of War", "=q17=#c9#=ds=, =q14=#c2#=ds=, =q12=#c6#=ds=, =q13=#c1#", "1%" }, { 0,"","","" }, - { 21762, "INV_Misc_Key_08", "=q1=Greater Scarab Coffer Key", "=ds=#e14#", "7.03%" }, + { 21762, "INV_Misc_Key_08", "=q1=Greater Scarab Coffer Key", "=ds=#e14#", "7%" }, { 0,"","","" }, - { 21156, "INV_Misc_Bag_13", "=q1=Scarab Bag", "=ds=#m23# =q7=#cb32#", "100%" }, + { 21156, "INV_Misc_Bag_13", "=q1=Scarab Bag", "=ds=#m23# =q7=#cb32#", "0.1%" }, { 0,"","","" }, - { 21230,"INV_Misc_Idol_03","=q1=Ancient Qiraji Artifact","=ds=#m2#", "1.48%" }, + { 21230,"INV_Misc_Idol_03","=q1=Ancient Qiraji Artifact","=ds=#m2#", "2-9%" }, { 0,"","","" }, - { 20864, "INV_Scarab_Bone", "=q2=Bone Scarab", "=ds=#m3#", "0.84%" }, - { 20861, "INV_Scarab_Bronze", "=q2=Bronze Scarab", "=ds=#m3#", "0.88%" }, - { 20863, "INV_Scarab_Clay", "=q2=Clay Scarab", "=ds=#m3#", "0.95%" }, - { 20862, "INV_Scarab_Crystal", "=q2=Crystal Scarab", "=ds=#m3#", "0.99%" }, - { 20859, "INV_Scarab_Gold", "=q2=Gold Scarab", "=ds=#m3#", "0.96%" }, - { 20865, "INV_Scarab_Ivory", "=q2=Ivory Scarab", "=ds=#m3#", "0.93%" }, - { 20860, "INV_Scarab_Silver", "=q2=Silver Scarab", "=ds=#m3#", "1.82%" }, - { 20858, "INV_Scarab_Stone", "=q2=Stone Scarab", "=ds=#m3#", "0.86%" }, + { 20864, "INV_Scarab_Bone", "=q2=Bone Scarab", "=ds=#m3#", "2%" }, + { 20861, "INV_Scarab_Bronze", "=q2=Bronze Scarab", "=ds=#m3#", "2%" }, + { 20863, "INV_Scarab_Clay", "=q2=Clay Scarab", "=ds=#m3#", "2%" }, + { 20862, "INV_Scarab_Crystal", "=q2=Crystal Scarab", "=ds=#m3#", "2%" }, + { 20859, "INV_Scarab_Gold", "=q2=Gold Scarab", "=ds=#m3#", "2%" }, + { 20865, "INV_Scarab_Ivory", "=q2=Ivory Scarab", "=ds=#m3#", "2%" }, + { 20860, "INV_Scarab_Silver", "=q2=Silver Scarab", "=ds=#m3#", "2%" }, + { 20858, "INV_Scarab_Stone", "=q2=Stone Scarab", "=ds=#m3#", "2%" }, { 0,"","","" }, { 0,"","","" }, { 22203, "INV_Stone_15", "=q1=Large Obsidian Shard", "=ds=#e12#" }, @@ -2469,13 +2502,13 @@ AtlasLoot_Data["AtlasLootItems"] = { { 21229, "INV_ZulgurubTrinket", "=q1=Qiraji Lord's Insignia", "=ds=#m32# =q7=Bosses", "100%" }, }; AQEnchants = { - { 20728, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Frost Power", "=ds=#p4# #m14#" }, - { 20731, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# #m14#" }, - { 20734, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# #m14#" }, - { 20729, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Fire Power", "=ds=#p4# #m14#" }, - { 20736, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# #m14#" }, - { 20730, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# #m14#" }, - { 20727, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# #m14#" }, + { 20728, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Frost Power", "=ds=#p4# #m14#", "1%" }, + { 20731, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# #m14#", "1%" }, + { 20734, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# #m14#", "1%" }, + { 20729, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Fire Power", "=ds=#p4# #m14#", "1%" }, + { 20736, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# #m14#", "1%" }, + { 20730, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# #m14#", "1%" }, + { 20727, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# #m14#", "1%" }, }; AQOpening = { { 21138, "INV_Misc_Gem_Ruby_03", "=q1=Red Scepter Shard", "=ds=#m3#" }, @@ -2545,48 +2578,48 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, + { 4415,"INV_Scroll_03", "=q3=Schematic: Craftsman's Monocle", "=ds=#p5# #m26#", "2%" }, + { 4393,"INV_Helmet_44", "=q2=Craftsman's Monocle", "=ds=#s1#, #a1#" }, + { 0, "", "", "" }, + { 4413, "INV_Scroll_06", "=q2=Schematic: Discombobulator Ray", "=ds=#p5# #m27#", "2%" }, + { 4388, "INV_Misc_Spyglass_02","=q1=Discombobulator Ray", "=ds=#m25#" }, + { 0, "", "", "" }, + { 4411, "INV_Scroll_03", "=q2=Schematic: Flame Deflector","=ds=#p5# #m28#", "2%" }, + { 4376, "INV_Gizmo_01", "=q1=Flame Deflector", "=ds=#m25#" }, + { 0, "", "", "" }, + { 7742, "INV_Scroll_03", "=q1=Schematic: Gnomish Cloaking Device", "=ds=#p5# #m29#", "2%" }, + { 4397 ,"INV_Gizmo_01", "=q1=Gnomish Cloaking Device", "=ds=#s14#" }, { 0,"","","" }, - { 0,"","","" }, - { 0,"","","" }, - { 4415,"INV_Scroll_03","=q3=Schematic: Craftsman's Monocle","=ds=#p5# #m26#", "2%" }, - { 4393,"INV_Helmet_44","=q2=Craftsman's Monocle","=ds=#s1#, #a1#" }, - { 0,"","","" }, - { 4413,"INV_Scroll_06","=q2=Schematic: Discombobulator Ray","=ds=#p5# #m27#", "2%" }, - { 4388,"INV_Misc_Spyglass_02","=q1=Discombobulator Ray","=ds=#m25#" }, - { 0,"","","" }, - { 4411,"INV_Scroll_03","=q2=Schematic: Flame Deflector","=ds=#p5# #m28#", "2%" }, - { 4376,"INV_Gizmo_01","=q1=Flame Deflector","=ds=#m25#" }, - { 0,"","","" }, - { 7742,"INV_Scroll_03","=q1=Schematic: Gnomish Cloaking Device","=ds=#p5# #m29#", "2%" }, - { 4397,"INV_Gizmo_01","=q1=Gnomish Cloaking Device","=ds=#s14#" }, - { 0,"","","" }, - { 51801,"INV_Scroll_05","=q3=Schematic: Hypertech Battery Pack","=ds=#p5# #m41#", "4%" }, - { 60098,"","=q2=Hypertech Battery Pack","=ds=#m33#" }, + { 51801,"INV_Scroll_05","=q3=Schematic: Hypertech Battery Pack", "=ds=#p5# #m41#", "4%" }, + { 60098 ,"INV_Misc_EngGizmos_04", "=q2=Hypertech Battery Pack", "=ds=#m33#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "1%" }, }; GnTrash = { - { 9508, "INV_Shirt_14", "=q3=Mechbuilder's Overalls", "=ds=#s5#, #a1#", "0.02%" }, - { 9491, "INV_Gauntlets_16", "=q3=Hotshot Pilot's Gloves", "=ds=#s9#, #a1#", "0.01%" }, - { 9509, "INV_Pants_08", "=q3=Petrolspill Leggings", "=ds=#s11#, #a2#", "0.01%" }, - { 9510, "INV_Boots_01", "=q3=Caverndeep Trudgers", "=ds=#s12#, #a3#", "0.01%" }, - { 9487, "INV_Weapon_Rifle_06", "=q3=Hi-tech Supergun", "=ds=#w5#", "0.01%" }, - { 9485, "INV_Axe_14", "=q3=Vibroblade", "=ds=#h1#, #w1#", "0.01%" }, - { 9488, "INV_Hammer_08", "=q3=Oscillating Power Hammer", "=ds=#h1#, #w6#", "0.02%" }, - { 9486, "INV_Axe_21", "=q3=Supercharger Battle Axe", "=ds=#h2#, #w1#", "0.02%" }, - { 9490, "INV_Sword_37", "=q3=Gizmotron Megachopper", "=ds=#h2#, #w10#", "0.01%" }, - { 80798, "INV_Axe_01", "=q3=Charged Servo Arm", "=ds=#h3#, #w6#", "0.02%" }, + { 9508, "INV_Shirt_14", "=q3=Mechbuilder's Overalls", "=ds=#s5#, #a1#", "0.04%" }, + { 9491, "INV_Gauntlets_16", "=q3=Hotshot Pilot's Gloves", "=ds=#s9#, #a1#", "0.04%" }, + { 9509, "INV_Pants_08", "=q3=Petrolspill Leggings", "=ds=#s11#, #a2#", "0.04%" }, + { 9510, "INV_Boots_01", "=q3=Caverndeep Trudgers", "=ds=#s12#, #a3#", "0.04%" }, + { 9487, "INV_Weapon_Rifle_06", "=q3=Hi-tech Supergun", "=ds=#w5#", "0.04%" }, + { 9485, "INV_Axe_14", "=q3=Vibroblade", "=ds=#h1#, #w1#", "0.04%" }, + { 9488, "INV_Hammer_08", "=q3=Oscillating Power Hammer", "=ds=#h1#, #w6#", "0.04%" }, + { 9486, "INV_Axe_21", "=q3=Supercharger Battle Axe", "=ds=#h2#, #w1#", "0.04%" }, + { 9490, "INV_Sword_37", "=q3=Gizmotron Megachopper", "=ds=#h2#, #w10#", "0.04%" }, + { 80798, "INV_Axe_01", "=q3=Charged Servo Arm", "=ds=#h3#, #w6#", "0.04%0.04%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 9327,"INV_Ingot_04","=q2=Security DELTA Data Access Card","=ds=#p5# #m30#", "4.11%" }, + { 9327,"INV_Ingot_04","=q2=Security DELTA Data Access Card","=ds=#p5# #m30#", "1-5%" }, { 0,"","","" }, - { 7191,"INV_Misc_Gear_03","=q1=Fused Wiring","=ds=#m31#", "3.89%" }, - { 9308,"INV_Ammo_FireTar","=q1=Grime-Encrusted Object","=ds=#m3#", "49.20%" }, - { 9326,"INV_Stone_04","=q1=Grime-Encrusted Ring","=ds=#m2# =q7=#x62#", "11.84%" }, + { 7191,"INV_Misc_Gear_03","=q1=Fused Wiring","=ds=#m31#", "2-38%" }, + { 9308,"INV_Ammo_FireTar","=q1=Grime-Encrusted Object","=ds=#m3#", "15%" }, + { 9326,"INV_Stone_04","=q1=Grime-Encrusted Ring","=ds=#m2# =q7=#x62#", "35%" }, { 9588,"INV_Jewelry_Ring_03","=q3=Nogg's Gold Ring","=q1=#m4# =ds=#s13#" }, { 0,"","","" }, - { 9279,"INV_Misc_PunchCards_White","=q1=White Punch Card","=ds=#m3#", "5.26%" }, + { 9279,"INV_Misc_PunchCards_White","=q1=White Punch Card","=ds=#m3#", "15%" }, { 9280,"INV_Misc_PunchCards_Yellow","=q1=Yellow Punch Card","=ds=#m3#" }, { 9282,"INV_Misc_PunchCards_Blue","=q1=Blue Punch Card","=ds=#m3#" }, { 9281,"INV_Misc_PunchCards_Red","=q1=Red Punch Card","=ds=#m3#" }, @@ -2613,7 +2646,7 @@ AtlasLoot_Data["AtlasLootItems"] = { }; SWStBazil = { { 80729, "INV_Shirt_14", "=q2=Standard Issue Tunic", "=ds=#s5#, #a1#", "35%" }, - { 80730, "INV_Boots_08", "=q2=Convict Moccasins", "=ds=#s12#, #a2#", "35%" }, + { 80730, "INV_Boots_08", "=q2=Convict Moccasins", "=ds=#s12#, #a2#", "3%" }, { 80731, "INV_Sword_36", "=q3=Runed Hookblade", "=ds=#h3#, #w10#", "30%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "1%" }, @@ -2660,7 +2693,7 @@ AtlasLoot_Data["AtlasLootItems"] = { BFDOldSerrakis = { { 6901, "INV_Misc_MonsterScales_03", "=q3=Glowing Thresher Cape", "=ds=#s4#", "33%" }, { 6904, "INV_Misc_MonsterFang_01", "=q3=Bite of Serra'kis", "=ds=#h1#, #w4#", "33%" }, - { 6902, "INV_Bracer_08", "=q2=Bands of Serra'kis", "=ds=#s8#, #a2#", "3%" }, + { 6902, "INV_Bracer_08", "=q2=Bands of Serra'kis", "=ds=#s8#, #a2#", "33%" }, }; BFDAkumai = { { 6911, "INV_Belt_25", "=q3=Moss Cinch", "=ds=#s10#, #a2#", "33%" }, @@ -2670,41 +2703,41 @@ AtlasLoot_Data["AtlasLootItems"] = { { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "1%" }, }; BFDTrash = { - { 1486, "INV_Shirt_02", "=q3=Tree Bark Jacket", "=ds=#s5#, #a1#", "0.02%" }, - { 3416, "INV_Chest_Chain", "=q3=Martyr's Chain", "=ds=#s5#, #a3#", "0.01%" }, - { 1491, "INV_Jewelry_Ring_14", "=q3=Ring of Precision", "=ds=#s13#", "0.01%" }, - { 3414, "INV_Mace_08", "=q3=Crested Scepter", "=ds=#h3#, #w6#", "0.01%" }, - { 1454, "INV_Axe_21", "=q3=Axe of the Enforcer", "=ds=#h1#, #w1#", "0.01%" }, - { 1481, "INV_Axe_13", "=q3=Grimclaw", "=ds=#h1#, #w1#", "0.01%" }, - { 2567, "INV_Weapon_ShortBlade_15", "=q3=Evocator's Blade", "=ds=#h1#, #w4#", "0.02%" }, - { 3413, "INV_Sword_29", "=q3=Doomspike", "=ds=#h1#, #w4#", "0.01%" }, - { 3417, "INV_Sword_13", "=q3=Onyx Claymore", "=ds=#h2#, #w10#", "0.01%" }, - { 3415, "INV_Staff_32", "=q3=Staff of the Friar", "=ds=#w9#", "0.02%" }, - { 2271, "INV_Staff_31", "=q3=Staff of the Blessed Seer", "=ds=#w9#", "0.02%" }, + { 1486, "INV_Shirt_02", "=q3=Tree Bark Jacket", "=ds=#s5#, #a1#", "0.04%" }, + { 3416, "INV_Chest_Chain", "=q3=Martyr's Chain", "=ds=#s5#, #a3#", "0.04%" }, + { 1491, "INV_Jewelry_Ring_14", "=q3=Ring of Precision", "=ds=#s13#", "0.04%" }, + { 3414, "INV_Mace_08", "=q3=Crested Scepter", "=ds=#h3#, #w6#", "0.04%" }, + { 1454, "INV_Axe_21", "=q3=Axe of the Enforcer", "=ds=#h1#, #w1#", "0.04%" }, + { 1481, "INV_Axe_13", "=q3=Grimclaw", "=ds=#h1#, #w1#", "0.04%" }, + { 2567, "INV_Weapon_ShortBlade_15", "=q3=Evocator's Blade", "=ds=#h1#, #w4#", "0.04%" }, + { 3413, "INV_Sword_29", "=q3=Doomspike", "=ds=#h1#, #w4#", "0.04%" }, + { 3417, "INV_Sword_13", "=q3=Onyx Claymore", "=ds=#h2#, #w10#", "0.04%" }, + { 3415, "INV_Staff_32", "=q3=Staff of the Friar", "=ds=#w9#", "0.04%" }, + { 2271, "INV_Staff_31", "=q3=Staff of the Blessed Seer", "=ds=#w9#", "0.04%" }, }; WCLordCobrahn = { - { 6460, "INV_Belt_03", "=q3=Cobrahn's Grasp", "=ds=#s10#, #a3#", "33.33%" }, - { 10410, "INV_Pants_11", "=q3=Leggings of the Fang", "=ds=#s11#, #a2#", "33.33%" }, + { 6460, "INV_Belt_03", "=q3=Cobrahn's Grasp", "=ds=#s10#, #a3#", "33%" }, + { 10410, "INV_Pants_11", "=q3=Leggings of the Fang", "=ds=#s11#, #a2#", "33%" }, { 0, "", "", "" }, - { 6465, "INV_Chest_Cloth_36", "=q2=Robe of the Moccasin", "=ds=#s5#, #a1#", "33.33%" }, + { 6465, "INV_Chest_Cloth_36", "=q2=Robe of the Moccasin", "=ds=#s5#, #a1#", "33%" }, }; WCLadyAnacondra = { - { 10412, "INV_Belt_30", "=q2=Belt of the Fang", "=ds=#s10#, #a2#", "33.33%" }, - { 5404, "INV_Shoulder_08", "=q1=Serpent's Shoulders", "=ds=#s3#, #a2#", "33.33%" }, - { 6446, "INV_Misc_Bag_12", "=q1=Snakeskin Bag", "=ds=#m13# #e10#", "33.33%" }, - { 0, "", "", "" }, + { 10412, "INV_Belt_30", "=q2=Belt of the Fang", "=ds=#s10#, #a2#", "33%" }, + { 5404, "INV_Shoulder_08", "=q1=Serpent's Shoulders", "=ds=#s3#, #a2#", "33%" }, + { 6446, "INV_Misc_Bag_12", "=q1=Snakeskin Bag", "=ds=#m13# #e10#", "33%" }, + { 0, "", "", "" }, { 80709, "INV_STAFF_28", "=q3=Guardian Staff", "=ds=#h2#, #w9#", "60%" }, }; WCKresh = { { 13245, "INV_Shield_18", "=q3=Kresh's Back", "=ds=#w8#", "50%" }, { 6447, "INV_Shield_21", "=q1=Worn Turtle Shell Shield", "=ds=#w8#", "50%" }, - { 0, "", "", "" }, - { 80710, "INV_SHOULDER_18", "=q2=Turtle Scale Shoulderguards", "=ds=#s3#, #a3#", "40%" }, + { 0, "", "", "" }, + { 80710, "INV_SHOULDER_18", "=q2=Turtle Scale Shoulderguards", "=ds=#s3#, #a3#", "50%" }, }; WCLordPythas = { { 6472, "INV_Wand_10", "=q3=Stinging Viper", "=ds=#h1#, #w6#", "50%" }, { 6473, "INV_Shirt_16", "=q2=Armor of the Fang", "=ds=#s5#, #a2#", "50%" }, - { 0, "", "", "" }, + { 0, "", "", "" }, { 80711, "INV_BRACER_12", "=q3=Bracers of Wild Growth", "=ds=#s8#, #a2#", "60%" }, }; WCSkum = { @@ -2720,14 +2753,14 @@ AtlasLoot_Data["AtlasLootItems"] = { { 6459, "INV_Boots_01", "=q2=Savage Trodders", "=ds=#s12#, #a3#", "25%" }, }; WCVerdan = { - { 6630, "INV_Shield_10", "=q3=Seedcloud Buckler", "=ds=#w8#", "33.33%" }, - { 6631, "INV_Staff_25", "=q3=Living Root", "=ds=#w9#", "33.33%" }, - { 6629, "INV_Misc_Cape_17", "=q2=Sporid Cape", "=ds=#s4#", "33.33%" }, + { 6630, "INV_Shield_10", "=q3=Seedcloud Buckler", "=ds=#w8#", "33%" }, + { 6631, "INV_Staff_25", "=q3=Living Root", "=ds=#w9#", "33%" }, + { 6629, "INV_Misc_Cape_17", "=q2=Sporid Cape", "=ds=#s4#", "33%" }, }; WCMutanus = { - { 6461, "INV_Shoulder_05", "=q3=Slime-encrusted Pads", "=ds=#s3#, #a1#", "33.33%" }, - { 6627, "INV_Chest_Plate08", "=q3=Mutant Scale Breastplate", "=ds=#s5#, #a3#", "33.33%" }, - { 6463, "INV_Jewelry_Ring_15", "=q3=Deep Fathom Ring", "=ds=#s13#", "33.33%" }, + { 6461, "INV_Shoulder_05", "=q3=Slime-encrusted Pads", "=ds=#s3#, #a1#", "33%" }, + { 6627, "INV_Chest_Plate08", "=q3=Mutant Scale Breastplate", "=ds=#s5#, #a3#", "33%" }, + { 6463, "INV_Jewelry_Ring_15", "=q3=Deep Fathom Ring", "=ds=#s13#", "33%" }, { 0, "", "", "" }, { 10441, "INV_Stone_03", "=q1=Glowing Shard", "=ds=#m2#" }, { 10657, "INV_Shoulder_09", "=q2=Talbar Mantle", "=q1=#m4# =ds=#s3#, #a1#" }, @@ -2793,15 +2826,111 @@ AtlasLoot_Data["AtlasLootItems"] = { { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; TCGTrash = { - { 83203, "inv_jewelry_necklace_01", "=q3=Lifeflow Necklace", "=ds=#s2#", "0.5%" }, + { 83203, "inv_jewelry_necklace_01", "=q3=Lifeflow Necklace", "=ds=#s2#", "0.01%" }, { 83204, "inv_misc_cape_17", "=q2=Canopy Cloak", "=ds=#s4#", "0.5%" }, - { 83207, "inv_chest_cloth_14", "=q3=Feymist Robe", "=ds=#s5#, #a1#", "0.5%" }, + { 83207, "inv_chest_cloth_14", "=q3=Feymist Robe", "=ds=#s5#, #a1#", "0.10%" }, { 83201, "inv_gauntlets_26", "=q2=Grizzlehide Brawlers", "=ds=#s9#, #a2#", "0.5%" }, - { 83206, "inv_gauntlets_10", "=q3=Living Moss Gauntlets", "=ds=#s9#, #a3#", "0.5%" }, - { 83202, "inv_belt_09", "=q2=Grizzlehide Belt", "=ds=#s10#, #a2#", "0.5%" }, - { 83200, "inv_staff_26", "=q3=Verdant Cane", "=ds=#w9#", "0.5%" }, + { 83206, "inv_gauntlets_10", "=q3=Living Moss Gauntlets", "=ds=#s9#, #a3#", "0.01%" }, + { 83202, "inv_belt_09", "=q2=Grizzlehide Belt", "=ds=#s10#, #a2#", "0.5" }, + { 83200, "inv_staff_26", "=q3=Verdant Cane", "=ds=#w9#", "0.01%" }, { 83205, "ability_whirlwind", "=q2=Thornwood Claw", "=ds=#h3#, #w13#", "0.5%" }, }; + GCMatthiasHoltz = { + { 61305, "INV_Pants_02", "=q2=Darkwatch Pants", "=ds=#s11#, #a1#", "33%" }, + { 61304, "INV_Bracer_16", "=q2=Gilneas Shackles", "=ds=#s8#, #a3#", "33%" }, + { 61306, "INV_Gauntlets_03", "=q2=Worgen Hunter Grips", "=ds=#s9#, #a3#", "33%" }, + { 0, "", "", "" }, + { 61307, "INV_Weapon_Rifle_TWoW_02_Ironblack", "=q3=Worgen Hunter Musket", "=ds=#w5#", "2%" }, + }; + GCPackmasterRagetooth = { + { 61301, "INV_Boots_05", "=q2=Shaderun Boots", "=ds=#s12#, #a1#", "33%" }, + { 61300, "INV_Gauntlets_21", "=q2=Packmaster Gloves", "=ds=#s9#, #a2#", "33%" }, + { 0, "", "", "" }, + { 61302, "INV_Jewelry_Necklace_13", "=q2=Wolfheart Necklace", "=ds=#s2#", "33%" }, + { 0, "", "", "" }, + { 61303, "INV_Misc_Orb_04", "=q3=Orb of Aka'thar", "=ds=#s15#", "2%" }, + }; + GCJudgeSutherland = { + { 61309, "inv_shoulder_24", "=q3=Mantle of Law", "=ds=#s3#, #a1#", "25%" }, + { 61311, "INV_Bracer_07", "=q3=Sutherland's Cuffs", "=ds=#s8#, #a1#", "25%" }, + { 61310, "INV_Belt_15", "=q3=Sash of Conviction", "=ds=#s10#, #a1#", "25%" }, + { 61312, "INV_Jewelry_Necklace_17", "=q3=The Black Pendant", "=ds=#s2#", "2%" }, + { 0, "", "", "" }, + { 61308, "INV_Hammer_05", "=q3=Gavel of Gilnean Justice", "=ds=#h3#, #w6#", "25%" }, + }; + GCDustivanBlackcowl = { + { 61331, "INV_Belt_17", "=q3=Blackcowl Sash", "=ds=#s10#, #a2#", "25%" }, + { 61332, "INV_Jewelry_Ring_35", "=q3=Ring of Electrical Binding", "=ds=#s13#", "25%" }, + { 61334, "INV_Misc_Cape_19", "=q3=Cloak of the Dark Veil", "=ds=#s4#", "5%" }, + { 0, "", "", "" }, + { 61330, "INV_Knife_1H_Draenei_A_03", "=q3=Dagger of Sinister Secrets", "=ds=#h1#, #w4#", "25%" }, + { 61333, "INV_Sword_36", "=q3=Hookblade Cleaver", "=ds=#h1#, #w10#", "25%" }, + { 0, "", "", "" }, + { 61626, "INV_Scroll_03", "=q1=Ebonmere Deed", "=ds=#m3#", "100%" }, + }; + GCMarshalMagnusGreystone = { + { 61313, "inv_helmet_02", "=q3=Greymane Helmet", "=ds=#s1#, #a4#", "25%" }, + { 0, "", "", "" }, + { 61315, "INV_Jewelry_Ring_27", "=q3=Band of Piercing Shadows", "=ds=#s13#", "25%" }, + { 61317, "INV_Misc_Book_10", "=q3=Scriptures of Blood", "=ds=#s14#", "5%" }, + { 61316, "INV_Misc_Cape_02", "=q3=Chainlinked Cloak", "=ds=#s4#", "25%" }, + { 0, "", "", "" }, + { 61314, "INV_Shield_06", "=q3=Marshal's Blocker", "=ds=#w8#", "25%" }, + { 0, "", "", "" }, + { 61368, "INV_Shirt_GuildTabard_01", "=q2=Greymane Tabard", "=ds=#s7#", "3%" }, + }; + --GCCeliaHarlow = { + --}; + --GCMortimerHarlow = { + --}; + GCHorsemasterLevvin = { + { 61734, "INV_Belt_09", "=q2=Horsemaster Belt", "=ds=#s10#, #a2#", "25%" }, + { 61736, "INV_Misc_Pelt_Bear_Ruin_03", "=q2=Horse Rustler Drape", "=ds=#s4#", "25%" }, + { 0, "", "", "" }, + { 61735, "INV_Staff_08", "=q2=Stablehand Broom", "=ds=#h2#, #w9#", "25%" }, + { 61737, "INV_Misc_Lantern_01", "=q3=Stablemaster's Nightlight", "=ds=#s15#", "25%" }, + { 0, "", "", "" }, + { 83157, "Ability_Mount_RidingHorse", "=q4=Greymane Charger", "=ds=#e7#", "0.18%" }, + }; + GCHarlowFamilyChest = { + { 61319, "INV_Chest_Cloth_04", "=q3=Regal Robes of the Regent", "=ds=#s5#, #a1#", "25%" }, + { 61321, "INV_Bracer_13", "=q3=Wildfeather Bracers", "=ds=#s8#, #a2#", "25%" }, + { 61320, "inv_misc_desecrated_mailpants", "=q3=Ashen Leggings", "=ds=#s11#, #a3#", "25%" }, + { 0, "", "", "" }, + { 61318, "INV_ThrowingAxe_06", "=q3=Fleshslasher", "=ds=#h2#, #w1#", "25%" }, + { 0, "", "", "" }, + { 61322, "INV_Jewelry_Necklace_16", "=q3=Resurging Necklace", "=ds=#s2#", "5%" }, + }; + GCGennGreymane = { + { 61323, "INV_Helmet_53", "=q3=Swiftcaster's Chapeau", "=ds=#s1#, #a1#", "15%" }, + { 61326, "INV_Chest_Cloth_04", "=q3=Robe of Light's Ambassador", "=ds=#s5#, #a1#", "15%" }, + { 61327, "INV_Boots_07", "=q3=Boots of Espionage", "=ds=#s12#, #a2#", "15%" }, + { 61325, "inv_chest_plate04", "=q3=Regal Goldforged Breastplate", "=ds=#s5#, #a3#", "15%" }, + { 61324, "inv_shoulder_12", "=q3=Greymane Shoulders", "=ds=#s3#, #a4#", "15%" }, + { 0, "", "", "" }, + { 61328, "INV_Sword_17", "=q3=Wolfblood", "=ds=#h2#, #w10#", "15%" }, + { 61329, "inv_misc_bag_10_red", "=q3=Sack of Gruesome Eminence", "=ds=#s15#", "15%" }, + { 0, "", "", "" }, + { 61406, "INV_Jewelry_Necklace_22", "=q4=Mark of the Worgen", "=ds=#s13#", "0.5%, 1%" }, + { 0, "", "", "" }, + { 61738, "INV_Misc_Note_01", "=q2=Formula: Enchant Bracer - Vampirism", "=ds=#p4# #m14#", "6%" }, + { 69000, "INV_Weapon_ShortBlade_16", "=q2=Gilnean Raven", "=ds=#e15#", "1.5%" }, + { 0, "", "", "" }, + { 61352, "INV_Misc_Head_Human_01", "=q1=Genn Greymane's Head", "=ds=#m3#", "100%" }, + { 61496, "INV_Crown_01", "=q1=The Greymane Crown", "=ds=#m3#", "100%" }, + }; + GCTrash = { + { 61598, "INV_Bracer_13", "=q3=Wraps of the Pauper", "=ds=#s8#, #a1#", "0.0125%, 0.0338%" }, + { 61336, "INV_Gauntlets_32", "=q3=Knife Juggler Gloves", "=ds=#s9#, #a2#", "0.0125%, 0.0338%" }, + { 61597, "INV_Pants_11", "=q3=Conspirator's Trickpockets", "=ds=#s11#, #a2#", "0.0125%, 0.0338%" }, + { 61335, "INV_Shoulder_02", "=q3=Dragonbane Pauldrons", "=ds=#s3#, #a3#", "0.0125%, 0.0338%" }, + { 61339, "inv_shoulder_22", "=q3=Pauldrons of the Justicar", "=ds=#s3#, #a4#", "0.0125%, 0.0338%" }, + { 0, "", "", "" }, + { 61337, "INV_Relics_LibramofGrace", "=q3=Libram of the Justicar", "=ds=#s16#, #e18#", "0.0125%, 0.0338%" }, + { 0, "", "", "" }, + { 61338, "INV_Staff_28", "=q3=Staff of Ushered Ruination", "=ds=#h2#, #w9#", "0.0125%, 0.0338%" }, + { 61596, "INV_Weapon_Halberd_09", "=q3=Defender's Glaive", "=ds=#h2#, #w7#", "0.0125%, 0.0338%" }, + }; KCMarrowspike = { { 83441, "INV_chest_chain_15", "=q3=Splintercage Breastplate", "=ds=#s5#, #a4#", "18%" }, { 83442, "INV_boots_08", "=q3=Miasma Walkers", "=ds=#s12#, #a2#", "18%" }, @@ -2882,19 +3011,42 @@ AtlasLoot_Data["AtlasLootItems"] = { { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, Quantity of 2", "100%" }, }; KCTreasure = { - { 5823, "", "=q1=Poisonous Mushroom", "=ds=#m25#", "100%" }, - { 11938, "", "=q1=Sack of Gems", "", "100%" }, - { 13456, "", "=q1=Greater Frost Protection Potion", "=ds=#m25#", "100%" }, - { 60799, "", "=q3=Gauntlets of the Lost Crusader", "=ds=#s9#, #a4#", "14%" }, - { 60800, "", "=q2=Femur Club", "=ds=#h1#, #w6#", "14%" }, - { 60801, "", "=q2=Tome of Dark Powers", "=ds=#h4#", "14%" }, - { 60802, "", "=q2=Shawl of the Forgotten", "=ds=#s4#", "14%" }, - { 60796, "", "=q2=Blade of Rotting", "=ds=#h1#, #w10#", "14%" }, - { 60797, "", "=q2=Rotskin Leggings", "=ds=#s11#, #a2#", "14%" }, - { 60798, "", "=q3=Loop of the Forgotten", "=ds=#s13#", "14%" }, + { 5823, "INV_Mushroom_06", "=q1=Poisonous Mushroom", "=ds=#m25#", "100%" }, + { 11938, "INV_Misc_Bag_10_Red", "=q1=Sack of Gems", "", "100%" }, + { 13456, "INV_Potion_20", "=q1=Greater Frost Protection Potion", "=ds=#m25#", "100%" }, + { 60799, "INV_Gauntlets_09", "=q3=Gauntlets of the Lost Crusader", "=ds=#s9#, #a4#", "14%" }, + { 60800, "INV_Misc_Bone_01", "=q2=Femur Club", "=ds=#h1#, #w6#", "14%" }, + { 60801, "INV_Misc_Book_05", "=q2=Tome of Dark Powers", "=ds=#h4#", "14%" }, + { 60802, "INV_Misc_Cape_11", "=q2=Shawl of the Forgotten", "=ds=#s4#", "14%" }, + { 60796, "INV_Sword_06", "=q2=Blade of Rotting", "=ds=#h1#, #w10#", "14%" }, + { 60797, "INV_Pants_09", "=q2=Rotskin Leggings", "=ds=#s11#, #a2#", "14%" }, + { 60798, "INV_Jewelry_Ring_15", "=q3=Loop of the Forgotten", "=ds=#s13#", "14%" }, + }; + KCTrash = { + { 60803, "inv_misc_monsterclaw_01", "=q3=Claw of Darkness", "=ds=#s15#", "0.01%" }, + { 60804, "INV_Misc_Cape_21", "=q3=Shade of Reminisce", "=ds=#s4#, #a1#", "0.01%" }, + { 60805, "inv_wand_12", "=q3=Clutch of the Damned", "=ds=#w12#", "0.01%" }, + { 60806, "inv_weapon_shortblade_15", "=q3=Coldheart Icicle", "=ds=#h1#, #w4#", "0.01%" }, + { 60807, "INV_Boots_07", "=q3=Grave Robber's Treads", "=ds=#s12#, #a2#", "0.01%" }, + { 60808, "inv_sword_47", "=q3=Bone Fracture", "=ds=#h2#, #w10#", "0.01%" }, + { 60809, "Spell_Shadow_Haunting", "=q3=Remains of the Lost", "=ds=#s14#", "0.01%" }, + { 18742, "INV_Shoulder_14", "=q3=Stratholme Militia Shoulderguard", "=ds=#s3#, #a3#", "0.02%" }, + { 18743, "INV_Misc_Cape_18", "=q3=Gracious Cape", "=ds=#s4#", "0.0935%" }, + { 17061, "INV_Misc_Cape_20", "=q3=Juno's Shadow", "=ds=#s4#", "0.02%" }, + { 18741, "INV_Bracer_17", "=q3=Morlune's Bracer", "=ds=#s8#, #a4#", "0.02%" }, + { 18744, "INV_Gauntlets_18", "=q3=Plaguebat Fur Gloves", "=ds=#s9#, #a2#", "0.04%" }, + { 18745, "INV_Pants_01", "=q3=Sacred Cloth Leggings", "=ds=#s11#, #a1#", "0.06%" }, + { 18736, "INV_Pants_12", "=q3=Plaguehound Leggings", "=ds=#s11#, #a2#", "0.02%" }, + { 18698, "INV_Helmet_41", "=q3=Tattered Leather Hood", "=ds=#s1#, #a2#", "0.6%" }, + { 18699, "INV_Shoulder_27", "=q3=Icy Tomb Spaulders", "=ds=#s3#, #a2#", "0.02%" }, + { 14536, "INV_Chest_Chain_14", "=q3=Bonebrace Hauberk", "=ds=#s5#, #a3#", "0.06%" }, + { 18700, "INV_Bracer_07", "=q3=Malefic Bracers", "=ds=#s8#, #a2#", "0.02%" }, + { 18702, "INV_Belt_28", "=q3=Belt of the Ordained", "=ds=#s10#, #a4#", "0.02%" }, + { 18697, "INV_Boots_Fabric_01", "=q3=Coldstone Slippers", "=ds=#s12#, #a1#", "0.26%" }, + { 18701, "INV_Jewelry_Ring_24", "=q3=Innervating Band", "=ds=#s13#", "0.06%" }, }; COTBMChronar = { - { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#", "100%" }, + { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#, 10-15", "100%" }, { 0, "", "", "" }, { 61016, "INV_sword_10", "=q3=Time-Lost Claymore", "=ds=#h2#, #w10#", "17%" }, { 61018, "INV_misc_cape_02", "=q3=Cloak of Elemental Warding", "=ds=#s4#, #a1#", "17%" }, @@ -2906,7 +3058,7 @@ AtlasLoot_Data["AtlasLootItems"] = { { 60496, "INV_misc_head_dragon_black", "=q1=Head of Chronar", "=ds=#m3#", "100%" }, }; COTBMHarbingerAphygth = { - { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#", "100%" }, + { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#, 15-20", "100%" }, { 0, "", "", "" }, { 61015, "INV_jewelry_necklace_04", "=q3=Hollowbone Choker", "=ds=#s2#", "14%" }, { 61024, "INV_boots_01", "=q3=Greaves of the Ceaseless Expanse", "=ds=#s12#, #a3#", "14%" }, @@ -2918,21 +3070,48 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0, "", "", "" }, { 61020, "INV_wand_02", "=q4=Voidstar", "=ds=#w12#", "0.95%" }, }; + COTBMEpidamu = { + { 0, "", "", "" }, + }; + COTBMDriftingAvatar = { + { 0, "", "", "" }, + }; COTBMTimeLordEpochronos = { - { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#", "100%" }, + { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#, 15-20", "100%" }, { 0, "", "", "" }, { 50428, "INV_belt_06", "=q3=Ancient Clutch", "=ds=#s10#, #a4#", "12%" }, - { 50430, "INVmisc_cape_16", "=q3=Magic-infused Cloak", "=ds=#s4#, #a1#", "12%" }, + { 50430, "inv_misc_cape_16", "=q3=Magic-infused Cloak", "=ds=#s4#, #a1#", "12%" }, { 61017, "INV_shoulder_27", "=q3=Shoulderguards of the Defiler", "=ds=#s3#, #a3#", "12%" }, { 61021, "INV_bracer_09", "=q3=Shadowshifter Armguards", "=ds=#s10#, #a2#", "12%" }, { 61028, "INV_shield_03", "=q3=Bulwark of the Crimson Guard", "=ds=#h4#, #w8#", "12%" }, { 61054, "INV_pants_03", "=q3=Azurite Legguards", "=ds=#s11#, #a3#", "12%" }, { 61058, "INV_pants_04", "=q3=Leggings of the Nullifier", "=ds=#s11#, #a4#", "12%" }, + { 61022, "INV_Weapon_Shortblade_38", "=q3=Dagger of the Currents", "=ds=#h4#, #w4#", "12%" }, { 0, "", "", "" }, { 61049, "INV_sword_19", "=q4=Chronobreaker", "=ds=#h2#, #w10#", "0.95%" }, + }; + COTBMMossheart = { + { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#, 20-25", "100%" }, + { 0, "", "", "" }, + { 61050, "inv_gauntlets_11", "=q3=Gauntlets of the Bogbeast", "=ds=#s9#, #a3#", "17%" }, + { 61051, "inv_misc_root_01", "=q3=Blackthorn Band", "=ds=#s13#", "17%" }, + { 61059, "inv_misc_gem_stone_01", "=q3=Mossheart's Heart", "=ds=#s14#", "17%" }, + { 61060, "inv_misc_bandana_03", "=q3=Thornweave Mask", "=ds=#s1#, #a2#", "17%" }, + { 61061, "inv_chest_cloth_01", "=q3=Regenerating Robe", "=ds=#s5#, #a1#", "17%" }, + { 61062, "inv_belt_21", "=q3=Corroded Plate Belt", "=ds=#s10#, #a4#", "17%" }, + }; + COTBMRotmaw = { + { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#, 10-15", "100%" }, + { 0, "", "", "" }, + { 61023, "inv_chest_leather_08", "=q2=Breastplate of the Wild Hunt", "=ds=#s5#, #a2#", "100%" }, + { 61025, "inv_misc_lantern_01", "=q2=Pyreflame Lantern", "=ds=#s15#", "100%" }, + { 61029, "inv_jewelry_necklace_22", "=q2=Crocolisk Tooth Necklace", "=ds#s2#", "100%" }, + { 61030, "inv_fishingpole_02", "=q2=The Murkfisher", "=ds=#h2#, #w9#", "100%" }, + { 61034, "inv_jewelry_ring_12", "=q2=Band of the Marsh Bog", "=ds=#s15#", "100%" }, + { 61063, "inv_misc_monsterfang_01", "=q2=Rotmaw's Tooth", "=ds=#h1#, #w4#", "100%" }, }; COTBMAntnormi = { - { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#", "100%" }, + { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#, 10-15", "100%" }, { 0, "", "", "" }, { 50427, "INV_chest_leather_08", "=q3=Time-blackened Chestpiece", "=ds=#s5#, #a2#", "50%" }, { 61053, "INV_helmet_24", "=q3=Timeloop Headguard", "=ds=#s1#, #a3#", "50%" }, @@ -2943,10 +3122,14 @@ AtlasLoot_Data["AtlasLootItems"] = { { 61027, "INV_shoulder_24", "=q3=Epaulets of the Forgotten Past", "=ds=#s3#, #a1#", "33%" }, { 61040, "INV_gauntlets_05", "=q3=Gloves of the Unknown", "=ds=#s9#, #a1#", "33%" }, { 0, "", "", "" }, + { 61014, "INV_DataCrystal01", "Shard of Eternity", "=ds=#s14#", "1%" }, + { 0, "", "", "" }, { 51044, "INV_misc_head_dragon_black", "=q1=Antnormi's Head", "=ds=#m3#", "100%" }, + { 0, "", "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, Quantity of 2", "100%" }, }; COTBMInfiniteChromie = { - { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#", "100%" }, + { 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#, 17-23", "100%" }, { 0, "", "", "" }, { 50431, "INV_bracer_13", "=q3=Extremely Well Crafted Cuffs", "=ds=#s8#, #a1#", "12%" }, { 61032, "INV_jewelry_ring_48naxxramas", "=q3=Band of Infinite Possibilities", "=ds=#s13#", "12%" }, @@ -3091,6 +3274,7 @@ AtlasLoot_Data["AtlasLootItems"] = { { 84014, "INV_Scroll_05", "=q3=Plans: Hateforge Helmet", "=ds=#p2# #m19#", "0.005%" }, { 84015, "INV_Scroll_05", "=q3=Plans: Hateforge Leggings", "=ds=#p2# #m19#", "0.005%" }, { 0, "", "", "" }, + { 60616, "inv_weapon_halbard_01", "=q3=Shadowcaller Axe", "=ds=#h2#, #w1#", "0.005%" }, { 60582, "INV_gauntlets_05", "=q3=Incendosaur Skin Gloves", "=ds=#s9#, #a2#", "0.005%" }, { 60572, "INV_Shoulder_23", "=q3=Incendosaur Skin Pauldrons", "=ds=#s3#, #a2#, From Elites Outside Dungeon", "0.1%" }, }; @@ -3153,24 +3337,24 @@ AtlasLoot_Data["AtlasLootItems"] = { { 80708, "INV_Chest_Cloth_04", "=q2=Cookie's Apron", "=ds=#s5#, #a1#", "60%" }, }; DMTrash = { - { 8492, "Spell_Nature_ForceOfNature", "=q1=Parrot Cage (Green Wing Macaw)", "=ds=#e15# =q7=#x40#", "1.59%" }, + { 8492, "Spell_Nature_ForceOfNature", "=q1=Parrot Cage (Green Wing Macaw)", "=ds=#e15# =q7=#x40#", "4%" }, { 0, "", "", "" }, - { 80802, "INV_Boots_01", "=q2=Goblin Mail Boots", "=ds=#s12#, #a3#", "1.5%" }, - { 80803, "INV_Chest_Chain_13", "=q2=Goblin Mail Hauberk", "=ds=#s5#, #a3#", "1.5%" }, + { 80802, "INV_Boots_01", "=q2=Goblin Mail Boots", "=ds=#s12#, #a3#", "0.5-3%" }, + { 80803, "INV_Chest_Chain_13", "=q2=Goblin Mail Hauberk", "=ds=#s5#, #a3#", "0.5-3%" }, { 1943, "INV_Pants_03", "=q2=Goblin Mail Leggings", "=ds=#s11#, #a3#", "4%" }, { 0, "", "", "" }, - { 10401, "INV_Gauntlets_18", "=q2=Blackened Defias Gloves", "=ds=#s9#, #a2#", "1.75%" }, + { 10401, "INV_Gauntlets_18", "=q2=Blackened Defias Gloves", "=ds=#s9#, #a2#", "4%" }, { 10400, "INV_Pants_12", "=q2=Blackened Defias Leggings", "=ds=#s11#, #a2#", "1.75%" }, { 10402, "INV_Boots_05", "=q2=Blackened Defias Boots", "=ds=#s12#, #a2#", "1.2%" }, }; STBalconyMinibosses = { - { 10783, "INV_Shoulder_18", "=q3=Atal'ai Spaulders", "=ds=#s3#, #a2# =q2=#e32#", "6.6%" }, - { 10784, "INV_Chest_Chain_05", "=q3=Atal'ai Breastplate", "=ds=#s5#, #a3# =q2=#e32#", "6.6%" }, - { 10787, "INV_Bracer_18", "=q3=Atal'ai Gloves", "=ds=#s9#, #a1# =q2=#e32#", "6.6%" }, + { 10783, "INV_Shoulder_18", "=q3=Atal'ai Spaulders", "=ds=#s3#, #a2# =q2=#e32#", "7%" }, + { 10784, "INV_Chest_Chain_05", "=q3=Atal'ai Breastplate", "=ds=#s5#, #a3# =q2=#e32#", "7%" }, + { 10787, "INV_Bracer_18", "=q3=Atal'ai Gloves", "=ds=#s9#, #a1# =q2=#e32#", "7%" }, { 0, "", "", "" }, - { 10788, "INV_Belt_15", "=q2=Atal'ai Girdle", "=ds=#s10#, #a4# =q2=#e32#", "6.6%" }, - { 10785, "INV_Pants_07", "=q2=Atal'ai Leggings", "=ds=#s11#, #a2# =q2=#e32#", "6.6%" }, - { 10786, "INV_Boots_01", "=q2=Atal'ai Boots", "=ds=#s12#, #a3# =q2=#e32#", "6.6%" }, + { 10788, "INV_Belt_15", "=q2=Atal'ai Girdle", "=ds=#s10#, #a4# =q2=#e32#", "7%" }, + { 10785, "INV_Pants_07", "=q2=Atal'ai Leggings", "=ds=#s11#, #a2# =q2=#e32#", "7%" }, + { 10786, "INV_Boots_01", "=q2=Atal'ai Boots", "=ds=#s12#, #a3# =q2=#e32#", "7%" }, { 0, "", "", "" }, { 20606, "INV_Feather_14","=q1=Amber Voodoo Feather", "=ds=#m3# =q7=#st1#, #st6#" }, { 20607, "INV_Feather_13","=q1=Blue Voodoo Feather", "=ds=#m3# =q7=#st2#, #st4#" }, @@ -3215,12 +3399,12 @@ AtlasLoot_Data["AtlasLootItems"] = { STAvatarofHakkar = { { 12462, "INV_Chest_Cloth_42", "=q4=Embrace of the Wind Serpent", "=ds=#s5#, #a1#", "2%" }, { 0, "", "", "" }, - { 10843, "INV_Misc_Cape_05", "=q3=Featherskin Cape", "=ds=#s4#", "16.6%" }, - { 10845, "INV_Chest_Plate08", "=q3=Warrior's Embrace", "=ds=#s5#, #a4#", "16.6%" }, - { 10842, "INV_Pants_14", "=q3=Windscale Sarong", "=ds=#s11#, #a2#", "16.6%" }, - { 10846, "INV_Boots_01", "=q3=Bloodshot Greaves", "=ds=#s12#, #a3#", "16.6%" }, - { 10838, "INV_Mace_11", "=q3=Might of Hakkar", "=ds=#h3#, #w6#", "16.6%" }, - { 10844, "INV_Staff_32", "=q3=Spire of Hakkar", "=ds=#w9#", "16.6%" }, + { 10843, "INV_Misc_Cape_05", "=q3=Featherskin Cape", "=ds=#s4#", "17%" }, + { 10845, "INV_Chest_Plate08", "=q3=Warrior's Embrace", "=ds=#s5#, #a4#", "17%" }, + { 10842, "INV_Pants_14", "=q3=Windscale Sarong", "=ds=#s11#, #a2#", "17%" }, + { 10846, "INV_Boots_01", "=q3=Bloodshot Greaves", "=ds=#s12#, #a3#", "17%" }, + { 10838, "INV_Mace_11", "=q3=Might of Hakkar", "=ds=#h3#, #w6#", "17%" }, + { 10844, "INV_Staff_32", "=q3=Spire of Hakkar", "=ds=#w9#", "17%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; @@ -3261,38 +3445,38 @@ AtlasLoot_Data["AtlasLootItems"] = { STEranikus = { { 10847, "INV_Sword_38", "=q4=Dragon's Call", "=ds=#h1#, #w10#", "0.5%" }, { 0,"","","" }, - { 10833, "INV_Helmet_25", "=q3=Horns of Eranikus", "=ds=#s1#, #a3#", "16.6%" }, - { 10829, "INV_Jewelry_Amulet_04", "=q3=Dragon's Eye", "=ds=#s2#", "16.6%" }, - { 10836, "INV_Wand_04", "=q3=Rod of Corrosion", "=ds=#w12#", "16.6%" }, - { 10835, "INV_Shield_04", "=q3=Crest of Supremacy", "=ds=#w8#", "16.6%" }, - { 10837, "INV_Axe_07", "=q3=Tooth of Eranikus", "=ds=#h3#, #w1#", "16.6%" }, - { 10828, "INV_Weapon_ShortBlade_16", "=q3=Dire Nail", "=ds=#h1#, #w4# =q2=#e31#", "16.6%" }, + { 10833, "INV_Helmet_25", "=q3=Horns of Eranikus", "=ds=#s1#, #a3#", "17%" }, + { 10829, "INV_Jewelry_Amulet_04", "=q3=Dragon's Eye", "=ds=#s2#", "17%" }, + { 10836, "INV_Wand_04", "=q3=Rod of Corrosion", "=ds=#w12#", "17%" }, + { 10835, "INV_Shield_04", "=q3=Crest of Supremacy", "=ds=#w8#", "17%" }, + { 10837, "INV_Axe_07", "=q3=Tooth of Eranikus", "=ds=#h3#, #w1#", "17%" }, + { 10828, "INV_Weapon_ShortBlade_16", "=q3=Dire Nail", "=ds=#h1#, #w4# =q2=#e31#", "17%" }, { 0,"","","" }, { 10454, "INV_Stone_03", "=q2=Essence of Eranikus", "=ds=#m2#", "100%" }, { 10455, "INV_Stone_03", "=q2=Chained Essence of Eranikus", "=q1=#m4# =ds=#s14#" }, }; STTrash = { - { 10630, "INV_Crown_01", "=q3=Soulcatcher Halo", "=ds=#s1#, #a1#", "0.01%" }, - { 10632, "INV_Jewelry_Ring_03", "=q3=Slimescale Bracers", "=ds=#s8#, #a3#", "0.01%" }, - { 10631, "INV_Gauntlets_11", "=q3=Murkwater Gauntlets", "=ds=#s9#, #a3#", "0.01%" }, - { 10633, "INV_Pants_04", "=q3=Silvershell Leggings", "=ds=#s11#, #a3#", "0.01%" }, - { 10629, "INV_Boots_05", "=q3=Mistwalker Boots", "=ds=#s12#, #a1#", "0.01%" }, + { 10630, "INV_Crown_01", "=q3=Soulcatcher Halo", "=ds=#s1#, #a1#", "0.02%" }, + { 10632, "INV_Jewelry_Ring_03", "=q3=Slimescale Bracers", "=ds=#s8#, #a3#", "0.02" }, + { 10631, "INV_Gauntlets_11", "=q3=Murkwater Gauntlets", "=ds=#s9#, #a3#", "0.02%" }, + { 10633, "INV_Pants_04", "=q3=Silvershell Leggings", "=ds=#s11#, #a3#", "0.02%" }, + { 10629, "INV_Boots_05", "=q3=Mistwalker Boots", "=ds=#s12#, #a1#", "0.02%" }, { 10634, "INV_Jewelry_Ring_10", "=q3=Mindseye Circle", "=ds=#s13#", "0.02%" }, { 10624, "INV_Weapon_Bow_08", "=q3=Stinging Bow", "=ds=#w2#", "0.02%" }, - { 10623, "INV_Axe_07", "=q3=Winter's Bite", "=ds=#h3#, #w1#", "0.01%" }, - { 10625, "INV_Sword_41", "=q3=Stealthblade", "=ds=#h1#, #w4#", "0.01%" }, - { 10626, "INV_Hammer_06", "=q3=Ragehammer", "=ds=#h2#, #w6#", "0.01%" }, - { 10628, "INV_Sword_31", "=q3=Deathblow", "=ds=#h2#, #w10#", "0.01%" }, + { 10623, "INV_Axe_07", "=q3=Winter's Bite", "=ds=#h3#, #w1#", "0.02%" }, + { 10625, "INV_Sword_41", "=q3=Stealthblade", "=ds=#h1#, #w4#", "0.02%" }, + { 10626, "INV_Hammer_06", "=q3=Ragehammer", "=ds=#h2#, #w6#", "0.02%" }, + { 10628, "INV_Sword_31", "=q3=Deathblow", "=ds=#h2#, #w10#", "0.02%" }, { 10627, "INV_Staff_28", "=q3=Bludgeon of the Grinning Dog", "=ds=#w9#", "0.02%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 10782,"INV_Helmet_38","=q2=Hakkari Shroud","=ds=#s1#, #a1#", "0.15%" }, - { 10781,"INV_Chest_Leather_02","=q2=Hakkari Breastplate","=ds=#s5#, #a2#", "0.14%" }, - { 10780,"INV_Jewelry_Ring_05","=q2=Mark of Hakkar", "=ds=#s13#","0.16%" }, + --{ 10782,"INV_Helmet_38","=q2=Hakkari Shroud","=ds=#s1#, #a1#", "0%" }, + --{ 10781,"INV_Chest_Leather_02","=q2=Hakkari Breastplate","=ds=#s5#, #a2#", "0%" }, + { 10780,"INV_Jewelry_Ring_05","=q2=Mark of Hakkar", "=ds=#s13#","0.02%" }, { 0,"","","" }, - { 16216, "INV_Misc_Note_01", "=q2=Formula: Enchant Cloak - Greater Resistance", "=ds=#p4# #m17# =q7=#x78#", "1.45%" }, - { 15733, "INV_Scroll_03", "=q3=Pattern: Green Dragonscale Leggings", "=ds=#p7# (270) =q7=#x79#", "3.80%" }, + { 16216, "INV_Misc_Note_01", "=q2=Formula: Enchant Cloak - Greater Resistance", "=ds=#p4# #m17# =q7=#x78#", "1.48%" }, + { 15733, "INV_Scroll_03", "=q3=Pattern: Green Dragonscale Leggings", "=ds=#p7# (270) =q7=#x79#", "4%" }, { 15046, "INV_Pants_05", "=q3=Green Dragonscale Leggings", "=ds=#s11#, #a3#" }, }; MaraNamelesProphet = { @@ -3324,7 +3508,7 @@ AtlasLoot_Data["AtlasLootItems"] = { { 17750, "INV_Belt_25", "=q2=Chloromesh Girdle", "=ds=#s10#, #a1#", "25%" }, { 17751, "INV_Pants_05", "=q2=Brusslehide Leggings", "=ds=#s11#, #a2#", "25%" }, { 0, "", "", "" }, - { 51802, "inv_relics_idolofrejuvenation", "=q3=Idol of Evergrowth", "=ds=#s16#, #e16# =q13=#c1#", "7.5%" }, + { 51802, "inv_relics_idolofrejuvenation", "=q3=Idol of Evergrowth", "=ds=#s16#, #e16# =q13=#c1#", "8%" }, }; MaraLordVyletongue = { { 17755, "INV_Belt_24", "=q3=Satyrmane Sash", "=ds=#s10#, #a1#", "33%" }, @@ -3405,7 +3589,7 @@ AtlasLoot_Data["AtlasLootItems"] = { { 18083, "INV_Gauntlets_09", "=q3=Jumanza Grips", "=ds=#s9#, #a1#", "50%" }, { 18082, "INV_Staff_10", "=q3=Zum'rah's Vexing Cane", "=ds=#w9#", "50%" }, { 0,"","","" }, - { 51803, "spell_fire_fire", "=q3=Totem of the Endless Flicker", "=ds=#s16#, #e17# =q15=#c7#", "7.5%" }, + { 51803, "spell_fire_fire", "=q3=Totem of the Endless Flicker", "=ds=#s16#, #e17# =q15=#c7#", "8%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "1%" }, }; @@ -3432,8 +3616,9 @@ AtlasLoot_Data["AtlasLootItems"] = { ZFGahzrilla = { { 9469, "INV_Chest_Chain_06", "=q3=Gahz'rilla Scale Armor", "=ds=#s5#, #a3#", "50%" }, { 9467, "INV_Misc_MonsterFang_01", "=q2=Gahz'rilla Fang", "=ds=#h1#, #w4#", "50%" }, - { 0,"","","" }, { 80747, "INV_Gauntlets_30", "=q3=Electrified Gloves", "=ds=#s9#, #a2#", "50%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "1%" }, }; ZFHydromancerVelratha = { { 9234, "INV_Jewelry_Amulet_05", "=q1=Tiara of the Deep", "=ds=#m3#", "100%" }, @@ -3449,21 +3634,23 @@ AtlasLoot_Data["AtlasLootItems"] = { { 9477, "INV_Staff_Goldfeathered_01", "=q3=The Chief's Enforcer", "=ds=#w9#", "20%" }, { 11086, "INV_Sword_43", "=q3=Jang'thraze the Protector", "=ds=#h3#, #w10#", "20%" }, { 9372, "INV_Sword_40", "=q4=Sul'thraze the Lasher", "=ds=#h2# #w10#" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; ZFTrash = { { 9512, "INV_Misc_Cape_05", "=q3=Blackmetal Cape", "=ds=#s4#", "0.02%" }, - { 9484, "INV_Pants_08", "=q3=Spellshock Leggings", "=ds=#s11#, #a1#", "0.01%" }, + { 9484, "INV_Pants_08", "=q3=Spellshock Leggings", "=ds=#s11#, #a1#", "0.02%" }, { 862, "INV_Belt_34", "=q3=Runed Ring", "=ds=#s13# =q2=#e31#", "0.02%" }, - { 6440, "INV_Belt_30", "=q3=Brainlash", "=ds=#s13#", "0.01%" }, - { 9483, "INV_Torch_Lit", "=q3=Flaming Incinerator", "=ds=#w12#", "0.01%" }, + { 6440, "INV_Belt_30", "=q3=Brainlash", "=ds=#s13#", "0.02%" }, + { 9483, "INV_Torch_Lit", "=q3=Flaming Incinerator", "=ds=#w12#", "0.02%" }, { 2040, "INV_Shield_16", "=q3=Troll Protector", "=ds=#w8#", "0.02%" }, - { 5616, "INV_Sword_31", "=q3=Gutwrencher", "=ds=#h1#, #w4#", "0.01%" }, - { 9511, "INV_Sword_40", "=q3=Bloodletter Scalpel", "=ds=#h1#, #w10#", "0.01%" }, - { 9481, "INV_Axe_03", "=q3=The Minotaur", "=ds=#h2#, #w1#", "0.01%" }, - { 9480, "INV_Spear_05", "=q3=Eyegouger", "=ds=#w7#", "0.01%" }, - { 9482, "INV_Staff_31", "=q3=Witch Doctor's Cane", "=ds=#w9#", "0.01%" }, + { 5616, "INV_Sword_31", "=q3=Gutwrencher", "=ds=#h1#, #w4#", "0.02%" }, + { 9511, "INV_Sword_40", "=q3=Bloodletter Scalpel", "=ds=#h1#, #w10#", "0.02%" }, + { 9481, "INV_Axe_03", "=q3=The Minotaur", "=ds=#h2#, #w1#", "0.02%" }, + { 9480, "INV_Spear_05", "=q3=Eyegouger", "=ds=#w7#", "0.02%" }, + { 9482, "INV_Staff_31", "=q3=Witch Doctor's Cane", "=ds=#w9#", "0.02%" }, { 0,"","","" }, - { 9243, "INV_Misc_Organ_01", "=q2=Shriveled Heart", "=ds=#s2#", "0.54%" }, + { 9243, "INV_Misc_Organ_01", "=q2=Shriveled Heart", "=ds=#s2#", "2%" }, }; RFDTutenkash = { { 10776, "INV_Misc_Cape_17", "=q3=Silky Spider Cape", "=ds=#s4#", "33%" }, @@ -4065,79 +4252,77 @@ AtlasLoot_Data["AtlasLootItems"] = { }; BRDGuzzler = { { 0, "INV_Box_01", "=q6=Hurley Blackbreath", "" }, - { 11735, "INV_Helmet_46", "=q3=Ragefury Eyepatch", "=ds=#s1#, #a2#", "8.11%" }, - { 18043, "INV_Boots_08", "=q3=Coal Miner Boots", "=ds=#s12#, #a2#", "23.87%" }, - { 22275, "INV_Boots_08", "=q3=Firemoss Boots", "=ds=#s12#, #a2#", "23.87%" }, - { 18044, "INV_Drink_04", "=q3=Hurley's Tankard", "=ds=#h3#, #w6#", "31.02%" }, + { 11735, "INV_Helmet_46", "=q3=Ragefury Eyepatch", "=ds=#s1#, #a2#", "25%" }, + { 18043, "INV_Boots_08", "=q3=Coal Miner Boots", "=ds=#s12#, #a2#", "25%" }, + { 22275, "INV_Boots_08", "=q3=Firemoss Boots", "=ds=#s12#, #a2#", "25%" }, + { 18044, "INV_Drink_04", "=q3=Hurley's Tankard", "=ds=#h3#, #w6#", "25%" }, { 0, "", "", "" }, { 0, "INV_Box_01", "=q6=Phalanx", "" }, - { 22212, "INV_Shoulder_16", "=q3=Golem Fitted Pauldrons", "=ds=#s3#, #a3#", "26.04%" }, - { 11745, "INV_Gauntlets_22", "=q3=Fists of Phalanx", "=ds=#s9#, #a4#", "29.79%" }, - { 11744, "INV_Gauntlets_11", "=q3=Bloodfist", "=ds=#h1#, #w13#", "28.48%" }, + { 22212, "INV_Shoulder_16", "=q3=Golem Fitted Pauldrons", "=ds=#s3#, #a3#", "33%" }, + { 11745, "INV_Gauntlets_22", "=q3=Fists of Phalanx", "=ds=#s9#, #a4#", "33%" }, + { 11744, "INV_Gauntlets_11", "=q3=Bloodfist", "=ds=#h1#, #w13#", "33%" }, { 0, "", "", "" }, { 0, "INV_Box_01", "=q6=Lokhtos Darkbargainer", "=q6=Quest Reward" }, { 18592, "INV_Scroll_03", "=q4=Plans: Sulfuron Hammer", "=ds=#p2# #m14#" }, { 17193, "INV_Hammer_Unique_Sulfuras", "=q4=Sulfuron Hammer", "=ds=#h2#, #w6#" }, { 0, "", "", "" }, { 0, "INV_Box_01", "=q6=Ribbly Screwspigot", "" }, - { 11612, "INV_Scroll_03", "=q3=Plans: Dark Iron Plate", "=ds=#p2# #m20#", "22.20%" }, - { 2662, "INV_Misc_Quiver_06", "=q2=Ribbly's Quiver", "=ds=#m21# #e9#", "17.03%" }, - { 2663, "INV_Misc_Ammo_Bullet_01", "=q2=Ribbly's Bandolier", "=ds=#m21# #e8#", "15.73%" }, - { 11742, "INV_Misc_Bag_20", "=q2=Wayfarer's Knapsack", "=ds=#m21# #e10#", "25.07%" }, + { 11612, "INV_Scroll_03", "=q3=Plans: Dark Iron Plate", "=ds=#p2# #m20#", "25%" }, + { 2662, "INV_Misc_Quiver_06", "=q2=Ribbly's Quiver", "=ds=#m21# #e9#", "25%" }, + { 2663, "INV_Misc_Ammo_Bullet_01", "=q2=Ribbly's Bandolier", "=ds=#m21# #e8#", "25%" }, + { 11742, "INV_Misc_Bag_20", "=q2=Wayfarer's Knapsack", "=ds=#m21# #e10#", "25%" }, { 0,"","","" }, { 0, "INV_Box_01", "=q6=Plugger Spazzring", "" }, - { 12793, "INV_Chest_Leather_01", "=q3=Mixologist's Tunic", "=ds=#s5#, #a2#", "24.87%" }, - { 12791, "INV_Drink_10", "=q3=Barman Shanker", "=ds=#h3#, #w4#", "6.97%" }, - { 18653, "INV_Scroll_06", "=q2=Schematic: Goblin Jumper Cables XL", "=ds=#p5# #m17#", "14.31%" }, + { 12793, "INV_Chest_Leather_01", "=q3=Mixologist's Tunic", "=ds=#s5#, #a2#", "18%" }, + { 12791, "INV_Drink_10", "=q3=Barman Shanker", "=ds=#h3#, #w4#", "18%" }, + { 18653, "INV_Scroll_06", "=q2=Schematic: Goblin Jumper Cables XL", "=ds=#p5# #m17#", "18%" }, { 13483, "INV_Scroll_06", "=q2=Recipe: Transmute Fire to Earth", "=ds=#p1# #m16# =q2=vendor" }, { 15759, "INV_Scroll_03", "=q1=Pattern: Black Dragonscale Breastplate", "=ds=#p7# #m18# =q2=vendor" }, { 11325, "INV_Drink_04", "=q1=Dark Iron Ale Mug", "=ds=#e3#, #m3# =q2=vendor" }, { 11602, "INV_Misc_Key_03", "=q1=Grim Guzzler Key", "=ds=#e14# =q7=pickpocketed" }, }; BRDFlamelash = { - { 11808, "Spell_Fire_Fire", "=q4=Circle of Flame", "=ds=#s1#, #a1#", "0.84%" }, + { 11808, "Spell_Fire_Fire", "=q4=Circle of Flame", "=ds=#s1#, #a1#", "2%" }, { 0,"","","" }, - { 11812, "INV_Misc_Cape_18", "=q3=Cape of the Fire Salamander", "=ds=#s4#", "25.25%" }, - { 11814, "INV_Gauntlets_04", "=q3=Molten Fists", "=ds=#s9#, #a3#", "27.88%" }, - { 11832, "INV_Jewelry_Amulet_07", "=q3=Burst of Knowledge", "=ds=#s14#", "14.61%" }, - { 11809, "INV_Spear_01", "=q3=Flame Wrath", "=ds=#w7#", "18.69%" }, - { 0,"","","" }, - { 23320, "INV_Misc_StoneTablet_11", "=q3=Tablet of Flame Shock VI", "=ds=#e20# =q15=#c7#", "8.71%" }, + { 11812, "INV_Misc_Cape_18", "=q3=Cape of the Fire Salamander", "=ds=#s4#", "25%" }, + { 11814, "INV_Gauntlets_04", "=q3=Molten Fists", "=ds=#s9#, #a3#", "25%" }, + { 11832, "INV_Jewelry_Amulet_07", "=q3=Burst of Knowledge", "=ds=#s14#", "25%" }, + { 11809, "INV_Spear_01", "=q3=Flame Wrath", "=ds=#w7#", "25%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; BRDPanzor = { - { 22245, "INV_Boots_Cloth_05", "=q3=Soot Encrusted Footwear", "=ds=#s12#,#a1#", "22.06%" }, - { 11787, "INV_Boots_Plate_01", "=q3=Shalehusk Boots", "=ds=#s12#, #a4#", "19.96%" }, - { 11785, "INV_Shield_06", "=q3=Rock Golem Bulwark", "=ds=#w8#", "21.22%" }, - { 11786, "INV_Sword_47", "=q3=Stone of the Earth", "=ds=#h2#, #w10#", "20.38%" }, + { 22245, "INV_Boots_Cloth_05", "=q3=Soot Encrusted Footwear", "=ds=#s12#,#a1#", "25%" }, + { 11787, "INV_Boots_Plate_01", "=q3=Shalehusk Boots", "=ds=#s12#, #a4#", "25%" }, + { 11785, "INV_Shield_06", "=q3=Rock Golem Bulwark", "=ds=#w8#", "25%" }, + { 11786, "INV_Sword_47", "=q3=Stone of the Earth", "=ds=#h2#, #w10#", "25%" }, }; BRDTomb = { { 0, "INV_Box_01", "=q6=Chest of The Seven", "" }, - { 11925, "INV_Helmet_41", "=q3=Ghostshroud", "=ds=#s1#, #a2#", "21.63%" }, - { 11926, "INV_Chest_Chain_07", "=q3=Deathdealer Breastplate", "=ds=#s5#, #a3#", "22.08%" }, - { 11929, "INV_Pants_11", "=q3=Haunting Specter Leggings", "=ds=#s11#, #a1#", "22.60%" }, - { 11927, "INV_Pants_04", "=q3=Legplates of the Eternal Guardian", "=ds=#s11#, #a4#", "65.45%" }, - { 11920, "INV_Axe_13", "=q3=Wraith Scythe", "=ds=#h3#, #w1#", "22.61%" }, - { 11923, "INV_Hammer_07", "=q3=The Hammer of Grace", "=ds=#h3#, #w6#", "21.29%" }, - { 11922, "INV_Weapon_ShortBlade_15", "=q3=Blood-etched Blade", "=ds=#h1#, #w4#", "22.05%" }, - { 11921, "INV_Hammer_08", "=q3=Impervious Giant", "=ds=#h2#, #w6#", "22.23%" }, + { 11925, "INV_Helmet_41", "=q3=Ghostshroud", "=ds=#s1#, #a2#", "25%" }, + { 11926, "INV_Chest_Chain_07", "=q3=Deathdealer Breastplate", "=ds=#s5#, #a3#", "25%" }, + { 11929, "INV_Pants_11", "=q3=Haunting Specter Leggings", "=ds=#s11#, #a1#", "25%" }, + { 11927, "INV_Pants_04", "=q3=Legplates of the Eternal Guardian", "=ds=#s11#, #a4#", "25%" }, + { 11920, "INV_Axe_13", "=q3=Wraith Scythe", "=ds=#h3#, #w1#", "25%" }, + { 11923, "INV_Hammer_07", "=q3=The Hammer of Grace", "=ds=#h3#, #w6#", "25%" }, + { 11922, "INV_Weapon_ShortBlade_15", "=q3=Blood-etched Blade", "=ds=#h1#, #w4#", "25%" }, + { 11921, "INV_Hammer_08", "=q3=Impervious Giant", "=ds=#h2#, #w6#", "25%" }, }; BRDLyceum = { { 0, "INV_Box_01", "=q6=#x44#", "" }, - { 11885, "INV_Torch_Lit", "=q1=Shadowforge Torch", "=ds=#m33#", "100%" }, + { 11885, "INV_Torch_Lit", "=q1=Shadowforge Torch", "=ds=#m33#", "80%" }, }; BRDMagmus = { - { 11746, "INV_Helmet_23", "=q3=Golem Skull Helm", "=ds=#s1#, #a4#", "20.46%" }, - { 11935, "INV_Misc_Orb_05", "=q3=Magmus Stone", "=ds=#s15#", "21.26%" }, - { 22395, "INV_Relics_TotemofRage", "=q3=Totem of Rage", "=ds=#s16#, #e17# =q15=#c7#", "10.09%" }, - { 22400, "INV_Relics_LibramofTruth", "=q3=Libram of Truth", "=ds=#s16#, #e18# =q16=#c4#", "9.75%" }, - { 22208, "INV_Hammer_10", "=q3=Lavastone Hammer", "=ds=#h2#, #w6#", "22.79%" }, + { 11746, "INV_Helmet_23", "=q3=Golem Skull Helm", "=ds=#s1#, #a4#", "20%" }, + { 11935, "INV_Misc_Orb_05", "=q3=Magmus Stone", "=ds=#s15#", "20%" }, + { 22395, "INV_Relics_TotemofRage", "=q3=Totem of Rage", "=ds=#s16#, #e17# =q15=#c7#", "20%" }, + { 22400, "INV_Relics_LibramofTruth", "=q3=Libram of Truth", "=ds=#s16#, #e18# =q16=#c4#", "20%" }, + { 22208, "INV_Hammer_10", "=q3=Lavastone Hammer", "=ds=#h2#, #w6#", "20%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; BRDEmperorDagranThaurissan = { - { 11684, "Spell_Frost_FrostBrand", "=q4=Ironfoe", "=ds=#h3#, #w6#", "0.46%" }, + { 11684, "Spell_Frost_FrostBrand", "=q4=Ironfoe", "=ds=#h3#, #w6#", "1%" }, { 0, "", "", "" }, { 11933, "INV_Misc_Gem_Sapphire_01", "=q3=Imperial Jewel", "=ds=#s2#", "20%" }, { 11930, "INV_Misc_Cape_20", "=q3=The Emperor's New Cape", "=ds=#s4#", "20%" }, @@ -4150,7 +4335,7 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 12033, "INV_Misc_Bag_17", "=q1=Thaurissan Family Jewels", "=ds=#m23#. #p13# #m16#", "2.87%" }, + { 12033, "INV_Misc_Bag_17", "=q1=Thaurissan Family Jewels", "=ds=#m23#. #p13# #m16#", "20%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "100%" }, { 0, "", "", "" }, @@ -4159,6 +4344,8 @@ AtlasLoot_Data["AtlasLootItems"] = { { 11934, "INV_Jewelry_Ring_24", "=q3=Emperor's Seal", "=ds=#s13# =q2=#e31#", "20%" }, { 11928, "INV_Mace_13", "=q3=Thaurissan's Royal Scepter", "=ds=#s15#", "20%" }, { 11932, "INV_Staff_30", "=q3=Guiding Stave of Wisdom", "=ds=#w9#", "20%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; BRDPrincess = { { 12557, "INV_Shoulder_25", "=q3=Ebonsteel Spaulders", "=ds=#s3#, #a4#", "25%" }, @@ -4169,35 +4356,35 @@ AtlasLoot_Data["AtlasLootItems"] = { { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; BRDBSPlans = { - { 11614, "INV_Scroll_06", "=q2=Plans: Dark Iron Mail", "=ds=#p2# (270)", "13.38%" }, - { 11615, "INV_Scroll_06", "=q2=Plans: Dark Iron Shoulders", "=ds=#p2# (280)", "7.65%" }, + { 11614, "INV_Scroll_06", "=q2=Plans: Dark Iron Mail", "=ds=#p2# (270)", "0.02%" }, + { 11615, "INV_Scroll_06", "=q2=Plans: Dark Iron Shoulders", "=ds=#p2# (280)", "0.02%" }, }; BRDTrash = { - { 12549, "INV_Helmet_10", "=q3=Braincage", "=ds=#s1#, #a3#", "0.02%" }, - { 12552, "INV_Misc_Cape_18", "=q3=Blisterbane Wrap", "=ds=#s4#", "0.01%" }, - { 12551, "INV_Misc_Cape_21", "=q3=Stoneshield Cloak", "=ds=#s4#", "0.01%" }, - { 12542, "INV_Chest_Cloth_40", "=q3=Funeral Pyre Vestment", "=ds=#s5#, #a1#", "0.02%" }, - { 12546, "INV_Bracer_05", "=q3=Aristocratic Cuffs", "=ds=#s8#, #a1#", "0.01%" }, - { 12550, "INV_Bracer_17", "=q3=Runed Golem Shackles", "=ds=#s8#, #a2#", "0.02%" }, - { 12547, "INV_Gauntlets_23", "=q3=Mar Alom's Grip", "=ds=#s9#, #a2#", "0.01%" }, - { 12555, "INV_Boots_Plate_06", "=q3=Battlechaser's Greaves", "=ds=#s12#, #a4#", "0.01%" }, - { 12527, "INV_Axe_13", "=q3=Ribsplitter", "=ds=#h3#, #w1# =q2=#e31#", "0.02%" }, - { 12531, "INV_Weapon_ShortBlade_03", "=q3=Searing Needle", "=ds=#h1#, #w4#", "0.02%" }, - { 12535, "INV_Sword_41", "=q3=Doomforged Straightedge", "=ds=#h1#, #w10#", "0.01%" }, - { 12528, "INV_Hammer_07", "=q3=The Judge's Gavel", "=ds=#h2#, #w6#", "0.02%" }, - { 12532, "INV_Wand_07", "=q3=Spire of the Stoneshaper", "=ds=#w9#", "0.01%" }, + { 12549, "INV_Helmet_10", "=q3=Braincage", "=ds=#s1#, #a3#", "0.02" }, + { 12552, "INV_Misc_Cape_18", "=q3=Blisterbane Wrap", "=ds=#s4#", "0.02" }, + { 12551, "INV_Misc_Cape_21", "=q3=Stoneshield Cloak", "=ds=#s4#", "0.02" }, + { 12542, "INV_Chest_Cloth_40", "=q3=Funeral Pyre Vestment", "=ds=#s5#, #a1#", "0.02" }, + { 12546, "INV_Bracer_05", "=q3=Aristocratic Cuffs", "=ds=#s8#, #a1#", "0.02" }, + { 12550, "INV_Bracer_17", "=q3=Runed Golem Shackles", "=ds=#s8#, #a2#", "0.02" }, + { 12547, "INV_Gauntlets_23", "=q3=Mar Alom's Grip", "=ds=#s9#, #a2#", "0.02" }, + { 12555, "INV_Boots_Plate_06", "=q3=Battlechaser's Greaves", "=ds=#s12#, #a4#", "0.02" }, + { 12527, "INV_Axe_13", "=q3=Ribsplitter", "=ds=#h3#, #w1# =q2=#e31#", "0.02" }, + { 12531, "INV_Weapon_ShortBlade_03", "=q3=Searing Needle", "=ds=#h1#, #w4#", "0.02" }, + { 12535, "INV_Sword_41", "=q3=Doomforged Straightedge", "=ds=#h1#, #w10#", "0.02" }, + { 12528, "INV_Hammer_07", "=q3=The Judge's Gavel", "=ds=#h2#, #w6#", "0.02" }, + { 12532, "INV_Wand_07", "=q3=Spire of the Stoneshaper", "=ds=#w9#", "0.02" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 15781, "INV_Scroll_05", "=q3=Pattern: Black Dragonscale Leggings", "=ds=#p7# #m14# =q7=#x46#", "1.93%" }, - { 15770, "INV_Scroll_03", "=q3=Pattern: Black Dragonscale Shoulders", "=ds=#p7# #m14# =q7=#x45#", "1.88%" }, - { 11611, "INV_Scroll_03", "=q3=Plans: Dark Iron Sunderer", "=ds=#p2# #m16# =q7=#x50#", "4.68%" }, - { 11614, "INV_Scroll_06", "=q2=Plans: Dark Iron Mail", "=ds=#p2# (270) =q7=#m24#", "13.38%" }, - { 11615, "INV_Scroll_06", "=q2=Plans: Dark Iron Shoulders", "=ds=#p2# (280) =q7=#m24#", "7.65%" }, - { 16048, "INV_Scroll_06", "=q2=Schematic: Dark Iron Rifle", "=ds=#p5# #m16# =q7=#x48#", "1.98%" }, - { 16053, "INV_Scroll_06", "=q2=Schematic: Master Engineer's Goggles", "=ds=#p5# #m18# =q7=#x49#", "0.45%" }, - { 16049, "INV_Scroll_06", "=q2=Schematic: Dark Iron Bomb", "=ds=#p5# #m20# =q7=#x47#", "1.02%" }, - { 18654, "INV_Scroll_06", "=q2=Schematic: Gnomish Alarm-O-Bot", "=ds=#p5# #m17# =q7=#x47#", "1.88%" }, - { 18661, "INV_Scroll_06", "=q2=Schematic: World Enlarger", "=ds=#p5# (260) =q7=#x47#", "2.00%" }, + { 15781, "INV_Scroll_05", "=q3=Pattern: Black Dragonscale Leggings", "=ds=#p7# #m14# =q7=#x46#", "4%" }, + { 15770, "INV_Scroll_03", "=q3=Pattern: Black Dragonscale Shoulders", "=ds=#p7# #m14# =q7=#x45#", "4%" }, + { 11611, "INV_Scroll_03", "=q3=Plans: Dark Iron Sunderer", "=ds=#p2# #m16# =q7=#x50#", "4%" }, + { 11614, "INV_Scroll_06", "=q2=Plans: Dark Iron Mail", "=ds=#p2# (270) =q7=#m24#", "8%" }, + { 11615, "INV_Scroll_06", "=q2=Plans: Dark Iron Shoulders", "=ds=#p2# (280) =q7=#m24#", "0.02%" }, + { 16048, "INV_Scroll_06", "=q2=Schematic: Dark Iron Rifle", "=ds=#p5# #m16# =q7=#x48#", "1.8%" }, + { 16053, "INV_Scroll_06", "=q2=Schematic: Master Engineer's Goggles", "=ds=#p5# #m18# =q7=#x49#", "0.7%" }, + { 16049, "INV_Scroll_06", "=q2=Schematic: Dark Iron Bomb", "=ds=#p5# #m20# =q7=#x47#", "1%" }, + { 18654, "INV_Scroll_06", "=q2=Schematic: Gnomish Alarm-O-Bot", "=ds=#p5# #m17# =q7=#x47#", "1.89%" }, + { 18661, "INV_Scroll_06", "=q2=Schematic: World Enlarger", "=ds=#p5# (260) =q7=#x47#", "2%" }, { 0, "", "", "" }, { 18232, "INV_Egg_05", "=q1=Field Repair Bot 74A", "=ds=#p5# #m14# =q7=#m22#" }, { 0, "", "", "" }, @@ -4305,49 +4492,55 @@ AtlasLoot_Data["AtlasLootItems"] = { { 1484, "INV_Wand_04", "=q3=Witching Stave", "=ds=#w9#", "0.01%" }, }; DMEPusillin = { - { 18267, "INV_Scroll_03", "=q2=Recipe: Runn Tum Tuber Surprise", "=ds=#p3# #m16#", "71.55%" }, + { 18267, "INV_Scroll_03", "=q2=Recipe: Runn Tum Tuber Surprise", "=ds=#p3# #m16#", "100%" }, { 0, "", "", "" }, - { 18249, "INV_Misc_Key_10", "=q1=Crescent Key", "=ds=#e14#", "100%" }, + { 18249, "INV_Misc_Key_10", "=q1=Crescent Key", "=ds=#e14#", "100" }, }; DMEZevrimThornhoof = { - { 18319, "INV_Helmet_38", "=q3=Fervent Helm", "=ds=#s1#, #a3# =q2=#e32#", "7.88%" }, - { 18313, "INV_Helmet_19", "=q3=Helm of Awareness", "=ds=#s1#, #a4#", "17.87%" }, - { 18323, "INV_Weapon_Bow_03", "=q3=Satyr's Bow", "=ds=#w2#", "17.24%" }, + { 18319, "INV_Helmet_38", "=q3=Fervent Helm", "=ds=#s1#, #a3# =q2=#e32#", "20%" }, + { 18313, "INV_Helmet_19", "=q3=Helm of Awareness", "=ds=#s1#, #a4#", "20%" }, + { 18323, "INV_Weapon_Bow_03", "=q3=Satyr's Bow", "=ds=#w2#", "20%" }, { 0, "", "", "" }, - { 18308, "INV_Helmet_51", "=q2=Clever Hat", "=ds=#s1#, #a2#", "23.73%" }, - { 18306, "INV_Gauntlets_22", "=q2=Gloves of Shadowy Mist", "=ds=#s9#, #a1#", "21.40%" }, + { 18308, "INV_Helmet_51", "=q2=Clever Hat", "=ds=#s1#, #a2#", "20%" }, + { 18306, "INV_Gauntlets_22", "=q2=Gloves of Shadowy Mist", "=ds=#s9#, #a1#", "20%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMELethtendris = { - { 18325, "INV_Helmet_31", "=q3=Felhide Cap", "=ds=#s1#, #a2#", "24.67%" }, - { 18311, "INV_Staff_14", "=q3=Quel'dorai Channeling Rod", "=ds=#w9#", "7.30%" }, + { 18325, "INV_Helmet_31", "=q3=Felhide Cap", "=ds=#s1#, #a2#", "25%" }, + { 18311, "INV_Staff_14", "=q3=Quel'dorai Channeling Rod", "=ds=#w9#", "25%" }, { 0, "", "", "" }, - { 18301, "INV_Wand_06", "=q2=Lethtendris's Wand", "=ds=#w12#", "25.57%" }, - { 18302, "INV_Jewelry_Ring_20", "=q2=Band of Vigor", "=ds=#s13#", "29.30%" }, + { 18301, "INV_Wand_06", "=q2=Lethtendris's Wand", "=ds=#w12#", "25%" }, + { 18302, "INV_Jewelry_Ring_20", "=q2=Band of Vigor", "=ds=#s13#", "25%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMEPimgib = { - { 18354, "INV_Jewelry_Amulet_05", "=q3=Pimgib's Collar", "=ds=#s14# =q11=#c8#", "18.68%" }, + { 18354, "INV_Jewelry_Amulet_05", "=q3=Pimgib's Collar", "=ds=#s14# =q11=#c8#", "14%" }, }; DMEHydro = { - { 18317, "INV_Jewelry_Necklace_03", "=q3=Tempest Talisman", "=ds=#s2#", "16.44%" }, - { 18322, "INV_Boots_08", "=q3=Waterspout Boots", "=ds=#s12#, #a2#", "16.42%" }, - { 18324, "INV_Axe_17", "=q3=Waveslicer", "=ds=#h2#, #w1#", "8.46%" }, + { 18317, "INV_Jewelry_Necklace_03", "=q3=Tempest Talisman", "=ds=#s2#", "20%" }, + { 18322, "INV_Boots_08", "=q3=Waterspout Boots", "=ds=#s12#, #a2#", "20%" }, + { 18324, "INV_Axe_17", "=q3=Waveslicer", "=ds=#h2#, #w1#", "20%" }, { 0, "", "", "" }, - { 19268, "INV_Misc_Ticket_Tarot_Elemental_01", "=q3=Ace of Elementals", "=ds=#e19#", "2.10%" }, + { 19268, "INV_Misc_Ticket_Tarot_Elemental_01", "=q3=Ace of Elementals", "=ds=#e19#", "2%" }, { 0, "", "", "" }, - { 18305, "INV_Pants_04", "=q2=Breakwater Legguards", "=ds=#s11#, #a4#", "22.75%" }, - { 18307, "INV_Boots_05", "=q2=Riptide Shoes", "=ds=#s12#, #a1#", "21.33%" }, + { 18305, "INV_Pants_04", "=q2=Breakwater Legguards", "=ds=#s11#, #a4#", "20%" }, + { 18307, "INV_Boots_05", "=q2=Riptide Shoes", "=ds=#s12#, #a1#", "20%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMEAlzzin = { - { 18328, "INV_Misc_Cape_17", "=q3=Shadewood Cloak", "=ds=#s4#", "15.36%" }, - { 18312, "INV_Chest_Plate11", "=q3=Energized Chestplate", "=ds=#s5#, #a4#", "16.08%" }, - { 18309, "INV_Gauntlets_20", "=q3=Gloves of Restoration", "=ds=#s9#, #a2#", "14.05%" }, - { 18326, "INV_Gauntlets_31", "=q3=Razor Gauntlets", "=ds=#s9#, #a4#", "18.62%" }, - { 18327, "INV_Belt_17", "=q3=Whipvine Cord", "=ds=#s10#, #a1#", "16.53%" }, - { 18318, "INV_Boots_01", "=q3=Merciful Greaves", "=ds=#s12#, #a3#", "14.88%" }, - { 18321, "INV_Mace_13", "=q3=Energetic Rod", "=ds=#h3#, #w6#", "15.94%" }, - { 18310, "INV_Sword_18", "=q3=Fiendish Machete", "=ds=#h1#, #w10#", "15.39%" }, - { 18314, "INV_Jewelry_Ring_31", "=q3=Ring of Demonic Guile", "=ds=#s13#", "13.71%" }, - { 18315, "INV_Jewelry_Ring_28", "=q3=Ring of Demonic Potency", "=ds=#s13#", "15.40%" }, + { 18328, "INV_Misc_Cape_17", "=q3=Shadewood Cloak", "=ds=#s4#", "10%" }, + { 18312, "INV_Chest_Plate11", "=q3=Energized Chestplate", "=ds=#s5#, #a4#", "10%" }, + { 18309, "INV_Gauntlets_20", "=q3=Gloves of Restoration", "=ds=#s9#, #a2#", "10%" }, + { 18326, "INV_Gauntlets_31", "=q3=Razor Gauntlets", "=ds=#s9#, #a4#", "10%" }, + { 18327, "INV_Belt_17", "=q3=Whipvine Cord", "=ds=#s10#, #a1#", "10%" }, + { 18318, "INV_Boots_01", "=q3=Merciful Greaves", "=ds=#s12#, #a3#", "10%" }, + { 18321, "INV_Mace_13", "=q3=Energetic Rod", "=ds=#h3#, #w6#", "10%" }, + { 18310, "INV_Sword_18", "=q3=Fiendish Machete", "=ds=#h1#, #w10#", "10%" }, + { 18314, "INV_Jewelry_Ring_31", "=q3=Ring of Demonic Guile", "=ds=#s13#", "10%" }, + { 18315, "INV_Jewelry_Ring_28", "=q3=Ring of Demonic Potency", "=ds=#s13#", "10%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "100%" }, }; @@ -4356,49 +4549,51 @@ AtlasLoot_Data["AtlasLootItems"] = { }; DMEIsalien = { { 0, "INV_Misc_Bag_09", "=q6=#j3#", "=q5=Isalien" }, - { 22304, "INV_Gauntlets_27", "=q3=Ironweave Gloves", "=ds=#s9#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "16.24%" }, - { 22472, "INV_Boots_08", "=q3=Boots of Ferocity", "=ds=#s12#, #a2#", "12.55%" }, - { 22401, "INV_Relics_LibramofHope", "=q3=Libram of Hope", "=ds=#s16#, #e18# =q16=#c4#", "14.76%" }, - { 22345, "INV_Relics_TotemofRebirth", "=q3=Totem of Rebirth", "=ds=#s16#, #e17# =q15=#c7#", "2.95%" }, - { 22315, "INV_Hammer_02", "=q3=Hammer of Revitalization", "=ds=#h3#, #w6#", "13.65%" }, - { 22314, "INV_Spear_06", "=q3=Huntsman's Harpoon", "=ds=#w7#", "15.50%" }, + { 22304, "INV_Gauntlets_27", "=q3=Ironweave Gloves", "=ds=#s9#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "17%" }, + { 22472, "INV_Boots_08", "=q3=Boots of Ferocity", "=ds=#s12#, #a2#", "17%" }, + { 22401, "INV_Relics_LibramofHope", "=q3=Libram of Hope", "=ds=#s16#, #e18# =q16=#c4#", "17%" }, + { 22345, "INV_Relics_TotemofRebirth", "=q3=Totem of Rebirth", "=ds=#s16#, #e17# =q15=#c7#", "17%" }, + { 22315, "INV_Hammer_02", "=q3=Hammer of Revitalization", "=ds=#h3#, #w6#", "17%" }, + { 22314, "INV_Spear_06", "=q3=Huntsman's Harpoon", "=ds=#w7#", "17%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMETrash = { - { 18289, "INV_Jewelry_Necklace_09", "=q3=Barbed Thorn Necklace", "=ds=#s2#", "0.87%" }, - { 18296, "INV_Bracer_06", "=q3=Marksman Bands", "=ds=#s8#, #a3#", "0.59%" }, - { 18298, "INV_Pants_11", "=q3=Unbridled Leggings", "=ds=#s11#, #a2#", "0.62%" }, - { 18295, "INV_Boots_06", "=q3=Phasing Boots", "=ds=#s12#, #a1# =q2=#e32#", "1.26%" }, + { 18289, "INV_Jewelry_Necklace_09", "=q3=Barbed Thorn Necklace", "=ds=#s2#", "0.5%" }, + { 18296, "INV_Bracer_06", "=q3=Marksman Bands", "=ds=#s8#, #a3#", "0.75%" }, + { 18298, "INV_Pants_11", "=q3=Unbridled Leggings", "=ds=#s11#, #a2#", "0.75%" }, + { 18295, "INV_Boots_06", "=q3=Phasing Boots", "=ds=#s12#, #a1# =q2=#e32#", "0.58%" }, { 0, "", "", "" }, - { 18333,"INV_Misc_Book_04","=q2=Libram of Focus","=ds=#e20#", "2.87%" }, - { 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#", "3.16%" }, - { 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#", "3.34%" }, + { 18333,"INV_Misc_Book_04","=q2=Libram of Focus","=ds=#e20#", "2%" }, + { 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#", "2%" }, + { 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#", "2%" }, { 0, "", "", "" }, - { 18255, "INV_Misc_Food_55", "=q1=Runn Tum Tuber", "=ds=#e2#", "0.24%" }, - { 18297, "INV_Enchant_ShardGlimmeringSmall", "=q1=Thornling Seed", "=ds=#e15# =q7=#cb30#", "87.81%" }, + { 18255, "INV_Misc_Food_55", "=q1=Runn Tum Tuber", "=ds=#e2#", "0.3%" }, + { 18297, "INV_Enchant_ShardGlimmeringSmall", "=q1=Thornling Seed", "=ds=#e15# =q7=#cb30#", "0.5%" }, }; DMNGuardMoldar = { - { 18494, "INV_Shoulder_15", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "4.62%" }, - { 18493, "INV_Shoulder_26", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "3.96%" }, - { 18496, "INV_Misc_Cape_02", "=q3=Heliotrope Cloak", "=ds=#s4#", "4.68%" }, - { 18497, "INV_Bracer_13", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "4.14%" }, - { 18498, "INV_Axe_11", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "4.94%" }, + { 18494, "INV_Shoulder_15", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "8%" }, + { 18493, "INV_Shoulder_26", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "8%" }, + { 18496, "INV_Misc_Cape_02", "=q3=Heliotrope Cloak", "=ds=#s4#", "8%" }, + { 18497, "INV_Bracer_13", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "8%" }, + { 18498, "INV_Axe_11", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "8%" }, { 0, "", "", "" }, - { 18450, "INV_Chest_Cloth_24", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "6.57%" }, - { 18458, "INV_Bracer_03", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "7.12%" }, - { 18459, "INV_Bracer_19", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "6.09%" }, - { 18451, "INV_Belt_16", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "6.61%" }, - { 18462, "INV_Gauntlets_13", "=q2=Jagged Bone Fist", "=ds=#h3#, #w13#", "7.54%" }, - { 18463, "INV_Sword_04", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "7.38%" }, - { 18464, "INV_Jewelry_Ring_06", "=q2=Gordok Nose Ring", "=ds=#s13#", "6.52%" }, - { 18460, "INV_Weapon_Rifle_07", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "5.86%" }, + { 18450, "INV_Chest_Cloth_24", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "8%" }, + { 18458, "INV_Bracer_03", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "8%" }, + { 18459, "INV_Bracer_19", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "8%" }, + { 18451, "INV_Belt_16", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "8%" }, + { 18462, "INV_Gauntlets_13", "=q2=Jagged Bone Fist", "=ds=#h3#, #w13#", "8%" }, + { 18463, "INV_Sword_04", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "8%" }, + { 18464, "INV_Jewelry_Ring_06", "=q2=Gordok Nose Ring", "=ds=#s13#", "8%" }, + { 18460, "INV_Weapon_Rifle_07", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "8%" }, { 0, "", "", "" }, - { 18250, "INV_Misc_Key_11", "=q2=Gordok Shackle Key", "=ds=#e14#", "13.79%" }, + { 18250, "INV_Misc_Key_11", "=q2=Gordok Shackle Key", "=ds=#e14#", "13%" }, { 18268, "INV_Misc_Key_04", "=q1=Gordok Inner Door Key", "=ds=#e14#", "100%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMNStomperKreeg = { - { 18425, "INV_Drink_05", "=q2=Kreeg's Mug", "=ds=#s15#", "40.24%" }, + { 18425, "INV_Drink_05", "=q2=Kreeg's Mug", "=ds=#s15#", "40%" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, @@ -4422,40 +4617,40 @@ AtlasLoot_Data["AtlasLootItems"] = { { 9260, "INV_Drink_01", "=q1=Volatile Rum", "=ds=#e3#" }, }; DMNGuardFengus = { - { 18450, "INV_Chest_Cloth_24", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "6.57%" }, - { 18458, "INV_Bracer_03", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "7.12%" }, - { 18459, "INV_Bracer_19", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "6.09%" }, - { 18451, "INV_Belt_16", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "6.61%" }, - { 18462, "INV_Gauntlets_13", "=q2=Jagged Bone Fist", "=ds=#h3#, #w13#", "7.54%" }, - { 18463, "INV_Sword_04", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "7.38%" }, - { 18464, "INV_Jewelry_Ring_06", "=q2=Gordok Nose Ring", "=ds=#s13#", "6.52%" }, - { 18460, "INV_Weapon_Rifle_07", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "5.86%" }, + { 18450, "INV_Chest_Cloth_24", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "13%" }, + { 18458, "INV_Bracer_03", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "13%" }, + { 18459, "INV_Bracer_19", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "13%" }, + { 18451, "INV_Belt_16", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "13%" }, + { 18462, "INV_Gauntlets_13", "=q2=Jagged Bone Fist", "=ds=#h3#, #w13#", "13%" }, + { 18463, "INV_Sword_04", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "13%" }, + { 18464, "INV_Jewelry_Ring_06", "=q2=Gordok Nose Ring", "=ds=#s13#", "13%" }, + { 18460, "INV_Weapon_Rifle_07", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "13%" }, { 0, "", "", "" }, - { 18250, "INV_Misc_Key_11", "=q2=Gordok Shackle Key", "=ds=#e14#", "13.79%" }, + { 18250, "INV_Misc_Key_11", "=q2=Gordok Shackle Key", "=ds=#e14#", "13%" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "INV_Box_01", "=q6=#cb7#", "" }, - { 18266, "INV_Misc_Key_02", "=q1=Gordok Courtyard Key", "=ds=#e14#", "100%" }, + { 18266, "INV_Misc_Key_02", "=q1=Gordok Courtyard Key", "=ds=#e14#", "1.2%" }, }; DMNThimblejack = { - { 18414, "INV_Scroll_04", "=q4=Pattern: Belt of the Archmage", "=ds=#p8# #m14#", "1.00%" }, - { 18517, "INV_Scroll_04", "=q4=Pattern: Chromatic Cloak", "=ds=#p7# #m14#", "0.92%" }, - { 18518, "INV_Scroll_04", "=q4=Pattern: Hide of the Wild", "=ds=#p7# #m14#", "1.29%" }, - { 18519, "INV_Scroll_04", "=q4=Pattern: Shifting Cloak", "=ds=#p7# #m14#", "1.14%" }, + { 18414, "INV_Scroll_04", "=q4=Pattern: Belt of the Archmage", "=ds=#p8# #m14#", "2%" }, + { 18517, "INV_Scroll_04", "=q4=Pattern: Chromatic Cloak", "=ds=#p7# #m14#", "2%" }, + { 18518, "INV_Scroll_04", "=q4=Pattern: Hide of the Wild", "=ds=#p7# #m14#", "2%" }, + { 18519, "INV_Scroll_04", "=q4=Pattern: Shifting Cloak", "=ds=#p7# #m14#", "2%" }, { 0, "", "", "" }, - { 18415, "INV_Scroll_05", "=q3=Pattern: Felcloth Gloves", "=ds=#p8# #m14#", "9.62%" }, - { 18416, "INV_Scroll_05", "=q3=Pattern: Inferno Gloves", "=ds=#p8# #m14#", "10.66%" }, - { 18417, "INV_Scroll_05", "=q3=Pattern: Mooncloth Gloves", "=ds=#p8# #m14#", "10.28%" }, - { 18418, "INV_Scroll_05", "=q3=Pattern: Cloak of Warding", "=ds=#p8# #m14#", "9.75%" }, - { 18514, "INV_Scroll_05", "=q3=Pattern: Girdle of Insight", "=ds=#p7# #m14#", "10.90%" }, - { 18515, "INV_Scroll_05", "=q3=Pattern: Mongoose Boots", "=ds=#p7# #m14#", "11.18%" }, - { 18516, "INV_Scroll_05", "=q3=Pattern: Swift Flight Bracers", "=ds=#p7# #m14#", "10.26%" }, + { 18415, "INV_Scroll_05", "=q3=Pattern: Felcloth Gloves", "=ds=#p8# #m14#", "13%" }, + { 18416, "INV_Scroll_05", "=q3=Pattern: Inferno Gloves", "=ds=#p8# #m14#", "13%" }, + { 18417, "INV_Scroll_05", "=q3=Pattern: Mooncloth Gloves", "=ds=#p8# #m14#", "13%" }, + { 18418, "INV_Scroll_05", "=q3=Pattern: Cloak of Warding", "=ds=#p8# #m14#", "13%" }, + { 18514, "INV_Scroll_05", "=q3=Pattern: Girdle of Insight", "=ds=#p7# #m14#", "13%" }, + { 18515, "INV_Scroll_05", "=q3=Pattern: Mongoose Boots", "=ds=#p7# #m14#", "13%" }, + { 18516, "INV_Scroll_05", "=q3=Pattern: Swift Flight Bracers", "=ds=#p7# #m14#", "13%" }, { 0, "", "", "" }, { 18258, "INV_Chest_Chain_14", "=q2=Gordok Ogre Suit", "=q1=#m4#" }, - { 18240, "INV_Potion_08", "=q2=Ogre Tannin", "=ds=#m3#", "31.05%" }, + { 18240, "INV_Potion_08", "=q2=Ogre Tannin", "=ds=#m3#", "35%" }, { 18405, "INV_Belt_31", "=q4=Belt of the Archmage", "=ds=#s10#, #a1#" }, { 18509, "INV_Misc_Cape_02", "=q4=Chromatic Cloak", "=ds=#s4#" }, { 18510, "INV_Misc_Cape_01", "=q4=Hide of the Wild", "=ds=#s4#" }, @@ -4470,42 +4665,42 @@ AtlasLoot_Data["AtlasLootItems"] = { { 18508, "INV_Bracer_05", "=q3=Swift Flight Bracers", "=ds=#s8#, #a3#" }, }; DMNGuardSlipkik = { - { 18494, "INV_Shoulder_15", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "4.62%" }, - { 18493, "INV_Shoulder_26", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "3.96%" }, - { 18496, "INV_Misc_Cape_02", "=q3=Heliotrope Cloak", "=ds=#s4#", "4.68%" }, - { 18497, "INV_Bracer_13", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "4.14%" }, - { 18498, "INV_Axe_11", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "4.94%" }, + { 18494, "INV_Shoulder_15", "=q3=Denwatcher's Shoulders", "=ds=#s3#, #a3#", "8%" }, + { 18493, "INV_Shoulder_26", "=q3=Bulky Iron Spaulders", "=ds=#s3#, #a4#", "8%" }, + { 18496, "INV_Misc_Cape_02", "=q3=Heliotrope Cloak", "=ds=#s4#", "8%" }, + { 18497, "INV_Bracer_13", "=q3=Sublime Wristguards", "=ds=#s8#, #a1#", "8%" }, + { 18498, "INV_Axe_11", "=q3=Hedgecutter", "=ds=#h1#, #w1#", "8%" }, { 0, "", "", "" }, - { 18450, "INV_Chest_Cloth_24", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "6.57%" }, - { 18458, "INV_Bracer_03", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "7.12%" }, - { 18459, "INV_Bracer_19", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "6.09%" }, - { 18451, "INV_Belt_16", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "6.61%" }, - { 18462, "INV_Gauntlets_13", "=q2=Jagged Bone Fist", "=ds=#h3#, #w13#", "7.54%" }, - { 18463, "INV_Sword_04", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "7.38%" }, - { 18464, "INV_Jewelry_Ring_06", "=q2=Gordok Nose Ring", "=ds=#s13#", "6.52%" }, - { 18460, "INV_Weapon_Rifle_07", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "5.86%" }, + { 18450, "INV_Chest_Cloth_24", "=q2=Robe of Combustion", "=ds=#s5#, #a1#", "8%" }, + { 18458, "INV_Bracer_03", "=q2=Modest Armguards", "=ds=#s8#, #a3#", "8%" }, + { 18459, "INV_Bracer_19", "=q2=Gallant's Wristguards", "=ds=#s8#, #a4#", "8%" }, + { 18451, "INV_Belt_16", "=q2=Hyena Hide Belt", "=ds=#s10#, #a2#", "8%" }, + { 18462, "INV_Gauntlets_13", "=q2=Jagged Bone Fist", "=ds=#h3#, #w13#", "8%" }, + { 18463, "INV_Sword_04", "=q2=Ogre Pocket Knife", "=ds=#h1#, #w10#", "8%" }, + { 18464, "INV_Jewelry_Ring_06", "=q2=Gordok Nose Ring", "=ds=#s13#", "8%" }, + { 18460, "INV_Weapon_Rifle_07", "=q2=Unsophisticated Hand Cannon", "=ds=#w5#", "8%" }, { 0, "", "", "" }, - { 18250, "INV_Misc_Key_11", "=q2=Gordok Shackle Key", "=ds=#e14#", "13.79%" }, + { 18250, "INV_Misc_Key_11", "=q2=Gordok Shackle Key", "=ds=#e14#", "13%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMNCaptainKromcrush = { - { 18503, "INV_Chest_Chain_14", "=q3=Kromcrush's Chestplate", "=ds=#s5#, #a4#", "17.48%" }, - { 18505, "INV_Belt_02", "=q3=Mugger's Belt", "=ds=#s10#, #a2#", "18.06%" }, - { 18507, "INV_Boots_05", "=q3=Boots of the Full Moon", "=ds=#s12#, #a1#", "18.75%" }, - { 18502, "INV_Weapon_Halberd_09", "=q3=Monstrous Glaive", "=ds=#w7#", "21.47%" }, + { 18503, "INV_Chest_Chain_14", "=q3=Kromcrush's Chestplate", "=ds=#s5#, #a4#", "25%" }, + { 18505, "INV_Belt_02", "=q3=Mugger's Belt", "=ds=#s10#, #a2#", "25%" }, + { 18507, "INV_Boots_05", "=q3=Boots of the Full Moon", "=ds=#s12#, #a1#", "25%" }, + { 18502, "INV_Weapon_Halberd_09", "=q3=Monstrous Glaive", "=ds=#w7#", "25%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMNKingGordok = { - { 18526, "INV_Crown_01", "=q3=Crown of the Ogre King", "=ds=#s1#, #a1#", "17.17%" }, - { 18525, "INV_Bracer_12", "=q3=Bracers of Prosperity", "=ds=#s8#, #a2#", "19.15%" }, - { 18527, "INV_Gauntlets_10", "=q3=Harmonious Gauntlets", "=ds=#s9#, #a3#", "19.73%" }, - { 18524, "INV_Pants_03", "=q3=Leggings of Destruction", "=ds=#s11#, #a3#", "18.55%" }, - { 18521, "INV_Boots_Plate_01", "=q3=Grimy Metal Boots", "=ds=#s12#, #a4#", "17.80%" }, - { 18522, "INV_Jewelry_Ring_32", "=q3=Band of the Ogre King", "=ds=#s13#", "14.96%" }, - { 18523, "INV_Misc_Orb_01", "=q3=Brightly Glowing Stone", "=ds=#s15#", "20.21%" }, - { 18520, "INV_Sword_11", "=q3=Barbarous Blade", "=ds=#h2#, #w10#", "16.44%" }, + { 18526, "INV_Crown_01", "=q3=Crown of the Ogre King", "=ds=#s1#, #a1#", "13%" }, + { 18525, "INV_Bracer_12", "=q3=Bracers of Prosperity", "=ds=#s8#, #a2#", "13%" }, + { 18527, "INV_Gauntlets_10", "=q3=Harmonious Gauntlets", "=ds=#s9#, #a3#", "13%" }, + { 18524, "INV_Pants_03", "=q3=Leggings of Destruction", "=ds=#s11#, #a3#", "13%" }, + { 18521, "INV_Boots_Plate_01", "=q3=Grimy Metal Boots", "=ds=#s12#, #a4#", "13%" }, + { 18522, "INV_Jewelry_Ring_32", "=q3=Band of the Ogre King", "=ds=#s13#", "13%" }, + { 18523, "INV_Misc_Orb_01", "=q3=Brightly Glowing Stone", "=ds=#s15#", "13%" }, + { 18520, "INV_Sword_11", "=q3=Barbarous Blade", "=ds=#h2#, #w10#", "13%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -4513,34 +4708,34 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 19258, "INV_Misc_Ticket_Tarot_Warlord_01", "=q3=Ace of Warlords", "=ds=#e19#", "1.84%" }, + { 19258, "INV_Misc_Ticket_Tarot_Warlord_01", "=q3=Ace of Warlords", "=ds=#e19#", "7%" }, { 0,"","","" }, - { 18780, "INV_Misc_Note_06", "=q3=Top Half of Advanced Armorsmithing: Volume I", "=ds=#m8#", "6.00%" }, + { 18780, "INV_Misc_Note_06", "=q3=Top Half of Advanced Armorsmithing: Volume I", "=ds=#m8#", "9%" }, { 12727, "INV_Scroll_05", "=q3=Plans: Enchanted Thorium Breastplate", "=q1=#m4# =ds=#p2# #m14#" }, { 12618,"INV_Chest_Plate10","=q3=Enchanted Thorium Breastplate","=ds=#s5#, #a4#" }, { 0,"","","" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "100%" }, }; DMNChoRush = { - { 18490, "INV_Helmet_41", "=q3=Insightful Hood", "=ds=#s1#, #a2#", "21.46%" }, - { 18483, "INV_Wand_05", "=q3=Mana Channeling Wand", "=ds=#w12#", "19.01%" }, - { 18485, "INV_Shield_13", "=q3=Observer's Shield", "=ds=#w8#", "22.96%" }, - { 18484, "INV_Weapon_ShortBlade_04", "=q3=Cho'Rush's Blade", "=ds=#h1#, #w10#", "22.46%" }, + { 18490, "INV_Helmet_41", "=q3=Insightful Hood", "=ds=#s1#, #a2#", "25%" }, + { 18483, "INV_Wand_05", "=q3=Mana Channeling Wand", "=ds=#w12#", "25%" }, + { 18485, "INV_Shield_13", "=q3=Observer's Shield", "=ds=#w8#", "25%" }, + { 18484, "INV_Weapon_ShortBlade_04", "=q3=Cho'Rush's Blade", "=ds=#h1#, #w10#", "25%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMTome = { - { 18401,"INV_Misc_Book_11","=q4=Foror's Compendium of Dragon Slaying","=ds=#e20# =q17=#c9#=ds=, =q16=#c4#", "0.01%" }, + { 18401,"INV_Misc_Book_11","=q4=Foror's Compendium of Dragon Slaying","=ds=#e20# =q17=#c9#=ds=, =q16=#c4#", "0.2%, 10%" }, { 0,"","","" }, - { 18362, "INV_Misc_Book_08", "=q3=Holy Bologna: What the Light Won't Tell You", "=ds=#e20# =q9=#c5#", "20.76%" }, - { 18358, "INV_Misc_Book_01", "=q3=The Arcanist's Cookbook", "=ds=#e20# =q10=#c3#", "21.05%" }, - { 18360, "INV_Misc_Book_05", "=q3=Harnessing Shadows", "=ds=#e20# =q11=#c8#", "19.36%" }, - { 18356, "INV_Misc_Book_06", "=q3=Garona: A Study on Stealth and Treachery", "=ds=#e20# =q12=#c6#", "20.93%" }, - { 18364, "INV_Misc_Book_10", "=q3=The Emerald Dream", "=ds=#e20# =q13=#c1#", "21.88%" }, - { 18361, "INV_Misc_Book_02", "=q3=The Greatest Race of Hunters", "=ds=#e20# =q14=#c2#", "22.12%" }, - { 18363, "INV_Misc_Book_04", "=q3=Frost Shock and You", "=ds=#e20# =q15=#c7#", "19.89%" }, - { 18359, "INV_Misc_Book_11", "=q3=The Light and How to Swing It", "=ds=#e20# =q16=#c4#", "20.33%" }, - { 18357, "INV_Misc_Book_07", "=q3=Codex of Defense", "=ds=#e20# =q17=#c9#", "20.66%" }, + { 18362, "INV_Misc_Book_08", "=q3=Holy Bologna: What the Light Won't Tell You", "=ds=#e20# =q9=#c5#", "0.2%, 10%" }, + { 18358, "INV_Misc_Book_01", "=q3=The Arcanist's Cookbook", "=ds=#e20# =q10=#c3#", "0.2%, 10%" }, + { 18360, "INV_Misc_Book_05", "=q3=Harnessing Shadows", "=ds=#e20# =q11=#c8#", "0.2%, 10%" }, + { 18356, "INV_Misc_Book_06", "=q3=Garona: A Study on Stealth and Treachery", "=ds=#e20# =q12=#c6#", "0.2%, 10%" }, + { 18364, "INV_Misc_Book_10", "=q3=The Emerald Dream", "=ds=#e20# =q13=#c1#", "0.2%, 10%" }, + { 18361, "INV_Misc_Book_02", "=q3=The Greatest Race of Hunters", "=ds=#e20# =q14=#c2#", "0.2%, 10%" }, + { 18363, "INV_Misc_Book_04", "=q3=Frost Shock and You", "=ds=#e20# =q15=#c7#", "0.2%, 10%" }, + { 18359, "INV_Misc_Book_11", "=q3=The Light and How to Swing It", "=ds=#e20# =q16=#c4#", "0.2%, 10%" }, + { 18357, "INV_Misc_Book_07", "=q3=Codex of Defense", "=ds=#e20# =q17=#c9#", "0.2%, 10%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, @@ -4558,116 +4753,116 @@ AtlasLoot_Data["AtlasLootItems"] = { { 18466, "INV_Jewelry_Talisman_10", "=q3=Royal Seal of Eldre'Thalas", "=ds=#s14# =q17=#c9#" }, }; DMNTrash = { - { 18250, "INV_Misc_Key_11", "=q2=Gordok Shackle Key", "=ds=#e14#", "3.44%" }, + { 18250, "INV_Misc_Key_11", "=q2=Gordok Shackle Key", "=ds=#e14#", "4%, 13%, 25%" }, { 0, "", "", "" }, - { 18333,"INV_Misc_Book_04","=q2=Libram of Focus","=ds=#e20#", "2.87%" }, - { 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#", "3.16%" }, - { 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#", "3.34%" }, + { 18333,"INV_Misc_Book_04","=q2=Libram of Focus","=ds=#e20#", "1%, 2%" }, + { 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#", "1%, 2%" }, + { 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#", "1%, 2%" }, { 0, "", "", "" }, - { 18640, "INV_Ammo_Bullet_02", "=q1=Happy Fun Rock", "=ds=#m33#", "1.95%" }, + { 18640, "INV_Ammo_Bullet_02", "=q1=Happy Fun Rock", "=ds=#m33#", "2%" }, }; DMNTRIBUTERUN = { - { 18538, "INV_Axe_10", "=q4=Treant's Bane", "=ds=#h2#, #w1#", "0.52%" }, + { 18538, "INV_Axe_10", "=q4=Treant's Bane", "=ds=#h2#, #w1#", "1%" }, { 0, "", "", "" }, - { 18528, "INV_Shoulder_26", "=q3=Cyclone Spaulders", "=ds=#s3#, #a2#", "11.06%" }, - { 18495, "INV_Misc_Cape_21", "=q3=Redoubt Cloak", "=ds=#s4#", "2.96%" }, - { 18532, "INV_Chest_Cloth_29", "=q3=Mindsurge Robe", "=ds=#s5#, #a1#", "6.31%" }, - { 18530, "INV_Chest_Chain_12", "=q3=Ogre Forged Hauberk", "=ds=#s5#, #a3#", "5.88%" }, - { 18533, "INV_Bracer_14", "=q3=Gordok Bracers of Power", "=ds=#s8#, #a4#", "3.05%" }, - { 18529, "INV_Belt_18", "=q3=Elemental Plate Girdle", "=ds=#s10#, #a4# =q2=#e32#", "10.94%" }, - { 18500, "INV_Jewelry_Ring_13", "=q3=Tarnished Elven Ring", "=ds=#s13#", "10.69%" }, - { 18537, "INV_Stone_02", "=q3=Counterattack Lodestone", "=ds=#s14#", "3.48%" }, - { 18499, "INV_Shield_10", "=q3=Barrier Shield", "=ds=#w8#", "5.34%" }, - { 18531, "INV_Hammer_22", "=q3=Unyielding Maul", "=ds=#h2#, #w6#", "5.18%" }, - { 18534, "INV_Staff_32", "=q3=Rod of the Ogre Magi", "=ds=#w9#", "2.66%" }, + { 18528, "INV_Shoulder_26", "=q3=Cyclone Spaulders", "=ds=#s3#, #a2#", "33%" }, + { 18495, "INV_Misc_Cape_21", "=q3=Redoubt Cloak", "=ds=#s4#", "25%" }, + { 18532, "INV_Chest_Cloth_29", "=q3=Mindsurge Robe", "=ds=#s5#, #a1#", "23%" }, + { 18530, "INV_Chest_Chain_12", "=q3=Ogre Forged Hauberk", "=ds=#s5#, #a3#", "23%" }, + { 18533, "INV_Bracer_14", "=q3=Gordok Bracers of Power", "=ds=#s8#, #a4#", "25%" }, + { 18529, "INV_Belt_18", "=q3=Elemental Plate Girdle", "=ds=#s10#, #a4# =q2=#e32#", "33%" }, + { 18500, "INV_Jewelry_Ring_13", "=q3=Tarnished Elven Ring", "=ds=#s13#", "33%" }, + { 18537, "INV_Stone_02", "=q3=Counterattack Lodestone", "=ds=#s14#", "25%" }, + { 18499, "INV_Shield_10", "=q3=Barrier Shield", "=ds=#w8#", "23%" }, + { 18531, "INV_Hammer_22", "=q3=Unyielding Maul", "=ds=#h2#, #w6#", "23%" }, + { 18534, "INV_Staff_32", "=q3=Rod of the Ogre Magi", "=ds=#w9#", "25%" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 18479, "INV_Helmet_11", "=q2=Carrion Scorpid Helm", "=ds=#s1#, #a3#", "11.32%" }, - { 18480, "INV_Helmet_23", "=q2=Scarab Plate Helm", "=ds=#s1#, #a4#", "17.10%" }, - { 18478, "INV_Chest_Leather_06", "=q2=Hyena Hide Jerkin", "=ds=#s5#, #a2#", "12.24%" }, - { 18475, "INV_Belt_07", "=q2=Oddly Magical Belt", "=ds=#s10#, #a1#", "15.87%" }, - { 18477, "INV_Pants_14", "=q2=Shaggy Leggings", "=ds=#s11#, #a2#", "15.67%" }, - { 18476, "INV_Boots_07", "=q2=Mud Stained Boots", "=ds=#s12#, #a2#", "10.74%" }, - { 18482, "INV_Weapon_Bow_05", "=q2=Ogre Toothpick Shooter", "=ds=#w2#","15.10%" }, - { 18481, "INV_Mace_05", "=q2=Skullcracking Mace", "=ds=#h2#, #w6#","10.34%" }, - { 18655, "INV_Scroll_06", "=q2=Schematic: Major Recombobulator", "=ds=#p5# #m16#", "4.41%" }, + { 18479, "INV_Helmet_11", "=q2=Carrion Scorpid Helm", "=ds=#s1#, #a3#", "11%" }, + { 18480, "INV_Helmet_23", "=q2=Scarab Plate Helm", "=ds=#s1#, #a4#", "11%" }, + { 18478, "INV_Chest_Leather_06", "=q2=Hyena Hide Jerkin", "=ds=#s5#, #a2#", "11%" }, + { 18475, "INV_Belt_07", "=q2=Oddly Magical Belt", "=ds=#s10#, #a1#", "11%" }, + { 18477, "INV_Pants_14", "=q2=Shaggy Leggings", "=ds=#s11#, #a2#", "11%" }, + { 18476, "INV_Boots_07", "=q2=Mud Stained Boots", "=ds=#s12#, #a2#", "11%" }, + { 18482, "INV_Weapon_Bow_05", "=q2=Ogre Toothpick Shooter", "=ds=#w2#","11%" }, + { 18481, "INV_Mace_05", "=q2=Skullcracking Mace", "=ds=#h2#, #w6#","11%" }, + { 18655, "INV_Scroll_06", "=q2=Schematic: Major Recombobulator", "=ds=#p5# #m16#", "11%" }, { 18637, "INV_Misc_EngGizmos_09", "=q2=Major Recombobulator", "=ds=#s14#" }, }; DMWTendrisWarpwood = { - { 18393, "INV_Belt_34", "=q3=Warpwood Binding", "=ds=#s10#, #a3#", "19.81%" }, - { 18390, "INV_Pants_14", "=q3=Tanglemoss Leggings", "=ds=#s11#, #a2#", "22.55%" }, - { 70054, "inv_boots_plate_05", "=q3=Wyrmheart Boots", "=ds=#s12#, #a4#, Currently off the Loot Table", "6%" }, + { 18393, "INV_Belt_34", "=q3=Warpwood Binding", "=ds=#s10#, #a3#", "25%" }, + { 18390, "INV_Pants_14", "=q3=Tanglemoss Leggings", "=ds=#s11#, #a2#", "25%" }, + --{ 70054, "inv_boots_plate_05", "=q3=Wyrmheart Boots", "=ds=#s12#, #a4#, Currently off the Loot Table", "0%" }, { 0, "", "", "" }, - { 18352, "INV_Shield_18", "=q2=Petrified Bark Shield", "=ds=#w8#", "21.67%" }, - { 18353, "INV_Staff_08", "=q2=Stoneflower Staff", "=ds=#w9#", "23.46%" }, + { 18352, "INV_Shield_18", "=q2=Petrified Bark Shield", "=ds=#w8#", "25%" }, + { 18353, "INV_Staff_08", "=q2=Stoneflower Staff", "=ds=#w9#", "25%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMWIllyannaRavenoak = { - { 18383, "INV_Gauntlets_09", "=q3=Force Imbued Gauntlets", "=ds=#s9#, #a4#", "20.11%" }, - { 18386, "INV_Pants_06", "=q3=Padre's Trousers", "=ds=#s11#, #a1#", "18.79%" }, - { 70053, "inv_pants_04", "=q3=Rotworm Legplates", "=ds=#s11#, #a4#, Currently off the Loot Table", "6%" }, + { 18383, "INV_Gauntlets_09", "=q3=Force Imbued Gauntlets", "=ds=#s9#, #a4#", "25%" }, + { 18386, "INV_Pants_06", "=q3=Padre's Trousers", "=ds=#s11#, #a1#", "25%" }, + --{ 70053, "inv_pants_04", "=q3=Rotworm Legplates", "=ds=#s11#, #a4#, Currently off the Loot Table", "0%" }, { 0, "", "", "" }, - { 18349, "INV_Gauntlets_12", "=q2=Gauntlets of Accuracy", "=ds=#s9#, #a3#", "23.94%" }, - { 18347, "INV_Axe_11", "=q2=Well Balanced Axe", "=ds=#h1#, #w1#", "22.44%" }, + { 18349, "INV_Gauntlets_12", "=q2=Gauntlets of Accuracy", "=ds=#s9#, #a3#", "25%" }, + { 18347, "INV_Axe_11", "=q2=Well Balanced Axe", "=ds=#h1#, #w1#", "25%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMWMagisterKalendris = { - { 18374, "INV_Shoulder_24", "=q3=Flamescarred Shoulders", "=ds=#s3#, #a2#", "18.11%" }, - { 18397, "INV_Jewelry_Necklace_07", "=q3=Elder Magus Pendant", "=ds=#s2#", "17.46%" }, - { 18371, "INV_Battery_02", "=q3=Mindtap Talisman", "=ds=#s14#", "7.45%" }, - { 70051, "inv_gauntlets_09", "=q3=Gauntlets of Wrangling", "=ds=#s9#, #a4#, Currently off the Loot Table", "6%" }, + { 18374, "INV_Shoulder_24", "=q3=Flamescarred Shoulders", "=ds=#s3#, #a2#", "20%" }, + { 18397, "INV_Jewelry_Necklace_07", "=q3=Elder Magus Pendant", "=ds=#s2#", "20%" }, + { 18371, "INV_Battery_02", "=q3=Mindtap Talisman", "=ds=#s14#", "20%" }, + --{ 70051, "inv_gauntlets_09", "=q3=Gauntlets of Wrangling", "=ds=#s9#, #a4#, Currently off the Loot Table", "0%" }, { 0, "", "", "" }, - { 18350, "INV_Misc_Cape_18", "=q2=Amplifying Cloak", "=ds=#s4#", "21.44%" }, - { 18351, "INV_Bracer_18", "=q2=Magically Sealed Bracers", "=ds=#s8#, #a4#", "24.36%" }, + { 18350, "INV_Misc_Cape_18", "=q2=Amplifying Cloak", "=ds=#s4#", "20%" }, + { 18351, "INV_Bracer_18", "=q2=Magically Sealed Bracers", "=ds=#s8#, #a4#", "20%" }, { 0, "", "", "" }, - { 22309, "INV_Scroll_06", "=q2=Pattern: Big Bag of Enchantment", "=ds=#p8# #m14#", "22.01%" }, + { 22309, "INV_Scroll_06", "=q2=Pattern: Big Bag of Enchantment", "=ds=#p8# #m14#", "15%" }, { 22249, "INV_Misc_Bag_BigBagofEnchantments", "=q2=Big Bag of Enchantment", "=ds=#m37# #p4# #e10#" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMWTsuzee = { - { 18387, "INV_Gauntlets_16", "=q3=Brightspark Gloves", "=ds=#s9#, #a1#", "24.79%" }, + { 18387, "INV_Gauntlets_16", "=q3=Brightspark Gloves", "=ds=#s9#, #a1#", "33%" }, { 0, "", "", "" }, - { 18346, "INV_Pants_09", "=q2=Threadbare Trousers", "=ds=#s11#, #a1#", "33.94%" }, - { 18345, "INV_Jewelry_Ring_15", "=q2=Murmuring Ring", "=ds=#s13#", "30.28%" }, + { 18346, "INV_Pants_09", "=q2=Threadbare Trousers", "=ds=#s11#, #a1#", "33%" }, + { 18345, "INV_Jewelry_Ring_15", "=q2=Murmuring Ring", "=ds=#s13#", "33%" }, }; DMWImmolthar = { - { 18381, "INV_Misc_Eye_01", "=q3=Evil Eye Pendant", "=ds=#s2#", "17.78%" }, - { 18384, "INV_Shoulder_17", "=q3=Bile-etched Spaulders", "=ds=#s3#, #a4#", "14.71%" }, - { 18389, "INV_Misc_Cape_01", "=q3=Cloak of the Cosmos", "=ds=#s4#", "14.35%" }, - { 18385, "INV_Chest_Cloth_51", "=q3=Robe of Everlasting Night", "=ds=#s5#, #a1#", "15.33%" }, - { 18394, "INV_Bracer_05", "=q3=Demon Howl Wristguards", "=ds=#s8#, #a3#", "17.51%" }, - { 18377, "INV_Gauntlets_21", "=q3=Quickdraw Gloves", "=ds=#s9#, #a2#", "21.01%" }, - { 18391, "INV_Belt_26", "=q3=Eyestalk Cord", "=ds=#s10#, #a2#", "20.08%" }, - { 18379, "INV_Boots_Plate_06", "=q3=Odious Greaves", "=ds=#s12#, #a3#", "19.81%" }, - { 18370, "INV_Misc_StoneTablet_04", "=q3=Vigilance Charm", "=ds=#s14#", "6.30%" }, - { 18372, "INV_Weapon_ShortBlade_18", "=q3=Blade of the New Moon", "=ds=#h3#, #w4#", "6.99%" }, - { 70050, "inv_shoulder_11", "=q3=Shoulderplates of Misfortune", "=ds=#s3#, #a4#, Currently off the Loot table", "6%" }, - { 70055, "inv_chest_plate08", "=q3=Breastplate of Forgotten Valor", "=ds=#s5#, #a4#, Currently off the Loot table", "6%" }, + { 18381, "INV_Misc_Eye_01", "=q3=Evil Eye Pendant", "=ds=#s2#", "10%" }, + { 18384, "INV_Shoulder_17", "=q3=Bile-etched Spaulders", "=ds=#s3#, #a4#", "10%" }, + { 18389, "INV_Misc_Cape_01", "=q3=Cloak of the Cosmos", "=ds=#s4#", "10%" }, + { 18385, "INV_Chest_Cloth_51", "=q3=Robe of Everlasting Night", "=ds=#s5#, #a1#", "10%" }, + { 18394, "INV_Bracer_05", "=q3=Demon Howl Wristguards", "=ds=#s8#, #a3#", "10%" }, + { 18377, "INV_Gauntlets_21", "=q3=Quickdraw Gloves", "=ds=#s9#, #a2#", "10%" }, + { 18391, "INV_Belt_26", "=q3=Eyestalk Cord", "=ds=#s10#, #a2#", "10%" }, + { 18379, "INV_Boots_Plate_06", "=q3=Odious Greaves", "=ds=#s12#, #a3#", "10%" }, + { 18370, "INV_Misc_StoneTablet_04", "=q3=Vigilance Charm", "=ds=#s14#", "10%" }, + { 18372, "INV_Weapon_ShortBlade_18", "=q3=Blade of the New Moon", "=ds=#h3#, #w4#", "10%" }, + --{ 70050, "inv_shoulder_11", "=q3=Shoulderplates of Misfortune", "=ds=#s3#, #a4#, Currently off the Loot table", "0%" }, + --{ 70055, "inv_chest_plate08", "=q3=Breastplate of Forgotten Valor", "=ds=#s5#, #a4#, Currently off the Loot table", "0%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; DMWHelnurath = { - { 18757, "INV_Shoulder_25", "=q3=Diabolic Mantle", "=ds=#s3#, #a1#", "23.12%" }, - { 18754, "INV_Bracer_15", "=q3=Fel Hardened Bracers", "=ds=#s8#, #a4#", "19.24%" }, - { 18755, "INV_Weapon_Rifle_03", "=q3=Xorothian Firestick", "=ds=#w5#", "21.92%" }, - { 18756, "INV_Shield_17", "=q3=Dreadguard's Protector", "=ds=#w8#", "19.77%" }, - { 70052, "inv_belt_13", "=q3=Skorgrim's Lost Belt", "=ds=#s10#, #a4#, Currently off the Loot table", "6%" }, + { 18757, "INV_Shoulder_25", "=q3=Diabolic Mantle", "=ds=#s3#, #a1#", "25%" }, + { 18754, "INV_Bracer_15", "=q3=Fel Hardened Bracers", "=ds=#s8#, #a4#", "25%" }, + { 18755, "INV_Weapon_Rifle_03", "=q3=Xorothian Firestick", "=ds=#w5#", "25%" }, + { 18756, "INV_Shield_17", "=q3=Dreadguard's Protector", "=ds=#w8#", "25%" }, + --{ 70052, "inv_belt_13", "=q3=Skorgrim's Lost Belt", "=ds=#s10#, #a4#, Currently off the Loot table", "0%" }, }; DMWPrinceTortheldrin = { - { 18382, "INV_Misc_Cape_14", "=q3=Fluctuating Cloak", "=ds=#s4# =q2=#e32#", "21.84%" }, - { 18373, "INV_Chest_Leather_08", "=q3=Chestplate of Tranquility", "=ds=#s5#, #a2#", "6.32%" }, - { 18375, "INV_Bracer_07", "=q3=Bracers of the Eclipse", "=ds=#s8#, #a2#", "15.62%" }, - { 18378, "INV_Pants_03", "=q3=Silvermoon Leggings", "=ds=#s11#, #a3#", "21.20%" }, - { 18380, "INV_Pants_04", "=q3=Eldritch Reinforced Legplates", "=ds=#s11#, #a4#", "15.87%" }, - { 18395, "INV_Jewelry_Ring_11", "=q3=Emerald Flame Ring", "=ds=#s13#", "14.55%" }, - { 18388, "INV_Weapon_Crossbow_08", "=q3=Stoneshatter", "=ds=#w3#", "7.72%" }, - { 18396, "INV_Weapon_ShortBlade_22", "=q3=Mind Carver", "=ds=#h3#, #w10#", "14.62%" }, - { 18376, "INV_Mace_07", "=q3=Timeworn Mace", "=ds=#h1#, #w6#", "14.40%" }, - { 18392, "INV_Weapon_ShortBlade_05", "=q3=Distracting Dagger", "=ds=#h4#, #w4#", "14.70%" }, - { 70056, "inv_helmet_25", "=q3=Horned Helm of Ancient Kings", "=ds=#s1#, #a4#, Currently off the Loot table", "6%" }, + { 18382, "INV_Misc_Cape_14", "=q3=Fluctuating Cloak", "=ds=#s4# =q2=#e32#", "10%" }, + { 18373, "INV_Chest_Leather_08", "=q3=Chestplate of Tranquility", "=ds=#s5#, #a2#", "10%" }, + { 18375, "INV_Bracer_07", "=q3=Bracers of the Eclipse", "=ds=#s8#, #a2#", "10%" }, + { 18378, "INV_Pants_03", "=q3=Silvermoon Leggings", "=ds=#s11#, #a3#", "10%" }, + { 18380, "INV_Pants_04", "=q3=Eldritch Reinforced Legplates", "=ds=#s11#, #a4#", "10%" }, + { 18395, "INV_Jewelry_Ring_11", "=q3=Emerald Flame Ring", "=ds=#s13#", "10%" }, + { 18388, "INV_Weapon_Crossbow_08", "=q3=Stoneshatter", "=ds=#w3#", "10%" }, + { 18396, "INV_Weapon_ShortBlade_22", "=q3=Mind Carver", "=ds=#h3#, #w10#", "10%" }, + { 18376, "INV_Mace_07", "=q3=Timeworn Mace", "=ds=#h1#, #w6#", "10%" }, + { 18392, "INV_Weapon_ShortBlade_05", "=q3=Distracting Dagger", "=ds=#h4#, #w4#", "10%" }, + --{ 70056, "inv_helmet_25", "=q3=Horned Helm of Ancient Kings", "=ds=#s1#, #a4#, Currently off the Loot table", "0%" }, { 0, "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "100%" }, }; @@ -4676,18 +4871,18 @@ AtlasLoot_Data["AtlasLootItems"] = { { 18486, "INV_Chest_Cloth_04", "=q3=Mooncloth Robe", "=ds=#s5#, #a1#" }, }; DMWRevanchion = { - { 23127, "INV_Misc_Cape_02", "=q3=Cloak of Revanchion", "=ds=#s4#", "38.49%" }, - { 23129, "INV_Bracer_13", "=q3=Bracers of Mending", "=ds=#s8#, #a1#", "39.61%" }, - { 23128, "INV_Gauntlets_16", "=q3=The Shadow's Grasp", "=ds=#s9#, #a1#", "21.81%" }, + { 23127, "INV_Misc_Cape_02", "=q3=Cloak of Revanchion", "=ds=#s4#", "33%" }, + { 23129, "INV_Bracer_13", "=q3=Bracers of Mending", "=ds=#s8#, #a1#", "33%" }, + { 23128, "INV_Gauntlets_16", "=q3=The Shadow's Grasp", "=ds=#s9#, #a1#", "33%" }, }; DMWTrash = { - { 18340, "INV_Jewelry_Talisman_14", "=q3=Eidolon Talisman", "=ds=#s2#", "0.58%" }, - { 18344, "INV_Gauntlets_23", "=q3=Stonebark Gauntlets", "=ds=#s9#, #a2#", "0.47%" }, - { 18338, "INV_Wand_02", "=q3=Wand of Arcane Potency", "=ds=#w12#", "0.78%" }, + { 18340, "INV_Jewelry_Talisman_14", "=q3=Eidolon Talisman", "=ds=#s2#", "0.9-1.4%" }, + { 18344, "INV_Gauntlets_23", "=q3=Stonebark Gauntlets", "=ds=#s9#, #a2#", "0.29-0.66%" }, + { 18338, "INV_Wand_02", "=q3=Wand of Arcane Potency", "=ds=#w12#", "1.6-2%" }, { 0, "", "", "" }, - { 18333,"INV_Misc_Book_04","=q2=Libram of Focus","=ds=#e20#", "2.87%" }, - { 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#", "3.16%" }, - { 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#", "3.34%" }, + { 18333,"INV_Misc_Book_04","=q2=Libram of Focus","=ds=#e20#", "1-2%" }, + { 18334,"INV_Misc_Book_11","=q2=Libram of Protection","=ds=#e20#", "1-2%" }, + { 18332,"INV_Misc_Book_02","=q2=Libram of Rapidity","=ds=#e20#", "1-2%" }, }; DMBooks = { { 18401,"INV_Misc_Book_11","=q4=Foror's Compendium of Dragon Slaying","=ds=#e20# =q17=#c9#=ds=, =q16=#c4#" }, @@ -4719,46 +4914,52 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, }; UBRSEmberseer = { - { 16672,"INV_Gauntlets_11","=q3=Gauntlets of Elements", "=ds=#s9#, #a3# (D1, =q15=#c7#=ds=)", "14.23%" }, + { 16672,"INV_Gauntlets_11","=q3=Gauntlets of Elements", "=ds=#s9#, #a3# (D1, =q15=#c7#=ds=)", "20%" }, { 0,"","","" }, - { 12929,"INV_Jewelry_Necklace_05","=q3=Emberfury Talisman","=ds=#s2#", "15.89%" }, - { 12927,"INV_Shoulder_10","=q3=TruestrikeShoulders", "=ds=#s3#, #a2#", "17.47%" }, - { 12905,"INV_Chest_Cloth_16","=q3=Wildfire Cape", "=ds=#s4#", "15.20%" }, - { 12926,"Spell_Holy_InnerFire","=q3=Flaming Band", "=ds=#s13# =q2=#e31#", "18.52%" }, + { 12929,"INV_Jewelry_Necklace_05","=q3=Emberfury Talisman","=ds=#s2#", "20%" }, + { 12927,"INV_Shoulder_10","=q3=TruestrikeShoulders", "=ds=#s3#, #a2#", "20%" }, + { 12905,"INV_Chest_Cloth_16","=q3=Wildfire Cape", "=ds=#s4#", "20%" }, + { 12926,"Spell_Holy_InnerFire","=q3=Flaming Band", "=ds=#s13# =q2=#e31#", "20%" }, { 0,"","","" }, - { 23320,"INV_Misc_StoneTablet_11","=q3=Tablet of Flame Shock VI","=ds=#e20# =q15=#c7#", "8.23%" }, + { 23320,"INV_Misc_StoneTablet_11","=q3=Tablet of Flame Shock VI","=ds=#e20# =q15=#c7#", "8%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; UBRSRunewatcher = { - { 12604,"INV_Crown_02","=q3=Starfire Tiara", "=ds=#s1#, #a1#", "28.64%" }, - { 12930,"INV_Misc_Root_02","=q3=Briarwood Reed", "=ds=#s14#", "26.36%" }, - { 12605,"INV_Misc_Bone_ElfSkull_01","=q3=Serpentine Skuller", "=ds=#w12#", "32.95%" }, + { 12604,"INV_Crown_02","=q3=Starfire Tiara", "=ds=#s1#, #a1#", "33%" }, + { 12930,"INV_Misc_Root_02","=q3=Briarwood Reed", "=ds=#s14#", "33%" }, + { 12605,"INV_Misc_Bone_ElfSkull_01","=q3=Serpentine Skuller", "=ds=#w12#", "33%" }, }; UBRSSolakar = { - { 16695, "INV_Shoulder_02", "=q3=Devout Mantle", "=ds=#s3#, #a1# (D1, =q9=#c5#=ds=)", "12.84%" }, + { 16695, "INV_Shoulder_02", "=q3=Devout Mantle", "=ds=#s3#, #a1# (D1, =q9=#c5#=ds=)", "20%" }, { 0,"","","" }, - { 12609, "INV_Chest_Cloth_17", "=q3=Polychromatic Visionwrap", "=ds=#s5#, #a1#", "15.82%" }, - { 12603, "INV_Chest_Plate06", "=q3=Nightbrace Tunic", "=ds=#s5#, #a2#", "15.06%" }, - { 12589, "INV_Belt_11", "=q3=Dustfeather Sash", "=ds=#s10#, #a1#", "12.84%" }, - { 12606, "INV_Belt_10", "=q3=Crystallized Girdle", "=ds=#s10#, #a2#", "14.04%" }, + { 12609, "INV_Chest_Cloth_17", "=q3=Polychromatic Visionwrap", "=ds=#s5#, #a1#", "20%" }, + { 12603, "INV_Chest_Plate06", "=q3=Nightbrace Tunic", "=ds=#s5#, #a2#", "20%" }, + { 12589, "INV_Belt_11", "=q3=Dustfeather Sash", "=ds=#s10#, #a1#", "20%" }, + { 12606, "INV_Belt_10", "=q3=Crystallized Girdle", "=ds=#s10#, #a2#", "20%" }, { 0,"","","" }, - { 18657, "INV_Scroll_06", "=q2=Schematic: Hyper-Radiant Flame Reflector", "=ds=#p5# #m18#", "7.38%" }, + { 18657, "INV_Scroll_06", "=q2=Schematic: Hyper-Radiant Flame Reflector", "=ds=#p5# #m18#", "6%" }, { 18638, "INV_Misc_EngGizmos_04", "=q3=Hyper-Radiant Flame Reflector", "=ds=#s14#" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; UBRSFlame = { - { 13371, "INV_Misc_Orb_05", "=q2=Father Flame", "=ds=#s15#", "100%" }, + { 13371, "INV_Misc_Orb_05", "=q2=Father Flame", "=ds=#s15#", "0.02-0.14%" }, }; UBRSAnvilcrack = { - { 13502,"INV_Belt_23","=q3=Handcrafted Mastersmith Girdle", "=ds=#s10#, #a4#", "15.78%" }, - { 13498,"INV_Pants_04","=q3=Handcrafted Mastersmith Leggings", "=ds=#s11#, #a4#", "20.63%" }, - { 18047,"INV_Boots_02","=q3=Flame Walkers", "=ds=#s12#, #a3#", "18.05%" }, - { 18048,"INV_Hammer_06","=q3=Mastersmith's Hammer", "=ds=#h3#, #w6#", "17.26%" }, + { 13502,"INV_Belt_23","=q3=Handcrafted Mastersmith Girdle", "=ds=#s10#, #a4#", "14%" }, + { 13498,"INV_Pants_04","=q3=Handcrafted Mastersmith Leggings", "=ds=#s11#, #a4#", "14%" }, + { 18047,"INV_Boots_02","=q3=Flame Walkers", "=ds=#s12#, #a3#", "14%" }, + { 18048,"INV_Hammer_06","=q3=Mastersmith's Hammer", "=ds=#h3#, #w6#", "14%" }, { 0,"","","" }, - { 12834,"INV_Scroll_03","=q3=Plans: Arcanite Champion", "=ds=#p2# #m14#", "4.75%" }, + { 12834,"INV_Scroll_03","=q3=Plans: Arcanite Champion", "=ds=#p2# #m14#", "14%" }, { 12790,"INV_Sword_39", "=q3=Arcanite Champion", "=ds=#h2#, #w10#" }, - { 12837,"INV_Scroll_03","=q3=Plans: Masterwork Stormhammer", "=ds=#p2# #m14#", "4.80%" }, + { 12837,"INV_Scroll_03","=q3=Plans: Masterwork Stormhammer", "=ds=#p2# #m14#", "14%" }, { 12794,"INV_Hammer_04", "=q3=Masterwork Stormhammer", "=ds=#h3#, #w6#" }, + { 12728,"INV_Scroll_03","=q4=Plans: Invulnerable Mail", "=ds=#p2# #m14#", "14%" }, + { 12794,"inv_chest_chain_07", "=q4=Invulnerable Mail", "=ds=#s5#, #a3#" }, { 0,"","","" }, - { 18779,"INV_Misc_Note_06","=q3=Bottom Half of Advanced Armorsmithing: Volume I","=ds=#m8#", "17.08%" }, + { 18779,"INV_Misc_Note_06","=q3=Bottom Half of Advanced Armorsmithing: Volume I","=ds=#m8#", "1" }, { 12727, "INV_Scroll_05", "=q3=Plans: Enchanted Thorium Breastplate", "=q1=#m4# =ds=#p2# #m14#" }, { 12618, "INV_Chest_Plate10", "=q3=Enchanted Thorium Breastplate", "=ds=#s5#, #a4#" }, { 0, "", "", "" }, @@ -4769,124 +4970,132 @@ AtlasLoot_Data["AtlasLootItems"] = { { 12628, "INV_Chest_Plate06", "=q3=Demon Forged Breastplate", "=ds=#s5#, #a4#" }, }; UBRSRend = { - { 12590,"INV_Weapon_ShortBlade_25","=q4=Felstriker","=ds=#h1#, #w4#", "1.06%" }, + { 12590,"INV_Weapon_ShortBlade_25","=q4=Felstriker","=ds=#h1#, #w4#", "1%" }, { 0,"","","" }, - { 16733,"INV_Shoulder_30","=q3=Spaulders of Valor","=ds=#s3#, #a4# (D1, =q17=#c9#=ds=)", "13.39%" }, + { 16733,"INV_Shoulder_30","=q3=Spaulders of Valor","=ds=#s3#, #a4# (D1, =q17=#c9#=ds=)", "17%" }, { 0,"","","" }, - { 12587,"INV_Helmet_46","=q3=Eye of Rend","=ds=#s1#, #a2#", "14.50%" }, - { 12588,"INV_Shoulder_11","=q3=Bonespike Shoulder","=ds=#s3#, #a3#", "0.85%" }, - { 12936,"INV_Bracer_17","=q3=Battleborn Armbraces","=ds=#s8#, #a4#", "16.96%" }, - { 18104,"INV_Belt_03","=q3=Feralsurge Girdle","=ds=#s10#, #a3#", "15.30%" }, - { 12935,"INV_Pants_04","=q3=Warmaster Legguards","=ds=#s11#, #a4#", "15.05%" }, - { 18102,"INV_Boots_05","=q3=Dragonrider Boots","=ds=#s12#, #a1#", "14.35%" }, - { 22247,"INV_Boots_Cloth_03","=q3=Faith Healer's Boots","=ds=#s12#, #a1#", "12.71%" }, - { 18103,"INV_Jewelry_Ring_16","=q3=Band of Rumination","=ds=#s13#", "15.38%" }, - { 12940,"INV_Sword_43","=q3=Dal'Rend's Sacred Charge","=ds=#h3#, #w10#", "6.79%" }, - { 12939,"INV_Sword_40","=q3=Dal'Rend's Tribal Guardian","=ds=#h4#, #w10#", "7.61%" }, - { 12583,"INV_Weapon_Halberd_04","=q3=Blackhand Doomsaw","=ds=#w7# ", "7.44%" }, + { 12587,"INV_Helmet_46","=q3=Eye of Rend","=ds=#s1#, #a2#", "23%" }, + { 12588,"INV_Shoulder_11","=q3=Bonespike Shoulder","=ds=#s3#, #a3#", "17%" }, + { 12936,"INV_Bracer_17","=q3=Battleborn Armbraces","=ds=#s8#, #a4#", "17%" }, + { 18104,"INV_Belt_03","=q3=Feralsurge Girdle","=ds=#s10#, #a3#", "17%" }, + { 12935,"INV_Pants_04","=q3=Warmaster Legguards","=ds=#s11#, #a4#", "23%" }, + { 18102,"INV_Boots_05","=q3=Dragonrider Boots","=ds=#s12#, #a1#", "23%" }, + { 22247,"INV_Boots_Cloth_03","=q3=Faith Healer's Boots","=ds=#s12#, #a1#", "17%" }, + { 18103,"INV_Jewelry_Ring_16","=q3=Band of Rumination","=ds=#s13#", "23%" }, + { 12940,"INV_Sword_43","=q3=Dal'Rend's Sacred Charge","=ds=#h3#, #w10#", "8%" }, + { 12939,"INV_Sword_40","=q3=Dal'Rend's Tribal Guardian","=ds=#h4#, #w10#", "8%" }, + { 12583,"INV_Weapon_Halberd_04","=q3=Blackhand Doomsaw","=ds=#w7# ", "8%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; UBRSGyth = { - { 12871,"INV_Shield_21","=q4=Chromatic Carapace","=ds=#m3#", "2.64%" }, + { 12871,"INV_Shield_21","=q4=Chromatic Carapace","=ds=#m3#", "4%" }, { 0,"","","" }, - { 16669,"INV_Shoulder_29","=q3=Pauldrons of Elements","=ds=#s3#, #a3# (D1, =q15=#c7#=ds=)", "14.77%" }, + { 16669,"INV_Shoulder_29","=q3=Pauldrons of Elements","=ds=#s3#, #a3# (D1, =q15=#c7#=ds=)", "20%" }, { 0,"","","" }, - { 22225,"INV_Helmet_27","=q3=Dragonskin Cowl","=ds=#s1#, #a1# =q2=#e32#", "11.85%" }, - { 12960,"INV_Helmet_24","=q3=Tribal War Feathers","=ds=#s1#, #a2# =q2=#e32#", "15.24%" }, - { 12953,"INV_Helmet_39","=q3=Dragoneye Coif","=ds=#s1#, #a3# =q2=#e32#", "15.99%" }, - { 12952,"INV_Helmet_23","=q3=Gyth's Skull","=ds=#s1#, #a4# =q2=#e32#", "12.43%" }, + { 22225,"INV_Helmet_27","=q3=Dragonskin Cowl","=ds=#s1#, #a1# =q2=#e32#", "20%" }, + { 12960,"INV_Helmet_24","=q3=Tribal War Feathers","=ds=#s1#, #a2# =q2=#e32#", "20%" }, + { 12953,"INV_Helmet_39","=q3=Dragoneye Coif","=ds=#s1#, #a3# =q2=#e32#", "20%" }, + { 12952,"INV_Helmet_23","=q3=Gyth's Skull","=ds=#s1#, #a4# =q2=#e32#", "20%" }, { 0,"","","" }, - { 13522,"INV_Scroll_06","=q2=Recipe: Flask of Chromatic Resistance", "=ds=#p1# #m14#", "2.95%" }, + { 13522,"INV_Scroll_06","=q2=Recipe: Flask of Chromatic Resistance", "=ds=#p1# #m14#", "3%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; UBRSBeast = { - { 12731, "INV_Misc_MonsterScales_15", "=q4=Pristine Hide of the Beast", "=ds=#m33#", "0.77%" }, + { 12731, "INV_Misc_MonsterScales_15", "=q4=Pristine Hide of the Beast", "=ds=#m33#", "1.896%" }, { 0,"","","" }, - { 16729,"INV_Shoulder_10","=q3=Lightforge Spaulders", "=ds=#s3#, #a4# (D1, =q16=#c4#=ds=)", "13.62%" }, + { 16729,"INV_Shoulder_10","=q3=Lightforge Spaulders", "=ds=#s3#, #a4# (D1, =q16=#c4#=ds=)", "10%" }, { 0,"","","" }, - { 12967,"INV_Misc_Cape_05","=q3=Bloodmoon Cloak", "=ds=#s4#", "18.30%" }, - { 12968,"INV_Misc_Cape_18","=q3=Frostweaver Cape", "=ds=#s4#", "14.47%" }, - { 12966,"INV_Bracer_07","=q3=Blackmist Armguards", "=ds=#s8#, #a2#", "16.06%" }, - { 12965,"INV_Pants_06","=q3=Spiritshroud Leggings", "=ds=#s11#, #a1#", "13.16%" }, - { 12963,"INV_Pants_06","=q3=Blademaster Leggings", "=ds=#s11#, #a2#", "12.74%" }, - { 12964,"INV_Pants_04","=q3=Tristam Legguards", "=ds=#s11#, #a3#", "18.16%" }, - { 22311,"INV_Boots_Cloth_05","=q3=Ironweave Boots", "=ds=#s12#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "12.31%" }, - { 12709,"INV_Sword_33","=q3=Finkle's Skinner", "=ds=#h3#, #w4#", "6.95%" }, - { 12969,"INV_Hammer_17","=q3=Seeping Willow", "=ds=#h2#, #w6#", "11.49%" }, + { 12967,"INV_Misc_Cape_05","=q3=Bloodmoon Cloak", "=ds=#s4#", "10%" }, + { 12968,"INV_Misc_Cape_18","=q3=Frostweaver Cape", "=ds=#s4#", "10%" }, + { 12966,"INV_Bracer_07","=q3=Blackmist Armguards", "=ds=#s8#, #a2#", "10%" }, + { 12965,"INV_Pants_06","=q3=Spiritshroud Leggings", "=ds=#s11#, #a1#", "10%" }, + { 12963,"INV_Pants_06","=q3=Blademaster Leggings", "=ds=#s11#, #a2#", "10%" }, + { 12964,"INV_Pants_04","=q3=Tristam Legguards", "=ds=#s11#, #a3#", "10%" }, + { 22311,"INV_Boots_Cloth_05","=q3=Ironweave Boots", "=ds=#s12#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "10%" }, + { 12709,"INV_Sword_33","=q3=Finkle's Skinner", "=ds=#h3#, #w4#", "10%" }, + { 12969,"INV_Hammer_17","=q3=Seeping Willow", "=ds=#h2#, #w6#", "10%" }, { 0,"","","" }, - { 24101, "INV_Misc_Book_02", "=q3=Book of Ferocious Bite V", "=ds=#e20# =q13=#c1#", "1.44%" }, - { 19227, "INV_Misc_Ticket_Tarot_Beasts_01", "=q3=Ace of Beasts", "=ds=#e19#", "4.53%" }, + { 24101, "INV_Misc_Book_02", "=q3=Book of Ferocious Bite V", "=ds=#e20# =q13=#c1#", "13%" }, + { 19227, "INV_Misc_Ticket_Tarot_Beasts_01", "=q3=Ace of Beasts", "=ds=#e19#", "5%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; UBRSValthalak = { { 0, "INV_Misc_Bag_09", "=q6=#j3#", "=q5=Lord Valthalak" }, - { 22302, "INV_Helmet_30", "=q3=Ironweave Cowl", "=ds=#s1#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "27.72%" }, - { 22340, "INV_Jewelry_Necklace_04", "=q3=Pendant of Celerity", "=ds=#s2#", "17.66%" }, - { 22337, "INV_Misc_Cape_19", "=q3=Shroud of Domination", "=ds=#s4#", "23.37%" }, - { 22343, "INV_Gauntlets_11", "=q3=Handguards of Savagery", "=ds=#s9#, #a3#", "20.11%" }, - { 22342, "INV_Pants_09", "=q3=Leggings of Torment", "=ds=#s11#, #a1#", "23.10%" }, - { 22339, "INV_Jewelry_Ring_35", "=q3=Rune Band of Wizardry", "=ds=#s13#", "15.49%" }, - { 22336, "INV_Shield_02", "=q3=Draconian Aegis of the Legion", "=ds=#w8#", "17.66%" }, - { 22335, "INV_Staff_07", "=q3=Lord Valthalak's Staff of Command", "=ds=#w9#", "14.67%" }, + { 22302, "INV_Helmet_30", "=q3=Ironweave Cowl", "=ds=#s1#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "25%" }, + { 22340, "INV_Jewelry_Necklace_04", "=q3=Pendant of Celerity", "=ds=#s2#", "25%" }, + { 22337, "INV_Misc_Cape_19", "=q3=Shroud of Domination", "=ds=#s4#", "25%" }, + { 22343, "INV_Gauntlets_11", "=q3=Handguards of Savagery", "=ds=#s9#, #a3#", "25%" }, + { 22342, "INV_Pants_09", "=q3=Leggings of Torment", "=ds=#s11#, #a1#", "25%" }, + { 22339, "INV_Jewelry_Ring_35", "=q3=Rune Band of Wizardry", "=ds=#s13#", "25%" }, + { 22336, "INV_Shield_02", "=q3=Draconian Aegis of the Legion", "=ds=#w8#", "25%" }, + { 22335, "INV_Staff_07", "=q3=Lord Valthalak's Staff of Command", "=ds=#w9#", "25%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; UBRSDrakkisath = { - { 12592,"INV_Sword_29","=q4=Blackblade of Shahram", "=ds=#h2#, #w10#", "1.08%" }, + { 12592,"INV_Sword_29","=q4=Blackblade of Shahram", "=ds=#h2#, #w10#", "1%" }, { 0,"","","" }, - { 22267,"INV_Helmet_62","=q3=Spellweaver's Turban", "=ds=#s1#, #a1#", "15.50%" }, - { 13141,"INV_Jewelry_Necklace_09","=q3=Tooth of Gnarr", "=ds=#s2#", "16.83%" }, - { 22269,"INV_Misc_Cape_20","=q3=Shadow Prowler's Cloak", "=ds=#s4#", "10.61%" }, - { 13142,"INV_Belt_33","=q3=Brigam Girdle", "=ds=#s10#, #a4#", "16.40%" }, - { 13098,"INV_Jewelry_Ring_18","=q3=Painweaver Band", "=ds=#s13#", "13.51%" }, - { 22268,"INV_Jewelry_Talisman_09","=q3=Draconic Infused Emblem", "=ds=#s14#", "4.13%" }, - { 22253,"INV_Misc_Book_06","=q3=Tome of the Lost", "=ds=#s15#", "16.05%" }, - { 12602,"INV_Shield_20","=q3=Draconian Deflector", "=ds=#w8#", "14.52%" }, + { 22267,"INV_Helmet_62","=q3=Spellweaver's Turban", "=ds=#s1#, #a1#", "25%" }, + { 13141,"INV_Jewelry_Necklace_09","=q3=Tooth of Gnarr", "=ds=#s2#", "25%" }, + { 22269,"INV_Misc_Cape_20","=q3=Shadow Prowler's Cloak", "=ds=#s4#", "25%" }, + { 13142,"INV_Belt_33","=q3=Brigam Girdle", "=ds=#s10#, #a4#", "25%" }, + { 13098,"INV_Jewelry_Ring_18","=q3=Painweaver Band", "=ds=#s13#", "25%" }, + { 22268,"INV_Jewelry_Talisman_09","=q3=Draconic Infused Emblem", "=ds=#s14#", "25%" }, + { 22253,"INV_Misc_Book_06","=q3=Tome of the Lost", "=ds=#s15#", "25%" }, + { 12602,"INV_Shield_20","=q3=Draconian Deflector", "=ds=#w8#", "25%" }, { 0,"","","" }, - { 15730,"INV_Scroll_03","=q3=Pattern: Red Dragonscale Breastplate","=ds=#p9# #p7# #m14#", "3.58%" }, + { 15730,"INV_Scroll_03","=q3=Pattern: Red Dragonscale Breastplate","=ds=#p9# #p7# #m14#", "4%" }, { 15047,"INV_Chest_Chain_06","=q3=Red Dragonscale Breastplate","=ds=#s5#, #a3#" }, { 0,"","","" }, - { 13519,"INV_Scroll_06","=q2=Recipe: Flask of the Titans", "=ds=#p1# #m14#", "1.72%" }, - { 16690,"INV_Chest_Cloth_11","=q3=Devout Robe", "=ds=#s5#, #a1# (D1, =q9=#c5#=ds=)", "6.20%" }, - { 16688,"INV_Chest_Cloth_25","=q3=Magister's Robes", "=ds=#s5#, #a1# (D1, =q10=#c3#=ds=)", "7.24%" }, - { 16700,"INV_Chest_Cloth_49","=q3=Dreadmist Robe", "=ds=#s5#, #a1# (D1, =q11=#c8#=ds=)", "8.04%" }, - { 16721,"INV_Chest_Leather_07","=q3=Shadowcraft Tunic", "=ds=#s5#, #a2# (D1, =q12=#c6#=ds=)", "6.09%" }, - { 16706,"INV_Chest_Plate06","=q3=Wildheart Vest", "=ds=#s5#, #a2# (D1, =q13=#c1#=ds=)", "7.36%" }, - { 16674,"INV_Chest_Chain_03","=q3=Beaststalker's Tunic", "=ds=#s5#, #a3# (D1, =q14=#c2#=ds=)", "6.81%" }, - { 16666,"INV_Chest_Chain_11","=q3=Vest of Elements", "=ds=#s5#, #a3# (D1, =q15=#c7#=ds=)", "3.03%" }, - { 16726,"INV_Chest_Plate03","=q3=Lightforge Breastplate","=ds=#s5#, #a4# (D1, =q16=#c4#=ds=)", "3.76%" }, - { 16730,"INV_Chest_Plate03","=q3=Breastplate of Valor", "=ds=#s5#, #a4# (D1, =q17=#c9#=ds=)", "5.83%" }, + { 13519,"INV_Scroll_06","=q2=Recipe: Flask of the Titans", "=ds=#p1# #m14#", "3%" }, + { 16690,"INV_Chest_Cloth_11","=q3=Devout Robe", "=ds=#s5#, #a1# (D1, =q9=#c5#=ds=)", "11%" }, + { 16688,"INV_Chest_Cloth_25","=q3=Magister's Robes", "=ds=#s5#, #a1# (D1, =q10=#c3#=ds=)", "11%" }, + { 16700,"INV_Chest_Cloth_49","=q3=Dreadmist Robe", "=ds=#s5#, #a1# (D1, =q11=#c8#=ds=)", "11%" }, + { 16721,"INV_Chest_Leather_07","=q3=Shadowcraft Tunic", "=ds=#s5#, #a2# (D1, =q12=#c6#=ds=)", "11%" }, + { 16706,"INV_Chest_Plate06","=q3=Wildheart Vest", "=ds=#s5#, #a2# (D1, =q13=#c1#=ds=)", "11%" }, + { 16674,"INV_Chest_Chain_03","=q3=Beaststalker's Tunic", "=ds=#s5#, #a3# (D1, =q14=#c2#=ds=)", "11%" }, + { 16666,"INV_Chest_Chain_11","=q3=Vest of Elements", "=ds=#s5#, #a3# (D1, =q15=#c7#=ds=)", "11%" }, + { 16726,"INV_Chest_Plate03","=q3=Lightforge Breastplate","=ds=#s5#, #a4# (D1, =q16=#c4#=ds=)", "11%" }, + { 16730,"INV_Chest_Plate03","=q3=Breastplate of Valor", "=ds=#s5#, #a4# (D1, =q17=#c9#=ds=)", "11%" }, { 0, "", "", "", "" }, - { 13090, "", "=q3=Breastplate of the Chosen", "=ds=#s5#, #a3#", "10%" }, + { 13090, "INV_Chest_Chain_16", "=q3=Breastplate of the Chosen", "=ds=#s5#, #a3#", "10%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, Quantity of 3", "100%" }, }; UBRSTrash = { - { 24102, "INV_Misc_Book_14", "=q3=Manual of Eviscerate IX", "=ds=#e20# =q12=#c6# =q7=#x60#", "0.94%" }, - { 13260, "INV_Boots_01", "=q3=Wind Dancer Boots", "=ds=#s12#, #a3#", "0.01%" }, + { 24102, "INV_Misc_Book_14", "=q3=Manual of Eviscerate IX", "=ds=#e20# =q12=#c6# =q7=#x60#", "10%" }, + { 13260, "INV_Boots_01", "=q3=Wind Dancer Boots", "=ds=#s12#, #a3#", "0.02-0.08%" }, { 0,"","","" }, - { 16696, "INV_Belt_10", "=q3=Devout Belt", "=ds=#s10#, #a1# (D1, =q9=#c5#=ds=)" }, - { 16683,"INV_Jewelry_Ring_23","=q3=Magister's Bindings","=ds=#s8#, #a1# (D1, =q10=#c3#=ds=)" }, - { 16703, "INV_Bracer_13", "=q3=Dreadmist Bracers", "=ds=#s8#, #a1# (D1, =q11=#c8#=ds=)" }, - { 16713, "INV_Belt_03", "=q3=Shadowcraft Belt", "=ds=#s10#, #a2# (D1, =q12=#c6#=ds=)" }, - { 16681,"INV_Bracer_17","=q3=Beaststalker's Bindings","=ds=#s8#, #a3# (D1, =q14=#c2#=ds=)" }, - { 16680,"INV_Belt_28","=q3=Beaststalker's Belt","=ds=#s10#, #a3# (D1, =q14=#c2#=ds=)" }, - { 16673, "INV_Belt_16", "=q3=Cord of Elements", "=ds=#s10#, #a3# (D1, =q15=#c7#=ds=)" }, - { 16735, "INV_Bracer_18", "=q3=Bracers of Valor", "=ds=#s8#, #a4# (D1, =q17=#c9#=ds=)" }, + { 16696, "INV_Belt_10", "=q3=Devout Belt", "=ds=#s10#, #a1# (D1, =q9=#c5#=ds=)", "0.5-4%" }, + { 16683, "INV_Jewelry_Ring_23","=q3=Magister's Bindings","=ds=#s8#, #a1# (D1, =q10=#c3#=ds=)", "0.75-2%" }, + { 16703, "INV_Bracer_13", "=q3=Dreadmist Bracers", "=ds=#s8#, #a1# (D1, =q11=#c8#=ds=)", "1-4%" }, + { 16713, "INV_Belt_03", "=q3=Shadowcraft Belt", "=ds=#s10#, #a2# (D1, =q12=#c6#=ds=)", "0.75-3%" }, + { 16681,"INV_Bracer_17","=q3=Beaststalker's Bindings","=ds=#s8#, #a3# (D1, =q14=#c2#=ds=)", "1.5-2%" }, + { 16680,"INV_Belt_28","=q3=Beaststalker's Belt","=ds=#s10#, #a3# (D1, =q14=#c2#=ds=)", "0.75-2%" }, + { 16673, "INV_Belt_16", "=q3=Cord of Elements", "=ds=#s10#, #a3# (D1, =q15=#c7#=ds=)", "1-3%" }, + { 16735, "INV_Bracer_18", "=q3=Bracers of Valor", "=ds=#s8#, #a4# (D1, =q17=#c9#=ds=)", "0.75-3%" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, { 0,"","","" }, - { 16247, "INV_Misc_Note_01", "=q2=Formula: Enchant 2H Weapon - Superior Impact", "=ds=#p4# #m15# =q7=#x59#", "1.54%" }, + { 16247, "INV_Misc_Note_01", "=q2=Formula: Enchant 2H Weapon - Superior Impact", "=ds=#p4# #m15# =q7=#x59#", "3%" }, }; STRATSkull = { - { 13395, "INV_Gauntlets_27", "=q3=Skul's Fingerbone Claws", "=ds=#s9#, #a2#", "36.52%" }, - { 13394, "INV_Chest_Chain_15", "=q3=Skul's Cold Embrace", "=ds=#s5#, #a4#", "24.16%" }, - { 13396, "INV_Misc_Bone_ElfSkull_01", "=q3=Skul's Ghastly Touch", "=ds=#w12#", "16.85%" }, - { 70060, "inv_pants_04", "=q3=Greaves of Servitude", "=ds=#s11#, #a4#, Currently off the Loot Table", "6%" }, + { 13395, "INV_Gauntlets_27", "=q3=Skul's Fingerbone Claws", "=ds=#s9#, #a2#", "33%" }, + { 13394, "INV_Chest_Chain_15", "=q3=Skul's Cold Embrace", "=ds=#s5#, #a4#", "33%" }, + { 13396, "INV_Misc_Bone_ElfSkull_01", "=q3=Skul's Ghastly Touch", "=ds=#w12#", "33%" }, + --{ 70060, "inv_pants_04", "=q3=Greaves of Servitude", "=ds=#s11#, #a4#, Currently off the Loot Table", "0%" }, }; STRATStratholmeCourier={ - { 13303, "INV_Misc_Key_03", "=q1=Crusaders' Square Postbox Key", "=ds=#e14#", "43.46%" }, - { 13305,"INV_Misc_Key_03", "=q1=Elders' Square Postbox Key", "=ds=#e14#", "36.87%" }, - { 13304, "INV_Misc_Key_03", "=q1=Festival Lane Postbox Key", "=ds=#e14#", "45.19%" }, - { 13307, "INV_Misc_Key_03", "=q1=Fras Siabi's Postbox Key", "=ds=#e14#", "42.88%" }, - { 13306, "INV_Misc_Key_03", "=q1=King's Square Postbox Key", "=ds=#e14#", "37.69%" }, - { 13302, "INV_Misc_Key_03", "=q1=Market Row Postbox Key", "=ds=#e14#", "35.58%" }, + { 13303, "INV_Misc_Key_03", "=q1=Crusaders' Square Postbox Key", "=ds=#e14#", "50%" }, + { 13305,"INV_Misc_Key_03", "=q1=Elders' Square Postbox Key", "=ds=#e14#", "50%" }, + { 13304, "INV_Misc_Key_03", "=q1=Festival Lane Postbox Key", "=ds=#e14#", "50%" }, + { 13307, "INV_Misc_Key_03", "=q1=Fras Siabi's Postbox Key", "=ds=#e14#", "50%" }, + { 13306, "INV_Misc_Key_03", "=q1=King's Square Postbox Key", "=ds=#e14#", "50%" }, + { 13302, "INV_Misc_Key_03", "=q1=Market Row Postbox Key", "=ds=#e14#", "50%" }, }; STRATFrasSiabi = { { 13171, "Spell_Fire_SearingTotem", "=q2=Smokey's Lighter", "=q1=#m4# =ds=#s14#" }, @@ -4895,41 +5104,46 @@ AtlasLoot_Data["AtlasLootItems"] = { { 22736, "INV_Sword_61", "=q5=Andonisus, Reaper of Souls", "=ds=#h3#, #w10#", "100%" }, }; STRATHearthsingerForresten = { - { 16682, "INV_Boots_02", "=q3=Magister's Boots", "=ds=#s12#, #a1# (D1, =q10=#c3#=ds=)", "10.86%" }, + { 16682, "INV_Boots_02", "=q3=Magister's Boots", "=ds=#s12#, #a1# (D1, =q10=#c3#=ds=)", "20%" }, { 0,"","","" }, - { 13378, "INV_Chest_Cloth_38", "=q3=Songbird Blouse", "=ds=#s5#, #a2#", "15.31%" }, - { 13384, "INV_Belt_30", "=q3=Rainbow Girdle", "=ds=#s10#, #a4#", "19.21%" }, - { 13383, "INV_Pants_14", "=q3=Woollies of the Prancing Minstrel", "=ds=#s11#, #a3#", "18.42%" }, - { 13379, "INV_Misc_Flute_01", "=q3=Piccolo of the Flaming Fire", "=ds=#s14#", "15.13%" }, + { 13378, "INV_Chest_Cloth_38", "=q3=Songbird Blouse", "=ds=#s5#, #a2#", "20%" }, + { 13384, "INV_Belt_30", "=q3=Rainbow Girdle", "=ds=#s10#, #a4#", "20%" }, + { 13383, "INV_Pants_14", "=q3=Woollies of the Prancing Minstrel", "=ds=#s11#, #a3#", "20%" }, + { 13379, "INV_Misc_Flute_01", "=q3=Piccolo of the Flaming Fire", "=ds=#s14#", "20%" }, }; STRATTheUnforgiven = { - { 16717, "INV_Gauntlets_17", "=q3=Wildheart Gloves", "=ds=#s9#, #a2# (D1, =q13=#c1#=ds=)", "12.61%" }, + { 16717, "INV_Gauntlets_17", "=q3=Wildheart Gloves", "=ds=#s9#, #a2# (D1, =q13=#c1#=ds=)", "20%" }, { 0,"","","" }, - { 13404, "INV_Misc_Bandana_01", "=q3=Mask of the Unforgiven", "=ds=#s1#, #a2#", "14.96%" }, - { 13405, "INV_Shoulder_25", "=q3=Wailing Nightbane Pauldrons", "=ds=#s3#, #a4#", "12.10%" }, - { 13409, "INV_Bracer_13", "=q3=Tearfall Bracers", "=ds=#s8#, #a1# =q2=#e31#", "14.62%" }, - { 13408, "INV_Weapon_Halberd_05", "=q3=Soul Breaker", "=ds=#h3#, #w1#", "19.33%" }, - { 70064, "inv_shoulder_11", "=q3=Epaulets of Courage", "=ds=#s3#, #a4#, Currently off the Loot Table", "6%" }, + { 13404, "INV_Misc_Bandana_01", "=q3=Mask of the Unforgiven", "=ds=#s1#, #a2#", "20%" }, + { 13405, "INV_Shoulder_25", "=q3=Wailing Nightbane Pauldrons", "=ds=#s3#, #a4#", "20%" }, + { 13409, "INV_Bracer_13", "=q3=Tearfall Bracers", "=ds=#s8#, #a1# =q2=#e31#", "20%" }, + { 13408, "INV_Weapon_Halberd_05", "=q3=Soul Breaker", "=ds=#h3#, #w1#", "20%" }, + --{ 70064, "inv_shoulder_11", "=q3=Epaulets of Courage", "=ds=#s3#, #a4#, Currently off the Loot Table", "0%" }, + { 0, "", "", "" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATTimmytheCruel = { - { 16724, "INV_Gauntlets_19", "=q3=Lightforge Gauntlets", "=ds=#s9#, #a4# (D1, =q16=#c4#=ds=)", "10.42%" }, + { 16724, "INV_Gauntlets_19", "=q3=Lightforge Gauntlets", "=ds=#s9#, #a4# (D1, =q16=#c4#=ds=)", "20%" }, { 0,"","","" }, - { 13400, "INV_Bracer_17", "=q3=Vambraces of the Sadist", "=ds=#s8#, #a4#", "14.02%" }, - { 13403, "INV_Belt_02", "=q3=Grimgore Noose", "=ds=#s10#, #a1#", "16.48%" }, - { 13402, "INV_Boots_01", "=q3=Timmy's Galoshes", "=ds=#s12#, #a3#", "16.74%" }, - { 13401, "INV_Misc_Bone_ElfSkull_01", "=q3=The Cruel Hand of Timmy", "=ds=#h1#, #w6#", "16.87%" }, + { 13400, "INV_Bracer_17", "=q3=Vambraces of the Sadist", "=ds=#s8#, #a4#", "20%" }, + { 13403, "INV_Belt_02", "=q3=Grimgore Noose", "=ds=#s10#, #a1#", "20%" }, + { 13402, "INV_Boots_01", "=q3=Timmy's Galoshes", "=ds=#s12#, #a3#", "20%" }, + { 13401, "INV_Misc_Bone_ElfSkull_01", "=q3=The Cruel Hand of Timmy", "=ds=#h1#, #w6#", "20%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATMalor = { - { 81016, "inv_jewelry_necklace_15", "=q3=Bleeding Heart Talisman", "", "11%" }, - { 81017, "inv_belt_13", "=q3=Girdle of Fading Hope", "", "11%" }, - { 81018, "inv_sword_07", "=q3=Crimson Spellblade", "", "11%" }, - { 81019, "inv_gauntlets_26", "=q3=Gauntlets of the Myrimidon", "", "11%" }, - { 81122, "inv_misc_cape_18", "=q3=Bloodfallen Cloak", "", "11%" }, - { 81123, "inv_pants_mail_09", "=q3=Crimson Defender's Leggings", "", "11%" }, - { 81124, "inv_helmet_19", "=q3=Helmet of the Scarlet Avenger", "", "11%" }, - { 81125, "inv_misc_orb_03", "=q3=Inquisitor's Orb", "", "11%" }, + { 81016, "inv_jewelry_necklace_15", "=q3=Bleeding Heart Talisman", "=ds=#s2#", "10%" }, + { 81017, "inv_belt_13", "=q3=Girdle of Fading Hope", "=ds=#a1#, #s10#", "10%" }, + { 81018, "inv_sword_07", "=q3=Crimson Spellblade", "=ds=#h3#, #w10#", "10%" }, + { 81019, "inv_gauntlets_26", "=q3=Gauntlets of the Myrimidon", "=ds=#a3#, #s9#", "10%" }, + { 81122, "inv_misc_cape_18", "=q3=Bloodfallen Cloak", "=ds=#s4#", "10%" }, + { 81123, "inv_pants_mail_09", "=q3=Crimson Defender's Leggings", "=ds=#a4#, #s11#", "10%" }, + { 81124, "inv_helmet_19", "=q3=Helmet of the Scarlet Avenger", "=ds=#a4#, #s1#", "10%" }, + { 81125, "inv_misc_orb_03", "=q3=Inquisitor's Orb", "=ds=#h4#", "10%" }, + { 81131, "inv_helmet_19", "=q3=Helmet of the Scarlet Avenger", "=ds=#a4#, #s1#", "10%" }, + { 0, "", "", "", "" }, + { 83575, "inv_misc_book_09", "=q3=Codex of Smite IX", "=ds=#e20#", "10%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; @@ -4938,12 +5152,12 @@ AtlasLoot_Data["AtlasLootItems"] = { { 12845, "INV_Jewelry_Necklace_08", "=q1=Medallion of Faith", "=ds=#m3#", "100%" }, }; STRATBalzaphon ={ - { 23125, "INV_Belt_18", "=q3=Chains of the Lich", "=ds=#s2#", "19.89%" }, - { 23126, "INV_Belt_13", "=q3=Waistband of Balzaphon", "=ds=#s10#, #a1#", "27.38%" }, - { 23124, "INV_Staff_07", "=q3=Staff of Balzaphon", "=ds=#w9#", "24.74%" }, + { 23125, "INV_Belt_18", "=q3=Chains of the Lich", "=ds=#s2#", "33%" }, + { 23126, "INV_Belt_13", "=q3=Waistband of Balzaphon", "=ds=#s10#, #a1#", "33%" }, + { 23124, "INV_Staff_07", "=q3=Staff of Balzaphon", "=ds=#w9#", "33%" }, }; STRATCrimsonHammersmith = { - { 18781, "INV_Misc_Note_03", "=q3=Bottom Half of Advanced Armorsmithing: Volume II", "=ds=#m8#", "41.6%" }, + { 18781, "INV_Misc_Note_03", "=q3=Bottom Half of Advanced Armorsmithing: Volume II", "=ds=#m8#", "40%" }, { 12726, "INV_Scroll_05", "=q3=Plans: Enchanted Thorium Leggings", "=q1=#m4# =ds=#p2# #m14#" }, { 12619, "INV_Pants_04", "=q3=Enchanted Thorium Leggings", "=ds=#s11#, #a4#" }, { 0,"","","" }, @@ -4951,63 +5165,63 @@ AtlasLoot_Data["AtlasLootItems"] = { { 12776,"INV_Hammer_05","=q3=Enchanted Battlehammer","=ds=#h2#, #w6#" }, }; STRATBSPlansSerenity = { - { 12827, "INV_Scroll_06", "=q2=Plans: Serenity", "=ds=#p2# #m20#", "34.25%" }, + { 12827, "INV_Scroll_06", "=q2=Plans: Serenity", "=ds=#p2# #m20#", "0.02-0.26%" }, { 12781, "INV_Mace_02", "=q3=Serenity", "=ds=#h1#, #w6#" }, }; STRATCannonMasterWilley = { - { 16708, "INV_Shoulder_07", "=q3=Shadowcraft Spaulders", "=ds=#s3#, #a2# (D1, =q12=#c6#=ds=)", "10.68%" }, + { 16708, "INV_Shoulder_07", "=q3=Shadowcraft Spaulders", "=ds=#s3#, #a2# (D1, =q12=#c6#=ds=)", "10%" }, { 0, "", "", "", "" }, - { 22407, "INV_Helmet_41", "=q3=Helm of the New Moon", "=ds=#s1#, #a2#", "13.61%" }, - { 22403, "INV_Jewelry_Necklace_10", "=q3=Diana's Pearl Necklace", "=ds=#s2#", "14.27%" }, - { 22405, "INV_Shoulder_02", "=q3=Mantle of the Scarlet Crusade", "=ds=#s3#, #a1#", "16.03%" }, - { 18721, "INV_Belt_18", "=q3=Barrage Girdle", "=ds=#s10#, #a3#", "12.39%" }, - { 13381, "INV_Boots_Plate_09", "=q3=Master Cannoneer Boots", "=ds=#s12#, #a4#", "12.86%" }, - --{ 70058, "inv_chest_plate08", "=q3=Breastplate of Fortitutde", "=ds=#s5#, #a4#, Currently off the Loot Table", "6%" }, - { 13382, "INV_Misc_Bomb_04", "=q3=Cannonball Runner", "=ds=#s14#", "12.28%" }, - { 13380, "INV_Weapon_Rifle_07", "=q3=Willey's Portable Howitzer", "=ds=#w5#", "10.71%" }, - { 13377, "INV_Ammo_Bullet_02", "=q3=Miniature Cannon Balls", "=ds=#e6#", "66.61%" }, - { 22404, "INV_Weapon_ShortBlade_16", "=q3=Willey's Back Scratcher", "=ds=#h3#, #w13#", "6.26%" }, - { 22406, "INV_Staff_23", "=q3=Redemption", "=ds=#w9#", "7.04%" }, + { 22407, "INV_Helmet_41", "=q3=Helm of the New Moon", "=ds=#s1#, #a2#", "10%" }, + { 22403, "INV_Jewelry_Necklace_10", "=q3=Diana's Pearl Necklace", "=ds=#s2#", "10%" }, + { 22405, "INV_Shoulder_02", "=q3=Mantle of the Scarlet Crusade", "=ds=#s3#, #a1#", "10%" }, + { 18721, "INV_Belt_18", "=q3=Barrage Girdle", "=ds=#s10#, #a3#", "10%" }, + { 13381, "INV_Boots_Plate_09", "=q3=Master Cannoneer Boots", "=ds=#s12#, #a4#", "10%" }, + --{ 70058, "inv_chest_plate08", "=q3=Breastplate of Fortitutde", "=ds=#s5#, #a4#, Currently off the Loot Table", "0%" }, + { 13382, "INV_Misc_Bomb_04", "=q3=Cannonball Runner", "=ds=#s14#", "10%" }, + { 13380, "INV_Weapon_Rifle_07", "=q3=Willey's Portable Howitzer", "=ds=#w5#", "10%" }, + { 13377, "INV_Ammo_Bullet_02", "=q3=Miniature Cannon Balls", "=ds=#e6#", "100%" }, + { 22404, "INV_Weapon_ShortBlade_16", "=q3=Willey's Back Scratcher", "=ds=#h3#, #w13#", "10%" }, + { 22406, "INV_Staff_23", "=q3=Redemption", "=ds=#w9#", "10%" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, - { 12839, "INV_Scroll_03", "=q3=Plans: Heartseeker", "=ds=#p2# #m14#", "4.98%" }, + { 12839, "INV_Scroll_03", "=q3=Plans: Heartseeker", "=ds=#p2# #m14#", "6%" }, { 12783, "INV_Sword_17", "=q3=Heartseeker", "=ds=#h1#, #w4#" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATArchivistGalford = { - { 16692, "INV_Gauntlets_14", "=q3=Devout Gloves", "=ds=#s9#, #a1# (D1, =q9=#c5#=ds=)", "12.46%" }, + { 16692, "INV_Gauntlets_14", "=q3=Devout Gloves", "=ds=#s9#, #a1# (D1, =q9=#c5#=ds=)", "20%" }, { 0, "", "", "", "" }, - { 13386, "INV_Misc_Cape_19", "=q3=Archivist Cape", "=ds=#s4# =q2=#e31#", "18.45%" }, - { 13387, "INV_Belt_21", "=q3=Foresight Girdle", "=ds=#s10#, #a3# =q2=#e31#", "18.24%" }, - { 18716, "INV_Boots_08", "=q3=Ash Covered Boots", "=ds=#s12#, #a2#", "16.30%" }, - { 13385, "INV_Misc_Book_05", "=q3=Tome of Knowledge", "=ds=#s15#", "9.87%" }, - { 70062, "inv_gauntlets_09", "=q3=Gauntlets of Force", "=ds=#s9#, #a4#, Currently off the Loot Table", "6%" }, + { 13386, "INV_Misc_Cape_19", "=q3=Archivist Cape", "=ds=#s4# =q2=#e31#", "20%" }, + { 13387, "INV_Belt_21", "=q3=Foresight Girdle", "=ds=#s10#, #a3# =q2=#e31#", "20%" }, + { 18716, "INV_Boots_08", "=q3=Ash Covered Boots", "=ds=#s12#, #a2#", "20%" }, + { 13385, "INV_Misc_Book_05", "=q3=Tome of Knowledge", "=ds=#s15#", "20%" }, + --{ 70062, "inv_gauntlets_09", "=q3=Gauntlets of Force", "=ds=#s9#, #a4#, Currently off the Loot Table", "0%" }, { 0, "", "", "", "" }, - { 12811, "INV_Misc_Gem_Pearl_03", "=q2=Righteous Orb", "=ds=#e12#", "45.41%" }, + { 12811, "INV_Misc_Gem_Pearl_03", "=q2=Righteous Orb", "=ds=#e12#", "18%" }, { 0, "", "", "", "" }, - { 22897, "INV_Misc_Book_07", "=q1=Tome of Conjure Food VII", "=ds=#e20# =q10=#c3#", "4.86%" }, + { 22897, "INV_Misc_Book_07", "=q1=Tome of Conjure Food VII", "=ds=#e20# =q10=#c3#", "14%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATBalnazzar = { { 13353, "INV_Misc_Book_06", "=q4=Book of the Dead", "=ds=#s15#", "1.37%" }, - { 14512, "INV_Scroll_03", "=q4=Pattern: Truefaith Vestments", "=ds=#p8# #m14#", "3.02%" }, + { 14512, "INV_Scroll_03", "=q4=Pattern: Truefaith Vestments", "=ds=#p8# #m14#", "6%" }, { 14154, "INV_Chest_Cloth_31", "=q4=Truefaith Vestments", "=ds=#s5#, #a1# =q9=#c5#" }, { 0, "", "", "", "" }, - { 16725, "INV_Boots_Plate_03", "=q3=Lightforge Boots", "=ds=#s12#, #a4# (D1, =q16=#c4#=ds=)", "11.11%" }, + { 16725, "INV_Boots_Plate_03", "=q3=Lightforge Boots", "=ds=#s12#, #a4# (D1, =q16=#c4#=ds=)", "10%" }, { 0, "", "", "", "" }, - { 13359, "INV_Helmet_03", "=q3=Crown of Tyranny", "=ds=#s1#, #a3#", "13.94%" }, - { 18718, "INV_Helmet_10", "=q3=Grand Crusader's Helm", "=ds=#s1#, #a4#", "10.16%" }, - { 12103, "INV_Jewelry_Talisman_08", "=q3=Star of Mystaria", "=ds=#s2#", "12.48%" }, - { 18720, "INV_Shoulder_23", "=q3=Shroud of the Nathrezim", "=ds=#s3#, #a1#", "10.54%" }, - { 13358, "INV_Shoulder_24", "=q3=Wyrmtongue Shoulders", "=ds=#s3#, #a2#", "11.58%" }, - { 13369, "INV_Boots_05", "=q3=Fire Striders", "=ds=#s12#, #a1#", "14.84%" }, - { 13360, "INV_Weapon_ShortBlade_15", "=q3=Gift of the Elven Magi", "=ds=#h1#, #w4#", "13.66%" }, - { 18717, "INV_Hammer_06", "=q3=Hammer of the Grand Crusader", "=ds=#h2#, #w6#", "11.91%" }, - { 13348, "INV_Sword_14", "=q3=Demonshear", "=ds=#h2#, #w10#", "13.94%" }, - { 13520, "INV_Scroll_06", "=q2=Recipe: Flask of Distilled Wisdom", "=ds=#p1# #m14#", "1.94%" }, + { 13359, "INV_Helmet_03", "=q3=Crown of Tyranny", "=ds=#s1#, #a3#", "10%" }, + { 18718, "INV_Helmet_10", "=q3=Grand Crusader's Helm", "=ds=#s1#, #a4#", "10%" }, + { 12103, "INV_Jewelry_Talisman_08", "=q3=Star of Mystaria", "=ds=#s2#", "10%" }, + { 18720, "INV_Shoulder_23", "=q3=Shroud of the Nathrezim", "=ds=#s3#, #a1#", "10%" }, + { 13358, "INV_Shoulder_24", "=q3=Wyrmtongue Shoulders", "=ds=#s3#, #a2#", "10%" }, + { 13369, "INV_Boots_05", "=q3=Fire Striders", "=ds=#s12#, #a1#", "10%" }, + { 13360, "INV_Weapon_ShortBlade_15", "=q3=Gift of the Elven Magi", "=ds=#h1#, #w4#", "10%" }, + { 18717, "INV_Hammer_06", "=q3=Hammer of the Grand Crusader", "=ds=#h2#, #w6#", "10%" }, + { 13348, "INV_Sword_14", "=q3=Demonshear", "=ds=#h2#, #w10#", "10%" }, + { 13520, "INV_Scroll_06", "=q2=Recipe: Flask of Distilled Wisdom", "=ds=#p1# #m14#", "3%" }, { 0, "", "", "", "" }, { 13250, "Spell_Shadow_Possession", "=q1=Head of Balnazzar", "=ds=#m2#" }, { 0, "", "", "", "" }, @@ -5024,36 +5238,35 @@ AtlasLoot_Data["AtlasLootItems"] = { }; STRATSothosJarien = { { 0, "INV_Misc_Bag_09", "=q6=#j3#", "=q5=Sothos & Jarien" }, - { 22327, "INV_Jewelry_Necklace_08", "=q3=Amulet of the Redeemed", "=ds=#s2#", "14.03%" }, - { 22301, "INV_Chest_Cloth_48", "=q3=Ironweave Robe", "=ds=#s5#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "19.00%" }, - { 22328, "INV_Pants_04", "=q3=Legplates of Vigilance", "=ds=#s11#, #a4#", "21.27%" }, - { 22334, "INV_Jewelry_Ring_05", "=q3=Band of Mending", "=ds=#s13#", "17.19%" }, - { 22329, "INV_Wand_07", "=q3=Scepter of Interminable Focus", "=ds=#s15#", "28.51%" }, + { 22327, "INV_Jewelry_Necklace_08", "=q3=Amulet of the Redeemed", "=ds=#s2#", "33%" }, + { 22301, "INV_Chest_Cloth_48", "=q3=Ironweave Robe", "=ds=#s5#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22328, "INV_Pants_04", "=q3=Legplates of Vigilance", "=ds=#s11#, #a4#", "33%" }, + { 22334, "INV_Jewelry_Ring_05", "=q3=Band of Mending", "=ds=#s13#", "33%" }, + { 22329, "INV_Wand_07", "=q3=Scepter of Interminable Focus", "=ds=#s15#", "33%" }, }; STRATStonespine = { - { 13397, "INV_Misc_Cape_19", "=q3=Stoneskin Gargoyle Cape", "=ds=#s4#", "23.44%" }, - { 13954, "INV_Boots_08", "=q3=Verdant Footpads", "=ds=#s12#, #a2#", "25.36%" }, - { 13399, "INV_Gauntlets_11", "=q3=Gargoyle Shredder Talons", "=ds=#h4#, #w13#", "26.16%" }, - { 0, "", "", "", "" }, + { 13397, "INV_Misc_Cape_19", "=q3=Stoneskin Gargoyle Cape", "=ds=#s4#", "33%" }, + { 13954, "INV_Boots_08", "=q3=Verdant Footpads", "=ds=#s12#, #a2#", "33%" }, + { 13399, "INV_Gauntlets_11", "=q3=Gargoyle Shredder Talons", "=ds=#h4#, #w13#", "33%" }, }; STRATBaronessAnastari = { - { 16704, "INV_Boots_05", "=q3=Dreadmist Sandals", "=ds=#s12#, #a1# (D1, =q11=#c8#=ds=)", "13.16%" }, + { 16704, "INV_Boots_05", "=q3=Dreadmist Sandals", "=ds=#s12#, #a1# (D1, =q11=#c8#=ds=)", "20%" }, { 0, "", "", "", "" }, - { 18728, "INV_Jewelry_Necklace_11", "=q3=Anastari Heirloom", "=ds=#s2#", "11.92%" }, - { 18730, "INV_Gauntlets_16", "=q3=Shadowy Laced Handwraps", "=ds=#s9#, #a1#", "13.54%" }, - { 18729, "INV_Weapon_Bow_12", "=q3=Screeching Bow", "=ds=#w2#", "15.59%" }, - { 13534, "INV_Weapon_ShortBlade_18", "=q3=Banshee Finger", "=ds=#w12#", "13.42%" }, + { 18728, "INV_Jewelry_Necklace_11", "=q3=Anastari Heirloom", "=ds=#s2#", "20%" }, + { 18730, "INV_Gauntlets_16", "=q3=Shadowy Laced Handwraps", "=ds=#s9#, #a1#", "20%" }, + { 18729, "INV_Weapon_Bow_12", "=q3=Screeching Bow", "=ds=#w2#", "20%" }, + { 13534, "INV_Weapon_ShortBlade_18", "=q3=Banshee Finger", "=ds=#w12#", "20%" }, { 0, "", "", "", "" }, - { 13538, "INV_Shoulder_13", "=q2=Windshrieker Pauldrons", "=ds=#s3#, #a3#", "9.75%" }, - { 13535, "INV_Chest_Cloth_47", "=q2=Coldtouch Phantom Wraps", "=ds=#s5#, #a1#", "9.84%" }, - { 13537, "INV_Bracer_07", "=q2=Chillhide Bracers", "=ds=#s8#, #a2#", "9.71%" }, - { 13539, "INV_Gauntlets_29", "=q2=Banshee's Touch", "=ds=#s9#, #a4#", "8.27%" }, - { 13514, "Spell_Shadow_Possession", "=q2=Wail of the Banshee", "=ds=#m8#", "7.73%" }, + { 13538, "INV_Shoulder_13", "=q2=Windshrieker Pauldrons", "=ds=#s3#, #a3#", "20%" }, + { 13535, "INV_Chest_Cloth_47", "=q2=Coldtouch Phantom Wraps", "=ds=#s5#, #a1#", "20%" }, + { 13537, "INV_Bracer_07", "=q2=Chillhide Bracers", "=ds=#s8#, #a2#", "20%" }, + { 13539, "INV_Gauntlets_29", "=q2=Banshee's Touch", "=ds=#s9#, #a4#", "20%" }, + { 13514, "Spell_Shadow_Possession", "=q2=Wail of the Banshee", "=ds=#m8#", "20%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATBlackGuardSwordsmith = { - { 18783, "INV_Misc_Note_04", "=q3=Bottom Half of Advanced Armorsmithing: Volume III", "=ds=#m8#", "23.5%" }, + { 18783, "INV_Misc_Note_04", "=q3=Bottom Half of Advanced Armorsmithing: Volume III", "=ds=#m8#", "40%" }, { 12725, "INV_Scroll_05", "=q3=Plans: Enchanted Thorium Helm", "=q1=#m4# =ds=#p2# #m14#" }, { 12620, "INV_Helmet_02", "=q3=Enchanted Thorium Helm", "=ds=#s1#, #a4#" }, { 0,"","","" }, @@ -5061,170 +5274,170 @@ AtlasLoot_Data["AtlasLootItems"] = { { 12777,"INV_Sword_30","=q3=Blazing Rapier","=ds=#h1#, #w10#" }, }; STRATBSPlansCorruption = { - { 12830, "INV_Scroll_03", "=q1=Plans: Corruption", "=ds=#p2# #m18#", "11.57%" }, + { 12830, "INV_Scroll_03", "=q1=Plans: Corruption", "=ds=#p2# #m18#", "0.02-0.06%" }, { 12782,"INV_Sword_07","=q3=Corruption","=ds=#h2#, #w10#" }, }; STRATNerubenkan = { - { 16675, "INV_Boots_Plate_07", "=q3=Beaststalker's Boots", "=ds=#s12#, #a3# (D1,=q14=#c2#=ds=)", "13.62%" }, + { 16675, "INV_Boots_Plate_07", "=q3=Beaststalker's Boots", "=ds=#s12#, #a3# (D1,=q14=#c2#=ds=)", "20%" }, { 0, "", "", "", "" }, - { 18740, "INV_Belt_13", "=q3=Thuzadin Sash", "=ds=#s10#, #a1#", "14.72%" }, - { 18739, "INV_Pants_04", "=q3=Chitinous Plate Legguards", "=ds=#s11#, #a4#", "12.19%" }, - { 18738, "INV_Weapon_Crossbow_04", "=q3=Carapace Spine Crossbow", "=ds=#w3#", "14.17%" }, - { 13529, "INV_Shield_02", "=q3=Husk of Nerub'enkan", "=ds=#w8#", "12.62%" }, + { 18740, "INV_Belt_13", "=q3=Thuzadin Sash", "=ds=#s10#, #a1#", "20%" }, + { 18739, "INV_Pants_04", "=q3=Chitinous Plate Legguards", "=ds=#s11#, #a4#", "20%" }, + { 18738, "INV_Weapon_Crossbow_04", "=q3=Carapace Spine Crossbow", "=ds=#w3#", "20%" }, + { 13529, "INV_Shield_02", "=q3=Husk of Nerub'enkan", "=ds=#w8#", "20%" }, { 0, "", "", "", "" }, - { 13533, "INV_Shoulder_18", "=q2=Acid-etched Pauldrons", "=ds=#s3#, #a4#", "8.11%" }, - { 13532, "INV_Gauntlets_31", "=q2=Darkspinner Claws", "=ds=#s9#, #a3#", "9.69%" }, - { 13531, "INV_Pants_09", "=q2=Crypt Stalker Leggings", "=ds=#s11#, #a2#", "10.17%" }, - { 13530, "INV_Boots_05", "=q2=Fangdrip Runners", "=ds=#s12#, #a1#", "8.49%" }, - { 13508, "INV_Misc_Eye_01", "=q2=Eye of Arachnida", "=ds=#m8#", "7.39%" }, + { 13533, "INV_Shoulder_18", "=q2=Acid-etched Pauldrons", "=ds=#s3#, #a4#", "20%" }, + { 13532, "INV_Gauntlets_31", "=q2=Darkspinner Claws", "=ds=#s9#, #a3#", "20%" }, + { 13531, "INV_Pants_09", "=q2=Crypt Stalker Leggings", "=ds=#s11#, #a2#", "20%" }, + { 13530, "INV_Boots_05", "=q2=Fangdrip Runners", "=ds=#s12#, #a1#", "20%" }, + { 13508, "INV_Misc_Eye_01", "=q2=Eye of Arachnida", "=ds=#m8#", "20%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATMalekithePallid = { - { 16691, "INV_Boots_05", "=q3=Devout Sandals", "=ds=#s12#, #a1# (D1, =q9=#c5#=ds=)", "13.64%" }, + { 16691, "INV_Boots_05", "=q3=Devout Sandals", "=ds=#s12#, #a1# (D1, =q9=#c5#=ds=)", "20%" }, { 0, "", "", "", "" }, - { 18734, "INV_Misc_Cape_11", "=q3=Pale Moon Cloak", "=ds=#s4#", "13.42%" }, - { 18735, "INV_Boots_03", "=q3=Maleki's Footwraps", "=ds=#s12#, #a1#", "15.03%" }, - { 13524, "INV_Misc_Bone_HumanSkull_01", "=q3=Skull of Burning Shadows", "=ds=#s15#", "13.42%" }, - { 18737, "INV_Axe_11", "=q3=Bone Slicing Hatchet", "=ds=#h1#, #w1#", "14.23%" }, + { 18734, "INV_Misc_Cape_11", "=q3=Pale Moon Cloak", "=ds=#s4#", "20%" }, + { 18735, "INV_Boots_03", "=q3=Maleki's Footwraps", "=ds=#s12#, #a1#", "20%" }, + { 13524, "INV_Misc_Bone_HumanSkull_01", "=q3=Skull of Burning Shadows", "=ds=#s15#", "20%" }, + { 18737, "INV_Axe_11", "=q3=Bone Slicing Hatchet", "=ds=#h1#, #w1#", "20%" }, { 0, "", "", "", "" }, - { 13528, "INV_Bracer_16", "=q2=Twilight Void Bracers", "=ds=#s8#, #a3#", "9.49%" }, - { 13525, "INV_Gauntlets_15", "=q2=Darkbind Fingers", "=ds=#s9#, #a1#", "9.15%" }, - { 13526, "INV_Belt_09", "=q2=Flamescarred Girdle", "=ds=#s10#, #a2#", "9.57%" }, - { 13527, "INV_Boots_Plate_09", "=q2=Lavawalker Greaves", "=ds=#s12#, #a4#", "9.39%" }, - { 13509, "INV_Misc_Rune_03", "=q2=Clutch of Foresight", "=ds=#m8#", "6.95%" }, + { 13528, "INV_Bracer_16", "=q2=Twilight Void Bracers", "=ds=#s8#, #a3#", "20%" }, + { 13525, "INV_Gauntlets_15", "=q2=Darkbind Fingers", "=ds=#s9#, #a1#", "20%" }, + { 13526, "INV_Belt_09", "=q2=Flamescarred Girdle", "=ds=#s10#, #a2#", "20%" }, + { 13527, "INV_Boots_Plate_09", "=q2=Lavawalker Greaves", "=ds=#s12#, #a4#", "20%" }, + { 13509, "INV_Misc_Rune_03", "=q2=Clutch of Foresight", "=ds=#m8#", "20%" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, - { 12833, "INV_Scroll_03", "=q3=Plans: Hammer of the Titans", "=ds=#p2# #m14#", "5.86%" }, + { 12833, "INV_Scroll_03", "=q3=Plans: Hammer of the Titans", "=ds=#p2# #m14#", "6%" }, { 12796, "INV_Hammer_09", "=q3=Hammer of the Titans", "=ds=#h2#, #w6#" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATMagistrateBarthilas = { - { 18727, "INV_Helmet_51", "=q3=Crimson Felt Hat", "=ds=#s1#, #a1#", "13.82%" }, - { 13376, "INV_Misc_Cape_14", "=q3=Royal Tribunal Cloak", "=ds=#s4#", "12.44%" }, - { 18726, "INV_Bracer_11", "=q3=Magistrate's Cuffs", "=ds=#s8#, #a2#", "12.87%" }, - { 18722, "INV_Gauntlets_13", "=q3=Death Grips", "=ds=#s9#, #a4#", "15.34%" }, - { 70059, "inv_boots_plate_05", "=q3=Sabatons of Protection", "=ds=#s12#, #a4#, Currently off the Loot Table", "6%" }, - { 23198, "INV_Relics_IdolofFerocity", "=q3=Idol of Brutality", "=ds=#s16#, #e16# =q13=#c1#", "2.37%" }, - { 18725, "INV_Spear_07", "=q3=Peacemaker", "=ds=#w7#", "14.22%" }, + { 18727, "INV_Helmet_51", "=q3=Crimson Felt Hat", "=ds=#s1#, #a1#", "17%" }, + { 13376, "INV_Misc_Cape_14", "=q3=Royal Tribunal Cloak", "=ds=#s4#", "17%" }, + { 18726, "INV_Bracer_11", "=q3=Magistrate's Cuffs", "=ds=#s8#, #a2#", "17%" }, + { 18722, "INV_Gauntlets_13", "=q3=Death Grips", "=ds=#s9#, #a4#", "17%" }, + --{ 70059, "inv_boots_plate_05", "=q3=Sabatons of Protection", "=ds=#s12#, #a4#, Currently off the Loot Table", "0%" }, + { 23198, "INV_Relics_IdolofFerocity", "=q3=Idol of Brutality", "=ds=#s16#, #e16# =q13=#c1#", "17%" }, + { 18725, "INV_Spear_07", "=q3=Peacemaker", "=ds=#w7#", "17%" }, { 0, "", "", "", "" }, { 12382, "INV_Misc_Key_13", "=q2=Key to the City", "=ds=#e14#", "100%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATRamsteintheGorger = { - { 16737, "INV_Gauntlets_26", "=q3=Gauntlets of Valor", "=ds=#s9#, #a4# (D1, =q17=#c9#=ds=)", "9.58%" }, + { 16737, "INV_Gauntlets_26", "=q3=Gauntlets of Valor", "=ds=#s9#, #a4# (D1, =q17=#c9#=ds=)", "14%" }, { 0, "", "", "", "" }, - { 18723, "INV_Jewelry_Necklace_01", "=q3=Animated Chain Necklace", "=ds=#s2#", "7.54%" }, - { 13374, "INV_Shoulder_02", "=q3=Soulstealer Mantle", "=ds=#s3#, #a1#", "9.87%" }, - { 13373, "INV_Misc_Bone_04", "=q3=Band of Flesh", "=ds=#s13#", "8.15%" }, - { 13515, "INV_Misc_Gear_06", "=q3=Ramstein's Lightning Bolts", "=ds=#s14#", "8.09%" }, - { 13375, "INV_Shield_19", "=q3=Crest of Retribution", "=ds=#w8#", "9.17%" }, - { 13372, "INV_Staff_08", "=q3=Slavedriver's Cane", "=ds=#w9#", "8.63%" }, + { 18723, "INV_Jewelry_Necklace_01", "=q3=Animated Chain Necklace", "=ds=#s2#", "14%" }, + { 13374, "INV_Shoulder_02", "=q3=Soulstealer Mantle", "=ds=#s3#, #a1#", "14%" }, + { 13373, "INV_Misc_Bone_04", "=q3=Band of Flesh", "=ds=#s13#", "14%" }, + { 13515, "INV_Misc_Gear_06", "=q3=Ramstein's Lightning Bolts", "=ds=#s14#", "14%" }, + { 13375, "INV_Shield_19", "=q3=Crest of Retribution", "=ds=#w8#", "14%" }, + { 13372, "INV_Staff_08", "=q3=Slavedriver's Cane", "=ds=#w9#", "14%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; STRATBaronRivendare = { - { 13335, "Ability_Mount_Undeadhorse", "=q4=Deathcharger's Reins", "=ds=#e7#", "0.10%" }, - { 13505, "INV_Sword_17", "=q4=Runeblade of Baron Rivendare", "=ds=#h2#, #w10#", "0.27%" }, + { 13335, "Ability_Mount_Undeadhorse", "=q4=Deathcharger's Reins", "=ds=#e7#", "0.02%" }, + { 13505, "INV_Sword_17", "=q4=Runeblade of Baron Rivendare", "=ds=#h2#, #w10#", "1%" }, { 0, "", "", "", "" }, - { 22411, "INV_Helmet_01", "=q3=Helm of the Executioner", "=ds=#s1#, #a4#", "3.80%" }, - { 22412, "INV_Shoulder_02", "=q3=Thuzadin Mantle", "=ds=#s3#, #a1#", "4.16%" }, - { 13340, "INV_Misc_Cape_20", "=q3=Cape of the Black Baron", "=ds=#s4#", "8.75%" }, - { 13346, "INV_Chest_Cloth_08", "=q3=Robes of the Exalted", "=ds=#s5#, #a1#", "11.51%" }, - { 22409, "INV_Chest_Leather_08", "=q3=Tunic of the Crescent Moon", "=ds=#s5#, #a2#", "4.59%" }, - { 13344, "INV_Gauntlets_31", "=q3=Dracorian Gauntlets", "=ds=#s9#, #a3#", "10.85%" }, - { 22410, "INV_Gauntlets_11", "=q3=Gauntlets of Deftness", "=ds=#s9#, #a3#", "4.98%" }, - { 13345, "INV_Jewelry_Ring_16", "=q3=Seal of Rivendare", "=ds=#s13#", "9.50%" }, - { 22408, "INV_Wand_07", "=q3=Ritssyn's Wand of Bad Mojo", "=ds=#w12#", "3.39%" }, - { 13349, "INV_Mace_07", "=q3=Scepter of the Unholy", "=ds=#h3#, #w6#", "9.30%" }, - { 13368, "INV_Weapon_ShortBlade_12", "=q3=Bonescraper", "=ds=#h1#, #w4#", "4.32%" }, - { 13361, "INV_Sword_12", "=q3=Skullforge Reaver", "=ds=#h1#, #w10#", "4.25%" }, - { 16694, "INV_Pants_08", "=q3=Devout Skirt", "=ds=#s11#, #a1# (D1, =q9=#c5#=ds=)", "7.42%" }, - { 16687, "INV_Pants_06", "=q3=Magister's Leggings", "=ds=#s11#, #a1# (D1, =q10=#c3#=ds=)", "6.79%" }, - { 16699, "INV_Pants_08", "=q3=Dreadmist Leggings", "=ds=#s11#, #a1# (D1, =q11=#c8#=ds=)", "7.31%" }, - { 16709, "INV_Pants_02", "=q3=Shadowcraft Pants", "=ds=#s11#, #a2# (D1, =q12=#c6#=ds=)", "7.76%" }, - { 16719, "INV_Pants_08", "=q3=Wildheart Kilt", "=ds=#s11#, #a2# (D1, =q13=#c1#=ds=)", "6.58%" }, - { 16678, "INV_Pants_03", "=q3=Beaststalker's Pants", "=ds=#s11#, #a3# (D1, =q14=#c2#=ds=)", "6.16%" }, - { 16668, "INV_Pants_03", "=q3=Kilt of Elements", "=ds=#s11#, #a3# (D1, =q15=#c7#=ds=)", "3.02%" }, - { 16728, "INV_Pants_04", "=q3=Lightforge Legplates", "=ds=#s11#, #a4# (D1, =q16=#c4#=ds=)", "4.20%" }, - { 16732, "INV_Pants_04", "=q3=Legplates of Valor", "=ds=#s11#, #a4# (D1, =q17=#c9#=ds=)", "5.74%" }, + { 22411, "INV_Helmet_01", "=q3=Helm of the Executioner", "=ds=#s1#, #a4#", "20%" }, + { 22412, "INV_Shoulder_02", "=q3=Thuzadin Mantle", "=ds=#s3#, #a1#", "20%" }, + { 13340, "INV_Misc_Cape_20", "=q3=Cape of the Black Baron", "=ds=#s4#", "14%" }, + { 13346, "INV_Chest_Cloth_08", "=q3=Robes of the Exalted", "=ds=#s5#, #a1#", "14%" }, + { 22409, "INV_Chest_Leather_08", "=q3=Tunic of the Crescent Moon", "=ds=#s5#, #a2#", "20%" }, + { 13344, "INV_Gauntlets_31", "=q3=Dracorian Gauntlets", "=ds=#s9#, #a3#", "14%" }, + { 22410, "INV_Gauntlets_11", "=q3=Gauntlets of Deftness", "=ds=#s9#, #a3#", "20%" }, + { 13345, "INV_Jewelry_Ring_16", "=q3=Seal of Rivendare", "=ds=#s13#", "14%" }, + { 22408, "INV_Wand_07", "=q3=Ritssyn's Wand of Bad Mojo", "=ds=#w12#", "20%" }, + { 13349, "INV_Mace_07", "=q3=Scepter of the Unholy", "=ds=#h3#, #w6#", "14%" }, + { 13368, "INV_Weapon_ShortBlade_12", "=q3=Bonescraper", "=ds=#h1#, #w4#", "14%" }, + { 13361, "INV_Sword_12", "=q3=Skullforge Reaver", "=ds=#h1#, #w10#", "14%" }, + { 16694, "INV_Pants_08", "=q3=Devout Skirt", "=ds=#s11#, #a1# (D1, =q9=#c5#=ds=)", "11%" }, + { 16687, "INV_Pants_06", "=q3=Magister's Leggings", "=ds=#s11#, #a1# (D1, =q10=#c3#=ds=)", "11%" }, + { 16699, "INV_Pants_08", "=q3=Dreadmist Leggings", "=ds=#s11#, #a1# (D1, =q11=#c8#=ds=)", "11%" }, + { 16709, "INV_Pants_02", "=q3=Shadowcraft Pants", "=ds=#s11#, #a2# (D1, =q12=#c6#=ds=)", "11%" }, + { 16719, "INV_Pants_08", "=q3=Wildheart Kilt", "=ds=#s11#, #a2# (D1, =q13=#c1#=ds=)", "11%" }, + { 16678, "INV_Pants_03", "=q3=Beaststalker's Pants", "=ds=#s11#, #a3# (D1, =q14=#c2#=ds=)", "11%" }, + { 16668, "INV_Pants_03", "=q3=Kilt of Elements", "=ds=#s11#, #a3# (D1, =q15=#c7#=ds=)", "11%" }, + { 16728, "INV_Pants_04", "=q3=Lightforge Legplates", "=ds=#s11#, #a4# (D1, =q16=#c4#=ds=)", "11%" }, + { 16732, "INV_Pants_04", "=q3=Legplates of Valor", "=ds=#s11#, #a4# (D1, =q17=#c9#=ds=)", "11%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "100%" }, }; STRATPostmaster = { - { 13390, "INV_Misc_Bandage_15", "=q3=The Postmaster's Band", "=ds=#s1#, #a1#", "18.58%" }, - { 13388, "INV_Chest_Leather_10", "=q3=The Postmaster's Tunic", "=ds=#s5#, #a1#", "17.24%" }, - { 13389, "INV_Pants_06", "=q3=The Postmaster's Trousers", "=ds=#s11#, #a1#", "21.04%" }, - { 13391, "INV_Boots_02", "=q3=The Postmaster's Treads", "=ds=#s12#, #a1#", "20.61%" }, - { 13392, "INV_Jewelry_Ring_23", "=q3=The Postmaster's Seal", "=ds=#s13#", "17.29%" }, - { 13393,"INV_Mace_01","=q3=Malown's Slam","=ds=#h2#, #w6#", "18.33%" }, + { 13390, "INV_Misc_Bandage_15", "=q3=The Postmaster's Band", "=ds=#s1#, #a1#", "17%" }, + { 13388, "INV_Chest_Leather_10", "=q3=The Postmaster's Tunic", "=ds=#s5#, #a1#", "17%" }, + { 13389, "INV_Pants_06", "=q3=The Postmaster's Trousers", "=ds=#s11#, #a1#", "17%" }, + { 13391, "INV_Boots_02", "=q3=The Postmaster's Treads", "=ds=#s12#, #a1#", "17%" }, + { 13392, "INV_Jewelry_Ring_23", "=q3=The Postmaster's Seal", "=ds=#s13#", "17%" }, + { 13393,"INV_Mace_01","=q3=Malown's Slam","=ds=#h2#, #w6#", "17%" }, }; STRATTrash = { - { 16697, "INV_Belt_31", "=q3=Devout Bracers", "=ds=#s8#, #a1# (D1, =q9=#c5#=ds=)", "1.15%" }, - { 16685, "INV_Belt_08", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1, =q10=#c3#=ds=)", "0.80%" }, - { 16702, "INV_Belt_12", "=q3=Dreadmist Belt", "=ds=#s10#, #a1# (D1, =q11=#c8#=ds=)", "0.90%" }, - { 16710, "INV_Bracer_07", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, =q12=#c6#=ds=)", "1.47%" }, - { 16714, "INV_Bracer_09", "=q3=Wildheart Bracers", "=ds=#s8#, #a2# (D1, =q13=#c1#=ds=)", "1.49%" }, - { 16681, "INV_Bracer_17", "=q3=Beaststalker's Bindings", "=ds=#s8#, #a3# (D1, =q14=#c2#=ds=)", "1.64%" }, - { 16671, "INV_Bracer_02", "=q3=Bindings of Elements", "=ds=#s8#, #a3# (D1, =q15=#c7#=ds=)", "1.90%" }, - { 16723, "INV_Belt_11", "=q3=Lightforge Belt", "=ds=#s10#, #a4# (D1, =q16=#c4#=ds=)", "1.83%" }, - { 16736, "INV_Belt_34", "=q3=Belt of Valor", "=ds=#s10#, #a4# (D1, =q17=#c9#=ds=)", "2.02%" }, + { 16697, "INV_Belt_31", "=q3=Devout Bracers", "=ds=#s8#, #a1# (D1, =q9=#c5#=ds=)", "1-4%" }, + { 16685, "INV_Belt_08", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1, =q10=#c3#=ds=)", "1-3%" }, + { 16702, "INV_Belt_12", "=q3=Dreadmist Belt", "=ds=#s10#, #a1# (D1, =q11=#c8#=ds=)", "1-1.5%" }, + { 16710, "INV_Bracer_07", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, =q12=#c6#=ds=)", "1.5-4%" }, + { 16714, "INV_Bracer_09", "=q3=Wildheart Bracers", "=ds=#s8#, #a2# (D1, =q13=#c1#=ds=)", "1.5-1.75%" }, + { 16681, "INV_Bracer_17", "=q3=Beaststalker's Bindings", "=ds=#s8#, #a3# (D1, =q14=#c2#=ds=)", "1.5-2%" }, + { 16671, "INV_Bracer_02", "=q3=Bindings of Elements", "=ds=#s8#, #a3# (D1, =q15=#c7#=ds=)", "1.25-3%" }, + { 16723, "INV_Belt_11", "=q3=Lightforge Belt", "=ds=#s10#, #a4# (D1, =q16=#c4#=ds=)", "0.2-2%" }, + { 16736, "INV_Belt_34", "=q3=Belt of Valor", "=ds=#s10#, #a4# (D1, =q17=#c9#=ds=)", "2-3%" }, { 0,"","","" }, - { 12811, "INV_Misc_Gem_Pearl_03", "=q2=Righteous Orb", "=ds=#e12#", "5.09%" }, - { 12735, "INV_Misc_Pelt_Boar_Ruin_03", "=q2=Frayed Abomination Stitching", "=ds=#m32#", "17.5%" }, + { 12811, "INV_Misc_Gem_Pearl_03", "=q2=Righteous Orb", "=ds=#e12#", "1.33-9%" }, + { 12735, "INV_Misc_Pelt_Boar_Ruin_03", "=q2=Frayed Abomination Stitching", "=ds=#m32#", "15%" }, { 12843,"INV_Jewelry_Talisman_12","=q2=Corruptor's Scourgestone","=ds=#m32#" }, { 12841,"INV_Jewelry_Talisman_13","=q1=Invader's Scourgestone","=ds=#m32#" }, { 12840,"INV_Jewelry_Talisman_14","=q1=Minion's Scourgestone","=ds=#m32#" }, - { 18742, "INV_Shoulder_14", "=q3=Stratholme Militia Shoulderguard", "=ds=#s3#, #a3#", "0.01%" }, - { 18743, "INV_Misc_Cape_18", "=q3=Gracious Cape", "=ds=#s4#", "0.01%" }, - { 17061, "INV_Misc_Cape_20", "=q3=Juno's Shadow", "=ds=#s4#", "0.01%" }, - { 18741, "INV_Bracer_17", "=q3=Morlune's Bracer", "=ds=#s8#, #a4#", "0.01%" }, - { 18744, "INV_Gauntlets_18", "=q3=Plaguebat Fur Gloves", "=ds=#s9#, #a2#", "0.01%" }, - { 18745, "INV_Pants_01", "=q3=Sacred Cloth Leggings", "=ds=#s11#, #a1#", "0.01%" }, - { 18736, "INV_Pants_12", "=q3=Plaguehound Leggings", "=ds=#s11#, #a2#", "0.01%" }, + { 18742, "INV_Shoulder_14", "=q3=Stratholme Militia Shoulderguard", "=ds=#s3#, #a3#", "0.02-0.04%" }, + { 18743, "INV_Misc_Cape_18", "=q3=Gracious Cape", "=ds=#s4#", "0.1-0.06%" }, + { 17061, "INV_Misc_Cape_20", "=q3=Juno's Shadow", "=ds=#s4#", "0.02%" }, + { 18741, "INV_Bracer_17", "=q3=Morlune's Bracer", "=ds=#s8#, #a4#", "0.02-0.04%" }, + { 18744, "INV_Gauntlets_18", "=q3=Plaguebat Fur Gloves", "=ds=#s9#, #a2#", "0.02-0.04%" }, + { 18745, "INV_Pants_01", "=q3=Sacred Cloth Leggings", "=ds=#s11#, #a1#", "0.02-0.04%" }, + { 18736, "INV_Pants_12", "=q3=Plaguehound Leggings", "=ds=#s11#, #a2#", "0.02%" }, { 0,"","","" }, - { 16249, "INV_Misc_Note_01", "=q2=Formula: Enchant 2H Weapon - Major Intellect", "=ds=#p4# #m14# =q7=#x73#", "1.19%" }, - { 16248, "INV_Misc_Note_01", "=q2=Formula: Enchant Weapon - Unholy", "=ds=#p4# #m15# =q7=#x72#", "0.36%" }, - { 14495, "INV_Scroll_06", "=q2=Pattern: Ghostweave Pants", "=ds=#p8# #m18# =q7=#x75#", "2.13%" }, - { 15777, "INV_Scroll_06", "=q2=Pattern: Runic Leather Shoulders", "=ds=#p7# #m14# =q7=#x74#", "1.00%" }, - { 15768, "INV_Scroll_06", "=q2=Pattern: Wicked Leather Belt", "=ds=#p7# #m14# =q7=#x76#", "0.85%" }, - { 18658, "INV_Scroll_06", "=q2=Schematic: Ultra-Flash Shadow Reflector", "=ds=#p5# #m14# =q7=#x77#", "1.82%" }, - { 16052, "INV_Scroll_06", "=q2=Schematic: Voice Amplification Modulator", "=ds=#p5# #m18# =q7=#x77#", "1.99%" }, + { 16249, "INV_Misc_Note_01", "=q2=Formula: Enchant 2H Weapon - Major Intellect", "=ds=#p4# #m14# =q7=#x73#", "2%" }, + { 16248, "INV_Misc_Note_01", "=q2=Formula: Enchant Weapon - Unholy", "=ds=#p4# #m15# =q7=#x72#", "0.88%" }, + { 14495, "INV_Scroll_06", "=q2=Pattern: Ghostweave Pants", "=ds=#p8# #m18# =q7=#x75#", "2%" }, + { 15777, "INV_Scroll_06", "=q2=Pattern: Runic Leather Shoulders", "=ds=#p7# #m14# =q7=#x74#", "0.99%" }, + { 15768, "INV_Scroll_06", "=q2=Pattern: Wicked Leather Belt", "=ds=#p7# #m14# =q7=#x76#", "2%" }, + { 18658, "INV_Scroll_06", "=q2=Schematic: Ultra-Flash Shadow Reflector", "=ds=#p5# #m14# =q7=#x77#", "4%" }, + { 16052, "INV_Scroll_06", "=q2=Schematic: Voice Amplification Modulator", "=ds=#p5# #m18# =q7=#x77#", "5%" }, }; LBRSPike = { { 12533, "INV_Spear_01", "=q1=Roughshod Pike", "=ds=#m8#", "100%" }, }; LBRSOmokk = { - { 16670, "INV_Boots_Wolf", "=q3=Boots of the Elements", "=ds=#s12#, #a3# (D1, =q15=#c7#=ds=)", "9.35%" }, + { 16670, "INV_Boots_Wolf", "=q3=Boots of the Elements", "=ds=#s12#, #a3# (D1, =q15=#c7#=ds=)", "17%" }, { 0, "", "", "", "" }, - { 13166, "INV_Shoulder_23", "=q3=Slamshot Shoulders", "=ds=#s3#, #a4#", "7.25%" }, - { 13168, "INV_Chest_Plate13", "=q3=Plate of the Shaman King", "=ds=#s5#, #a4#", "8.62%" }, - { 13170, "INV_Pants_13", "=q3=Skyshroud Leggings", "=ds=#s11#, #a1#", "8.52%" }, - { 13169, "INV_Pants_09", "=q3=Tressermane Leggings", "=ds=#s11#, #a2#", "9.52%" }, - { 13167, "INV_Hammer_04", "=q3=Fist of Omokk", "=ds=#h2#, #w6#", "10.64%" }, + { 13166, "INV_Shoulder_23", "=q3=Slamshot Shoulders", "=ds=#s3#, #a4#", "17%" }, + { 13168, "INV_Chest_Plate13", "=q3=Plate of the Shaman King", "=ds=#s5#, #a4#", "17%" }, + { 13170, "INV_Pants_13", "=q3=Skyshroud Leggings", "=ds=#s11#, #a1#", "17%" }, + { 13169, "INV_Pants_09", "=q3=Tressermane Leggings", "=ds=#s11#, #a2#", "17%" }, + { 13167, "INV_Hammer_04", "=q3=Fist of Omokk", "=ds=#h2#, #w6#", "17%" }, { 0, "", "", "", "" }, - { 12336, "INV_Misc_Gem_Diamond_02", "=q2=Gemstone of Spirestone", "=ds=#m8#", "15.72%" }, + { 12336, "INV_Misc_Gem_Diamond_02", "=q2=Gemstone of Spirestone", "=ds=#m8#", "25%" }, { 0, "", "", "", "" }, - { 12534, "INV_Misc_Head_Centaur_01", "=q1=Omokk's Head", "=ds=#m8#", "100.00%" }, + { 12534, "INV_Misc_Head_Centaur_01", "=q1=Omokk's Head", "=ds=#m8#", "100%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; LBRSSpirestoneBattleLord = { - { 13284, "INV_Boots_01", "=q3=Swiftdart Battleboots", "=ds=#s12#, #a3#", "48.68%" }, - { 13285, "INV_Weapon_Halberd_11", "=q3=The Nicker", "=ds=#h2#, #w1#", "34.87%" }, + { 13284, "INV_Boots_01", "=q3=Swiftdart Battleboots", "=ds=#s12#, #a3#", "40%" }, + { 13285, "INV_Weapon_Halberd_11", "=q3=The Nicker", "=ds=#h2#, #w1#", "60%" }, }; LBRSVosh = { - { 16712, "INV_Gauntlets_24", "=q3=Shadowcraft Gloves", "=ds=#s9#, #a2# (D1, =q12=#c6#=ds=)", "11.89%" }, + { 16712, "INV_Gauntlets_24", "=q3=Shadowcraft Gloves", "=ds=#s9#, #a2# (D1, =q12=#c6#=ds=)", "17%" }, { 0, "", "", "", "" }, - { 13257, "INV_Shoulder_07", "=q3=Demonic Runed Spaulders", "=ds=#s3#, #a2#", "16.84%" }, - { 12626, "INV_Bracer_07", "=q3=Funeral Cuffs", "=ds=#s8#, #a1#", "18.74%" }, - { 13255, "INV_Gauntlets_30", "=q3=Trueaim Gauntlets", "=ds=#s9#, #a3#", "18.08%" }, - { 12653, "INV_Weapon_Bow_08", "=q3=Riphook", "=ds=#w2#", "7.99%" }, - { 12651, "INV_Weapon_Crossbow_04", "=q3=Blackcrow", "=ds=#w3#", "8.56%" }, - { 12654, "Ability_Hunter_CriticalShot", "=q3=Doomshot", "=ds=#e5#", "23.06%" }, + { 13257, "INV_Shoulder_07", "=q3=Demonic Runed Spaulders", "=ds=#s3#, #a2#", "17%" }, + { 12626, "INV_Bracer_07", "=q3=Funeral Cuffs", "=ds=#s8#, #a1#", "17%" }, + { 13255, "INV_Gauntlets_30", "=q3=Trueaim Gauntlets", "=ds=#s9#, #a3#", "17%" }, + { 12653, "INV_Weapon_Bow_08", "=q3=Riphook", "=ds=#w2#", "17%" }, + { 12651, "INV_Weapon_Crossbow_04", "=q3=Blackcrow", "=ds=#w3#", "17%" }, + { 12654, "Ability_Hunter_CriticalShot", "=q3=Doomshot", "=ds=#e5#", "100%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; @@ -5232,95 +5445,95 @@ AtlasLoot_Data["AtlasLootItems"] = { { 12812, "INV_Gauntlets_29", "=q3=Unfired Plate Gauntlets", "=ds=#m8#" }, }; LBRSVoone = { - { 16676, "INV_Gauntlets_10", "=q3=Beaststalker's Gloves", "=ds=#s9#, #a3# (D1, =q14=#c2#=ds=)", "9.15%" }, + { 16676, "INV_Gauntlets_10", "=q3=Beaststalker's Gloves", "=ds=#s9#, #a3# (D1, =q14=#c2#=ds=)", "17%" }, { 0, "", "", "", "" }, - { 13177, "INV_Jewelry_Amulet_04", "=q3=Talisman of Evasion", "=ds=#s2#", "15.40%" }, - { 13179, "INV_Bracer_09", "=q3=Brazecore Armguards", "=ds=#s8#, #a3#", "16.12%" }, - { 22231, "INV_Boots_Cloth_02", "=q3=Kayser's Boots of Precision", "=ds=#s12#, #a1#", "15.40%" }, - { 13173, "INV_ThrowingAxe_06", "=q3=Flightblade Throwing Axe", "=ds=#w11#", "79.85%" }, - { 12582, "INV_Weapon_ShortBlade_12", "=q3=Keris of Zul'Serak", "=ds=#h1#, #w4#", "8.08%" }, + { 13177, "INV_Jewelry_Amulet_04", "=q3=Talisman of Evasion", "=ds=#s2#", "17%" }, + { 13179, "INV_Bracer_09", "=q3=Brazecore Armguards", "=ds=#s8#, #a3#", "17%" }, + { 22231, "INV_Boots_Cloth_02", "=q3=Kayser's Boots of Precision", "=ds=#s12#, #a1#", "17%" }, + { 13173, "INV_ThrowingAxe_06", "=q3=Flightblade Throwing Axe", "=ds=#w11#", "100%" }, + { 12582, "INV_Weapon_ShortBlade_12", "=q3=Keris of Zul'Serak", "=ds=#h1#, #w4#", "17%" }, { 0, "", "", "", "" }, - { 12335, "INV_Misc_Gem_Opal_01", "=q2=Gemstone of Smolderthorn", "=ds=#m8#", "21.43%" }, + { 12335, "INV_Misc_Gem_Opal_01", "=q2=Gemstone of Smolderthorn", "=ds=#m8#", "20%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; LBRSGrayhoof = { { 0, "INV_Misc_Bag_09", "=q6=#j3#", "=q5=Mor Grayhoof" }, - { 22306, "INV_Belt_03", "=q3=Ironweave Belt", "=ds=#s10#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "20.28%" }, - { 22325, "INV_Belt_26", "=q3=Belt of the Trickster", "=ds=#s10#, #a2#", "20.28%" }, - { 22319, "INV_Misc_Book_07", "=q3=Tome of Divine Right", "=ds=#s15#", "20.81%" }, - { 22398, "INV_Relics_IdolofRejuvenation", "=q3=Idol of Rejuvenation", "=ds=#s16#, #e16# =q13=#c1#", "12.87%" }, - { 22322, "INV_Mace_15", "=q3=The Jaw Breaker", "=ds=#h1#, #w6#", "20.28%" }, + { 22306, "INV_Belt_03", "=q3=Ironweave Belt", "=ds=#s10#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "20%" }, + { 22325, "INV_Belt_26", "=q3=Belt of the Trickster", "=ds=#s10#, #a2#", "20%" }, + { 22319, "INV_Misc_Book_07", "=q3=Tome of Divine Right", "=ds=#s15#", "20%" }, + { 22398, "INV_Relics_IdolofRejuvenation", "=q3=Idol of Rejuvenation", "=ds=#s16#, #e16# =q13=#c1#", "20%" }, + { 22322, "INV_Mace_15", "=q3=The Jaw Breaker", "=ds=#h1#, #w6#", "20%" }, }; LBRSSmolderweb = { - { 16715, "INV_Boots_08", "=q3=Wildheart Boots", "=ds=#s12#, #a2# (D1,=q13=#c1#=ds=)", "13.03%" }, + { 16715, "INV_Boots_08", "=q3=Wildheart Boots", "=ds=#s12#, #a2# (D1,=q13=#c1#=ds=)", "25%" }, { 0, "", "", "", "" }, - { 13244, "INV_Gauntlets_29", "=q3=Gilded Gauntlets", "=ds=#s9#, #a3#", "25.06%" }, - { 13213, "INV_Misc_Gem_Pearl_01", "=q3=Smolderweb's Eye", "=ds=#s14#", "24.97%" }, - { 13183, "INV_Wand_10", "=q3=Venomspitter", "=ds=#h1#, #w6#", "12.49%" }, + { 13244, "INV_Gauntlets_29", "=q3=Gilded Gauntlets", "=ds=#s9#, #a3#", "25%" }, + { 13213, "INV_Misc_Gem_Pearl_01", "=q3=Smolderweb's Eye", "=ds=#s14#", "25%" }, + { 13183, "INV_Wand_10", "=q3=Venomspitter", "=ds=#h1#, #w6#", "25%" }, { 0, "", "", "", "" }, - { 80758, "", "=q3=Carapace of the Spider Queen", "=ds=#s5#, #a2#", "40%" }, + { 80758, "INV_Chest_Leather_03", "=q3=Carapace of the Spider Queen", "=ds=#s5#, #a2#", "40%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; LBRSCrystalFang = { - { 13185, "INV_Shoulder_02", "=q3=Sunderseer Mantle", "=ds=#s3#, #a1#", "28.10%" }, - { 13184, "INV_Gauntlets_13", "=q3=Fallbrush Handgrips", "=ds=#s9#, #a2#", "35.48%" }, - { 13218, "INV_Weapon_ShortBlade_16", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#", "17.62%" }, + { 13185, "INV_Shoulder_02", "=q3=Sunderseer Mantle", "=ds=#s3#, #a1#", "33%" }, + { 13184, "INV_Gauntlets_13", "=q3=Fallbrush Handgrips", "=ds=#s9#, #a2#", "33%" }, + { 13218, "INV_Weapon_ShortBlade_16", "=q3=Fang of the Crystal Spider", "=ds=#h1#, #w4#", "33%" }, }; LBRSDoomhowl = { - { 13258, "INV_Gauntlets_22", "=q3=Slaghide Gauntlets", "=ds=#s9#, #a2# =q2=#e31#", "17.09%" }, - { 22232, "INV_Belt_18", "=q3=Marksman's Girdle", "=ds=#s10#, #a3#", "20.60%" }, - { 13259, "INV_Boots_Plate_08", "=q3=Ribsteel Footguards", "=ds=#s12#, #a4#", "25.38%" }, - { 13178, "INV_Jewelry_Ring_22", "=q3=Rosewine Circle", "=ds=#s13#", "21.48%" }, + { 13258, "INV_Gauntlets_22", "=q3=Slaghide Gauntlets", "=ds=#s9#, #a2# =q2=#e31#", "25%" }, + { 22232, "INV_Belt_18", "=q3=Marksman's Girdle", "=ds=#s10#, #a3#", "25%" }, + { 13259, "INV_Boots_Plate_08", "=q3=Ribsteel Footguards", "=ds=#s12#, #a4#", "25%" }, + { 13178, "INV_Jewelry_Ring_22", "=q3=Rosewine Circle", "=ds=#s13#", "25%" }, { 0, "", "", "" }, - { 18784, "INV_Misc_Note_04", "=q3=Top Half of Advanced Armorsmithing: Volume III", "=ds=#m9#", "10.30%" }, + { 18784, "INV_Misc_Note_04", "=q3=Top Half of Advanced Armorsmithing: Volume III", "=ds=#m9#", "16%" }, { 12725, "INV_Scroll_05", "=q3=Plans: Enchanted Thorium Helm", "=q1=#m4# =ds=#p2# #m14#" }, { 12620, "INV_Helmet_02", "=q3=Enchanted Thorium Helm", "=ds=#s1#, #a4#" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; LBRSZigris = { - { 13253, "INV_Gauntlets_14", "=q3=Hands of Power", "=ds=#s9#, #a1#", "14.22%" }, - { 13252, "INV_Belt_10", "=q3=Cloudrunner Girdle", "=ds=#s10#, #a2#", "15.48%" }, + { 13253, "INV_Gauntlets_14", "=q3=Hands of Power", "=ds=#s9#, #a1#", "15%" }, + { 13252, "INV_Belt_10", "=q3=Cloudrunner Girdle", "=ds=#s10#, #a2#", "15%" }, { 0, "", "", "", "" }, - { 12835, "INV_Scroll_03", "=q3=Plans: Annihilator", "=ds=#p2# #m14#", "8.37%" }, + { 12835, "INV_Scroll_03", "=q3=Plans: Annihilator", "=ds=#p2# #m14#", "10%" }, { 12798, "INV_Axe_12", "=q3=Annihilator", "=ds=#h3#, #w1#" }, { 0, "", "", "", "" }, - { 80759, "", "=q3=Cloak of the Protector", "=ds=#s4#", "40%" }, + { 80759, "INV_Misc_Cape_21", "=q3=Cloak of the Protector", "=ds=#s4#", "40%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; LBRSSlavener = { - { 16718, "INV_Shoulder_01", "=q3=Wildheart Spaulders", "=ds=#s3#, #a2# (D1, =q13=#c1#=ds=)", "11.04%" }, + { 16718, "INV_Shoulder_01", "=q3=Wildheart Spaulders", "=ds=#s3#, #a2# (D1, =q13=#c1#=ds=)", "25%" }, { 0, "", "", "", "" }, - { 13208, "INV_Bracer_07", "=q3=Bleak Howler Armguards", "=ds=#s8#, #a2#", "18.02%" }, - { 13206, "INV_Pants_06", "=q3=Wolfshear Leggings", "=ds=#s11#, #a1#", "17.46%" }, - { 13205, "INV_Shield_14", "=q3=Rhombeard Protector", "=ds=#w8#", "16.93%" }, + { 13208, "INV_Bracer_07", "=q3=Bleak Howler Armguards", "=ds=#s8#, #a2#", "25%" }, + { 13206, "INV_Pants_06", "=q3=Wolfshear Leggings", "=ds=#s11#, #a1#", "25%" }, + { 13205, "INV_Shield_14", "=q3=Rhombeard Protector", "=ds=#w8#", "25%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; LBRSHalycon = { - { 13212, "INV_Belt_14", "=q3=Halycon's Spiked Collar", "=ds=#s2#", "18.23%" }, - { 22313, "INV_Bracer_13", "=q3=Ironweave Bracers", "=ds=#s8#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "18.16%" }, - { 13211, "INV_Bracer_07", "=q3=Slashclaw Bracers", "=ds=#s8#, #a3#", "20.32%" }, - { 13210, "INV_Boots_Wolf", "=q3=Pads of the Dread Wolf", "=ds=#s12#, #a2#", "9.88%" }, + { 13212, "INV_Belt_14", "=q3=Halycon's Spiked Collar", "=ds=#s2#", "25%" }, + { 22313, "INV_Bracer_13", "=q3=Ironweave Bracers", "=ds=#s8#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "25%" }, + { 13211, "INV_Bracer_07", "=q3=Slashclaw Bracers", "=ds=#s8#, #a3#", "25%" }, + { 13210, "INV_Boots_Wolf", "=q3=Pads of the Dread Wolf", "=ds=#s12#, #a2#", "25%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; LBRSWyrmthalak = { - { 13143, "INV_Jewelry_Ring_17", "=q4=Mark of the Dragon Lord", "=ds=#s13#", "1.11%" }, + { 13143, "INV_Jewelry_Ring_17", "=q4=Mark of the Dragon Lord", "=ds=#s13#", "2%" }, { 0, "", "", "", "" }, - { 16679, "INV_Shoulder_10", "=q3=Beaststalker's Mantle", "=ds=#s3#, #a3# (D1, =q14=#c2#=ds=)", "9.89%" }, + { 16679, "INV_Shoulder_10", "=q3=Beaststalker's Mantle", "=ds=#s3#, #a3# (D1, =q14=#c2#=ds=)", "14%" }, { 0, "", "", "", "" }, - { 13162, "INV_Gauntlets_29", "=q3=Reiver Claws", "=ds=#s9#, #a4#", "12.14%" }, - { 13164, "INV_Misc_Gem_Bloodstone_01", "=q3=Heart of the Scale", "=ds=#s14#", "0.73%" }, - { 22321, "INV_Misc_Gem_Bloodstone_01", "=q3=Heart of Wyrmthalak", "=ds=#s14#", "13.87%" }, - { 13163, "INV_Sword_18", "=q3=Relentless Scythe", "=ds=#h2#, #w10#", "14.12%" }, - { 13148, "INV_Spear_05", "=q3=Chillpike", "=ds=#w7#", "0.76%" }, - { 13161, "INV_Staff_29", "=q3=Trindlehaven Staff", "=ds=#w9#", "10.40%" }, + { 13162, "INV_Gauntlets_29", "=q3=Reiver Claws", "=ds=#s9#, #a4#", "14%" }, + { 13164, "INV_Misc_Gem_Bloodstone_01", "=q3=Heart of the Scale", "=ds=#s14#", "14%" }, + { 22321, "INV_Misc_Gem_Bloodstone_01", "=q3=Heart of Wyrmthalak", "=ds=#s14#", "14%" }, + { 13163, "INV_Sword_18", "=q3=Relentless Scythe", "=ds=#h2#, #w10#", "14%" }, + { 13148, "INV_Spear_05", "=q3=Chillpike", "=ds=#w7#", "14%" }, + { 13161, "INV_Staff_29", "=q3=Trindlehaven Staff", "=ds=#w9#", "14%" }, { 0, "", "", "", "" }, - { 12337, "INV_Misc_Gem_Bloodstone_01", "=q2=Gemstone of Bloodaxe", "=ds=#m8#", "29.15%" }, + { 12337, "INV_Misc_Gem_Bloodstone_01", "=q2=Gemstone of Bloodaxe", "=ds=#m8#", "30%" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, @@ -5329,89 +5542,89 @@ AtlasLoot_Data["AtlasLootItems"] = { { 13968, "INV_Jewelry_Talisman_08", "=q3=Eye of the Beast", "=q1=#m4# =ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" }, { 13965, "INV_Misc_ArmorKit_09", "=q3=Blackhand's Breadth", "=q1=#m4# =ds=#s14#" }, { 0, "", "", "", "" }, - { 80760, "", "=q3=Spireblade Band","=ds=#s13#", "35%" }, + { 80760, "INV_Jewelry_Ring_14", "=q3=Spireblade Band","=ds=#s13#", "35%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, Quantity of 2", "100%" }, }; LBRSGrimaxe = { - { 12637, "INV_Gauntlets_26", "=q3=Backusarian Gauntlets", "=ds=#s9#, #a4#", "26.44%" }, - { 12634, "INV_Belt_13", "=q3=Chiselbrand Girdle", "=ds=#s10#, #a3#", "31.73%" }, - { 12621, "INV_Weapon_Halberd_11", "=q3=Demonfork", "=ds=#h3#, #w1#", "27.64%" }, + { 12637, "INV_Gauntlets_26", "=q3=Backusarian Gauntlets", "=ds=#s9#, #a4#", "33%" }, + { 12634, "INV_Belt_13", "=q3=Chiselbrand Girdle", "=ds=#s10#, #a3#", "33%" }, + { 12621, "INV_Weapon_Halberd_11", "=q3=Demonfork", "=ds=#h3#, #w1#", "33%" }, { 0, "", "", "", "" }, - { 12838, "INV_Scroll_03", "=q3=Plans: Arcanite Reaper", "=ds=#p2# #m14#", "6.73%" }, + { 12838, "INV_Scroll_03", "=q3=Plans: Arcanite Reaper", "=ds=#p2# #m14#", "7%" }, { 12784, "INV_Axe_09", "=q3=Arcanite Reaper", "=ds=#h2#, #w1#" }, }; LBRSBashguud = { - { 13203, "INV_Misc_Cape_19", "=q3=Armswake Cloak", "=ds=#s4#", "44.27%" }, - { 13198, "INV_Gauntlets_11", "=q3=Hurd Smasher", "=ds=#h1#, #w13#", "28.35%" }, - { 13204, "INV_Mace_15", "=q3=Bashguuder", "=ds=#h1#, #w6#", "40.54%" }, + { 13203, "INV_Misc_Cape_19", "=q3=Armswake Cloak", "=ds=#s4#", "33%" }, + { 13198, "INV_Gauntlets_11", "=q3=Hurd Smasher", "=ds=#h1#, #w13#", "33%" }, + { 13204, "INV_Mace_15", "=q3=Bashguuder", "=ds=#h1#, #w6#", "33%" }, }; LBRSSpirestoneButcher = { - { 12608, "INV_Misc_Cape_18", "=q3=Butcher's Apron", "=ds=#s4#", "54.31%" }, - { 13286, "INV_Pick_05", "=q3=Rivenspike", "=ds=#h1#, #w1#", "35.78%" }, + { 12608, "INV_Misc_Cape_18", "=q3=Butcher's Apron", "=ds=#s4#", "50%" }, + { 13286, "INV_Pick_05", "=q3=Rivenspike", "=ds=#h1#, #w1#", "50%" }, }; LBRSSpirestoneLordMagus = { - { 13282, "INV_Boots_05", "=q3=Ogreseer Tower Boots", "=ds=#s12#, #a1#", "31.87%" }, - { 13283, "Spell_Holy_InnerFire", "=q3=Magus Ring", "=ds=#s13#", "32.18%" }, - { 13261, "INV_Wand_09", "=q3=Globe of D'sak", "=ds=#s15#", "35.06%" }, + { 13282, "INV_Boots_05", "=q3=Ogreseer Tower Boots", "=ds=#s12#, #a1#", "33%" }, + { 13283, "Spell_Holy_InnerFire", "=q3=Magus Ring", "=ds=#s13#", "33%" }, + { 13261, "INV_Wand_09", "=q3=Globe of D'sak", "=ds=#s15#", "33%" }, }; LBRSFelguard = { - { 13181, "INV_Gauntlets_15", "=q3=Demonskin Gloves", "=ds=#s9#, #a1#", "14.47%" }, - { 13182, "INV_Sword_36", "=q3=Phase Blade", "=ds=#h1#, #w10#", "11.63%" }, + { 13181, "INV_Gauntlets_15", "=q3=Demonskin Gloves", "=ds=#s9#, #a1#", "50%" }, + { 13182, "INV_Sword_36", "=q3=Phase Blade", "=ds=#h1#, #w10#", "50%" }, }; LBRSTrash = { - { 14513, "INV_Scroll_03", "=q4=Pattern: Robe of the Archmage", "=ds=#p8# #m14# =q7=#x52#", "10.12%" }, + { 14513, "INV_Scroll_03", "=q4=Pattern: Robe of the Archmage", "=ds=#p8# #m14# =q7=#x52#", "10%" }, { 14152, "INV_Chest_Cloth_38", "=q4=Robe of the Archmage", "=ds=#s5#, #a1# =q10=#c3#" }, { 0, "", "", "" }, - { 16696, "INV_Belt_10", "=q3=Devout Belt", "=ds=#s10#, #a1# (D1, =q9=#c5#=ds=)" }, - { 16685, "INV_Belt_08", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1, =q10=#c3#=ds=)" }, - { 16683, "INV_Jewelry_Ring_23", "=q3=Magister's Bindings", "=ds=#s8#, #a1# (D1, =q10=#c3#=ds=)" }, - { 16703, "INV_Bracer_13", "=q3=Dreadmist Bracers", "=ds=#s8#, #a1# (D1, =q11=#c8#=ds=)" }, - { 16713, "INV_Belt_03", "=q3=Shadowcraft Belt", "=ds=#s10#, #a2# (D1, =q12=#c6#=ds=)" }, - { 16716, "INV_Belt_15", "=q3=Wildheart Belt", "=ds=#s10#, #a2# (D1, =q13=#c1#=ds=)" }, - { 16680, "INV_Belt_28", "=q3=Beaststalker's Belt", "=ds=#s10#, #a3# (D1, =q14=#c2#=ds=)" }, - { 16673, "INV_Belt_16", "=q3=Cord of Elements", "=ds=#s10#, #a3# (D1, =q15=#c7#=ds=)" }, - { 16736, "INV_Belt_34", "=q3=Belt of Valor", "=ds=#s10#, #a4# (D1, =q17=#c9#=ds=)" }, - { 16735, "INV_Bracer_18", "=q3=Bracers of Valor", "=ds=#s8#, #a4# (D1, =q17=#c9#=ds=)" }, + { 16696, "INV_Belt_10", "=q3=Devout Belt", "=ds=#s10#, #a1# (D1, =q9=#c5#=ds=)", "0.5-4%" }, + { 16685, "INV_Belt_08", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1, =q10=#c3#=ds=)", "1-3%" }, + { 16683, "INV_Jewelry_Ring_23","=q3=Magister's Bindings","=ds=#s8#, #a1# (D1, =q10=#c3#=ds=)", "0.75-2%" }, + { 16703, "INV_Bracer_13", "=q3=Dreadmist Bracers", "=ds=#s8#, #a1# (D1, =q11=#c8#=ds=)", "1-4%" }, + { 16713, "INV_Belt_03", "=q3=Shadowcraft Belt", "=ds=#s10#, #a2# (D1, =q12=#c6#=ds=)", "0.75-3%" }, + { 16716, "INV_Belt_15", "=q3=Wildheart Belt", "=ds=#s10#, #a2# (D1, =q13=#c1#=ds=)", "1.25-1.5%" }, + { 16680,"INV_Belt_28","=q3=Beaststalker's Belt","=ds=#s10#, #a3# (D1, =q14=#c2#=ds=)", "0.75-2%" }, + { 16673, "INV_Belt_16", "=q3=Cord of Elements", "=ds=#s10#, #a3# (D1, =q15=#c7#=ds=)", "1-3%" }, + { 16736, "INV_Belt_34", "=q3=Belt of Valor", "=ds=#s10#, #a4# (D1, =q17=#c9#=ds=)", "2-3%" }, + { 16735, "INV_Bracer_18", "=q3=Bracers of Valor", "=ds=#s8#, #a4# (D1, =q17=#c9#=ds=)", "0.75-3%" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 15749, "INV_Scroll_06", "=q2=Pattern: Volcanic Breastplate", "=ds=#p7# #m20# =q7=#x53#", "2.04%" }, - { 15775, "INV_Scroll_06", "=q2=Pattern: Volcanic Shoulders", "=ds=#p7# #m14# =q7=#x55#", "10.56%" }, - { 13494, "INV_Scroll_06", "=q2=Recipe: Greater Fire Protection Potion", "=ds=#p1# #m18# =q7=#x54#/#x53#", "4.69%" }, - { 16250, "INV_Misc_Note_01", "=q2=Formula: Enchant Weapon - Superior Striking", "=ds=#p4# #m14# =q7=#x57#", "1.04%" }, - { 16244, "INV_Misc_Note_01", "=q2=Formula: Enchant Gloves - Greater Strength", "=ds=#p4# #m15# =q7=#x56#", "4.16%" }, - { 9214, "INV_Misc_Book_06", "=q2=Grimoire of Inferno", "=ds=#e20# =q11=#c8# =q7=#x51#", "4.33%" }, + { 15749, "INV_Scroll_06", "=q2=Pattern: Volcanic Breastplate", "=ds=#p7# #m20# =q7=#x53#", "5%" }, + { 15775, "INV_Scroll_06", "=q2=Pattern: Volcanic Shoulders", "=ds=#p7# #m14# =q7=#x55#", "23%" }, + { 13494, "INV_Scroll_06", "=q2=Recipe: Greater Fire Protection Potion", "=ds=#p1# #m18# =q7=#x54#/#x53#", "2%" }, + { 16250, "INV_Misc_Note_01", "=q2=Formula: Enchant Weapon - Superior Striking", "=ds=#p4# #m14# =q7=#x57#", "3%" }, + { 16244, "INV_Misc_Note_01", "=q2=Formula: Enchant Gloves - Greater Strength", "=ds=#p4# #m15# =q7=#x56#", "10%" }, + { 9214, "INV_Misc_Book_06", "=q2=Grimoire of Inferno", "=ds=#e20# =q11=#c8# =q7=#x51#", "5%" }, { 0, "", "", "" }, - { 12219, "Racial_Dwarf_FindTreasure", "=q1=Unadorned Seal of Ascension", "=ds=#m8#", "10%" }, - { 12586, "INV_Misc_Organ_02", "=q1=Immature Venom Sac", "=q7=#x58#", "83.58%" }, + { 12219, "Racial_Dwarf_FindTreasure", "=q1=Unadorned Seal of Ascension", "=ds=#m8#", "8%" }, + { 12586, "INV_Misc_Organ_02", "=q1=Immature Venom Sac", "=q7=#x58#", "71-96%" }, }; SCHOLOBlood = { { 13523, "INV_Potion_24", "=q1=Blood of Innocents", "=ds=#m8#", "100%" }, }; SCHOLOKirtonostheHerald = { - { 16734, "INV_Boots_Plate_03", "=q3=Boots of Valor", "=ds=#s12#, #a4# (D1, =q17=#c9#=ds=)", "11.12%" }, + { 16734, "INV_Boots_Plate_03", "=q3=Boots of Valor", "=ds=#s12#, #a4# (D1, =q17=#c9#=ds=)", "11%" }, { 0, "", "", "", "" }, - { 13960, "INV_Misc_Orb_03", "=q3=Heart of the Fiend", "=ds=#s2#", "16.36%" }, - { 13955, "INV_Shoulder_25", "=q3=Stoneform Shoulders", "=ds=#s3#, #a4#", "14.73%" }, - { 13969, "INV_Bracer_16", "=q3=Loomguard Armbraces", "=ds=#s8#, #a3#", "16.25%" }, - { 13957, "INV_Gauntlets_09", "=q3=Gargoyle Slashers", "=ds=#s9#, #a2#", "14.40%" }, - { 13956, "INV_Belt_12", "=q3=Clutch of Andros", "=ds=#s10#, #a1#", "15.31%" }, - { 13967, "INV_Boots_Plate_04", "=q3=Windreaver Greaves", "=ds=#s12#, #a3#", "14.87%" }, - { 14024, "INV_Weapon_ShortBlade_16", "=q3=Frightalon", "=ds=#h1#, #w4#", "15.55%" }, - { 13983, "INV_Weapon_Halberd_09", "=q3=Gravestone War Axe", "=ds=#h2#, #w1#", "12.78%" }, + { 13960, "INV_Misc_Orb_03", "=q3=Heart of the Fiend", "=ds=#s2#", "11%" }, + { 13955, "INV_Shoulder_25", "=q3=Stoneform Shoulders", "=ds=#s3#, #a4#", "11%" }, + { 13969, "INV_Bracer_16", "=q3=Loomguard Armbraces", "=ds=#s8#, #a3#", "11%" }, + { 13957, "INV_Gauntlets_09", "=q3=Gargoyle Slashers", "=ds=#s9#, #a2#", "11%" }, + { 13956, "INV_Belt_12", "=q3=Clutch of Andros", "=ds=#s10#, #a1#", "11%" }, + { 13967, "INV_Boots_Plate_04", "=q3=Windreaver Greaves", "=ds=#s12#, #a3#", "11%" }, + { 14024, "INV_Weapon_ShortBlade_16", "=q3=Frightalon", "=ds=#h1#, #w4#", "11%" }, + { 13983, "INV_Weapon_Halberd_09", "=q3=Gravestone War Axe", "=ds=#h2#, #w1#", "11%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; SCHOLOJandiceBarov = { - { 16701, "INV_Misc_Bone_TaurenSkull_01", "=q3=Dreadmist Mantle", "=ds=#s3#, #a1# (D1, =q11=#c8#=ds=)","12.20%" }, + { 16701, "INV_Misc_Bone_TaurenSkull_01", "=q3=Dreadmist Mantle", "=ds=#s3#, #a1# (D1, =q11=#c8#=ds=)","14%" }, { 0, "", "", "", "" }, - { 14548, "INV_Shoulder_11", "=q3=Royal Cap Spaulders", "=ds=#s3#, #a3#", "10.06%" }, - { 18689, "INV_Misc_Cape_20", "=q3=Phantasmal Cloak", "=ds=#s4#", "7.52%" }, - { 14543, "INV_Gauntlets_15", "=q3=Darkshade Gloves", "=ds=#s9#, #a1#", "0.26%" }, - { 14545, "INV_Pants_11", "=q3=Ghostloom Leggings", "=ds=#s11#, #a2#", "8.81%" }, - { 18690, "INV_Pants_04", "=q3=Wraithplate Leggings", "=ds=#s11#, #a4#", "8.59%" }, - { 14541, "INV_Sword_03", "=q3=Barovian Family Sword", "=ds=#h2#, #w10#", "8.27%" }, - { 22394, "INV_Staff_29", "=q3=Staff of Metanoia", "=ds=#w9#", "8.67%" }, + { 14548, "INV_Shoulder_11", "=q3=Royal Cap Spaulders", "=ds=#s3#, #a3#", "14%" }, + { 18689, "INV_Misc_Cape_20", "=q3=Phantasmal Cloak", "=ds=#s4#", "14%" }, + { 14543, "INV_Gauntlets_15", "=q3=Darkshade Gloves", "=ds=#s9#, #a1#", "14%" }, + { 14545, "INV_Pants_11", "=q3=Ghostloom Leggings", "=ds=#s11#, #a2#", "14%" }, + { 18690, "INV_Pants_04", "=q3=Wraithplate Leggings", "=ds=#s11#, #a4#", "14%" }, + { 14541, "INV_Sword_03", "=q3=Barovian Family Sword", "=ds=#h2#, #w10#", "14%" }, + { 22394, "INV_Staff_29", "=q3=Staff of Metanoia", "=ds=#w9#", "14%" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, { 13523, "INV_Potion_24", "=q1=Blood of Innocents", "=ds=#m8#", "100%" }, @@ -5419,21 +5632,21 @@ AtlasLoot_Data["AtlasLootItems"] = { { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; SCHOLOLordBlackwood = { - { 23132, "INV_Sword_05", "=q3=Lord Blackwood's Blade", "=ds=#h1#, #w10#", "12.83%" }; - { 23156, "INV_Misc_Bone_10", "=q3=Blackwood's Thigh", "=ds=#s15#", "45.21%" }; - { 23139, "INV_Shield_02", "=q3=Lord Blackwood's Buckler", "=ds=#w8#", "38.75%" }; + { 23132, "INV_Sword_05", "=q3=Lord Blackwood's Blade", "=ds=#h1#, #w10#", "33%" }; + { 23156, "INV_Misc_Bone_10", "=q3=Blackwood's Thigh", "=ds=#s15#", "33%" }; + { 23139, "INV_Shield_02", "=q3=Lord Blackwood's Buckler", "=ds=#w8#", "33%" }; }; SCHOLORattlegore = { - { 16711, "INV_Boots_08", "=q3=Shadowcraft Boots", "=ds=#s12#, #a2# (D1, =q12=#c6#=ds=)", "14.32%" }, + { 16711, "INV_Boots_08", "=q3=Shadowcraft Boots", "=ds=#s12#, #a2# (D1, =q12=#c6#=ds=)", "14%" }, { 0, "", "", "", "" }, - { 14539, "INV_Helmet_14", "=q3=Bone Ring Helm", "=ds=#s1#, #a2#", "10.89%" }, - { 14538, "INV_Shoulder_02", "=q3=Deadwalker Mantle", "=ds=#s3#, #a1#", "11.32%" }, - { 18686, "INV_Shoulder_03", "=q3=Bone Golem Shoulders", "=ds=#s3#, #a3#", "9.04%" }, - { 14537, "INV_Boots_Plate_09", "=q3=Corpselight Greaves", "=ds=#s12#, #a4#", "10.22%" }, - { 14528, "INV_Shield_02", "=q3=Rattlecage Buckler", "=ds=#w8#", "9.16%" }, - { 14531, "INV_Hammer_13", "=q3=Frightskull Shaft", "=ds=#h2#, #w6#", "9.55%" }, + { 14539, "INV_Helmet_14", "=q3=Bone Ring Helm", "=ds=#s1#, #a2#", "14%" }, + { 14538, "INV_Shoulder_02", "=q3=Deadwalker Mantle", "=ds=#s3#, #a1#", "14%" }, + { 18686, "INV_Shoulder_03", "=q3=Bone Golem Shoulders", "=ds=#s3#, #a3#", "14%" }, + { 14537, "INV_Boots_Plate_09", "=q3=Corpselight Greaves", "=ds=#s12#, #a4#", "14%" }, + { 14528, "INV_Shield_02", "=q3=Rattlecage Buckler", "=ds=#w8#", "14%" }, + { 14531, "INV_Hammer_13", "=q3=Frightskull Shaft", "=ds=#h2#, #w6#", "14%" }, { 0, "", "", "", "" }, - { 18782, "INV_Misc_Note_03", "=q3=Top Half of Advanced Armorsmithing: Volume II", "=ds=#m8#", "5.71%" }, + { 18782, "INV_Misc_Note_03", "=q3=Top Half of Advanced Armorsmithing: Volume II", "=ds=#m8#", "40%" }, { 12726, "INV_Scroll_05", "=q3=Plans: Enchanted Thorium Leggings", "=q1=#m4# =ds=#p2# #m14#" }, { 12619, "INV_Pants_04", "=q3=Enchanted Thorium Leggings", "=ds=#s11#, #a4#" }, { 0, "", "", "", "" }, @@ -5442,342 +5655,344 @@ AtlasLoot_Data["AtlasLootItems"] = { { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; SCHOLODeathKnight = { - { 18760, "INV_Jewelry_Ring_09", "=q3=Necromantic Band", "=ds=#s13#", "24.75%" }, - { 18761, "INV_Wand_12", "=q3=Oblivion's Touch", "=ds=#w12#", "17.17%" }, - { 18758, "INV_Weapon_ShortBlade_18", "=q3=Specter's Blade", "=ds=#h1#, #w4#", "15.72%" }, - { 18759, "INV_Axe_18", "=q3=Malicious Axe", "=ds=#h2#, #w1#", "24.75%" }, + { 18760, "INV_Jewelry_Ring_09", "=q3=Necromantic Band", "=ds=#s13#", "25%" }, + { 18761, "INV_Wand_12", "=q3=Oblivion's Touch", "=ds=#w12#", "25%" }, + { 18758, "INV_Weapon_ShortBlade_18", "=q3=Specter's Blade", "=ds=#h1#, #w4#", "25%" }, + { 18759, "INV_Axe_18", "=q3=Malicious Axe", "=ds=#h2#, #w1#", "25%" }, }; SCHOLOVectus = { - { 18691, "INV_Jewelry_Necklace_06", "=q3=Dark Advisor's Pendant", "=ds=#s2#", "6.16%" }, - { 14577, "INV_Pants_08", "=q3=Skullsmoke Pants", "=ds=#s11#, #a1#", "5.24%" }, + { 18691, "INV_Jewelry_Necklace_06", "=q3=Dark Advisor's Pendant", "=ds=#s2#", "7%" }, + { 14577, "INV_Pants_08", "=q3=Skullsmoke Pants", "=ds=#s11#, #a1#", "7%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; SCHOLOMarduk = { - { 18692, "INV_Boots_Plate_08", "=q3=Death Knight Sabatons", "=ds=#s12#, #a4#", "6.29%" }, - { 14576, "INV_Sword_15", "=q3=Ebon Hilt of Marduk", "=ds=#h3#, #w10#", "6.55%" }, + { 18692, "INV_Boots_Plate_08", "=q3=Death Knight Sabatons", "=ds=#s12#, #a4#", "7%" }, + { 14576, "INV_Sword_15", "=q3=Ebon Hilt of Marduk", "=ds=#h3#, #w10#", "7%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; SCHOLORasFrostwhisper = { - { 13314, "INV_Chest_Cloth_12", "=q4=Alanna's Embrace", "=ds=#s5#, #a1#", "1.07%" }, + { 13314, "INV_Chest_Cloth_12", "=q4=Alanna's Embrace", "=ds=#s5#, #a1#", "2%" }, { 0, "", "", "", "" }, - { 16689, "INV_Shoulder_23", "=q3=Magister's Mantle", "=ds=#s3#, #a1# (D1, =q10=#c3#=ds=)", "11.93%" }, + { 16689, "INV_Shoulder_23", "=q3=Magister's Mantle", "=ds=#s3#, #a1# (D1, =q10=#c3#=ds=)", "8%" }, { 0, "", "", "", "" }, - { 14503, "INV_Shoulder_25", "=q3=Death's Clutch", "=ds=#s3#, #a2#", "11.73%" }, - { 14340, "INV_Chest_Cloth_46", "=q3=Freezing Lich Robes", "=ds=#s5#, #a1#", "12.55%" }, - { 18693, "INV_Gauntlets_16", "=q3=Shivery Handwraps", "=ds=#s9#, #a1#", "12.38%" }, - { 14525, "INV_Gauntlets_29", "=q3=Boneclenched Gauntlets", "=ds=#s9#, #a4#", "11.45%" }, - { 14502, "INV_Belt_10", "=q3=Frostbite Girdle", "=ds=#s10#, #a2#", "11.20%" }, - { 14522, "INV_Pants_04", "=q3=Maelstrom Leggings", "=ds=#s11#, #a3#", "13.01%" }, - { 18694, "INV_Boots_01", "=q3=Shadowy Mail Greaves", "=ds=#s12#, #a3#", "14.63%" }, - { 18695, "INV_Misc_Book_06", "=q3=Spellbound Tome", "=ds=#s15#", "10.86%" }, - { 18696, "INV_Shield_02", "=q3=Intricately Runed Shield", "=ds=#w8#", "13.04%" }, - { 13952, "INV_Axe_03", "=q3=Iceblade Hacker", "=ds=#h3#, #w1#", "9.74%" }, - { 14487, "INV_Hammer_13", "=q3=Bonechill Hammer", "=ds=#h1#, #w6#", "11.92%" }, - { 13521, "INV_Scroll_06", "=q2=Recipe: Flask of Supreme Power", "=ds=#p1# #m14#", "2.92%" }, + { 14503, "INV_Shoulder_25", "=q3=Death's Clutch", "=ds=#s3#, #a2#", "8%" }, + { 14340, "INV_Chest_Cloth_46", "=q3=Freezing Lich Robes", "=ds=#s5#, #a1#", "8%" }, + { 18693, "INV_Gauntlets_16", "=q3=Shivery Handwraps", "=ds=#s9#, #a1#", "8%" }, + { 14525, "INV_Gauntlets_29", "=q3=Boneclenched Gauntlets", "=ds=#s9#, #a4#", "8%" }, + { 14502, "INV_Belt_10", "=q3=Frostbite Girdle", "=ds=#s10#, #a2#", "8%" }, + { 14522, "INV_Pants_04", "=q3=Maelstrom Leggings", "=ds=#s11#, #a3#", "8%" }, + { 18694, "INV_Boots_01", "=q3=Shadowy Mail Greaves", "=ds=#s12#, #a3#", "8%" }, + { 18695, "INV_Misc_Book_06", "=q3=Spellbound Tome", "=ds=#s15#", "8%" }, + { 18696, "INV_Shield_02", "=q3=Intricately Runed Shield", "=ds=#w8#", "8%" }, + { 13952, "INV_Axe_03", "=q3=Iceblade Hacker", "=ds=#h3#, #w1#", "8%" }, + { 14487, "INV_Hammer_13", "=q3=Bonechill Hammer", "=ds=#h1#, #w6#", "8%" }, + { 13521, "INV_Scroll_06", "=q2=Recipe: Flask of Supreme Power", "=ds=#p1# #m14#", "3%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, }; SCHOLOKormok = { { 0, "INV_Misc_Bag_09", "=q6=#j3#", "=q5=Kormok" }, - { 22303, "INV_Pants_08", "=q3=Ironweave Pants", "=ds=#s11#, #a1#", "23.33%" }, - { 22326, "INV_Jewelry_Ring_19", "=q3=Amalgam's Band", "=ds=#s13#", "16.67%" }, - { 22331, "INV_Jewelry_Ring_33", "=q3=Band of the Steadfast Hero", "=ds=#s13#", "15.42%" }, - { 22332, "INV_Sword_25", "=q3=Blade of Necromancy", "=ds=#h3#, #w10#", "25.42%" }, - { 22333, "INV_Hammer_04", "=q3=Hammer of Divine Might", "=ds=#h2#, #w6#", "12.50%" }, + { 22303, "INV_Pants_08", "=q3=Ironweave Pants", "=ds=#s11#, #a1#", "20%" }, + { 22326, "INV_Jewelry_Ring_19", "=q3=Amalgam's Band", "=ds=#s13#", "20%" }, + { 22331, "INV_Jewelry_Ring_33", "=q3=Band of the Steadfast Hero", "=ds=#s13#", "20%" }, + { 22332, "INV_Sword_25", "=q3=Blade of Necromancy", "=ds=#h3#, #w10#", "20%" }, + { 22333, "INV_Hammer_04", "=q3=Hammer of Divine Might", "=ds=#h2#, #w6#", "20%" }, }; SCHOLOInstructorMalicia = { - { 16710, "INV_Bracer_07", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, =q12=#c6#=ds=)", "3.51%" }, + { 16710, "INV_Bracer_07", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, =q12=#c6#=ds=)", "4%" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, { 0, "", "", "", "" }, - { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "1.81%" }, - { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "1.12%" }, - { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "1.27%" }, - { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "1.51%" }, - { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "0.54%" }, - { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "0.45%" }, - { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "1.03%" }, - { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "0.82%" }, - { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "0.09%" }, - { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "0.45%" }, - { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "0.60%" }, - { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "0.60%" }, - { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "0.67%" }, - { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "0.85%" }, - { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "1.09%" }, - { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "1.00%" }, - { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "0.42%" }, - { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "1.12%" }, - { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "0.88%" }, - { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "0.67%" }, - { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "0.36%" }, - { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "0.57%" }, - { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "0.85%" }, - { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "1.76%" }, - { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "1.76%" }, - { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "0.91%" }, - { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "1.39%" }, + { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "4%" }, + { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "4%" }, + { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "4%" }, + { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "4%" }, + { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "4%" }, + { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "4%" }, + { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "4%" }, + { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "4%" }, + { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "4%" }, + { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "4%" }, + { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "4%" }, + { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "4%" }, + { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "4%" }, + { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "4%" }, + { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "4%" }, + { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "4%" }, + { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "4%" }, + { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "4%" }, + { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "4%" }, + { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "4%" }, + { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "4%" }, + { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "4%" }, + { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "4%" }, + { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "4%" }, + { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "4%" }, + { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "4%" }, + { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "4%" }, }; SCHOLODoctorTheolenKrastinov = { - { 16684, "INV_Gauntlets_17", "=q3=Magister's Gloves", "=ds=#s9#, #a1# (D1, =q10=#c3#=ds=)", "9.75%" }, - { 14617, "INV_Shirt_Red_01", "=q1=Sawbones Shirt", "=ds=#s6#", "2.07%" }, + { 16684, "INV_Gauntlets_17", "=q3=Magister's Gloves", "=ds=#s9#, #a1# (D1, =q10=#c3#=ds=)", "14%" }, + { 14617, "INV_Shirt_Red_01", "=q1=Sawbones Shirt", "=ds=#s6#", "2%" }, + { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, + { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "4%" }, + { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "4%" }, + { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "4%" }, + { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "4%" }, + { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "4%" }, + { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "4%" }, + { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "4%" }, + { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "4%" }, + { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "4%" }, + { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "4%" }, + { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "4%" }, + { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "4%" }, + { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "4%" }, + { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "4%" }, + { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "4%" }, + { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "4%" }, + { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "4%" }, + { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "4%" }, + { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "4%" }, + { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "4%" }, + { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "4%" }, + { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "4%" }, + { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "4%" }, + { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "4%" }, + { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "4%" }, + { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "4%" }, + { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "4%" }, + { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, - { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "1.81%" }, - { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "1.12%" }, - { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "1.27%" }, - { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "1.51%" }, - { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "0.54%" }, - { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "0.45%" }, - { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "1.03%" }, - { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "0.82%" }, - { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "0.09%" }, - { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "0.45%" }, - { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "0.60%" }, - { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "0.60%" }, - { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "0.67%" }, - { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "0.85%" }, - { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "1.09%" }, - { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "1.00%" }, - { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "0.42%" }, - { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "1.12%" }, - { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "0.88%" }, - { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "0.67%" }, - { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "0.36%" }, - { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "0.57%" }, - { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "0.85%" }, - { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "1.76%" }, - { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "1.76%" }, - { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "0.91%" }, - { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "1.39%" }, }; SCHOLOLorekeeperPolkelt ={ - { 16705, "INV_Gauntlets_32", "=q3=Dreadmist Wraps", "=ds=#s9#, #a1# (D1, =q11=#c8#=ds=)", "14.54%" }, + { 16705, "INV_Gauntlets_32", "=q3=Dreadmist Wraps", "=ds=#s9#, #a1# (D1, =q11=#c8#=ds=)", "17%" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, { 0, "", "", "", "" }, - { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "1.81%" }, - { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "1.12%" }, - { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "1.27%" }, - { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "1.51%" }, - { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "0.54%" }, - { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "0.45%" }, - { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "1.03%" }, - { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "0.82%" }, - { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "0.09%" }, - { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "0.45%" }, - { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "0.60%" }, - { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "0.60%" }, - { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "0.67%" }, - { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "0.85%" }, - { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "1.09%" }, - { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "1.00%" }, - { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "0.42%" }, - { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "1.12%" }, - { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "0.88%" }, - { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "0.67%" }, - { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "0.36%" }, - { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "0.57%" }, - { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "0.85%" }, - { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "1.76%" }, - { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "1.76%" }, - { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "0.91%" }, - { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "1.39%" }, + { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "4%" }, + { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "4%" }, + { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "4%" }, + { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "4%" }, + { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "4%" }, + { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "4%" }, + { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "4%" }, + { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "4%" }, + { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "4%" }, + { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "4%" }, + { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "4%" }, + { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "4%" }, + { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "4%" }, + { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "4%" }, + { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "4%" }, + { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "4%" }, + { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "4%" }, + { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "4%" }, + { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "4%" }, + { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "4%" }, + { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "4%" }, + { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "4%" }, + { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "4%" }, + { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "4%" }, + { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "4%" }, + { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "4%" }, + { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "4%" }, }; SCHOLOTheRavenian = { - { 16716, "INV_Belt_15", "=q3=Wildheart Belt", "=ds=#s10#, #a2# (D1, =q13=#c1#=ds=)", "2.60%" }, + { 16716, "INV_Belt_15", "=q3=Wildheart Belt", "=ds=#s10#, #a2# (D1, =q13=#c1#=ds=)", "4%" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, { 0, "", "", "", "" }, - { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "1.81%" }, - { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "1.12%" }, - { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "1.27%" }, - { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "1.51%" }, - { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "0.54%" }, - { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "0.45%" }, - { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "1.03%" }, - { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "0.82%" }, - { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "0.09%" }, - { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "0.45%" }, - { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "0.60%" }, - { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "0.60%" }, - { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "0.67%" }, - { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "0.85%" }, - { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "1.09%" }, - { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "1.00%" }, - { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "0.42%" }, - { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "1.12%" }, - { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "0.88%" }, - { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "0.67%" }, - { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "0.36%" }, - { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "0.57%" }, - { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "0.85%" }, - { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "1.76%" }, - { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "1.76%" }, - { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "0.91%" }, - { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "1.39%" }, + { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "4%" }, + { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "4%" }, + { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "4%" }, + { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "4%" }, + { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "4%" }, + { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "4%" }, + { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "4%" }, + { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "4%" }, + { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "4%" }, + { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "4%" }, + { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "4%" }, + { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "4%" }, + { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "4%" }, + { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "4%" }, + { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "4%" }, + { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "4%" }, + { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "4%" }, + { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "4%" }, + { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "4%" }, + { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "4%" }, + { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "4%" }, + { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "4%" }, + { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "4%" }, + { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "4%" }, + { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "4%" }, + { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "4%" }, + { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "4%" }, }; SCHOLOLordAlexeiBarov = { - { 16722, "INV_Bracer_14", "=q3=Lightforge Bracers", "=ds=#s8#, #a4# (D1, =q16=#c4#=ds=)", "3.37%" }, + { 16722, "INV_Bracer_14", "=q3=Lightforge Bracers", "=ds=#s8#, #a4# (D1, =q16=#c4#=ds=)", "5%" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, { 0, "", "", "", "" }, - { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "1.81%" }, - { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "1.12%" }, - { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "1.27%" }, - { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "1.51%" }, - { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "0.54%" }, - { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "0.45%" }, - { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "1.03%" }, - { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "0.82%" }, - { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "0.09%" }, - { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "0.45%" }, - { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "0.60%" }, - { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "0.60%" }, - { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "0.67%" }, - { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "0.85%" }, - { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "1.09%" }, - { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "1.00%" }, - { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "0.42%" }, - { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "1.12%" }, - { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "0.88%" }, - { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "0.67%" }, - { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "0.36%" }, - { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "0.57%" }, - { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "0.85%" }, - { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "1.76%" }, - { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "1.76%" }, - { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "0.91%" }, - { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "1.39%" }, + { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "4%" }, + { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "4%" }, + { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "4%" }, + { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "4%" }, + { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "4%" }, + { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "4%" }, + { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "4%" }, + { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "4%" }, + { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "4%" }, + { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "4%" }, + { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "4%" }, + { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "4%" }, + { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "4%" }, + { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "4%" }, + { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "4%" }, + { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "4%" }, + { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "4%" }, + { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "4%" }, + { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "4%" }, + { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "4%" }, + { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "4%" }, + { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "4%" }, + { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "4%" }, + { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "4%" }, + { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "4%" }, + { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "4%" }, + { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "4%" }, }; SCHOLOLadyIlluciaBarov = { { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, - { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "1.81%" }, - { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "1.12%" }, - { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "1.27%" }, - { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "1.51%" }, - { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "0.54%" }, - { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "0.45%" }, - { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "1.03%" }, - { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "0.82%" }, - { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "0.09%" }, - { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "0.45%" }, - { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "0.60%" }, - { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "0.60%" }, - { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "0.67%" }, - { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "0.85%" }, - { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "1.09%" }, - { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "1.00%" }, - { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "0.42%" }, - { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "1.12%" }, - { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "0.88%" }, - { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "0.67%" }, - { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "0.36%" }, - { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "0.57%" }, - { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "0.85%" }, - { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "1.76%" }, - { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "1.76%" }, - { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "0.91%" }, - { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "1.39%" }, + { 18681, "INV_Shoulder_05", "=q3=Burial Shawl", "=ds=#s3#, #a1#", "4%" }, + { 14633, "INV_Shoulder_02", "=q3=Necropile Mantle", "=ds=#s3#, #a1#", "4%" }, + { 14626, "INV_Chest_Cloth_43", "=q3=Necropile Robe", "=ds=#s5#, #a1#", "4%" }, + { 14637, "INV_Chest_Leather_03", "=q3=Cadaverous Armor", "=ds=#s5#, #a2#", "4%" }, + { 14611, "INV_Chest_Leather_05", "=q3=Bloodmail Hauberk", "=ds=#s5#, #a3#", "4%" }, + { 14624, "INV_Chest_Chain_15", "=q3=Deathbone Chestplate", "=ds=#s5#, #a4#", "4%" }, + { 14629, "INV_Bracer_07", "=q3=Necropile Cuffs", "=ds=#s8#, #a1#", "4%" }, + { 14640, "INV_Gauntlets_15", "=q3=Cadaverous Gloves", "=ds=#s9#, #a2#", "4%" }, + { 14615, "INV_Gauntlets_26", "=q3=Bloodmail Gauntlets", "=ds=#s9#, #a3#", "4%" }, + { 14622, "INV_Gauntlets_28", "=q3=Deathbone Gauntlets", "=ds=#s9#, #a4#", "4%" }, + { 14636, "INV_Belt_16", "=q3=Cadaverous Belt", "=ds=#s10#, #a2#", "4%" }, + { 14614, "INV_Belt_23", "=q3=Bloodmail Belt", "=ds=#s10#, #a3#", "4%" }, + { 14620, "INV_Belt_12", "=q3=Deathbone Girdle", "=ds=#s10#, #a4#", "4%" }, + { 14632, "INV_Pants_08", "=q3=Necropile Leggings", "=ds=#s11#, #a1#", "4%" }, + { 14638, "INV_Pants_07", "=q3=Cadaverous Leggings", "=ds=#s11#, #a2#", "4%" }, + { 18682, "INV_Pants_02", "=q3=Ghoul Skin Leggings", "=ds=#s11#, #a2#", "4%" }, + { 14612, "INV_Pants_06", "=q3=Bloodmail Legguards", "=ds=#s11#, #a3#", "4%" }, + { 14623, "INV_Pants_04", "=q3=Deathbone Legguards", "=ds=#s11#, #a4#", "4%" }, + { 14631, "INV_Boots_05", "=q3=Necropile Boots", "=ds=#s12#, #a1#", "4%" }, + { 14641, "INV_Boots_05", "=q3=Cadaverous Walkers", "=ds=#s12#, #a2#", "4%" }, + { 14616, "INV_Boots_01", "=q3=Bloodmail Boots", "=ds=#s12#, #a3#", "4%" }, + { 14621, "INV_Boots_01", "=q3=Deathbone Sabatons", "=ds=#s12#, #a4#", "4%" }, + { 18684, "INV_Jewelry_Ring_15", "=q3=Dimly Opalescent Ring", "=ds=#s13# =q2=#e32#", "4%" }, + { 23201, "INV_Relics_LibramofHope", "=q3=Libram of Divinity", "=ds=#s16#, #e18# =q16=#c4#", "4%" }, + { 23200, "INV_Relics_TotemofLife", "=q3=Totem of Sustaining", "=ds=#s16#, #e17# =q15=#c7#", "4%" }, + { 18680, "INV_Weapon_Bow_08", "=q3=Ancient Bone Bow", "=ds=#w2#", "4%" }, + { 18683, "INV_Hammer_13", "=q3=Hammer of the Vesper", "=ds=#h1#, #w6#", "4%" }, }; SCHOLODarkmasterGandling = { - { 13937, "INV_Jewelry_Talisman_12", "=q4=Headmaster's Charge", "=ds=#w9#", "1.11%" }, - { 14514, "INV_Scroll_03", "=q4=Pattern: Robe of the Void", "=ds=#p8# #m14#", "6.71%" }, + { 13937, "INV_Jewelry_Talisman_12", "=q4=Headmaster's Charge", "=ds=#w9#", "1%" }, + { 14514, "INV_Scroll_03", "=q4=Pattern: Robe of the Void", "=ds=#p8# #m14#", "7%" }, { 14153, "INV_Chest_Cloth_51", "=q4=Robe of the Void", "=ds=#s5#, #a1# =q11=#c8#", "" }, { 0, "", "", "", "" }, - { 16693, "INV_Crown_01", "=q3=Devout Crown", "=ds=#s1#, #a1# (D1, =q9=#c5#=ds=)", "7.89%" }, - { 16686, "INV_Crown_02", "=q3=Magister's Crown", "=ds=#s1#, #a1# (D1, =q10=#c3#=ds=)", "8.60%" }, - { 16698, "INV_Helmet_29", "=q3=Dreadmist Mask", "=ds=#s1#, #a1# (D1, =q11=#c8#=ds=)", "8.78%" }, - { 16707, "INV_Helmet_41", "=q3=Shadowcraft Cap", "=ds=#s1#, #a2# (D1, =q12=#c6#=ds=)", "6.65%" }, - { 16720, "INV_Helmet_27", "=q3=Wildheart Cowl", "=ds=#s1#, #a2# (D1, =q13=#c1#=ds=)", "7.09%" }, - { 16677, "INV_Helmet_24", "=q3=Beaststalker's Cap", "=ds=#s1#, #a3# (D1, =q14=#c2#=ds=)", "7.00%" }, - { 16667, "INV_Helmet_04", "=q3=Coif of Elements", "=ds=#s1#, #a3# (D1, =q15=#c7#=ds=)", "2.86%" }, - { 16727, "INV_Helmet_08", "=q3=Lightforge Helm", "=ds=#s1#, #a4# (D1, =q16=#c4#=ds=)", "5.32%" }, - { 16731, "INV_Helmet_02", "=q3=Helm of Valor", "=ds=#s1#, #a4# (D1, =q17=#c9#=ds=)", "6.54%" }, + { 16693, "INV_Crown_01", "=q3=Devout Crown", "=ds=#s1#, #a1# (D1, =q9=#c5#=ds=)", "11%" }, + { 16686, "INV_Crown_02", "=q3=Magister's Crown", "=ds=#s1#, #a1# (D1, =q10=#c3#=ds=)", "11%" }, + { 16698, "INV_Helmet_29", "=q3=Dreadmist Mask", "=ds=#s1#, #a1# (D1, =q11=#c8#=ds=)", "11%" }, + { 16707, "INV_Helmet_41", "=q3=Shadowcraft Cap", "=ds=#s1#, #a2# (D1, =q12=#c6#=ds=)", "11%" }, + { 16720, "INV_Helmet_27", "=q3=Wildheart Cowl", "=ds=#s1#, #a2# (D1, =q13=#c1#=ds=)", "11%" }, + { 16677, "INV_Helmet_24", "=q3=Beaststalker's Cap", "=ds=#s1#, #a3# (D1, =q14=#c2#=ds=)", "11%" }, + { 16667, "INV_Helmet_04", "=q3=Coif of Elements", "=ds=#s1#, #a3# (D1, =q15=#c7#=ds=)", "11%" }, + { 16727, "INV_Helmet_08", "=q3=Lightforge Helm", "=ds=#s1#, #a4# (D1, =q16=#c4#=ds=)", "11%" }, + { 16731, "INV_Helmet_02", "=q3=Helm of Valor", "=ds=#s1#, #a4# (D1, =q17=#c9#=ds=)", "11%" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, - { 13944, "INV_Chest_Chain_17","=q3=Tombstone Breastplate", "=ds=#s5#, #a2#", "8.96%" }, - { 13951, "INV_Bracer_18", "=q3=Vigorsteel Vambraces", "=ds=#s8#, #a4#", "10.38%" }, - { 13950, "INV_Belt_09", "=q3=Detention Strap", "=ds=#s10#, #a3#", "0.24%" }, - { 13398, "INV_Boots_08", "=q3=Boots of the Shrieker", "=ds=#s12#, #a2#", "10.75%" }, - { 22433, "INV_Jewelry_Ring_16", "=q3=Don Mauricio's Band of Domination", "=ds=#s13#", "7.72%" }, - { 13938, "INV_Misc_Bone_TaurenSkull_01","=q3=Bonecreeper Stylus", "=ds=#w12#", "8.80% " }, - { 13953, "INV_Sword_41", "=q3=Silent Fang", "=ds=#h3#, #w10#", "9.68%" }, - { 13964, "INV_Weapon_ShortBlade_25", "=q3=Witchblade", "=ds=#h1#, #w4#", "9.82%" }, + { 13944, "INV_Chest_Chain_17","=q3=Tombstone Breastplate", "=ds=#s5#, #a2#", "14%" }, + { 13951, "INV_Bracer_18", "=q3=Vigorsteel Vambraces", "=ds=#s8#, #a4#", "14%" }, + { 13950, "INV_Belt_09", "=q3=Detention Strap", "=ds=#s10#, #a3#", "14%" }, + { 13398, "INV_Boots_08", "=q3=Boots of the Shrieker", "=ds=#s12#, #a2#", "14%" }, + { 22433, "INV_Jewelry_Ring_16", "=q3=Don Mauricio's Band of Domination", "=ds=#s13#", "14%" }, + { 13938, "INV_Misc_Bone_TaurenSkull_01","=q3=Bonecreeper Stylus", "=ds=#w12#", "14%" }, + { 13953, "INV_Sword_41", "=q3=Silent Fang", "=ds=#h3#, #w10#", "14%" }, + { 13964, "INV_Weapon_ShortBlade_25", "=q3=Witchblade", "=ds=#h1#, #w4#", "14%" }, { 0, "", "", "", "" }, - { 19276, "INV_Misc_Ticket_Tarot_Portal_01", "=q3=Ace of Portals", "=ds=#e19#", "2.20%" }, + { 19276, "INV_Misc_Ticket_Tarot_Portal_01", "=q3=Ace of Portals", "=ds=#e19#", "3%" }, { 0, "", "", "", "" }, - { 13501, "INV_Scroll_06", "=q2=Recipe: Major Mana Potion", "=ds=#p1# #m15#", "8.64%" }, + { 13501, "INV_Scroll_06", "=q2=Recipe: Major Mana Potion", "=ds=#p1# #m15#", "10%" }, { 0, "", "", "", "" }, { 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "100%" }, }; SCHOLOTrash = { - { 16685, "INV_Belt_08", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1, =q10=#c3#=ds=)", "0.22%" }, - { 16702, "INV_Belt_12", "=q3=Dreadmist Belt", "=ds=#s10#, #a1# (D1, =q11=#c8#=ds=)", "0.90%" }, - { 16710, "INV_Bracer_07", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, =q12=#c6#=ds=)", "1.53%" }, - { 16714,"INV_Bracer_09","=q3=Wildheart Bracers","=ds=#s8#, #a2# (D1, =q13=#c1#=ds=)", "1.36%" }, - { 16716, "INV_Belt_15", "=q3=Wildheart Belt", "=ds=#s8#, #a2# (D1, =q13=#c1#=ds=)", "1.84%" }, - { 16671, "INV_Bracer_02", "=q3=Bindings of Elements", "=ds=#s8#, #a3# (D1, =q15=#c7#=ds=)", "1.90%" }, - { 16722,"INV_Bracer_14","=q3=Lightforge Bracers","=ds=#s8#, #a4# (D1, =q16=#c4#=ds=)", "2.72%" }, + { 16685, "INV_Belt_08", "=q3=Magister's Belt", "=ds=#s10#, #a1# (D1, =q10=#c3#=ds=)", "1.5%" }, + { 16702, "INV_Belt_12", "=q3=Dreadmist Belt", "=ds=#s10#, #a1# (D1, =q11=#c8#=ds=)", "1-1.5%" }, + { 16710, "INV_Bracer_07", "=q3=Shadowcraft Bracers", "=ds=#s8#, #a2# (D1, =q12=#c6#=ds=)", "1.5-2%" }, + { 16714,"INV_Bracer_09","=q3=Wildheart Bracers","=ds=#s8#, #a2# (D1, =q13=#c1#=ds=)", "1.5-1.75%" }, + { 16716, "INV_Belt_15", "=q3=Wildheart Belt", "=ds=#s8#, #a2# (D1, =q13=#c1#=ds=)", "1.5-2%" }, + { 16671, "INV_Bracer_02", "=q3=Bindings of Elements", "=ds=#s8#, #a3# (D1, =q15=#c7#=ds=)", "1.5%" }, + { 16722,"INV_Bracer_14","=q3=Lightforge Bracers","=ds=#s8#, #a4# (D1, =q16=#c4#=ds=)", "2-3%" }, { 0,"","","" }, { 12843,"INV_Jewelry_Talisman_12","=q2=Corruptor's Scourgestone","=ds=#m32#" }, { 12841,"INV_Jewelry_Talisman_13","=q1=Invader's Scourgestone","=ds=#m32#" }, { 12840,"INV_Jewelry_Talisman_14","=q1=Minion's Scourgestone","=ds=#m32#" }, { 0,"","","" }, - { 20520,"Spell_Shadow_SealOfKings","=q2=Dark Rune","=ds=#m25#, #m31#, #e12#", "16.78%" }, - { 12753,"INV_Misc_ShadowEgg","=q2=Skin of Shadow","=ds=#m31#", "17.31%" }, + { 20520,"Spell_Shadow_SealOfKings","=q2=Dark Rune","=ds=#m25#, #m31#, #e12#", "15-48%" }, + { 12753,"INV_Misc_ShadowEgg","=q2=Skin of Shadow","=ds=#m31#", "17-19%" }, { 0,"","","" }, - { 18698, "INV_Helmet_41", "=q3=Tattered Leather Hood", "=ds=#s1#, #a2#", "0.01%" }, - { 18699, "INV_Shoulder_27", "=q3=Icy Tomb Spaulders", "=ds=#s3#, #a2#", "0.01%" }, - { 14536, "INV_Chest_Chain_14", "=q3=Bonebrace Hauberk", "=ds=#s5#, #a3#", "0.01%" }, - { 18700, "INV_Bracer_07", "=q3=Malefic Bracers", "=ds=#s8#, #a2#", "0.01%" }, - { 18702, "INV_Belt_28", "=q3=Belt of the Ordained", "=ds=#s10#, #a4#", "0.01%" }, - { 18697, "INV_Boots_Fabric_01", "=q3=Coldstone Slippers", "=ds=#s12#, #a1#", "0.01%" }, - { 18701, "INV_Jewelry_Ring_24", "=q3=Innervating Band", "=ds=#s13#", "0.01%" }, + { 18698, "INV_Helmet_41", "=q3=Tattered Leather Hood", "=ds=#s1#, #a2#", "0.01-0.06%" }, + { 18699, "INV_Shoulder_27", "=q3=Icy Tomb Spaulders", "=ds=#s3#, #a2#", "0.02-0.04%" }, + { 14536, "INV_Chest_Chain_14", "=q3=Bonebrace Hauberk", "=ds=#s5#, #a3#", "0.013-0.06%" }, + { 18700, "INV_Bracer_07", "=q3=Malefic Bracers", "=ds=#s8#, #a2#", "0.011-0.5%" }, + { 18702, "INV_Belt_28", "=q3=Belt of the Ordained", "=ds=#s10#, #a4#", "0.01-0.02%" }, + { 18697, "INV_Boots_Fabric_01", "=q3=Coldstone Slippers", "=ds=#s12#, #a1#", "0.1-0.26%" }, + { 18701, "INV_Jewelry_Ring_24", "=q3=Innervating Band", "=ds=#s13#", "0.1-0.06%" }, { 0,"","","" }, - { 16254, "INV_Misc_Note_01", "=q3=Formula: Enchant Weapon - Lifestealing", "=ds=#p4# #m14# =q7=#x70#", "0.93%" }, - { 16255, "INV_Misc_Note_01", "=q2=Formula: Enchant 2H Weapon - Major Spirit", "=ds=#p4# #m14# =q7=#x68#", "0.88%" }, - { 15773, "INV_Scroll_06", "=q2=Pattern: Wicked Leather Armor", "=ds=#p7# #m14# =q7=#x70#", "3.03%" }, - { 15776, "INV_Scroll_06", "=q2=Pattern: Runic Leather Armor", "=ds=#p7# #m14# =q7=#x69#", "1.62%" }, + { 16254, "INV_Misc_Note_01", "=q3=Formula: Enchant Weapon - Lifestealing", "=ds=#p4# #m14# =q7=#x70#", "0.88%" }, + { 16255, "INV_Misc_Note_01", "=q2=Formula: Enchant 2H Weapon - Major Spirit", "=ds=#p4# #m14# =q7=#x68#", "2%" }, + { 15773, "INV_Scroll_06", "=q2=Pattern: Wicked Leather Armor", "=ds=#p7# #m14# =q7=#x70#", "7%" }, + { 15776, "INV_Scroll_06", "=q2=Pattern: Runic Leather Armor", "=ds=#p7# #m14# =q7=#x69#", "4%" }, { 0,"","","" }, - { 13920,"INV_Misc_MonsterScales_17","=q1=Healthy Dragon Scale","=ds=#m2# =q7=#x67#", "5.72%" }, + { 13920,"INV_Misc_MonsterScales_17","=q1=Healthy Dragon Scale","=ds=#m2# =q7=#x67#", "6%" }, }; NAXPatchwerk = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "20%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22368, "INV_Misc_Desecrated_ClothShoulder", "=q4=Desecrated Shoulderpads", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "21.33%" }, - { 22361, "INV_Misc_Desecrated_MailShoulder", "=q4=Desecrated Spaulders", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "36.65%" }, - { 22354, "INV_Misc_Desecrated_PlateShoulder", "=q4=Desecrated Pauldrons", "=q17=#c9#=ds=, =q12=#c6#", "28.78%" }, + { 22368, "INV_Misc_Desecrated_ClothShoulder", "=q4=Desecrated Shoulderpads", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22361, "INV_Misc_Desecrated_MailShoulder", "=q4=Desecrated Spaulders", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22354, "INV_Misc_Desecrated_PlateShoulder", "=q4=Desecrated Pauldrons", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 22960, "INV_Misc_Cape_Naxxramas_02", "=q4=Cloak of Suturing", "=ds=#s4#", "12.84%" }, - { 22961, "INV_Jewelry_Ring_49Naxxramas", "=q4=Band of Reanimation", "=ds=Ring", "22.15%" }, - { 22820, "INV_Wand_1H_Stratholme_D_01", "=q4=Wand of Fates", "=ds=#w12#", "23.19%" }, - { 22818, "INV_Shield_27", "=q4=The Plague Bearer", "=ds=#w8#", "15.53%" }, - { 22815, "INV_Axe_22", "=q4=Severance", "=ds=#h2#, #w1#", "16.15%" }, + { 22960, "INV_Misc_Cape_Naxxramas_02", "=q4=Cloak of Suturing", "=ds=#s4#", "20%" }, + { 22961, "INV_Jewelry_Ring_49Naxxramas", "=q4=Band of Reanimation", "=ds=Ring", "20%" }, + { 22820, "INV_Wand_1H_Stratholme_D_01", "=q4=Wand of Fates", "=ds=#w12#", "20%" }, + { 22818, "INV_Shield_27", "=q4=The Plague Bearer", "=ds=#w8#", "20%" }, + { 22815, "INV_Axe_22", "=q4=Severance", "=ds=#h2#, #w1#", "20%" }, }; NAXGrobbulus = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "20%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22368, "INV_Misc_Desecrated_ClothShoulder", "=q4=Desecrated Shoulderpads", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22361, "INV_Misc_Desecrated_MailShoulder", "=q4=Desecrated Spaulders", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22354, "INV_Misc_Desecrated_PlateShoulder", "=q4=Desecrated Pauldrons", "=q17=#c9#=ds=, =q12=#c6#" }, + { 22368, "INV_Misc_Desecrated_ClothShoulder", "=q4=Desecrated Shoulderpads", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22361, "INV_Misc_Desecrated_MailShoulder", "=q4=Desecrated Spaulders", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22354, "INV_Misc_Desecrated_PlateShoulder", "=q4=Desecrated Pauldrons", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 22968, "INV_Shoulder_14", "=q4=Glacial Mantle", "=ds=#s3#, #a1#" }, - { 22967, "INV_Shoulder_14", "=q4=Icy Scale Spaulders", "=ds=#s3#, #a3#" }, - { 22810, "INV_Weapon_Rifle_11", "=q4=Toxin Injector", "=ds=#w5#" }, - { 22803, "INV_knife_1h_stratholme_d_02", "=q4=Midnight Haze", "=ds=#h1#, #w4#" }, - { 22988, "INV_Mace_1H_Stratholme_D_02", "=q4=The End of Dreams", "=ds=#h1#, #w6#" }, + { 22968, "INV_Shoulder_14", "=q4=Glacial Mantle", "=ds=#s3#, #a1#", "20%" }, + { 22967, "INV_Shoulder_14", "=q4=Icy Scale Spaulders", "=ds=#s3#, #a3#", "20%" }, + { 22810, "INV_Weapon_Rifle_11", "=q4=Toxin Injector", "=ds=#w5#", "20%" }, + { 22803, "INV_knife_1h_stratholme_d_02", "=q4=Midnight Haze", "=ds=#h1#, #w4#", "20%" }, + { 22988, "INV_Mace_1H_Stratholme_D_02", "=q4=The End of Dreams", "=ds=#h1#, #w6#", "20%" }, }; NAXGluth = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22983, "INV_Shoulder_05", "=q4=Rime Covered Mantle", "=ds=#s3#, #a1#" }, - { 22981, "INV_Jewelry_Necklace_27Naxxramas", "=q4=Gluth's Missing Collar", "=ds=#s2#" }, - { 22994, "INV_Offhand_Stratholme_A_02", "=q4=Digested Hand of Power", "=ds=#s15#" }, - { 23075, "INV_Armor_Shield_Naxxramas_D_01", "=q4=Death's Bargain", "=ds=#w8#" }, - { 22813, "INV_Sword_46", "=q4=Claymore of Unholy Might", "=ds=#h2#, #w10#" }, + { 22983, "INV_Shoulder_05", "=q4=Rime Covered Mantle", "=ds=#s3#, #a1#", "20%" }, + { 22981, "INV_Jewelry_Necklace_27Naxxramas", "=q4=Gluth's Missing Collar", "=ds=#s2#", "20%" }, + { 22994, "INV_Offhand_Stratholme_A_02", "=q4=Digested Hand of Power", "=ds=#s15#", "20%" }, + { 23075, "INV_Armor_Shield_Naxxramas_D_01", "=q4=Death's Bargain", "=ds=#w8#", "20%" }, + { 22813, "INV_Sword_46", "=q4=Claymore of Unholy Might", "=ds=#h2#, #w10#", "20%" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, @@ -5785,209 +6000,209 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 22368, "INV_Misc_Desecrated_ClothShoulder", "=q4=Desecrated Shoulderpads", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22369, "INV_Misc_Desecrated_ClothBracer", "=q4=Desecrated Bindings", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22370, "INV_Misc_Desecrated_ClothBelt", "=q4=Desecrated Belt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22372, "INV_Misc_Desecrated_ClothBoots", "=q4=Desecrated Sandals", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22361, "INV_Misc_Desecrated_MailShoulder", "=q4=Desecrated Spaulders", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22362, "INV_Misc_Desecrated_MailBracer", "=q4=Desecrated Wristguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22363, "INV_Misc_Desecrated_MailBelt", "=q4=Desecrated Girdle", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22365, "INV_Misc_Desecrated_MailBoots", "=q4=Desecrated Boots", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22354, "INV_Misc_Desecrated_PlateShoulder", "=q4=Desecrated Pauldrons", "=q17=#c9#=ds=, =q12=#c6#" }, - { 22355, "INV_Misc_Desecrated_PlateBracer", "=q4=Desecrated Bracers", "=q17=#c9#=ds=, =q12=#c6#" }, - { 22356, "INV_Misc_Desecrated_PlateBelt", "=q4=Desecrated Waistguard", "=q17=#c9#=ds=, =q12=#c6#" }, - { 22358, "INV_Misc_Desecrated_PlateBoots", "=q4=Desecrated Sabatons", "=q17=#c9#=ds=, =q12=#c6#" }, + { 22368, "INV_Misc_Desecrated_ClothShoulder", "=q4=Desecrated Shoulderpads", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "8%" }, + { 22369, "INV_Misc_Desecrated_ClothBracer", "=q4=Desecrated Bindings", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "8%" }, + { 22370, "INV_Misc_Desecrated_ClothBelt", "=q4=Desecrated Belt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "8%" }, + { 22372, "INV_Misc_Desecrated_ClothBoots", "=q4=Desecrated Sandals", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "8%" }, + { 22361, "INV_Misc_Desecrated_MailShoulder", "=q4=Desecrated Spaulders", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "8%" }, + { 22362, "INV_Misc_Desecrated_MailBracer", "=q4=Desecrated Wristguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "8%" }, + { 22363, "INV_Misc_Desecrated_MailBelt", "=q4=Desecrated Girdle", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "8%" }, + { 22365, "INV_Misc_Desecrated_MailBoots", "=q4=Desecrated Boots", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "8%" }, + { 22354, "INV_Misc_Desecrated_PlateShoulder", "=q4=Desecrated Pauldrons", "=q17=#c9#=ds=, =q12=#c6#", "8%" }, + { 22355, "INV_Misc_Desecrated_PlateBracer", "=q4=Desecrated Bracers", "=q17=#c9#=ds=, =q12=#c6#", "8%" }, + { 22356, "INV_Misc_Desecrated_PlateBelt", "=q4=Desecrated Waistguard", "=q17=#c9#=ds=, =q12=#c6#", "8%" }, + { 22358, "INV_Misc_Desecrated_PlateBoots", "=q4=Desecrated Sabatons", "=q17=#c9#=ds=, =q12=#c6#", "8%" }, }; NAXThaddius = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22367, "INV_Misc_Desecrated_ClothHelm", "=q4=Desecrated Circlet", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22360, "INV_Misc_Desecrated_MailHelm", "=q4=Desecrated Headpiece", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22353, "INV_Misc_Desecrated_PlateHelm", "=q4=Desecrated Helmet", "=q17=#c9#=ds=, =q12=#c6#" }, + { 22367, "INV_Misc_Desecrated_ClothHelm", "=q4=Desecrated Circlet", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22360, "INV_Misc_Desecrated_MailHelm", "=q4=Desecrated Headpiece", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22353, "INV_Misc_Desecrated_PlateHelm", "=q4=Desecrated Helmet", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 23000, "INV_Chest_Chain_15", "=q4=Plated Abomination Ribcage", "=ds=#s5#, #a4#" }, - { 23070, "INV_Pants_08", "=q4=Leggings of Polarity", "=ds=#s11#, #a1#" }, - { 23001, "INV_Trinket_Naxxramas02", "=q4=Eye of Diminution", "=ds=#s14#" }, - { 22808, "INV_Mace_1H_Stratholme_D_01", "=q4=The Castigator", "=ds=#h1#, #w6#" }, - { 22801, "INV_Staff_31", "=q4=Spire of Twilight", "=ds=#w9#" }, + { 23000, "INV_Chest_Chain_15", "=q4=Plated Abomination Ribcage", "=ds=#s5#, #a4#", "20%" }, + { 23070, "INV_Pants_08", "=q4=Leggings of Polarity", "=ds=#s11#, #a1#", "20%" }, + { 23001, "INV_Trinket_Naxxramas02", "=q4=Eye of Diminution", "=ds=#s14#", "20%" }, + { 22808, "INV_Mace_1H_Stratholme_D_01", "=q4=The Castigator", "=ds=#h1#, #w6#", "20%" }, + { 22801, "INV_Staff_31", "=q4=Spire of Twilight", "=ds=#w9#", "20%" }, }; NAXAnubRekhan = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "20%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22369, "INV_Misc_Desecrated_ClothBracer", "=q4=Desecrated Bindings", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "28.57%" }, - { 22362, "INV_Misc_Desecrated_MailBracer", "=q4=Desecrated Wristguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "31.30%" }, - { 22355, "INV_Misc_Desecrated_PlateBracer", "=q4=Desecrated Bracers", "=q17=#c9#=ds=, =q12=#c6#", "29.53%" }, + { 22369, "INV_Misc_Desecrated_ClothBracer", "=q4=Desecrated Bindings", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22362, "INV_Misc_Desecrated_MailBracer", "=q4=Desecrated Wristguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22355, "INV_Misc_Desecrated_PlateBracer", "=q4=Desecrated Bracers", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 22935, "INV_Jewelry_Amulet_04", "=q4=Touch of Frost", "=ds=#s2#", "13.32%" }, - { 22938, "INV_Misc_Cape_Naxxramas_02", "=q4=Cryptfiend Silk Cloak", "=ds=#s4#", "20.39%" }, - { 22936, "INV_Bracer_17", "=q4=Wristguards of Vengeance", "=ds=#s8#, #a4#", "16.85%" }, - { 22939, "INV_Jewelry_Ring_50Naxxramas", "=q4=Band of Unanswered Prayers", "=ds=#s13#", "16.85%" }, - { 22937, "INV_Offhand_Naxxramas_D_01", "=q4=Gem of Nerubis", "=ds=#s15#", "15.09%" }, + { 22935, "INV_Jewelry_Amulet_04", "=q4=Touch of Frost", "=ds=#s2#", "20%" }, + { 22938, "INV_Misc_Cape_Naxxramas_02", "=q4=Cryptfiend Silk Cloak", "=ds=#s4#", "20%" }, + { 22936, "INV_Bracer_17", "=q4=Wristguards of Vengeance", "=ds=#s8#, #a4#", "20%" }, + { 22939, "INV_Jewelry_Ring_50Naxxramas", "=q4=Band of Unanswered Prayers", "=ds=#s13#", "20%" }, + { 22937, "INV_Offhand_Naxxramas_D_01", "=q4=Gem of Nerubis", "=ds=#s15#", "20%" }, }; NAXGrandWidowFaerlina = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22369, "INV_Misc_Desecrated_ClothBracer", "=q4=Desecrated Bindings", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "25.22%" }, - { 22362, "INV_Misc_Desecrated_MailBracer", "=q4=Desecrated Wristguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "24.59%" }, - { 22355, "INV_Misc_Desecrated_PlateBracer", "=q4=Desecrated Bracers", "=q17=#c9#=ds=, =q12=#c6#", "35.74%" }, + { 22369, "INV_Misc_Desecrated_ClothBracer", "=q4=Desecrated Bindings", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22362, "INV_Misc_Desecrated_MailBracer", "=q4=Desecrated Wristguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22355, "INV_Misc_Desecrated_PlateBracer", "=q4=Desecrated Bracers", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 22943, "INV_Jewelry_Necklace_29Naxxramas", "=q4=Malice Stone Pendant", "=ds=#s2#", "17.49%" }, - { 22941, "INV_Shoulder_07", "=q4=Polar Shoulder Pads", "=ds=#s3#, #a2#", "14.96%" }, - { 22940, "INV_Shoulder_16", "=q4=Icebane Pauldrons", "=ds=#s3#, #a4#", "21.55%" }, - { 22942, "INV_Mace_29", "=q4=The Widow's Embrace", "=ds=#h1#, #w6#", "21.67%" }, - { 22806, "INV_Sword_60", "=q4=Widow's Remorse", "=ds=#h1#, #w10#", "14.45%" }, + { 22943, "INV_Jewelry_Necklace_29Naxxramas", "=q4=Malice Stone Pendant", "=ds=#s2#", "20%" }, + { 22941, "INV_Shoulder_07", "=q4=Polar Shoulder Pads", "=ds=#s3#, #a2#", "20%" }, + { 22940, "INV_Shoulder_16", "=q4=Icebane Pauldrons", "=ds=#s3#, #a4#", "20%" }, + { 22942, "INV_Mace_29", "=q4=The Widow's Embrace", "=ds=#h1#, #w6#", "20%" }, + { 22806, "INV_Sword_60", "=q4=Widow's Remorse", "=ds=#h1#, #w10#", "20%" }, }; NAXMaexxna = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22371, "INV_Misc_Desecrated_ClothGlove", "=q4=Desecrated Gloves", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "44.26%" }, - { 22364, "INV_Misc_Desecrated_MailGlove", "=q4=Desecrated Handguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "49.03%" }, - { 22357, "INV_Misc_Desecrated_PlateGloves", "=q4=Desecrated Gauntlets", "=q17=#c9#=ds=, =q12=#c6#", "90.80%" }, + { 22371, "INV_Misc_Desecrated_ClothGlove", "=q4=Desecrated Gloves", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22364, "INV_Misc_Desecrated_MailGlove", "=q4=Desecrated Handguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22357, "INV_Misc_Desecrated_PlateGloves", "=q4=Desecrated Gauntlets", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 22947, "INV_Jewelry_Necklace_28Naxxramas", "=q4=Pendant of Forgotten Names", "=ds=#s2#", "31.88%" }, - { 23220, "INV_Chest_Cloth_46", "=q4=Crystal Webbed Robe", "=ds=#s5#, #a1#", "11.34%" }, - { 22954, "INV_Trinket_Naxxramas04", "=q4=Kiss of the Spider", "=ds=#s14#", "11.62%" }, - { 22807, "INV_Sword_11", "=q4=Wraith Blade", "=ds=#h1#, #w10#", "14.25%" }, - { 22804, "INV_knife_1h_stratholme_d_01", "=q4=Maexxna's Fang", "=ds=#h1#, #w4#", "18.05%" }, + { 22947, "INV_Jewelry_Necklace_28Naxxramas", "=q4=Pendant of Forgotten Names", "=ds=#s2#", "20%" }, + { 23220, "INV_Chest_Cloth_46", "=q4=Crystal Webbed Robe", "=ds=#s5#, #a1#", "20%" }, + { 22954, "INV_Trinket_Naxxramas04", "=q4=Kiss of the Spider", "=ds=#s14#", "20%" }, + { 22807, "INV_Sword_11", "=q4=Wraith Blade", "=ds=#h1#, #w10#", "20%" }, + { 22804, "INV_knife_1h_stratholme_d_01", "=q4=Maexxna's Fang", "=ds=#h1#, #w4#", "20%" }, }; NAXInstructorRazuvious = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22372, "INV_Misc_Desecrated_ClothBoots", "=q4=Desecrated Sandals", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "27.64%" }, - { 22365, "INV_Misc_Desecrated_MailBoots", "=q4=Desecrated Boots", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "31.10%" }, - { 22358, "INV_Misc_Desecrated_PlateBoots", "=q4=Desecrated Sabatons", "=q17=#c9#=ds=, =q12=#c6#", "26.02%" }, + { 22372, "INV_Misc_Desecrated_ClothBoots", "=q4=Desecrated Sandals", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22365, "INV_Misc_Desecrated_MailBoots", "=q4=Desecrated Boots", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22358, "INV_Misc_Desecrated_PlateBoots", "=q4=Desecrated Sabatons", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 23017, "INV_Misc_Cape_Naxxramas_01", "=q4=Veil of Eclipse", "=ds=#s4#", "19.31%" }, - { 23219, "INV_Belt_13", "=q4=Girdle of the Mentor", "=ds=#s10#, #a4#", "8.74%" }, - { 23018, "INV_Jewelry_Ring_50Naxxramas", "=q4=Signet of the Fallen Defender", "=ds=#s13#", "19.31%" }, - { 23004, "INV_Relics_IdolofHealth", "=q4=Idol of Longevity", "=ds=#s16#, #e16# =q13=#c1#", "17.68%" }, - { 23009, "INV_Wand_1H_Stratholme_D_01", "=q4=Wand of the Whispering Dead", "=ds=#w12#", "12.80%" }, - { 23014, "INV_Sword_07", "=q4=Iblis, Blade of the Fallen Seraph", "=ds=#h1#, #w10#", "9.35%" }, + { 23017, "INV_Misc_Cape_Naxxramas_01", "=q4=Veil of Eclipse", "=ds=#s4#", "17%" }, + { 23219, "INV_Belt_13", "=q4=Girdle of the Mentor", "=ds=#s10#, #a4#", "17%" }, + { 23018, "INV_Jewelry_Ring_50Naxxramas", "=q4=Signet of the Fallen Defender", "=ds=#s13#", "17%" }, + { 23004, "INV_Relics_IdolofHealth", "=q4=Idol of Longevity", "=ds=#s16#, #e16# =q13=#c1#", "17%" }, + { 23009, "INV_Wand_1H_Stratholme_D_01", "=q4=Wand of the Whispering Dead", "=ds=#w12#", "17%" }, + { 23014, "INV_Sword_07", "=q4=Iblis, Blade of the Fallen Seraph", "=ds=#h1#, #w10#", "17%" }, }; NAXGothiktheHarvester = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22372, "INV_Misc_Desecrated_ClothBoots", "=q4=Desecrated Sandals", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22365, "INV_Misc_Desecrated_MailBoots", "=q4=Desecrated Boots", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22358, "INV_Misc_Desecrated_PlateBoots", "=q4=Desecrated Sabatons", "=q17=#c9#=ds=, =q12=#c6#" }, + { 22372, "INV_Misc_Desecrated_ClothBoots", "=q4=Desecrated Sandals", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22365, "INV_Misc_Desecrated_MailBoots", "=q4=Desecrated Boots", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22358, "INV_Misc_Desecrated_PlateBoots", "=q4=Desecrated Sabatons", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 23032, "INV_Helmet_53", "=q4=Glacial Headdress", "=ds=#s1#, #a1#" }, - { 23020, "INV_Helmet_04", "=q4=Polar Helmet", "=ds=#s1#, #a2#" }, - { 23023, "INV_Jewelry_Necklace_29Naxxramas", "=q4=Sadist's Collar", "=ds=#s2#" }, - { 23021, "INV_Bracer_07", "=q4=The Soul Harvester's Bindings", "=ds=#s8#, #a1#" }, - { 23073, "INV_Boots_08", "=q4=Boots of Displacement", "=ds=#s12#, #a2#" }, + { 23032, "INV_Helmet_53", "=q4=Glacial Headdress", "=ds=#s1#, #a1#", "20%" }, + { 23020, "INV_Helmet_04", "=q4=Polar Helmet", "=ds=#s1#, #a2#", "20%" }, + { 23023, "INV_Jewelry_Necklace_29Naxxramas", "=q4=Sadist's Collar", "=ds=#s2#", "20%" }, + { 23021, "INV_Bracer_07", "=q4=The Soul Harvester's Bindings", "=ds=#s8#, #a1#", "20%" }, + { 23073, "INV_Boots_08", "=q4=Boots of Displacement", "=ds=#s12#, #a2#", "20%" }, }; NAXTheFourHorsemen = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22351, "INV_Misc_Desecrated_ClothChest", "=q4=Desecrated Robe", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22350, "INV_Misc_Desecrated_MailChest", "=q4=Desecrated Tunic", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22349, "INV_Misc_Desecrated_PlateChest", "=q4=Desecrated Breastplate", "=q17=#c9#=ds=, =q12=#c6#" }, + { 22351, "INV_Misc_Desecrated_ClothChest", "=q4=Desecrated Robe", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22350, "INV_Misc_Desecrated_MailChest", "=q4=Desecrated Tunic", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22349, "INV_Misc_Desecrated_PlateChest", "=q4=Desecrated Breastplate", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 23071, "INV_Pants_Leather_09", "=q4=Leggings of Apocalypse", "=ds=#s11#, #a2#" }, - { 23025, "INV_Jewelry_Ring_48Naxxramas", "=q4=Seal of the Damned", "=ds=#s13#" }, - { 23027, "INV_Trinket_Naxxramas01", "=q4=Warmth of Forgiveness", "=ds=#s14#" }, - { 22811, "INV_Weapon_Bow_13", "=q4=Soulstring", "=ds=#w2#" }, - { 22809, "INV_Mace_26", "=q4=Maul of the Redeemed Crusader", "=ds=#h2#, #w6#" }, - { 22691, "INV_Sword_2H_AshbringerCorrupt", "=q4=Corrupted Ashbringer", "=ds=#h2#, #w10#" }, + { 23071, "INV_Pants_Leather_09", "=q4=Leggings of Apocalypse", "=ds=#s11#, #a2#", "17%" }, + { 23025, "INV_Jewelry_Ring_48Naxxramas", "=q4=Seal of the Damned", "=ds=#s13#", "17%" }, + { 23027, "INV_Trinket_Naxxramas01", "=q4=Warmth of Forgiveness", "=ds=#s14#", "17%" }, + { 22811, "INV_Weapon_Bow_13", "=q4=Soulstring", "=ds=#w2#", "17%" }, + { 22809, "INV_Mace_26", "=q4=Maul of the Redeemed Crusader", "=ds=#h2#, #w6#", "17%" }, + { 22691, "INV_Sword_2H_AshbringerCorrupt", "=q4=Corrupted Ashbringer", "=ds=#h2#, #w10#", "17%" }, }; NAXNoththePlaguebringer = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22370, "INV_Misc_Desecrated_ClothBelt", "=q4=Desecrated Belt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "26.23%" }, - { 22363, "INV_Misc_Desecrated_MailBelt", "=q4=Desecrated Girdle", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "32.67%" }, - { 22356, "INV_Misc_Desecrated_PlateBelt", "=q4=Desecrated Waistguard", "=q17=#c9#=ds=, =q12=#c6#", "29.66%" }, + { 22370, "INV_Misc_Desecrated_ClothBelt", "=q4=Desecrated Belt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22363, "INV_Misc_Desecrated_MailBelt", "=q4=Desecrated Girdle", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22356, "INV_Misc_Desecrated_PlateBelt", "=q4=Desecrated Waistguard", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 23030, "INV_Misc_Cape_Naxxramas_01", "=q4=Cloak of the Scourge", "=ds=#s4#", "13.33%" }, - { 23031, "INV_Jewelry_Ring_53Naxxramas", "=q4=Band of the Inevitable", "=ds=#s13#", "12.90%" }, - { 23028, "INV_Jewelry_Ring_35", "=q4=Hailstone Band", "=ds=#s13#", "13.59%" }, - { 23029, "INV_Offhand_Naxxramas_04", "=q4=Noth's Frigid Heart", "=ds=#s15#", "11.09%" }, - { 23006, "INV_Relics_LibramofGrace", "=q4=Libram of Light", "=ds=#s16#, #e18# =q16=#c4#", "14.36%" }, - { 23005, "INV_Relics_TotemofLife", "=q4=Totem of Flowing Water", "=ds=#s16#, #e17# =q15=#c7#", "3.01%" }, - { 22816, "INV_Axe_08", "=q4=Hatchet of Sundered Bone", "=ds=#h1#, #w1#", "15.99%" }, + { 23030, "INV_Misc_Cape_Naxxramas_01", "=q4=Cloak of the Scourge", "=ds=#s4#", "14%" }, + { 23031, "INV_Jewelry_Ring_53Naxxramas", "=q4=Band of the Inevitable", "=ds=#s13#", "14%" }, + { 23028, "INV_Jewelry_Ring_35", "=q4=Hailstone Band", "=ds=#s13#", "14%" }, + { 23029, "INV_Offhand_Naxxramas_04", "=q4=Noth's Frigid Heart", "=ds=#s15#", "14%" }, + { 23006, "INV_Relics_LibramofGrace", "=q4=Libram of Light", "=ds=#s16#, #e18# =q16=#c4#", "14%" }, + { 23005, "INV_Relics_TotemofLife", "=q4=Totem of Flowing Water", "=ds=#s16#, #e17# =q15=#c7#", "14%" }, + { 22816, "INV_Axe_08", "=q4=Hatchet of Sundered Bone", "=ds=#h1#, #w1#", "14%" }, }; NAXHeigantheUnclean = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22370, "INV_Misc_Desecrated_ClothBelt", "=q4=Desecrated Belt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22363, "INV_Misc_Desecrated_MailBelt", "=q4=Desecrated Girdle", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22356, "INV_Misc_Desecrated_PlateBelt", "=q4=Desecrated Waistguard", "=q17=#c9#=ds=, =q12=#c6#" }, + { 22370, "INV_Misc_Desecrated_ClothBelt", "=q4=Desecrated Belt", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22363, "INV_Misc_Desecrated_MailBelt", "=q4=Desecrated Girdle", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22356, "INV_Misc_Desecrated_PlateBelt", "=q4=Desecrated Waistguard", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 23035, "INV_Helmet_50", "=q4=Preceptor's Hat", "=ds=#s1#, #a1#" }, - { 23033, "INV_Helmet_20", "=q4=Icy Scale Coif", "=ds=#s1#, #a3#" }, - { 23019, "INV_Helmet_06", "=q4=Icebane Helmet", "=ds=#s1#, #a4#" }, - { 23036, "INV_Jewelry_Necklace_30Naxxramas", "=q4=Necklace of Necropsy", "=ds=#s2#" }, - { 23068, "INV_Pants_Plate_20", "=q4=Legplates of Carnage", "=ds=#s11#, #a4#" }, + { 23035, "INV_Helmet_50", "=q4=Preceptor's Hat", "=ds=#s1#, #a1#", "20%" }, + { 23033, "INV_Helmet_20", "=q4=Icy Scale Coif", "=ds=#s1#, #a3#", "20%" }, + { 23019, "INV_Helmet_06", "=q4=Icebane Helmet", "=ds=#s1#, #a4#", "20%" }, + { 23036, "INV_Jewelry_Necklace_30Naxxramas", "=q4=Necklace of Necropsy", "=ds=#s2#", "20%" }, + { 23068, "INV_Pants_Plate_20", "=q4=Legplates of Carnage", "=ds=#s11#, #a4#", "20%" }, }; NAXLoatheb = { - { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "11.39%" }, + { 22726, "INV_Qiraj_JewelBlessed", "=q5=Splinter of Atiesh", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#", "30%" }, { 22727, "INV_Staff_20", "=q5=Frame of Atiesh", "=ds=#m2#" }, { 0, "", "", "" }, - { 22366, "INV_Misc_Desecrated_ClothPants", "=q4=Desecrated Leggings", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 22359, "INV_Misc_Desecrated_MailPants", "=q4=Desecrated Legguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#" }, - { 22352, "INV_Misc_Desecrated_PlatePants", "=q4=Desecrated Legplates", "=q17=#c9#=ds=, =q12=#c6#" }, + { 22366, "INV_Misc_Desecrated_ClothPants", "=q4=Desecrated Leggings", "=q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "33%" }, + { 22359, "INV_Misc_Desecrated_MailPants", "=q4=Desecrated Legguards", "=q16=#c4#=ds=, =q14=#c2#=ds=, =q15=#c7#=ds=, =q13=#c1#", "33%" }, + { 22352, "INV_Misc_Desecrated_PlatePants", "=q4=Desecrated Legplates", "=q17=#c9#=ds=, =q12=#c6#", "33%" }, { 0, "", "", "" }, - { 23038, "INV_Jewelry_Ring_48Naxxramas", "=q4=Band of Unnatural Forces", "=ds=#s13#" }, - { 23037, "INV_Jewelry_Ring_52Naxxramas", "=q4=Ring of Spiritual Fervor", "=ds=#s13#" }, - { 23042, "INV_Trinket_Naxxramas05", "=q4=Loatheb's Reflection", "=ds=#s14#" }, - { 23039, "INV_Weapon_Halberd_04", "=q4=The Eye of Nerub", "=ds=#w7#" }, - { 22800, "INV_Staff_13", "=q4=Brimstone Staff", "=ds=#w9#" }, + { 23038, "INV_Jewelry_Ring_48Naxxramas", "=q4=Band of Unnatural Forces", "=ds=#s13#", "20%" }, + { 23037, "INV_Jewelry_Ring_52Naxxramas", "=q4=Ring of Spiritual Fervor", "=ds=#s13#", "20%" }, + { 23042, "INV_Trinket_Naxxramas05", "=q4=Loatheb's Reflection", "=ds=#s14#", "20%" }, + { 23039, "INV_Weapon_Halberd_04", "=q4=The Eye of Nerub", "=ds=#w7#", "20%" }, + { 22800, "INV_Staff_13", "=q4=Brimstone Staff", "=ds=#w9#", "20%" }, }; NAXSapphiron = { - { 23050, "INV_Misc_Cape_Naxxramas_03", "=q4=Cloak of the Necropolis", "=ds=#s4#" }, - { 23045, "INV_Misc_Cape_Naxxramas_03", "=q4=Shroud of Dominion", "=ds=#s4#" }, - { 23040, "INV_Trinket_Naxxramas05", "=q4=Glyph of Deflection", "=ds=#s14#" }, - { 23047, "INV_Trinket_Naxxramas01", "=q4=Eye of the Dead", "=ds=#s14#" }, - { 23041, "INV_Trinket_Naxxramas03", "=q4=Slayer's Crest", "=ds=#s14#" }, - { 23046, "INV_Trinket_Naxxramas06", "=q4=The Restrained Essence of Sapphiron", "=ds=#s14#" }, - { 23049, "INV_Offhand_Naxxramas_03", "=q4=Sapphiron's Left Eye", "=ds=#s15#" }, - { 23048, "INV_Offhand_Naxxramas_02", "=q4=Sapphiron's Right Eye", "=ds=#s15#" }, - { 23043, "INV_Shield_26", "=q4=The Face of Death", "=ds=#w8#" }, - { 23242, "INV_Weapon_Hand_03", "=q4=Claw of the Frost Wyrm", "=ds=#h4#, #w13#" }, + { 23050, "INV_Misc_Cape_Naxxramas_03", "=q4=Cloak of the Necropolis", "=ds=#s4#", "10%" }, + { 23045, "INV_Misc_Cape_Naxxramas_03", "=q4=Shroud of Dominion", "=ds=#s4#", "10%" }, + { 23040, "INV_Trinket_Naxxramas05", "=q4=Glyph of Deflection", "=ds=#s14#", "10%" }, + { 23047, "INV_Trinket_Naxxramas01", "=q4=Eye of the Dead", "=ds=#s14#", "10%" }, + { 23041, "INV_Trinket_Naxxramas03", "=q4=Slayer's Crest", "=ds=#s14#", "10%" }, + { 23046, "INV_Trinket_Naxxramas06", "=q4=The Restrained Essence of Sapphiron", "=ds=#s14#", "10%" }, + { 23049, "INV_Offhand_Naxxramas_03", "=q4=Sapphiron's Left Eye", "=ds=#s15#", "10%" }, + { 23048, "INV_Offhand_Naxxramas_02", "=q4=Sapphiron's Right Eye", "=ds=#s15#", "10%" }, + { 23043, "INV_Shield_26", "=q4=The Face of Death", "=ds=#w8#", "10%" }, + { 23242, "INV_Weapon_Hand_03", "=q4=Claw of the Frost Wyrm", "=ds=#h4#, #w13#", "10%" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 23549, "Spell_Shadow_AntiShadow", "=q4=Fortitude of the Scourge", "=ds=#s3# #e11#" }, - { 23548, "Spell_Shadow_DeathPact", "=q4=Might of the Scourge", "=ds=#s3# #e11#" }, - { 23545, "Spell_Shadow_DarkRitual", "=q4=Power of the Scourge", "=ds=#s3# #e11#" }, - { 23547, "Spell_Shadow_DeadofNight", "=q4=Resilience of the Scourge", "=ds=#s3# #e11#" }, + { 23549, "Spell_Shadow_AntiShadow", "=q4=Fortitude of the Scourge", "=ds=#s3# #e11#", "50%" }, + { 23548, "Spell_Shadow_DeathPact", "=q4=Might of the Scourge", "=ds=#s3# #e11#", "50%" }, + { 23545, "Spell_Shadow_DarkRitual", "=q4=Power of the Scourge", "=ds=#s3# #e11#", "50%" }, + { 23547, "Spell_Shadow_DeadofNight", "=q4=Resilience of the Scourge", "=ds=#s3# #e11#", "50%" }, }; NAXKelThuzard = { - { 23057, "INV_Jewelry_Necklace_29Naxxramas", "=q4=Gem of Trapped Innocents", "=ds=#s2#" }, - { 23053, "INV_Jewelry_Necklace_28Naxxramas", "=q4=Stormrage's Talisman of Seething", "=ds=#s2#" }, - { 22812, "INV_Weapon_Crossbow_12", "=q4=Nerubian Slavemaker", "=ds=#w3#" }, - { 22821, "INV_Wand_1H_Stratholme_D_02", "=q4=Doomfinger", "=ds=#w12#" }, - { 22819, "INV_Shield_28", "=q4=Shield of Condemnation", "=ds=#w8#" }, - { 22802, "INV_Weapon_Shortblade_37", "=q4=Kingsfall", "=ds=#h1#, #w4#" }, - { 23056, "INV_Mace_27", "=q4=Hammer of the Twisting Nether", "=ds=#h1#, #w6#" }, - { 23054, "INV_Sword_61", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#" }, - { 23577, "INV_Sword_62", "=q4=The Hungering Cold", "=ds=#h1#, #w10#" }, - { 22798, "INV_Mace_25", "=q4=Might of Menethil", "=ds=#h2#, #w6#" }, - { 22799, "INV_Staff_15", "=q4=Soulseeker", "=ds=#w9#" }, + { 23057, "INV_Jewelry_Necklace_29Naxxramas", "=q4=Gem of Trapped Innocents", "=ds=#s2#", "9%" }, + { 23053, "INV_Jewelry_Necklace_28Naxxramas", "=q4=Stormrage's Talisman of Seething", "=ds=#s2#", "9%" }, + { 22812, "INV_Weapon_Crossbow_12", "=q4=Nerubian Slavemaker", "=ds=#w3#", "9%" }, + { 22821, "INV_Wand_1H_Stratholme_D_02", "=q4=Doomfinger", "=ds=#w12#", "9%" }, + { 22819, "INV_Shield_28", "=q4=Shield of Condemnation", "=ds=#w8#", "9%" }, + { 22802, "INV_Weapon_Shortblade_37", "=q4=Kingsfall", "=ds=#h1#, #w4#", "9%" }, + { 23056, "INV_Mace_27", "=q4=Hammer of the Twisting Nether", "=ds=#h1#, #w6#", "9%" }, + { 23054, "INV_Sword_61", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#", "9%" }, + { 23577, "INV_Sword_62", "=q4=The Hungering Cold", "=ds=#h1#, #w10#", "9%" }, + { 22798, "INV_Mace_25", "=q4=Might of Menethil", "=ds=#h2#, #w6#", "9%" }, + { 22799, "INV_Staff_15", "=q4=Soulseeker", "=ds=#w9#", "9%" }, { 0, "", "", "" }, { 22520, "INV_Misc_Urn_01", "=q4=The Phylactery of Kel'Thuzad", "=ds=#m2#", "100%" }, { 23207, "INV_Misc_Token_ArgentDawn3", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" }, { 23206, "INV_Misc_Token_ArgentDawn2", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" }, - { 23061, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of Faith", "=ds=#s13# =q9=#c5#" }, - { 23062, "INV_Jewelry_Ring_51Naxxramas", "=q4=Frostfire Ring", "=ds=#s13# =q10=#c3#" }, - { 23063, "INV_Jewelry_Ring_51Naxxramas", "=q4=Plagueheart Ring", "=ds=#s13# =q11=#c8#" }, - { 23060, "INV_Jewelry_Ring_51Naxxramas", "=q4=Bonescythe Ring", "=ds=#s13# =q12=#c6#" }, - { 23064, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of the Dreamwalker", "=ds=#s13# =q13=#c1#" }, - { 23067, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of the Cryptstalker", "=ds=#s13# =q14=#c2#" }, - { 23065, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of the Earthshatterer", "=ds=#s13# =q15=#c7#" }, - { 23066, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of Redemption", "=ds=#s13# =q16=#c4#" }, - { 23059, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of the Dreadnaught", "=ds=#s13# =q17=#c9#" }, + { 23061, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of Faith", "=ds=#s13# =q9=#c5#", "11%" }, + { 23062, "INV_Jewelry_Ring_51Naxxramas", "=q4=Frostfire Ring", "=ds=#s13# =q10=#c3#", "11%" }, + { 23063, "INV_Jewelry_Ring_51Naxxramas", "=q4=Plagueheart Ring", "=ds=#s13# =q11=#c8#", "11%" }, + { 23060, "INV_Jewelry_Ring_51Naxxramas", "=q4=Bonescythe Ring", "=ds=#s13# =q12=#c6#", "11%" }, + { 23064, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of the Dreamwalker", "=ds=#s13# =q13=#c1#", "11%" }, + { 23067, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of the Cryptstalker", "=ds=#s13# =q14=#c2#", "11%" }, + { 23065, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of the Earthshatterer", "=ds=#s13# =q15=#c7#", "11%" }, + { 23066, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of Redemption", "=ds=#s13# =q16=#c4#", "11%" }, + { 23059, "INV_Jewelry_Ring_51Naxxramas", "=q4=Ring of the Dreadnaught", "=ds=#s13# =q17=#c9#", "11%" }, { 0, "", "", "" }, { 22733, "INV_Misc_AhnQirajTrinket_04", "=q5=Staff Head of Atiesh", "=ds=#m3#", "100%" }, { 22631, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=q1=#m4# =ds=#w9# =q9=#c5#" }, @@ -5996,45 +6211,45 @@ AtlasLoot_Data["AtlasLootItems"] = { { 22632, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=q1=#m4# =ds=#w9# =q13=#c1#" }, }; NAXTrash = { - { 23664, "INV_Shoulder_01", "=q4=Pauldrons of Elemental Fury", "=ds=#s3#, #a3# =q15=#c7#" }, - { 23667, "INV_Shoulder_22", "=q4=Spaulders of the Grand Crusader", "=ds=#s3#, #a4# =q16=#c4#" }, - { 23069, "INV_Chest_Cloth_46", "=q4=Necro-Knight's Garb", "=ds=#s5#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#" }, - { 23226, "INV_Chest_Leather_02", "=q4=Ghoul Skin Tunic", "=ds=#s5#, #a2#" }, - { 23663, "INV_Belt_32", "=q4=Girdle of Elemental Fury", "=ds=#s10#, #a3#" }, - { 23666, "INV_Belt_27", "=q4=Belt of the Grand Crusader", "=ds=#s10#, #a4# =q16=#c4#" }, - { 23665, "INV_Pants_Mail_14", "=q4=Leggings of Elemental Fury", "=ds=#s11#, #a3# =q15=#c7#" }, - { 23668, "INV_Pants_04", "=q4=Leggings of the Grand Crusader", "=ds=#s11#, #a4# =q16=#c4#" }, - { 23237, "INV_Jewelry_Ring_48Naxxramas", "=q4=Ring of the Eternal Flame", "=ds=#s13#" }, - { 23238, "INV_Armor_Shield_Naxxramas_D_02", "=q4=Stygian Buckler", "=ds=#w8#" }, - { 23044, "INV_knife_1h_stratholme_d_03", "=q4=Harbinger of Doom", "=ds=#h1#, #w4#" }, - { 23221, "INV_Mace_28", "=q4=Misplaced Servo Arm", "=ds=#h1#, #w6#" }, + { 23664, "INV_Shoulder_01", "=q4=Pauldrons of Elemental Fury", "=ds=#s3#, #a3# =q15=#c7#", "0.02-0.86%" }, + { 23667, "INV_Shoulder_22", "=q4=Spaulders of the Grand Crusader", "=ds=#s3#, #a4# =q16=#c4#", "0.03-0.71%" }, + { 23069, "INV_Chest_Cloth_46", "=q4=Necro-Knight's Garb", "=ds=#s5#, #a1# =q9=#c5#=ds=, =q10=#c3#=ds=, =q11=#c8#", "0.07-1.38%, 7%" }, + { 23226, "INV_Chest_Leather_02", "=q4=Ghoul Skin Tunic", "=ds=#s5#, #a2#", "0.07-2%" }, + { 23663, "INV_Belt_32", "=q4=Girdle of Elemental Fury", "=ds=#s10#, #a3#", "0.02-0.9%" }, + { 23666, "INV_Belt_27", "=q4=Belt of the Grand Crusader", "=ds=#s10#, #a4# =q16=#c4#", "0.02-0.9%" }, + { 23665, "INV_Pants_Mail_14", "=q4=Leggings of Elemental Fury", "=ds=#s11#, #a3# =q15=#c7#", "0.02-2%" }, + { 23668, "INV_Pants_04", "=q4=Leggings of the Grand Crusader", "=ds=#s11#, #a4# =q16=#c4#", "0.03-1.88%" }, + { 23237, "INV_Jewelry_Ring_48Naxxramas", "=q4=Ring of the Eternal Flame", "=ds=#s13#", "0.07-3%" }, + { 23238, "INV_Armor_Shield_Naxxramas_D_02", "=q4=Stygian Buckler", "=ds=#w8#", "0.07-1.36%" }, + { 23044, "INV_knife_1h_stratholme_d_03", "=q4=Harbinger of Doom", "=ds=#h1#, #w4#", "0.06-2%" }, + { 23221, "INV_Mace_28", "=q4=Misplaced Servo Arm", "=ds=#h1#, #w6#", "0.03-3%" }, { 0, "", "", "" }, { 0, "", "", "" }, { 0, "", "", "" }, - { 22376, "INV_Misc_WartornScrap_Cloth", "=q3=Wartorn Cloth Scrap", "=ds=#m3#" }, - { 22373, "INV_Misc_WartornScrap_Leather", "=q3=Wartorn Leather Scrap", "=ds=#m3#" }, - { 22374, "INV_Misc_WartornScrap_Chain", "=q3=Wartorn Chain Scrap", "=ds=#m3#" }, - { 22375, "INV_Misc_WartornScrap_Plate", "=q3=Wartorn Plate Scrap", "=ds=#m3#" }, + { 22376, "INV_Misc_WartornScrap_Cloth", "=q3=Wartorn Cloth Scrap", "=ds=#m3#", "6-35%" }, + { 22373, "INV_Misc_WartornScrap_Leather", "=q3=Wartorn Leather Scrap", "=ds=#m3#", "4-26%" }, + { 22374, "INV_Misc_WartornScrap_Chain", "=q3=Wartorn Chain Scrap", "=ds=#m3#", "3-14%" }, + { 22375, "INV_Misc_WartornScrap_Plate", "=q3=Wartorn Plate Scrap", "=ds=#m3#", "7-25%" }, { 0, "", "", "" }, - { 23055, "INV_Scroll_02", "=q1=Word of Thawing", "=ds=#e12#" }, + { 23055, "INV_Scroll_02", "=q1=Word of Thawing", "=ds=#e12#", "0.58-11%" }, { 22682, "INV_Misc_Rune_09", "=q3=Frozen Rune", "=ds=#e12#, #m25#" }, }; BRDPyron = { - { 14486, "INV_Scroll_03", "=q3=Pattern: Cloak of Fire", "=ds=#p8# #m16#", "17.95%" }, + { 14486, "INV_Scroll_03", "=q3=Pattern: Cloak of Fire", "=ds=#p8# #m16#", "100%" }, }; BRMScarshieldQuartermaster = { - { 13254, "INV_Shield_12", "=q3=Astral Guard", "=ds=#w8#", "1.03%" }, - { 13248, "INV_Weapon_Rifle_06", "=q3=Burstshot Harquebus", "=ds=#w5#", "4.17%" }, + { 13254, "INV_Shield_12", "=q3=Astral Guard", "=ds=#w8#", "3%" }, + { 13248, "INV_Weapon_Rifle_06", "=q3=Burstshot Harquebus", "=ds=#w5#", "3%" }, { 0, "", "", "" }, { 18987, "INV_Letter_17", "=q1=Blackhand's Command", "=ds=#m2#", "100%" }, }; DMMarisaduPaige = { - { 3019, "INV_Chest_Cloth_38", "=q2=Noble's Robe", "=ds=#s5#, #a1#", "22.4%" }, - { 4660, "INV_Boots_06", "=q2=Walking Boots", "=ds=#s12#, #a1#", "71.4%" }, + { 3019, "INV_Chest_Cloth_38", "=q2=Noble's Robe", "=ds=#s5#, #a1#", "25%" }, + { 4660, "INV_Boots_06", "=q2=Walking Boots", "=ds=#s12#, #a1#", "75%" }, }; DMBrainwashedNoble = { - { 5967, "INV_Belt_10", "=q2=Girdle of Nobility", "=ds=#s10#, #a1#", "70.4%" }, - { 3902, "INV_Wand_04", "=q2=Staff of Nobles", "=ds=#w9#", "23.0%" }, + { 5967, "INV_Belt_10", "=q2=Girdle of Nobility", "=ds=#s10#, #a1#", "64%" }, + { 3902, "INV_Wand_04", "=q2=Staff of Nobles", "=ds=#w9#", "26%" }, }; DMForemanThistlenettle = { { 1875, "INV_Jewelry_Amulet_03", "=q1=Thistlenettle's Badge", "=ds=#m3#", "100%" }, @@ -6043,7 +6258,7 @@ AtlasLoot_Data["AtlasLootItems"] = { { 14639, "INV_Scroll_03", "=q1=Schematic: Minor Recombobulator", "=ds=#p5# (140)" }, }; GnTechbot = { - { 9444, "INV_Shield_09", "=q1=Techbot CPU Shell", "=ds=#w8#", "69.3%" }, + { 9444, "INV_Shield_09", "=q1=Techbot CPU Shell", "=ds=#w8#", "69%" }, { 0,"","","" }, { 9277, "INV_Battery_01", "=q1=Techbot's Memory Core", "=ds=#m3#", "100%" }, }; @@ -6060,13 +6275,13 @@ AtlasLoot_Data["AtlasLootItems"] = { { 9316,"INV_Misc_PunchCards_Prismatic","=q1=Prismatic Punch Card","=ds=#m3#" }, }; GnOutsideTrash = { - { 9279,"INV_Misc_PunchCards_White","=q1=White Punch Card","=ds=#m3#", "5.26%" }, + { 9279,"INV_Misc_PunchCards_White","=q1=White Punch Card","=ds=#m3#", "15%" }, }; UldShovelphlange = { - { 9375, "INV_Helmet_18", "=q3=Expert Goldminer's Helmet", "=ds=#s1#, #a2#", "9.30%" }, - { 9378, "INV_Pick_02", "=q3=Shovelphlange's Mining Axe", "=ds=#h1#, #w1#", "13.50%" }, + { 9375, "INV_Helmet_18", "=q3=Expert Goldminer's Helmet", "=ds=#s1#, #a2#", "10%" }, + { 9378, "INV_Pick_02", "=q3=Shovelphlange's Mining Axe", "=ds=#h1#, #w1#", "15%" }, { 0,"","","" }, - { 9382, "INV_Boots_08", "=q2=Tromping Miner's Boots", "=ds=#s12#, #a2#", "70.70%" }, + { 9382, "INV_Boots_08", "=q2=Tromping Miner's Boots", "=ds=#s12#, #a2#", "65%" }, }; UldTabletofRyuneh = { { 4631, "INV_Misc_Rune_02", "=q1=Tablet of Ryun'eh", "=ds=#m3#" }, @@ -6098,4 +6313,298 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0,"","","" }, { 5422, "INV_Pants_02", "=q2=Brambleweed Leggings", "=ds=#s11#, #a2#", "64%" }, }; -}; + LKHRolfen = { + { 61805, "INV_Scroll_04", "=q4=Plans: Towerforge Demolisher", "=ds=#p2# #m14#", "1.44%" }, + { 61806, "INV_Scroll_04", "=q4=Plans: Towerforge Pauldrons", "=ds=#p2# #m14#", "1.44%" }, + { 61807, "INV_Scroll_04", "=q4=Plans: Towerforge Breastplate", "=ds=#p2# #m14#", "1.44%" }, + { 61808, "INV_Scroll_04", "=q4=Plans: Towerforge Crown", "=ds=#p2# #m14#", "1.44%" }, + }; + LKHBroodQueenAraxxna = { + { 61297, "inv_boots_cloth_04", "=q4=Marshtreader Slippers", "=ds=#s12#, #a1#", "20%" }, + { 61260, "INV_Helmet_34", "=q4=Flamescorched Hood", "=ds=#s1#, #a2#", "20%" }, + { 61268, "Spell_Nature_Crystalball", "=q4=Sigil of the Brood", "=ds=#s15#", "20%" }, + { 61243, "INV_Potion_97", "=q4=Vial of Potent Venoms", "=ds=#s14#", "20%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61739, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Vampirism", "=ds=#p4# #m14#", "1.3%" }, + { 61219, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Superior Stamina", "=ds=#p4# #m14#", "0.9%" }, + { 8547, "INV_Scroll_05", "=q3=Formula: Powerful Smelling Salts ", "=ds=#p6# #m14#", "1.2%" }, + { 13517, "INV_Scroll_05", "=q4=Recipe: Alchemists' Stone", "=ds=#p1# #m14#", "0.9%" }, + { 61189, "INV_Scroll_05", "=q4=Plans: Dawnstone Hammer", "=ds=#p2# #m14#", "0.9%" }, + { 61190, "INV_Scroll_05", "=q4=Pattern: Gloves of Unwinding Mystery", "=ds=#p8# #m14#", "0.9%" }, + { 61269, "INV_Chest_Cloth_01", "=q3=Clutchweave Robe", "=ds=#s5#, #a1#", "14%" }, + { 61245, "INV_Bracer_12", "=q3=Bracers of Brambled Vines", "=ds=#s8#, #a1#", "14%" }, + { 61283, "Inv_gauntlets_09", "=q3=Darkgrasp Gloves", "=ds=#s9#, #a1#", "14%" }, + { 61272, "inv_boots_chain_10", "=q3=Deepstone Boots", "=ds=#s12#, #a3#", "14%" }, + { 61244, "inv_pants_plate_03", "=q3=Leggings of Shrouding Winds", "=ds=#s11#, #a4#", "14%"}, + { 61278, "INV_Weapon_ShortBlade_25", "=q3=Vampiric Kris", "=ds=#h1#, #w4#", "14%" }, + { 61816, "INV_Shield_21", "=q3=Araxxna's Husk", "=ds=#s14#", "14%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61180, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Greater Arcane Resistance", "=ds=#p4# #m14#", "1.2%" }, + { 70001, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Arcane Power", "=ds=#p4# #m14#", "0.9%" }, + { 61178, "INV_Scroll_05", "=q3=Plans: Thorium Spurs", "=ds=#p2# #m14#", "1.2%" }, + { 61177, "INV_Scroll_05", "=q3=Recipe: Potion of Quickness", "=ds=#p1# #m14#", "1.2%" }, + { 61192, "INV_Scroll_05", "=q4=Pattern: Inscribed Runic Bracers", "=ds=#p7# #m14#", "1.3%" }, + { 61191, "INV_Scroll_05", "=q4=Schematic: Intricate Gyroscope Goggles", "=ds=#p5# #m14#", "0.9%" }, + }; + LKHGrizikil = { + { 61291, "INV_Helmet_10", "=q4=Darkflame Helm", "=ds=#s1#, #a4#", "20%" }, + { 61253, "inv_gauntlets_30", "=q4=Aetherforged Gauntlets", "=ds=#s9#, #a4#", "20%" }, + { 61276, "spell_arcane_portaldarnassus", "=q4=Hyperchromatic Deflector", "=ds=#w8#", "20%" }, + { 61292, "INV_Staff_07", "=q4=Totem of Crackling Thunder", "=ds=#s16#, #e17#", "20%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61739, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Vampirism", "=ds=#p4# #m14#", "1.3%" }, + { 61219, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Superior Stamina", "=ds=#p4# #m14#", "0.9%" }, + { 8547, "INV_Scroll_05", "=q3=Formula: Powerful Smelling Salts ", "=ds=#p6# #m14#", "1.2%" }, + { 13517, "INV_Scroll_05", "=q4=Recipe: Alchemists' Stone", "=ds=#p1# #m14#", "0.9%" }, + { 61189, "INV_Scroll_05", "=q4=Plans: Dawnstone Hammer", "=ds=#p2# #m14#", "0.9%" }, + { 61190, "INV_Scroll_05", "=q4=Pattern: Gloves of Unwinding Mystery", "=ds=#p8# #m14#", "0.9%" }, + { 61252, "inv_helmet_52", "=q3=Red Hat of Destruction", "=ds=#s1#, #a1#", "14%" }, + { 61261, "INV_Misc_Cape_18", "=q3=Battlescarred Cloak", "=ds=#s4#", "14%" }, + { 61267, "inv_gauntlets_26", "=q3=Sparkgrasp Gloves", "=ds=#s9#, #a2#", "14%" }, + { 61288, "INV_Belt_15", "=q3=Nightwoven Belt", "=ds=#s10#, #a1#", "14%" }, + { 61289, "INV_Boots_Plate_03", "=q3=Aurious Boots", "=ds=#s12#, #a4#", "14%" }, + { 61298, "inv_gauntlets_21", "=q3=Overgrown Gloves", "=ds=#s9#, #a1#", "14%" }, + { 61450, "INV_Misc_Key_09", "=q3=The Mind's Key", "=ds=#s14#", "14%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61180, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Greater Arcane Resistance", "=ds=#p4# #m14#", "1.2%" }, + { 70001, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Arcane Power", "=ds=#p4# #m14#", "0.9%" }, + { 61178, "INV_Scroll_05", "=q3=Plans: Thorium Spurs", "=ds=#p2# #m14#", "1.2%" }, + { 61177, "INV_Scroll_05", "=q3=Recipe: Potion of Quickness", "=ds=#p1# #m14#", "1.2%" }, + { 61192, "INV_Scroll_05", "=q4=Pattern: Inscribed Runic Bracers", "=ds=#p7# #m14#", "1.3%" }, + { 61191, "INV_Scroll_05", "=q4=Schematic: Intricate Gyroscope Goggles", "=ds=#p5# #m14#", "0.9%" }, + }; + LKHClawlordHowlfang = { + { 61281, "inv_boots_cloth_09", "=q4=Shadeweave Boots", "=ds=#s12#, #a1#", "20%" }, + { 61273, "INV_Belt_26", "=q4=Earthbreaker Belt", "=ds=#s10#, #a3#", "20%" }, + { 61249, "INV_Misc_Pelt_Bear_Ruin_03", "=q4=Pelt of the Great Howler", "=ds=#s4#", "20%" }, + { 61293, "INV_QirajIdol_Night", "=q4=Idol of the Moonfang", "=ds=#s16#, #e16#", "20%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61739, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Vampirism", "=ds=#p4# #m14#", "1.3%" }, + { 61219, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Superior Stamina", "=ds=#p4# #m14#", "0.9%" }, + { 8547, "INV_Scroll_05", "=q3=Formula: Powerful Smelling Salts ", "=ds=#p6# #m14#", "1.2%" }, + { 13517, "INV_Scroll_05", "=q4=Recipe: Alchemists' Stone", "=ds=#p1# #m14#", "0.9%" }, + { 61189, "INV_Scroll_05", "=q4=Plans: Dawnstone Hammer", "=ds=#p2# #m14#", "0.9%" }, + { 61190, "INV_Scroll_05", "=q4=Pattern: Gloves of Unwinding Mystery", "=ds=#p8# #m14#", "0.9%" }, + { 61250, "inv_shirt_06", "=q3=Reedwoven Tunic", "=ds=#s5#, #a1#", "14%" }, + { 61285, "inv_pants_cloth_05", "=q3=Duskwrapped Leggings", "=ds=#s11#, #a1#", "14%" }, + { 61271, "INV_Boots_07", "=q3=Boots of Blazing Steps", "=ds=#s12#, #a2#", "14%" }, + { 61274, "INV_Gauntlets_24", "=q3=Pulverizer Gauntlets", "=ds=#s9#, #a3#", "14%" }, + { 61290, "INV_Belt_32", "=q3=Zephyrian Girdle", "=ds=#s10#, #a4#", "14%" }, + { 61263, "INV_Misc_MonsterFang_01", "=q3=Tooth of the Packlord", "=ds=#s14#", "14%" }, + { 61451, "INV_Enchant_EssenceEternalSmall", "=q3=Sliver of Hope", "=ds=#s14#", "14%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61180, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Greater Arcane Resistance", "=ds=#p4# #m14#", "1.2%" }, + { 70001, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Arcane Power", "=ds=#p4# #m14#", "0.9%" }, + { 61178, "INV_Scroll_05", "=q3=Plans: Thorium Spurs", "=ds=#p2# #m14#", "1.2%" }, + { 61177, "INV_Scroll_05", "=q3=Recipe: Potion of Quickness", "=ds=#p1# #m14#", "1.2%" }, + { 61192, "INV_Scroll_05", "=q4=Pattern: Inscribed Runic Bracers", "=ds=#p7# #m14#", "1.3%" }, + { 61191, "INV_Scroll_05", "=q4=Schematic: Intricate Gyroscope Goggles", "=ds=#p5# #m14#", "0.9%" }, + }; + LKHLordBlackwaldII = { + { 61266, "INV_Gauntlets_11", "=q4=Rune Infused Gauntlets", "=ds=#s9#, #a3#", "20%" }, + { 61246, "inv_boots_chain_08", "=q4=Sabatons of the Endless March", "=ds=#s12#, #a4#", "20%" }, + { 61247, "INV_Sword_2H_Blood_C_02", "=q4=Shadowbringer", "=ds=#h2#, #w10#", "20%" }, + { 61443, "INV_Misc_Book_13", "=q4=Libram of the Faithful", "=ds=#s16#, #e18#", "20%" }, + { 0, "", "", "" }, + { 61184, "Inv_weapon_shortblade_23", "=q5=The Scythe of Elune", "=ds=#m2#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61739, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Vampirism", "=ds=#p4# #m14#", "1.3%" }, + { 61219, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Superior Stamina", "=ds=#p4# #m14#", "0.9%" }, + { 8547, "INV_Scroll_05", "=q3=Formula: Powerful Smelling Salts ", "=ds=#p6# #m14#", "1.2%" }, + { 13517, "INV_Scroll_05", "=q4=Recipe: Alchemists' Stone", "=ds=#p1# #m14#", "0.9%" }, + { 61189, "INV_Scroll_05", "=q4=Plans: Dawnstone Hammer", "=ds=#p2# #m14#", "0.9%" }, + { 61190, "INV_Scroll_05", "=q4=Pattern: Gloves of Unwinding Mystery", "=ds=#p8# #m14#", "0.9%" }, + { 61282, "inv_bracer_09", "=q3=Deepshadow Bracers", "=ds=#s8#, #a1#", "14%" }, + { 61279, "inv_pants_mail_13", "=q3=Slateplate Leggings", "=ds=#s11#, #a3#", "14%" }, + { 61287, "INV_Chest_Plate16", "=q3=Gusthewn Chestplate", "=ds=#s5#, #a4#", "14%" }, + { 61255, "INV_Knife_1H_Draenei_A_03", "=q3=Tuning Fork of Charged Lightning", "=ds=#h3#, #w4#", "14%" }, + { 61286, "INV_Wand_01", "=q3=Bloodfang Effigy", "=ds=#w12#", "14%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61180, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Greater Arcane Resistance", "=ds=#p4# #m14#", "1.2%" }, + { 70001, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Arcane Power", "=ds=#p4# #m14#", "0.9%" }, + { 61178, "INV_Scroll_05", "=q3=Plans: Thorium Spurs", "=ds=#p2# #m14#", "1.2%" }, + { 61177, "INV_Scroll_05", "=q3=Recipe: Potion of Quickness", "=ds=#p1# #m14#", "1.2%" }, + { 61192, "INV_Scroll_05", "=q4=Pattern: Inscribed Runic Bracers", "=ds=#p7# #m14#", "1.3%" }, + { 61191, "INV_Scroll_05", "=q4=Schematic: Intricate Gyroscope Goggles", "=ds=#p5# #m14#", "0.9%" }, + }; + LKHMoroes = { + { 61284, "inv_shirt_16", "=q4=Vest of Encroaching Darkness", "=ds=#s5#, #a1#", "10%" }, + { 61256, "inv_pants_cloth_06", "=q4=Leggings of the Misty Marsh", "=ds=#s11#, #a1#", "10%" }, + { 61265, "inv_pants_leather_18", "=q4=Leggings of the Inferno", "=ds=#s11#, #a2#", "10%" }, + { 61257, "INV_Bracer_14", "=q4=Cloudplate Wristguards", "=ds=#s8#, #a4#", "10%" }, + { 61275, "INV_Chest_Plate04", "=q4=Breastplate of Earthen Might", "=ds=#s5#, #a3#", "10%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61674, "INV_Misc_Gem_Diamond_03", "=q3=Overcharged Ley Energy", "=ds=#e11#", "70%" }, + { 0, "", "", "" }, + { 61739, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Vampirism", "=ds=#p4# #m14#", "1.3%" }, + { 61219, "INV_Misc_Note_01", "=q3=Formula: Enchant Boots - Superior Stamina", "=ds=#p4# #m14#", "2%" }, + { 8547, "INV_Scroll_05", "=q3=Formula: Powerful Smelling Salts ", "=ds=#p6# #m14#", "1.2%" }, + { 13517, "INV_Scroll_05", "=q4=Recipe: Alchemists' Stone", "=ds=#p1# #m14#", "2%" }, + { 61189, "INV_Scroll_05", "=q4=Plans: Dawnstone Hammer", "=ds=#p2# #m14#", "2%" }, + { 61190, "INV_Scroll_05", "=q4=Pattern: Gloves of Unwinding Mystery", "=ds=#p8# #m14#", "2%" }, + { 61277, "INV_Mace_33", "=q4=Fist of the Forgotten Order", "=ds=#h2#, #w6#", "10%" }, + { 61264, "Inv_staff_07", "=q4=Ansirem's Runeweaver", "=ds=#h2#, #w9#", "10%" }, + { 61299, "INV_Misc_Bandage_16", "=q4=Shawl of the Castellan", "=ds=#s14#", "10%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61231, "", "=q1=Key to the Upper Chambers", "=ds=#m3#", "100%" }, + { 0, "", "", "" }, + { 61180, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Greater Arcane Resistance", "=ds=#p4# #m14#", "1.2%" }, + { 70001, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Arcane Power", "=ds=#p4# #m14#", "2%" }, + { 61178, "INV_Scroll_05", "=q3=Plans: Thorium Spurs", "=ds=#p2# #m14#", "1.2%" }, + { 61177, "INV_Scroll_05", "=q3=Recipe: Potion of Quickness", "=ds=#p1# #m14#", "1.2%" }, + { 61192, "INV_Scroll_05", "=q4=Pattern: Inscribed Runic Bracers", "=ds=#p7# #m14#", "2%" }, + { 61191, "INV_Scroll_05", "=q4=Schematic: Intricate Gyroscope Goggles", "=ds=#p5# #m14#", "2%" }, + }; + LKHTrash = { + { 51326, "INV_Misc_Note_03", "=q4=Scribbled Cooking Notes", "=ds=#m2#", "0.3%, 1%" }, + { 61666, "INV_Scroll_04", "=q4=Recipe: Le Fishe Au Chocolat", "=ds=#m4#, #p3# #m14#" }, + { 0, "", "", "" }, + { 61254, "INV_Belt_25", "=q3=Reedmesh Belt", "=ds=#s10#, #a1#", "0.15%" }, + { 61288, "INV_Belt_15", "=q3=Nightwoven Belt", "=ds=#s10#, #a1#", "0.15%" }, + { 61280, "INV_Bracer_16", "=q3=Granitized Bracers", "=ds=#s8#, #a3#", "0.15%" }, + { 61290, "INV_Belt_32", "=q3=Zephyrian Girdle", "=ds=#s10#, #a4#", "0.15%" }, + { 0, "", "", "" }, + { 61295, "INV_Mace_34", "=q3=Dawnstone Bludgeon", "=ds=#h1#, #w6#", "0.15%" }, + { 61452, "INV_Axe_30", "=q3=Skycleaver", "=ds=#h1#, #w1#", "0.15%" }, + { 0, "", "", "" }, + { 8547, "INV_Scroll_05", "=q3=Formula: Powerful Smelling Salts ", "=ds=#p6# #m14#", "0.03%" }, + { 61177, "INV_Scroll_05", "=q3=Recipe: Potion of Quickness", "=ds=#p1# #m14#", "0.03%" }, + { 61178, "INV_Scroll_05", "=q3=Plans: Thorium Spurs", "=ds=#p2# #m14#", "0.03%" }, + { 61180, "INV_Misc_Note_01", "=q3=Formula: Enchant Cloak - Greater Arcane Resistance", "=ds=#p4# #m14#", "0.03%" }, + }; + LKHEnchants = { + { 92005, "Ability_Creature_Cursed_01", "=q3=Invocation of Shattering", "=ds=#s1#/#s11# #e11#" }, + { 92006, "Ability_Creature_Cursed_01", "=q3=Invocation of Greater Protection", "=ds=#s1#/#s11# #e11#" }, + { 92007, "Ability_Creature_Cursed_01", "=q3=Invocation of Expansive Mind", "=ds=#s1#/#s11# #e11#" }, + { 92008, "Ability_Creature_Cursed_01", "=q3=Invocation of Greater Arcane Fortitude", "=ds=#s1#/#s11# #e11#" }, + }; + ESErennius = { + { 61652, "INV_Misc_MonsterClaw_02", "=q4=Claw of Erennius", "=ds=#m2#", "100%" }, + { 61650, "INV_Spear_02", "=q4=Jadestone Skewer", "=ds=#m4#, #w7#" }, + { 61651, "INV_Mace_20", "=q4=Jadestone Mallet", "=ds=#m4#, #w6#" }, + { 61740, "INV_Misc_MonsterClaw_04", "=q4=Claw of Senthos", "=ds=#m4#, #w13#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61198, "INV_Stone_03", "=q2=Small Dream Shard", "2-5", "100%" }, + { 61197, "INV_Stone_05", "=q3=Fading Dream Fragment", "", "48%" }, + { 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "", "48%" }, + }; + ESSolnius1 = { + { 61206, "inv_chest_leather_06", "=q4=Robe of the Dreamways", "=ds=#s5#, #a1#" , "94.1%" }, + { 61211, "INV_Boots_Fabric_01", "=q4=Sandals of Lucidity", "=ds=#s12#, #a1#", "94.1%" }, + { 61213, "INV_Gauntlets_29", "=q4=Talonwind Gauntlets", "=ds=#s9#, #a3#", "94.1%" }, + { 61239, "INV_Pants_03", "=q4=Ancient Jade Leggings", "=ds=#s11#, #a3#", "94.1%" }, + { 0, "", "", "" }, + { 61237, "INV_Mace_35", "=q4=Mallet of the Awakening", "=ds=#h3#, #w6#", "94.1%" }, + { 61238, "INV_Shield_23", "=q4=Scaleshield of Emerald Flight", "=ds=#w8#", "94.1%" }, + { 0, "", "", "" }, + { 61205, "INV_Jewelry_Ring_37", "=q4=Ring of Nature's Duality", "=ds=#s13#", "99.96%" }, + { 61209, "INV_Enchant_EssenceMysticalLarge", "=q4=Shard of Nightmare", "=ds=#s14#", "94.1%" }, + { 61210, "INV_Misc_Cape_01", "=q4=Veil of Nightmare", "=ds=#s4#", "94.1%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61212, "INV_Bracer_09", "=q4=Sanctum Bark Wraps", "=ds=#s8#, #a2#", "94.1%" }, + { 61214, "inv_shoulder_13", "=q4=Mantle of the Wakener", "=ds=#s3#, #a2#", "94.1%" }, + { 61207, "INV_Helmet_02", "=q4=Jadestone Helmet", "=ds=#s1#, #a4#", "94.1%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 61448, "INV_Weapon_Halberd_05", "=q4=Axe of Dormant Slumber", "=ds=#h1#, #w1#", "94.1%" }, + { 61208, "INV_Staff_49", "=q4=Staff of the Dreamer", "=ds=#h2#, #w9#", "94.1%" }, + { 0, "", "", "" }, + { 61455, "Spell_Nature_NatureTouchDecay", "=q4=Idol of the Emerald Rot", "=ds=#s16#, #e16#", "99.96%" }, + { 61203, "INV_Relics_LibramofGrace", "=q4=Libram of the Dreamguard", "=ds=#s16#, #e18#", "99.96%" }, + { 61204, "Spell_Nature_StoneSkinTotem", "=q4=Totem of the Stonebreaker", "=ds=#s16#, #e17#", "99.96%" }, + }; + ESSolnius2 = { + { 61215, "inv_misc_head_dragon_green", "=q4=Head of Solnius", "=ds=#m2#", "100%" }, + { 61195, "BTNWoodenRingUPG1", "=q4=Ring of Nordrassil", "=ds=#m4#, #s13#" }, + { 61194, "BTNOrbOfDepths", "=q4=The Heart of Dreams", "=ds=#m4#, #s14#" }, + { 61193, "BTNEnchantedNecklace", "=q4=Verdant Eye Necklace", "=ds=#m4#, #s2#" }, + { 0, "", "", "" }, + { 61196, "INV_Misc_Bag_18", "=q3=Bag of the Vast Conscious", "=ds=#e10#", "15%" }, + { 0, "", "", "" }, + { 61733, "INV_Misc_Note_01", "=q5=Formula: Eternal Dreamstone Shard", "=ds=#p4# #m14#", "0.85%" }, + { 61217, "INV_Misc_Note_01", "=q3=Formula: Enchant Chest - Mighty Mana", "=ds=#p4# #m14#", "4%" }, + { 70000, "INV_Misc_Note_01", "=q3=Formula: Enchant Gloves - Nature Power", "=ds=#p4# #m14#", "4%" }, + { 0, "", "", "" }, + { 61218, "INV_Scroll_05", "=q3=Recipe: Elixir of Greater Nature Power", "=ds=#p1# #m14#", "4%" }, + { 0, "", "", "" }, + { 61198, "INV_Stone_03", "=q2=Small Dream Shard", "6-10", "100%" }, + { 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "", "48%" }, + { 61444, "INV_Stone_05", "=q4=Smoldering Dream Essence", "=ds=#m2#, =q13=#c1#, ", "20%" }, + { 61445, "INV_Enchant_EssenceNetherLarge", "=q4=Purified Emerald Essence", "=ds=#m4#, =q13=#c1#" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 51361, "INV_Misc_Note_05", "=q3=Glyph of the Dreamkin", "=ds==q13=#c1#", "14%" }, + { 0, "", "", "" }, + { 61428, "INV_Scroll_05", "=q4=Pattern: Dreamhide Mantle", "=ds=#p7# #m14#", "4%" }, + { 61432, "INV_Scroll_05", "=q4=Pattern: Dreamthread Mantle", "=ds=#p7# #m14#", "4%" }, + { 61424, "INV_Scroll_05", "=q4=Plans: Dreamsteel Mantle", "=ds=#p7# #m14#", "4%" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 0, "", "", "" }, + { 17962,"INV_Misc_Bag_10_Blue","=q2=Blue Sack of Gems","=ds=#m23# =q2=#e33#", "100%" }, + }; + ESHardMode = { + { 61524, "INV_Chest_Plate07", "=q4=Naturecaller's Tunic", "=ds=#s5#, #a2#", "17%" }, + { 61522, "INV_Jewelry_Necklace_01", "=q4=Choker of the Emerald Lord", "=ds=#s2#", "17%" }, + { 61527, "BTNOrbofChaos", "=q4=Breath of Solnius", "=ds=#s14#", "17%" }, + { 0, "", "", "" }, + { 61523, "inv_sword_38", "=q4=Crystal Sword of the Blossom", "=ds=#h1#, #w10#", "17%" }, + { 61525, "INV_Weapon_Bow_04", "=q4=Nature's Call", "=ds=#w2#", "17%" }, + { 61526, "inv_shield_24", "=q4=Jadestone Protector", "=ds=#w8#", "17%" }, + { 0, "", "", "" }, + { 61197, "INV_Stone_05", "=q3=Fading Dream Fragment", "", "48%" }, + }; + ESTrash = { + { 84502, "inv_boots_cloth_04", "=q4=Verdant Dreamer's Boots", "=ds=#s12#, #a2#", "0.125%, 0.5%, 1.25%" }, + { 84505, "INV_Bracer_06", "=q4=Infused Wildthorn Bracers", "=ds=#s8#, #a3#", "0.125%, 0.5%, 1.25%" }, + { 84506, "INV_Jewelry_Ring_37", "=q4=Sleeper's Ring", "=ds=#s13#", "0.125%, 0.5%, 1.25%" }, + { 84504, "INV_Misc_Herb_15", "=q4=Lasher's Whip", "=ds=#s14#", "0.125%, 0.5%, 1.25%" }, + { 84500, "INV_Weapon_ShortBlade_22", "=q4=Lucid Nightmare", "=ds=#h3#, #w4#", "0.125%, 0.5%, 1.25%" }, + { 84509, "INV_Staff_14", "=q4=Emerald Rod", "=ds=#s15#", "0.125%, 0.5%, 1.25%" }, + { 0, "", "", "" }, + { 61198, "INV_Stone_03", "=q2=Small Dream Shard", "", "8%" }, + { 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "", "5%" }, + { 61197, "INV_Stone_05", "=q3=Fading Dream Fragment", "", "0.35%" }, + { 0, "", "", "" }, + { 54001, "INV_Crate_02", "=q2=Dream Frog", "=ds=#e15#", "0.08%" }, + + }; +}; \ No newline at end of file diff --git a/Libs/AceDB/AceDB-2.0.lua b/Libs/AceDB/AceDB-2.0.lua index db0b298..54b40cf 100644 --- a/Libs/AceDB/AceDB-2.0.lua +++ b/Libs/AceDB/AceDB-2.0.lua @@ -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 diff --git a/Libs/AceEvent/AceEvent-2.0.lua b/Libs/AceEvent/AceEvent-2.0.lua index 7ef8428..6ba695a 100644 --- a/Libs/AceEvent/AceEvent-2.0.lua +++ b/Libs/AceEvent/AceEvent-2.0.lua @@ -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 ]] diff --git a/Libs/AceLibrary/AceLibrary.lua b/Libs/AceLibrary/AceLibrary.lua index 0f2b237..3dbc9ca 100644 --- a/Libs/AceLibrary/AceLibrary.lua +++ b/Libs/AceLibrary/AceLibrary.lua @@ -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 diff --git a/Libs/AceLocale/AceLocale-2.2.lua b/Libs/AceLocale/AceLocale-2.2.lua index 89d3586..127bf00 100644 --- a/Libs/AceLocale/AceLocale-2.2.lua +++ b/Libs/AceLocale/AceLocale-2.2.lua @@ -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 diff --git a/Libs/Hewdrop/Hewdrop-2.0.lua b/Libs/Hewdrop/Hewdrop-2.0.lua new file mode 100644 index 0000000..e203bd3 --- /dev/null +++ b/Libs/Hewdrop/Hewdrop-2.0.lua @@ -0,0 +1,2728 @@ +--[[ +Name: Hewdrop-2.0 +Revision: $Rev: 17882 $ +Author(s): ckknight (ckknight@gmail.com) +Website: http://ckknight.wowinterface.com/ +Documentation: http://wiki.wowace.com/index.php/Hewdrop-2.0 +SVN: http://svn.wowace.com/root/trunk/HewdropLib/Hewdrop-2.0 +Description: A library to provide a clean dropdown menu interface. +Dependencies: AceLibrary +]] + +local MAJOR_VERSION = "Hewdrop-2.0" +local MINOR_VERSION = "$Revision: 17882 $" + +if not AceLibrary then error(MAJOR_VERSION .. " requires AceLibrary") end +if not AceLibrary:IsNewVersion(MAJOR_VERSION, MINOR_VERSION) then return end + +local Hewdrop = {} + +local VALIDATION_ERROR = "Validation error" +local RESET_KEYBINDING_DESC = "Hit escape to clear the keybinding." +if GetLocale() == "deDE" then +-- VALIDATION_ERROR = "some message here..." +end + +local lua51 = loadstring("return function(...) return ... end") and true or false + +local table_setn = lua51 and function() end or table.setn + +local function new(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + local t = {} + if k1 then t[k1] = v1 + if k2 then t[k2] = v2 + if k3 then t[k3] = v3 + if k4 then t[k4] = v4 + if k5 then t[k5] = v5 + if k6 then t[k6] = v6 + if k7 then t[k7] = v7 + if k8 then t[k8] = v8 + if k9 then t[k9] = v9 + if k10 then t[k10] = v10 + if k11 then t[k11] = v11 + if k12 then t[k12] = v12 + if k13 then t[k13] = v13 + if k14 then t[k14] = v14 + if k15 then t[k15] = v15 + if k16 then t[k16] = v16 + if k17 then t[k17] = v17 + if k18 then t[k18] = v18 + if k19 then t[k19] = v19 + if k20 then t[k20] = v20 + end end end end end end end end end end end end end end end end end end end end + return t +end +if lua51 then + new = loadstring("return function(...) local t = {}; for i = 1, select('#', ...), 2 do if select(i, ...) then t[select(i, ...)] = select(i+1, ...); else break; end; end; return t; end")() +end + +local tmp +do + local t = {} + function tmp(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + for k in pairs(t) do + t[k] = nil + end + if type(k1) == "table" then + for k,v in pairs(k1) do + t[k] = v + end + else + if k1 then t[k1] = v1 + if k2 then t[k2] = v2 + if k3 then t[k3] = v3 + if k4 then t[k4] = v4 + if k5 then t[k5] = v5 + if k6 then t[k6] = v6 + if k7 then t[k7] = v7 + if k8 then t[k8] = v8 + if k9 then t[k9] = v9 + if k10 then t[k10] = v10 + if k11 then t[k11] = v11 + if k12 then t[k12] = v12 + if k13 then t[k13] = v13 + if k14 then t[k14] = v14 + if k15 then t[k15] = v15 + if k16 then t[k16] = v16 + if k17 then t[k17] = v17 + if k18 then t[k18] = v18 + if k19 then t[k19] = v19 + if k20 then t[k20] = v20 + end end end end end end end end end end end end end end end end end end end end + end + return t + end + if lua51 then + tmp = loadstring("local t = {}; return function(...) for k in pairs(t) do t[k] = nil end; for i = 1, select('#', ...), 2 do if select(i, ...) then t[select(i, ...)] = select(i+1, ...) else break; end; end; return t; end")() + end +end +local tmp2 +do + local t = {} + function tmp2(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + for k in pairs(t) do + t[k] = nil + end + if k1 then t[k1] = v1 + if k2 then t[k2] = v2 + if k3 then t[k3] = v3 + if k4 then t[k4] = v4 + if k5 then t[k5] = v5 + if k6 then t[k6] = v6 + if k7 then t[k7] = v7 + if k8 then t[k8] = v8 + if k9 then t[k9] = v9 + if k10 then t[k10] = v10 + if k11 then t[k11] = v11 + if k12 then t[k12] = v12 + if k13 then t[k13] = v13 + if k14 then t[k14] = v14 + if k15 then t[k15] = v15 + if k16 then t[k16] = v16 + if k17 then t[k17] = v17 + if k18 then t[k18] = v18 + if k19 then t[k19] = v19 + if k20 then t[k20] = v20 + end end end end end end end end end end end end end end end end end end end end + return t + end + if lua51 then + tmp2 = loadstring("local t = {}; return function(...) for k in pairs(t) do t[k] = nil end; for i = 1, select('#', ...), 2 do if select(i, ...) then t[select(i, ...)] = select(i+1, ...) else break; end; end; return t; end")() + end +end +local levels +local buttons + +local function GetScaledCursorPosition() + local x, y = GetCursorPosition() + local scale = UIParent:GetEffectiveScale() + return x / scale, y / scale +end + +local function StartCounting(self, levelNum) + for i = levelNum, table.getn(levels) do + if levels[i] then + levels[i].count = 3 + end + end +end + +local function StopCounting(self, level) + for i = level, 1, -1 do + if levels[i] then + levels[i].count = nil + end + end +end + +local function OnUpdate(self, arg1) + for _,level in ipairs(levels) do + if level.count then + level.count = level.count - arg1 + if level.count < 0 then + level.count = nil + self:Close(level.num) + end + end + end +end + +local function CheckDualMonitor(self, frame) + local ratio = GetScreenWidth() / GetScreenHeight() + if ratio >= 2.4 and frame:GetRight() > GetScreenWidth() / 2 and frame:GetLeft() < GetScreenWidth() / 2 then + local offsetx + if GetCursorPosition() / GetScreenHeight() * 768 < GetScreenWidth() / 2 then + offsetx = GetScreenWidth() / 2 - frame:GetRight() + else + offsetx = GetScreenWidth() / 2 - frame:GetLeft() + end + local point, parent, relativePoint, x, y = frame:GetPoint(1) + frame:SetPoint(point, parent, relativePoint, (x or 0) + offsetx, y or 0) + end +end + +local function CheckSize(self, level) + if not level.buttons then + return + end + local height = 20 + for _, button in ipairs(level.buttons) do + height = height + button:GetHeight() + end + level:SetHeight(height) + local width = 160 + for _, button in ipairs(level.buttons) do + local extra = 1 + if button.hasArrow or button.hasColorSwatch then + extra = extra + 16 + end + if not button.notCheckable then + extra = extra + 24 + end + button.text:SetFont(STANDARD_TEXT_FONT, button.textHeight) + if button.text:GetWidth() + extra > width then + width = button.text:GetWidth() + extra + end + end + level:SetWidth(width + 20) + if level:GetLeft() and level:GetRight() and level:GetTop() and level:GetBottom() and (level:GetLeft() < 0 or level:GetRight() > GetScreenWidth() or level:GetTop() > GetScreenHeight() or level:GetBottom() < 0) then + level:ClearAllPoints() + if level.lastDirection == "RIGHT" then + if level.lastVDirection == "DOWN" then + level:SetPoint("TOPLEFT", level.parent or level:GetParent(), "TOPRIGHT", 5, 10) + else + level:SetPoint("BOTTOMLEFT", level.parent or level:GetParent(), "BOTTOMRIGHT", 5, -10) + end + else + if level.lastVDirection == "DOWN" then + level:SetPoint("TOPRIGHT", level.parent or level:GetParent(), "TOPLEFT", -5, 10) + else + level:SetPoint("BOTTOMRIGHT", level.parent or level:GetParent(), "BOTTOMLEFT", -5, -10) + end + end + end + local dirty = false + if not level:GetRight() then + self:Close() + return + end + if level:GetRight() > GetScreenWidth() and level.lastDirection == "RIGHT" then + level.lastDirection = "LEFT" + dirty = true + elseif level:GetLeft() < 0 and level.lastDirection == "LEFT" then + level.lastDirection = "RIGHT" + dirty = true + end + if level:GetTop() > GetScreenHeight() and level.lastVDirection == "UP" then + level.lastVDirection = "DOWN" + dirty = true + elseif level:GetBottom() < 0 and level.lastVDirection == "DOWN" then + level.lastVDirection = "UP" + dirty = true + end + if dirty then + level:ClearAllPoints() + if level.lastDirection == "RIGHT" then + if level.lastVDirection == "DOWN" then + level:SetPoint("TOPLEFT", level.parent or level:GetParent(), "TOPRIGHT", 5, 10) + else + level:SetPoint("BOTTOMLEFT", level.parent or level:GetParent(), "BOTTOMRIGHT", 5, -10) + end + else + if level.lastVDirection == "DOWN" then + level:SetPoint("TOPRIGHT", level.parent or level:GetParent(), "TOPLEFT", -5, 10) + else + level:SetPoint("BOTTOMRIGHT", level.parent or level:GetParent(), "BOTTOMLEFT", -5, -10) + end + end + end + if level:GetTop() > GetScreenHeight() then + local top = level:GetTop() + local point, parent, relativePoint, x, y = level:GetPoint(1) + level:ClearAllPoints() + level:SetPoint(point, parent, relativePoint, x or 0, (y or 0) + GetScreenHeight() - top) + elseif level:GetBottom() < 0 then + local bottom = level:GetBottom() + local point, parent, relativePoint, x, y = level:GetPoint(1) + level:ClearAllPoints() + level:SetPoint(point, parent, relativePoint, x or 0, (y or 0) - bottom) + end + CheckDualMonitor(self, level) + if mod(level.num, 5) == 0 then + local left, bottom = level:GetLeft(), level:GetBottom() + level:ClearAllPoints() + level:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", left, bottom) + end +end + +local Open +local OpenSlider +local OpenEditBox +local Refresh +local Clear +local function ReleaseButton(self, level, index) + if not level.buttons then + return + end + if not level.buttons[index] then + return + end + local button = level.buttons[index] + button:Hide() + if button.highlight then + button.highlight:Hide() + end +-- button.arrow:SetVertexColor(1, 1, 1) + button.arrow:SetHeight(16) + button.arrow:SetWidth(16) + table.remove(level.buttons, index) + table.insert(buttons, button) + for k in pairs(button) do + if k ~= 0 and k ~= "text" and k ~= "check" and k ~= "arrow" and k ~= "colorSwatch" and k ~= "highlight" and k ~= "radioHighlight" then + button[k] = nil + end + end + return true +end + +local function Scroll(self, level, down) + if down then + if level:GetBottom() < 0 then + local point, parent, relativePoint, x, y = level:GetPoint(1) + level:SetPoint(point, parent, relativePoint, x, y + 50) + if level:GetBottom() > 0 then + level:SetPoint(point, parent, relativePoint, x, y + 50 - level:GetBottom()) + end + end + else + if level:GetTop() > GetScreenHeight() then + local point, parent, relativePoint, x, y = level:GetPoint(1) + level:SetPoint(point, parent, relativePoint, x, y - 50) + if level:GetTop() < GetScreenHeight() then + level:SetPoint(point, parent, relativePoint, x, y - 50 + GetScreenHeight() - level:GetTop()) + end + end + end +end + +local sliderFrame +local editBoxFrame + +local numButtons = 0 +local function AcquireButton(self, level) + if not levels[level] then + return + end + level = levels[level] + if not level.buttons then + level.buttons = {} + end + local button + if table.getn(buttons) == 0 then + numButtons = numButtons + 1 + button = CreateFrame("Button", "Hewdrop20Button" .. numButtons, nil) + button:SetFrameStrata("FULLSCREEN_DIALOG") + button:SetHeight(16) + local highlight = button:CreateTexture(nil, "BACKGROUND") + highlight:SetTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight") + button.highlight = highlight + highlight:SetBlendMode("ADD") + highlight:SetAllPoints(button) + highlight:Hide() + local check = button:CreateTexture(nil, "ARTWORK") + button.check = check + check:SetTexture("Interface\\Buttons\\UI-CheckBox-Check") + check:SetPoint("CENTER", button, "LEFT", 12, 0) + check:SetWidth(24) + check:SetHeight(24) + local radioHighlight = button:CreateTexture(nil, "ARTWORK") + button.radioHighlight = radioHighlight + radioHighlight:SetTexture("Interface\\Buttons\\UI-RadioButton") + radioHighlight:SetAllPoints(check) + radioHighlight:SetBlendMode("ADD") + radioHighlight:SetTexCoord(0.5, 0.75, 0, 1) + radioHighlight:Hide() + button:SetScript("OnEnter", function() + local this = this + if (sliderFrame and sliderFrame:IsShown() and sliderFrame.mouseDown and sliderFrame.level == this.level.num + 1) or (editBoxFrame and editBoxFrame:IsShown() and editBoxFrame.mouseDown and editBoxFrame.level == this.level.num + 1) then + for i = 1, this.level.num do + Refresh(self, levels[i]) + end + return + end + self:Close(this.level.num + 1) + if not this.disabled then + if this.hasSlider then + OpenSlider(self, this) + elseif this.hasEditBox then + OpenEditBox(self, this) + elseif this.hasArrow then + Open(self, this, nil, this.level.num + 1, this.value) + end + end + if not this.level then -- button reclaimed + return + end + StopCounting(self, this.level.num + 1) + if not this.disabled then + highlight:Show() + if this.isRadio then + button.radioHighlight:Show() + end + end + if this.tooltipTitle or this.tooltipText then + GameTooltip_SetDefaultAnchor(GameTooltip, this) + local disabled = not this.isTitle and this.disabled + if this.tooltipTitle then + if disabled then + GameTooltip:SetText(this.tooltipTitle, 0.5, 0.5, 0.5, 1) + else + GameTooltip:SetText(this.tooltipTitle, 1, 1, 1, 1) + end + if this.tooltipText then + if disabled then + GameTooltip:AddLine(this.tooltipText, (NORMAL_FONT_COLOR.r + 0.5) / 2, (NORMAL_FONT_COLOR.g + 0.5) / 2, (NORMAL_FONT_COLOR.b + 0.5) / 2, 1) + else + GameTooltip:AddLine(this.tooltipText, NORMAL_FONT_COLOR.r, NORMAL_FONT_COLOR.g, NORMAL_FONT_COLOR.b, 1) + end + end + else + if disabled then + GameTooltip:SetText(this.tooltipText, 0.5, 0.5, 0.5, 1) + else + GameTooltip:SetText(this.tooltipText, 1, 1, 1, 1) + end + end + GameTooltip:Show() + end + if this.tooltipFunc then + GameTooltip:SetOwner(this, "ANCHOR_NONE") + GameTooltip:SetPoint("TOPLEFT", this, "TOPRIGHT", 5, 0) + this.tooltipFunc(this.tooltipArg1, this.tooltipArg2, this.tooltipArg3, this.tooltipArg4) + GameTooltip:Show() + end + end) + button:SetScript("OnLeave", function() + highlight:Hide() + button.radioHighlight:Hide() + if this.level then + StartCounting(self, this.level.num) + end + GameTooltip:Hide() + end) + button:SetScript("OnClick", function() + if not this.disabled then + if this.hasColorSwatch then + local func = button.colorFunc + local a1,a2,a3,a4 = button.colorArg1, button.colorArg2, button.colorArg3, button.colorArg4 + local hasOpacity = this.hasOpacity + ColorPickerFrame.func = function() + if func then + local r,g,b = ColorPickerFrame:GetColorRGB() + local a = hasOpacity and 1 - OpacitySliderFrame:GetValue() or nil + if a1 == nil then + func(r, g, b, a) + elseif a2 == nil then + func(a1, r, g, b, a) + elseif a3 == nil then + func(a1, a2, r, g, b, a) + elseif a4 == nil then + func(a1, a2, a3, r, g, b, a) + else + func(a1, a2, a3, a4, r, g, b, a) + end + end + end + ColorPickerFrame.hasOpacity = this.hasOpacity + ColorPickerFrame.opacityFunc = ColorPickerFrame.func + ColorPickerFrame.opacity = 1 - this.opacity + ColorPickerFrame:SetColorRGB(this.r, this.g, this.b) + local r, g, b, a = this.r, this.g, this.b, this.opacity + ColorPickerFrame.cancelFunc = function() + if a1 == nil then + func(r, g, b, a) + elseif a2 == nil then + func(a1, r, g, b, a) + elseif a3 == nil then + func(a1, a2, r, g, b, a) + else + func(a1, a2, a3, r, g, b, a) + end + end + self:Close(1) + ShowUIPanel(ColorPickerFrame) + elseif this.func then + local level = button.level + if type(this.func) == "string" then + self:assert(type(this.arg1[this.func]) == "function", "Cannot call method " .. this.func) + this.arg1[this.func](this.arg1, this.arg2, this.arg3, this.arg4) + else + this.func(this.arg1, this.arg2, this.arg3, this.arg4) + end + if this.closeWhenClicked then + self:Close() + elseif level:IsShown() then + for i = 1, level.num do + Refresh(self, levels[i]) + end + end + elseif this.closeWhenClicked then + self:Close() + end + end + end) + local text = button:CreateFontString(nil, "ARTWORK") + button.text = text + text:SetFontObject(GameFontHighlightSmall) + button.text:SetFont(STANDARD_TEXT_FONT, UIDROPDOWNMENU_DEFAULT_TEXT_HEIGHT) + button:SetScript("OnMouseDown", function() + if not this.disabled and (this.func or this.colorFunc or this.closeWhenClicked) then + text:SetPoint("LEFT", button, "LEFT", this.notCheckable and 1 or 25, -1) + end + end) + button:SetScript("OnMouseUp", function() + if not this.disabled and (this.func or this.colorFunc or this.closeWhenClicked) then + text:SetPoint("LEFT", button, "LEFT", this.notCheckable and 0 or 24, 0) + end + end) + local arrow = button:CreateTexture(nil, "ARTWORK") + button.arrow = arrow + arrow:SetPoint("LEFT", button, "RIGHT", -16, 0) + arrow:SetWidth(16) + arrow:SetHeight(16) + arrow:SetTexture("Interface\\ChatFrame\\ChatFrameExpandArrow") + local colorSwatch = button:CreateTexture(nil, "OVERLAY") + button.colorSwatch = colorSwatch + colorSwatch:SetWidth(20) + colorSwatch:SetHeight(20) + colorSwatch:SetTexture("Interface\\ChatFrame\\ChatFrameColorSwatch") + local texture = button:CreateTexture(nil, "OVERLAY") + colorSwatch.texture = texture + texture:SetTexture(1, 1, 1) + texture:SetWidth(11.5) + texture:SetHeight(11.5) + texture:Show() + texture:SetPoint("CENTER", colorSwatch, "CENTER") + colorSwatch:SetPoint("RIGHT", button, "RIGHT", 0, 0) + else + button = buttons[table.getn(buttons)] + table.remove(buttons, table.getn(buttons)) + end + button:ClearAllPoints() + button:SetParent(level) + button:SetFrameStrata(level:GetFrameStrata()) + button:SetFrameLevel(level:GetFrameLevel() + 1) + button:SetPoint("LEFT", level, "LEFT", 10, 0) + button:SetPoint("RIGHT", level, "RIGHT", -10, 0) + if table.getn(level.buttons) == 0 then + button:SetPoint("TOP", level, "TOP", 0, -10) + else + button:SetPoint("TOP", level.buttons[table.getn(level.buttons)], "BOTTOM", 0, 0) + end + button.text:SetPoint("LEFT", button, "LEFT", 24, 0) + button:Show() + button.level = level + table.insert(level.buttons, button) + if not level.parented then + level.parented = true + level:ClearAllPoints() + if level.num == 1 then + if level.parent ~= UIParent then + level:SetPoint("TOPRIGHT", level.parent, "TOPLEFT") + else + level:SetPoint("CENTER", level.parent, "CENTER") + end + else + if level.lastDirection == "RIGHT" then + if level.lastVDirection == "DOWN" then + level:SetPoint("TOPLEFT", level.parent, "TOPRIGHT", 5, 10) + else + level:SetPoint("BOTTOMLEFT", level.parent, "BOTTOMRIGHT", 5, -10) + end + else + if level.lastVDirection == "DOWN" then + level:SetPoint("TOPRIGHT", level.parent, "TOPLEFT", -5, 10) + else + level:SetPoint("BOTTOMRIGHT", level.parent, "BOTTOMLEFT", -5, -10) + end + end + end + level:SetFrameStrata("FULLSCREEN_DIALOG") + end + button:SetAlpha(1) + return button +end + +local numLevels = 0 +local function AcquireLevel(self, level) + if not levels[level] then + for i = table.getn(levels) + 1, level, -1 do + local i = i + numLevels = numLevels + 1 + local frame = CreateFrame("Button", "Hewdrop20Level" .. numLevels, nil) + if i == 1 then + if lua51 then + local old_CloseSpecialWindows = CloseSpecialWindows + function CloseSpecialWindows() + local found = old_CloseSpecialWindows() + if levels[1]:IsShown() then + self:Close() + return 1 + end + return found + end + else + local old_CloseWindows = CloseWindows + function CloseWindows(ignoreCenter) + local found = old_CloseWindows(ignoreCenter) + if levels[1]:IsShown() then + self:Close() + return 1 + end + return found + end + end + end + levels[i] = frame + frame.num = i + frame:SetParent(UIParent) + frame:SetFrameStrata("FULLSCREEN_DIALOG") + frame:Hide() + frame:SetWidth(180) + frame:SetHeight(10) + frame:SetFrameLevel(i * 3) + frame:SetScript("OnHide", function() + self:Close(level + 1) + end) + if frame.SetTopLevel then + frame:SetTopLevel(true) + end + frame:EnableMouse(true) + frame:EnableMouseWheel(true) + local backdrop = CreateFrame("Frame", nil, frame) + backdrop:SetAllPoints(frame) + backdrop:SetBackdrop(tmp( + 'bgFile', "Interface\\ChatFrame\\ChatFrameBackground", + 'edgeFile', "Interface\\Tooltips\\UI-Tooltip-Border", + 'tile', true, + 'insets', tmp2( + 'left', 5, + 'right', 5, + 'top', 5, + 'bottom', 5 + ), + 'tileSize', 16, + 'edgeSize', 16 + )) + backdrop:SetBackdropBorderColor(TOOLTIP_DEFAULT_COLOR.r, TOOLTIP_DEFAULT_COLOR.g, TOOLTIP_DEFAULT_COLOR.b) + backdrop:SetBackdropColor(0, 0, 0, 1) + frame:SetScript("OnClick", function() + self:Close(i) + end) + frame:SetScript("OnEnter", function() + StopCounting(self, i) + end) + frame:SetScript("OnLeave", function() + StartCounting(self, i) + end) + frame:SetScript("OnMouseWheel", function() + Scroll(self, frame, arg1 < 0) + end) + if i == 1 then + frame:SetScript("OnUpdate", function() + OnUpdate(self, arg1) + end) + levels[1].lastDirection = "RIGHT" + levels[1].lastVDirection = "DOWN" + else + levels[i].lastDirection = levels[i - 1].lastDirection + levels[i].lastVDirection = levels[i - 1].lastVDirection + end + end + end + local fullscreenFrame = GetFullScreenFrame() + local l = levels[level] + local strata, framelevel = l:GetFrameStrata(), l:GetFrameLevel() + if fullscreenFrame then + l:SetParent(fullscreenFrame) + else + l:SetParent(UIParent) + end + l:SetFrameStrata(strata) + l:SetFrameLevel(framelevel) + l:SetAlpha(1) + return l +end + +local function checkValidate(validateFunc, func, arg1, arg2, arg3) + local text + if arg3 ~= nil then + text = arg3 + elseif arg2 ~= nil then + text = arg2 + else + text = arg1 + end + if not validateFunc(text) then + DEFAULT_CHAT_FRAME:AddMessage("|cffffff7fValidation error: [|r" .. tostring(text) .. "|cffffff7f]|r") + else + func(arg1, arg2, arg3) + end +end + +local function validateOptions(options, position, baseOptions, fromPass) + if not baseOptions then + baseOptions = options + end + if type(options) ~= "table" then + return "Options must be a table.", position + end + local kind = options.type + if type(kind) ~= "string" then + return '"type" must be a string.', position + elseif kind ~= "group" and kind ~= "range" and kind ~= "text" and kind ~= "execute" and kind ~= "toggle" and kind ~= "color" and kind ~= "header" then + return '"type" must either be "range", "text", "group", "toggle", "execute", "color", or "header".', position + end + if options.aliases then + if type(options.aliases) ~= "table" and type(options.aliases) ~= "string" then + return '"alias" must be a table or string', position + end + end + if not fromPass then + if kind == "execute" then + if type(options.func) ~= "string" and type(options.func) ~= "function" then + return '"func" must be a string or function', position + end + elseif kind == "range" or kind == "text" or kind == "toggle" then + if type(options.set) ~= "string" and type(options.set) ~= "function" then + return '"set" must be a string or function', position + end + if kind == "text" and options.get == false then + elseif type(options.get) ~= "string" and type(options.get) ~= "function" then + return '"get" must be a string or function', position + end + elseif kind == "group" and options.pass then + if options.pass ~= true then + return '"pass" must be either nil, true, or false', position + end + if not options.func then + if type(options.set) ~= "string" and type(options.set) ~= "function" then + return '"set" must be a string or function', position + end + if type(options.get) ~= "string" and type(options.get) ~= "function" then + return '"get" must be a string or function', position + end + elseif type(options.func) ~= "string" and type(options.func) ~= "function" then + return '"func" must be a string or function', position + end + end + else + if kind == "group" then + return 'cannot have "type" = "group" as a subgroup of a passing group', position + end + end + if options ~= baseOptions then + if kind == "header" then + elseif type(options.desc) ~= "string" then + return '"desc" must be a string', position + elseif string.len(options.desc) == 0 then + return '"desc" cannot be a 0-length string', position + end + end + if options ~= baseOptions or kind == "range" or kind == "text" or kind == "toggle" or kind == "color" then + if options.type == "header" and not options.cmdName and not options.name then + elseif options.cmdName then + if type(options.cmdName) ~= "string" then + return '"cmdName" must be a string or nil', position + elseif string.len(options.cmdName) == 0 then + return '"cmdName" cannot be a 0-length string', position + end + if type(options.guiName) ~= "string" then + if not options.guiNameIsMap then + return '"guiName" must be a string or nil', position + end + elseif string.len(options.guiName) == 0 then + return '"guiName" cannot be a 0-length string', position + end + else + if type(options.name) ~= "string" then + return '"name" must be a string', position + elseif string.len(options.name) == 0 then + return '"name" cannot be a 0-length string', position + end + end + end + if options.guiNameIsMap then + if type(options.guiNameIsMap) ~= "boolean" then + return '"guiNameIsMap" must be a boolean or nil', position + elseif options.type ~= "toggle" then + return 'if "guiNameIsMap" is true, then "type" must be set to \'toggle\'', position + elseif type(options.map) ~= "table" then + return '"map" must be a table', position + end + end + if options.message and type(options.message) ~= "string" then + return '"message" must be a string or nil', position + end + if options.error and type(options.error) ~= "string" then + return '"error" must be a string or nil', position + end + if options.current and type(options.current) ~= "string" then + return '"current" must be a string or nil', position + end + if options.order then + if type(options.order) ~= "number" or (-1 < options.order and options.order < 0.999) then + return '"order" must be a non-zero number or nil', position + end + end + if options.disabled then + if type(options.disabled) ~= "function" and type(options.disabled) ~= "string" and options.disabled ~= true then + return '"disabled" must be a function, string, or boolean', position + end + end + if options.cmdHidden then + if type(options.cmdHidden) ~= "function" and type(options.cmdHidden) ~= "string" and options.cmdHidden ~= true then + return '"cmdHidden" must be a function, string, or boolean', position + end + end + if options.guiHidden then + if type(options.guiHidden) ~= "function" and type(options.guiHidden) ~= "string" and options.guiHidden ~= true then + return '"guiHidden" must be a function, string, or boolean', position + end + end + if options.hidden then + if type(options.hidden) ~= "function" and type(options.hidden) ~= "string" and options.hidden ~= true then + return '"hidden" must be a function, string, or boolean', position + end + end + if kind == "text" then + if type(options.validate) == "table" then + local t = options.validate + local iTable = nil + for k,v in pairs(t) do + if type(k) == "number" then + if iTable == nil then + iTable = true + elseif not iTable then + return '"validate" must either have all keys be indexed numbers or strings', position + elseif k < 1 or k > table.getn(t) then + return '"validate" numeric keys must be indexed properly. >= 1 and <= table.getn', position + end + else + if iTable == nil then + iTable = false + elseif iTable then + return '"validate" must either have all keys be indexed numbers or strings', position + end + end + if type(v) ~= "string" then + return '"validate" values must all be strings', position + end + end + elseif options.validate == "keybinding" then + -- no other checks + else + if type(options.usage) ~= "string" then + return '"usage" must be a string', position + elseif options.validate and type(options.validate) ~= "string" and type(options.validate) ~= "function" then + return '"validate" must be a string, function, or table', position + end + end + elseif kind == "range" then + if options.min or options.max then + if type(options.min) ~= "number" then + return '"min" must be a number', position + elseif type(options.max) ~= "number" then + return '"max" must be a number', position + elseif options.min >= options.max then + return '"min" must be less than "max"', position + end + end + if options.step then + if type(options.step) ~= "number" then + return '"step" must be a number', position + elseif options.step < 0 then + return '"step" must be nonnegative', position + end + end + if options.isPercent and options.isPercent ~= true then + return '"isPercent" must either be nil, true, or false', position + end + elseif kind == "toggle" then + if options.map then + if type(options.map) ~= "table" then + return '"map" must be a table', position + elseif type(options.map[true]) ~= "string" then + return '"map[true]" must be a string', position + elseif type(options.map[false]) ~= "string" then + return '"map[false]" must be a string', position + end + end + elseif kind == "color" then + if options.hasAlpha and options.hasAlpha ~= true then + return '"hasAlpha" must be nil, true, or false', position + end + elseif kind == "group" then + if options.pass and options.pass ~= true then + return '"pass" must be nil, true, or false', position + end + if type(options.args) ~= "table" then + return '"args" must be a table', position + end + for k,v in pairs(options.args) do + if type(k) ~= "string" then + return '"args" keys must be strings', position + elseif string.find(k, "%s") then + return string.format('"args" keys must not include spaces. %q is not appropriate.', k), position + elseif string.len(k) == 0 then + return '"args" keys must not be 0-length strings.', position + end + if type(v) ~= "table" then + return '"args" values must be tables', position and position .. "." .. k or k + end + local newposition + if position then + newposition = position .. ".args." .. k + else + newposition = "args." .. k + end + local err, pos = validateOptions(v, newposition, baseOptions, options.pass) + if err then + return err, pos + end + end + end + if options.icon and type(options.icon) ~= "string" then + return'"icon" must be a string', position + end + if options.iconWidth or options.iconHeight then + if type(options.iconWidth) ~= "number" or type(options.iconHeight) ~= "number" then + return '"iconHeight" and "iconWidth" must be numbers', position + end + end + if options.iconCoordLeft or options.iconCoordRight or options.iconCoordTop or options.iconCoordBottom then + if type(options.iconCoordLeft) ~= "number" or type(options.iconCoordRight) ~= "number" or type(options.iconCoordTop) ~= "number" or type(options.iconCoordBottom) ~= "number" then + return '"iconCoordLeft", "iconCoordRight", "iconCoordTop", and "iconCoordBottom" must be numbers', position + end + end +end + +local validatedOptions + +local values +local mysort_args +local mysort +local othersort +local othersort_validate + +local baseFunc, currentLevel + +function Hewdrop:FeedAceOptionsTable(options, difference) + self:argCheck(options, 2, "table") + self:argCheck(difference, 3, "nil", "number") + self:assert(currentLevel, "Cannot call `FeedAceOptionsTable' outside of a Hewdrop declaration") + if not difference then + difference = 0 + end + if not validatedOptions then + validatedOptions = {} + end + if not validatedOptions[options] then + local err, position = validateOptions(options) + + if err then + if position then + Hewdrop:error(position .. ": " .. err) + else + Hewdrop:error(err) + end + end + + validatedOptions[options] = true + end + local level = levels[currentLevel] + self:assert(level, "Improper level given") + if not values then + values = {} + else + for k,v in pairs(values) do + values[k] = nil + end + table_setn(values, 0) + end + + local current = level + while current do + if current.num == difference + 1 then + break + end + table.insert(values, current.value) + current = levels[current.num - 1] + end + + local realOptions = options + local handler = options.handler + local passTable + local passValue + while table.getn(values) > 0 do + passTable = options.pass and current or nil + local value = table.remove(values) + options = options.args and options.args[value] + if not options then + return + end + handler = options.handler or handler + passValue = passTable and value or nil + end + + if options.type == "group" then + for k in pairs(options.args) do + table.insert(values, k) + end + if not mysort then + mysort = function(a, b) + local alpha, bravo = mysort_args[a], mysort_args[b] + local alpha_order = alpha.order or 100 + local bravo_order = bravo.order or 100 + local alpha_name = alpha.guiName or alpha.name + local bravo_name = bravo.guiName or bravo.name + if alpha_order == bravo_order then + if not alpha_name then + return true + elseif not bravo_name then + return false + else + return string.upper(alpha_name) < string.upper(bravo_name) + end + else + if alpha_order < 0 then + if bravo_order > 0 then + return false + end + else + if bravo_order < 0 then + return true + end + end + return alpha_order < bravo_order + end + end + end + mysort_args = options.args + table.sort(values, mysort) + mysort_args = nil + local hasBoth = table.getn(values) >= 1 and (options.args[values[1]].order or 100) > 0 and (options.args[values[table.getn(values)]].order or 100) < 0 + local last_order = 1 + for _,k in ipairs(values) do + local v = options.args[k] + local handler = v.handler or handler + if hasBoth and last_order > 0 and (v.order or 100) < 0 then + hasBoth = false + self:AddLine() + end + local hidden, disabled = v.guiHidden or v.hidden, v.disabled + if type(hidden) == "function" then + hidden = hidden() + elseif type(hidden) == "string" then + hidden = handler[hidden](handler) + end + if not hidden then + if type(disabled) == "function" then + disabled = disabled() + elseif type(disabled) == "string" then + disabled = handler[disabled](handler) + end + local name = (v.guiIconOnly and v.icon) and "" or (v.guiName or v.name) + local desc = v.desc + local iconHeight = v.iconHeight or 16 + local iconWidth = v.iconWidth or 16 + local iconCoordLeft = v.iconCoordLeft + local iconCoordRight = v.iconCoordRight + local iconCoordBottom = v.iconCoordBottom + local iconCoordTop = v.iconCoordTop + local tooltipTitle, tooltipText + tooltipTitle = name + if name ~= desc then + tooltipText = desc + end + if v.type == "toggle" then + local checked + if type(v.get) == "function" then + checked = v.get(passValue) + else + if not handler[v.get] then + Hewdrop:error("Handler %q not available", v.get) + end + checked = handler[v.get](handler, passValue) + end + local func, arg1, arg2, arg3 + if type(v.set) == "function" then + func = v.set + if passValue ~= nil then + arg1 = passValue + arg2 = not checked + else + arg1 = not checked + end + else + if not handler[v.set] then + Hewdrop:error("Handler %q not available", v.set) + end + func = handler[v.set] + arg1 = handler + if passValue ~= nil then + arg2 = passValue + arg3 = not checked + else + arg2 = not checked + end + end + if v.guiNameIsMap then + checked = checked and true or false + name = string.gsub(tostring(v.map and v.map[checked]), "|c%x%x%x%x%x%x%x%x(.-)|r", "%1") + checked = nil + end + self:AddLine( + 'text', name, + 'checked', checked, + 'isRadio', v.isRadio, + 'func', func, + 'arg1', arg1, + 'arg2', arg2, + 'arg3', arg3, + 'disabled', disabled, + 'tooltipTitle', tooltipTitle, + 'tooltipText', tooltipText + ) + elseif v.type == "execute" then + local func, arg1, arg2 + if type(v.func) == "function" then + func = v.func + arg1 = passValue + else + if not handler[v.func] then + Hewdrop:error("Handler %q not available", v.func) + end + func = handler[v.func] + arg1 = handler + arg2 = passValue + end + self:AddLine( + 'text', name, + 'checked', checked, + 'func', func, + 'arg1', arg1, + 'arg2', arg2, + 'disabled', disabled, + 'tooltipTitle', tooltipTitle, + 'tooltipText', tooltipText, + 'icon', v.icon, + 'iconHeight', iconHeight, + 'iconWidth', iconWidth, + 'iconCoordLeft', iconCoordLeft, + 'iconCoordRight', iconCoordRight, + 'iconCoordTop', iconCoordTop, + 'iconCoordBottom', iconCoordBottom + ) + elseif v.type == "range" then + local sliderValue + if type(v.get) == "function" then + sliderValue = v.get(passValue) + else + if not handler[v.get] then + Hewdrop:error("Handler %q not available", v.get) + end + sliderValue = handler[v.get](handler, passValue) + end + local sliderFunc, sliderArg1, sliderArg2 + if type(v.set) == "function" then + sliderFunc = v.set + sliderArg1 = passValue + else + if not handler[v.set] then + Hewdrop:error("Handler %q not available", v.set) + end + sliderFunc = handler[v.set] + sliderArg1 = handler + sliderArg2 = passValue + end + self:AddLine( + 'text', name, + 'hasArrow', true, + 'hasSlider', true, + 'sliderMin', v.min or 0, + 'sliderMax', v.max or 1, + 'sliderStep', v.step or 0, + 'sliderIsPercent', v.isPercent or false, + 'sliderValue', sliderValue, + 'sliderFunc', sliderFunc, + 'sliderArg1', sliderArg1, + 'sliderArg2', sliderArg2, + 'disabled', disabled, + 'tooltipTitle', tooltipTitle, + 'tooltipText', tooltipText, + 'icon', v.icon, + 'iconHeight', iconHeight, + 'iconWidth', iconWidth, + 'iconCoordLeft', iconCoordLeft, + 'iconCoordRight', iconCoordRight, + 'iconCoordTop', iconCoordTop, + 'iconCoordBottom', iconCoordBottom + ) + elseif v.type == "color" then + local r,g,b,a + if type(v.get) == "function" then + r,g,b,a = v.get(passValue) + else + if not handler[v.get] then + Hewdrop:error("Handler %q not available", v.get) + end + r,g,b,a = handler[v.get](handler, passValue) + end + local colorFunc, colorArg1, colorArg2 + if type(v.set) == "function" then + colorFunc = v.set + colorArg1 = passValue + else + if not handler[v.set] then + Hewdrop:error("Handler %q not available", v.set) + end + colorFunc = handler[v.set] + colorArg1 = handler + colorArg2 = passValue + end + self:AddLine( + 'text', name, + 'hasArrow', true, + 'hasColorSwatch', true, + 'r', r, + 'g', g, + 'b', b, + 'opacity', v.hasAlpha and a or nil, + 'hasOpacity', v.hasAlpha, + 'colorFunc', colorFunc, + 'colorArg1', colorArg1, + 'colorArg2', colorArg2, + 'disabled', disabled, + 'tooltipTitle', tooltipTitle, + 'tooltipText', tooltipText + ) + elseif v.type == "text" then + if type(v.validate) == "table" then + self:AddLine( + 'text', name, + 'hasArrow', true, + 'value', k, + 'disabled', disabled, + 'tooltipTitle', tooltipTitle, + 'tooltipText', tooltipText, + 'icon', v.icon, + 'iconHeight', iconHeight, + 'iconWidth', iconWidth, + 'iconCoordLeft', iconCoordLeft, + 'iconCoordRight', iconCoordRight, + 'iconCoordTop', iconCoordTop, + 'iconCoordBottom', iconCoordBottom + ) + else + local editBoxText + if type(v.get) == "function" then + editBoxText = v.get(passValue) + elseif v.get == false then + editBoxText = nil + else + if not handler[v.get] then + Hewdrop:error("Handler %q not available", v.get) + end + editBoxText = handler[v.get](handler, passValue) + end + local editBoxFunc, editBoxArg1, editBoxArg2 + if type(v.set) == "function" then + editBoxFunc = v.set + editBoxArg1 = passValue + else + if not handler[v.set] then + Hewdrop:error("Handler %q not available", v.set) + end + editBoxFunc = handler[v.set] + editBoxArg1 = handler + editBoxArg2 = passValue + end + + local editBoxValidateFunc, editBoxValidateArg1 + + if v.validate and v.validate ~= "keybinding" then + if type(v.validate) == "function" then + editBoxValidateFunc = v.validate + else + if not handler[v.validate] then + Hewdrop:error("Handler %q not available", v.validate) + end + editBoxValidateFunc = handler[v.validate] + editBoxValidateArg1 = handler + end + elseif v.validate then + if tooltipText then + tooltipText = tooltipText .. "\n\n" .. RESET_KEYBINDING_DESC + else + tooltipText = RESET_KEYBINDING_DESC + end + end + + self:AddLine( + 'text', name, + 'hasArrow', true, + 'icon', v.icon, + 'iconHeight', iconHeight, + 'iconWidth', iconWidth, + 'iconCoordLeft', iconCoordLeft, + 'iconCoordRight', iconCoordRight, + 'iconCoordTop', iconCoordTop, + 'iconCoordBottom', iconCoordBottom, + 'hasEditBox', true, + 'editBoxText', editBoxText, + 'editBoxFunc', editBoxFunc, + 'editBoxArg1', editBoxArg1, + 'editBoxArg2', editBoxArg2, + 'editBoxValidateFunc', editBoxValidateFunc, + 'editBoxValidateArg1', editBoxValidateArg1, + 'editBoxIsKeybinding', v.validate == "keybinding", + 'disabled', disabled, + 'tooltipTitle', tooltipTitle, + 'tooltipText', tooltipText + ) + end + elseif v.type == "group" then + self:AddLine( + 'text', name, + 'hasArrow', true, + 'value', k, + 'disabled', disabled, + 'tooltipTitle', tooltipTitle, + 'tooltipText', tooltipText, + 'icon', v.icon, + 'iconHeight', iconHeight, + 'iconWidth', iconWidth, + 'iconCoordLeft', iconCoordLeft, + 'iconCoordRight', iconCoordRight, + 'iconCoordTop', iconCoordTop, + 'iconCoordBottom', iconCoordBottom + ) + elseif v.type == "header" then + if name == "" or not name then + self:AddLine( + 'isTitle', true, + 'icon', v.icon, + 'iconHeight', iconHeight, + 'iconWidth', iconWidth, + 'iconCoordLeft', iconCoordLeft, + 'iconCoordRight', iconCoordRight, + 'iconCoordTop', iconCoordTop, + 'iconCoordBottom', iconCoordBottom + ) + else + self:AddLine( + 'text', name, + 'isTitle', true, + 'icon', v.icon, + 'iconHeight', iconHeight, + 'iconWidth', iconWidth, + 'iconCoordLeft', iconCoordLeft, + 'iconCoordRight', iconCoordRight, + 'iconCoordTop', iconCoordTop, + 'iconCoordBottom', iconCoordBottom + ) + end + end + end + last_order = v.order or 100 + end + elseif options.type == "text" and type(options.validate) == "table" then + local current + if type(options.get) == "function" then + current = options.get(passValue) + elseif options.get ~= false then + if not handler[options.get] then + Hewdrop:error("Handler %q not available", options.get) + end + current = handler[options.get](handler, passValue) + end + local indexed = true + for k,v in pairs(options.validate) do + if type(k) ~= "number" then + indexed = false + end + table.insert(values, k) + end + if not indexed then + if not othersort then + othersort = function(alpha, bravo) + return othersort_validate[alpha] < othersort_validate[bravo] + end + end + othersort_validate = options.validate + table.sort(values, othersort) + othersort_validate = nil + end + for _,k in ipairs(values) do + local v = options.validate[k] + if type(k) == "number" then + k = v + end + local func, arg1, arg2 + if type(options.set) == "function" then + func = options.set + if passValue ~= nil then + arg1 = passValue + arg2 = k + else + arg1 = k + end + else + if not handler[options.set] then + Hewdrop:error("Handler %q not available", options.set) + end + func = handler[options.set] + arg1 = handler + if passValue ~= nil then + arg2 = passValue + arg3 = k + else + arg2 = k + end + end + local checked = (k == current or (type(k) == "string" and type(current) == "string" and string.lower(k) == string.lower(current))) + self:AddLine( + 'text', v, + 'func', not checked and func or nil, + 'arg1', not checked and arg1 or nil, + 'arg2', not checked and arg2 or nil, + 'arg3', not checked and arg3 or nil, + 'isRadio', true, + 'checked', checked, + 'tooltipTitle', options.guiName or options.name, + 'tooltipText', v + ) + end + for k in pairs(values) do + values[k] = nil + end + table_setn(values, 0) + else + return false + end + return true +end + +function Refresh(self, level) + if type(level) == "number" then + level = levels[level] + end + if not level then + return + end + if baseFunc then + Clear(self, level) + currentLevel = level.num + if type(baseFunc) == "table" then + if currentLevel == 1 then + local handler = baseFunc.handler + if handler then + local name = tostring(handler) + if not string.find(name, '^table:') then + name = string.gsub(name, "|c%x%x%x%x%x%x%x%x(.-)|r", "%1") + self:AddLine( + 'text', name, + 'isTitle', true + ) + end + end +-- elseif level.parentText then +-- self:AddLine( +-- 'text', level.parentText, +-- 'tooltipTitle', level.parentTooltipTitle, +-- 'tooltipText', level.parentTooltipText, +-- 'tooltipFunc', level.parentTooltipFunc, +-- 'isTitle', true +-- ) + end + self:FeedAceOptionsTable(baseFunc) + if currentLevel == 1 then + self:AddLine( + 'text', CLOSE, + 'closeWhenClicked', true + ) + end + else +-- if level.parentText then +-- self:AddLine( +-- 'text', level.parentText, +-- 'tooltipTitle', level.parentTooltipTitle, +-- 'tooltipText', level.parentTooltipText, +-- 'tooltipFunc', level.parentTooltipFunc, +-- 'isTitle', true +-- ) +-- end + baseFunc(currentLevel, level.value, levels[level.num - 1] and levels[level.num - 1].value, levels[level.num - 2] and levels[level.num - 2].value, levels[level.num - 3] and levels[level.num - 3].value, levels[level.num - 4] and levels[level.num - 4].value) + end + currentLevel = nil + CheckSize(self, level) + end +end + +function Hewdrop:Refresh(level) + self:argCheck(level, 2, "number") + Refresh(self, levels[level]) +end + +function OpenSlider(self, parent) + if not sliderFrame then + sliderFrame = CreateFrame("Frame", nil, nil) + sliderFrame:SetWidth(80) + sliderFrame:SetHeight(170) + sliderFrame:SetScale(UIParent:GetScale()) + sliderFrame:SetBackdrop(tmp( + 'bgFile', "Interface\\Tooltips\\UI-Tooltip-Background", + 'edgeFile', "Interface\\Tooltips\\UI-Tooltip-Border", + 'tile', true, + 'insets', tmp2( + 'left', 5, + 'right', 5, + 'top', 5, + 'bottom', 5 + ), + 'tileSize', 16, + 'edgeSize', 16 + )) + sliderFrame:SetFrameStrata("FULLSCREEN_DIALOG") + if sliderFrame.SetTopLevel then + sliderFrame:SetTopLevel(true) + end + sliderFrame:SetBackdropBorderColor(TOOLTIP_DEFAULT_COLOR.r, TOOLTIP_DEFAULT_COLOR.g, TOOLTIP_DEFAULT_COLOR.b) + sliderFrame:SetBackdropColor(TOOLTIP_DEFAULT_BACKGROUND_COLOR.r, TOOLTIP_DEFAULT_BACKGROUND_COLOR.g, TOOLTIP_DEFAULT_BACKGROUND_COLOR.b) + sliderFrame:EnableMouse(true) + sliderFrame:Hide() + sliderFrame:SetPoint("CENTER", UIParent, "CENTER") + local slider = CreateFrame("Slider", nil, sliderFrame) + sliderFrame.slider = slider + slider:SetOrientation("VERTICAL") + slider:SetMinMaxValues(0, 1) + slider:SetValueStep(0.01) + slider:SetValue(0.5) + slider:SetWidth(16) + slider:SetHeight(128) + slider:SetPoint("LEFT", sliderFrame, "LEFT", 15, 0) + slider:SetBackdrop(tmp( + 'bgFile', "Interface\\Buttons\\UI-SliderBar-Background", + 'edgeFile', "Interface\\Buttons\\UI-SliderBar-Border", + 'tile', true, + 'edgeSize', 8, + 'tileSize', 8, + 'insets', tmp2( + 'left', 3, + 'right', 3, + 'top', 3, + 'bottom', 3 + ) + )) + local texture = slider:CreateTexture() + slider:SetThumbTexture("Interface\\Buttons\\UI-SliderBar-Button-Vertical") + local text = slider:CreateFontString(nil, "ARTWORK") + sliderFrame.topText = text + text:SetFontObject(GameFontGreenSmall) + text:SetText("100%") + text:SetPoint("BOTTOM", slider, "TOP") + local text = slider:CreateFontString(nil, "ARTWORK") + sliderFrame.bottomText = text + text:SetFontObject(GameFontGreenSmall) + text:SetText("0%") + text:SetPoint("TOP", slider, "BOTTOM") + local text = slider:CreateFontString(nil, "ARTWORK") + sliderFrame.currentText = text + text:SetFontObject(GameFontHighlightSmall) + text:SetText("50%") + text:SetPoint("LEFT", slider, "RIGHT") + text:SetPoint("RIGHT", sliderFrame, "RIGHT", -6, 0) + text:SetJustifyH("CENTER") + local changed = false + local inside = false + slider:SetScript("OnValueChanged", function() + if sliderFrame.changing then + return + end + changed = true + local done = false + if sliderFrame.parent and sliderFrame.parent.sliderFunc then + local min = sliderFrame.parent.sliderMin or 0 + local max = sliderFrame.parent.sliderMax or 1 + local step = sliderFrame.parent.sliderStep or (max - min) / 100 + local a1,a2,a3,a4 = sliderFrame.parent.sliderArg1, sliderFrame.parent.sliderArg2, sliderFrame.parent.sliderArg3, sliderFrame.parent.sliderArg4 + local value = (1 - slider:GetValue()) * (max - min) + min + if step > 0 then + value = math.floor((value - min) / step + 0.5) * step + min + if value > max then + value = max + elseif value < min then + value = min + end + end + if value == sliderFrame.lastValue then + return + end + sliderFrame.lastValue = value + local text + if a1 == nil then + text = sliderFrame.parent.sliderFunc(value) + elseif a2 == nil then + text = sliderFrame.parent.sliderFunc(a1, value) + elseif a3 == nil then + text = sliderFrame.parent.sliderFunc(a1, a2, value) + elseif a4 == nil then + text = sliderFrame.parent.sliderFunc(a1, a2, a3, value) + else + text = sliderFrame.parent.sliderFunc(a1, a2, a3, a4, value) + end + if text then + sliderFrame.currentText:SetText(text) + done = true + end + end + if not done then + local min = sliderFrame.parent.sliderMin or 0 + local max = sliderFrame.parent.sliderMax or 1 + local step = sliderFrame.parent.sliderStep or (max - min) / 100 + local value = (1 - slider:GetValue()) * (max - min) + min + if step > 0 then + value = math.floor((value - min) / step + 0.5) * step + min + if value > max then + value = max + elseif value < min then + value = min + end + end + if sliderFrame.parent.sliderIsPercent then + sliderFrame.currentText:SetText(string.format("%.0f%%", value * 100)) + else + if step < 0.1 then + sliderFrame.currentText:SetText(string.format("%.2f", value)) + elseif step < 1 then + sliderFrame.currentText:SetText(string.format("%.1f", value)) + else + sliderFrame.currentText:SetText(string.format("%.0f", value)) + end + end + end + end) + sliderFrame:SetScript("OnEnter", function() + StopCounting(self, sliderFrame.level) + end) + sliderFrame:SetScript("OnLeave", function() + StartCounting(self, sliderFrame.level) + end) + slider:SetScript("OnMouseDown", function() + sliderFrame.mouseDown = true + end) + slider:SetScript("OnMouseUp", function() + sliderFrame.mouseDown = false + if changed and not inside then + local parent = sliderFrame.parent + for i = 1, sliderFrame.level - 1 do + Refresh(self, levels[i]) + end + OpenSlider(self, parent) + end + end) + slider:SetScript("OnEnter", function() + inside = true + StopCounting(self, sliderFrame.level) + end) + slider:SetScript("OnLeave", function() + inside = false + StartCounting(self, sliderFrame.level) + if changed and not sliderFrame.mouseDown then + local parent = sliderFrame.parent + for i = 1, sliderFrame.level - 1 do + Refresh(self, levels[i]) + end + OpenSlider(self, parent) + end + end) + end + sliderFrame.parent = parent + sliderFrame.level = parent.level.num + 1 + sliderFrame.parentValue = parent.level.value + sliderFrame:SetFrameLevel(parent.level:GetFrameLevel() + 3) + sliderFrame.slider:SetFrameLevel(sliderFrame:GetFrameLevel() + 1) + sliderFrame.changing = true + if not parent.sliderMin or not parent.sliderMax then + return + end + + if parent.arrow then +-- parent.arrow:SetVertexColor(0.2, 0.6, 0) + parent.arrow:SetHeight(24) + parent.arrow:SetWidth(24) + end + + if not parent.sliderValue then + parent.sliderValue = (parent.sliderMin + parent.sliderMax) / 2 + end + sliderFrame.slider:SetValue(1 - (parent.sliderValue - parent.sliderMin) / (parent.sliderMax - parent.sliderMin)) + sliderFrame.changing = false + sliderFrame.bottomText:SetText(parent.sliderMinText or "0") + sliderFrame.topText:SetText(parent.sliderMaxText or "1") + local text + if parent.sliderFunc then + local a1,a2,a3,a4 = parent.sliderArg1, parent.sliderArg2, parent.sliderArg3, parent.sliderArg4 + if a1 == nil then + text = parent.sliderFunc(parent.sliderValue) + elseif a2 == nil then + text = parent.sliderFunc(a1, parent.sliderValue) + elseif a3 == nil then + text = parent.sliderFunc(a1, a2, parent.sliderValue) + elseif a4 == nil then + text = parent.sliderFunc(a1, a2, a3, parent.sliderValue) + else + text = parent.sliderFunc(a1, a2, a3, a4, parent.sliderValue) + end + end + if text then + sliderFrame.currentText:SetText(text) + elseif parent.sliderIsPercent then + sliderFrame.currentText:SetText(string.format("%.0f%%", parent.sliderValue * 100)) + else + sliderFrame.currentText:SetText(parent.sliderValue) + end + + sliderFrame.lastValue = parent.sliderValue + + local level = parent.level + sliderFrame:Show() + sliderFrame:ClearAllPoints() + if level.lastDirection == "RIGHT" then + if level.lastVDirection == "DOWN" then + sliderFrame:SetPoint("TOPLEFT", parent, "TOPRIGHT", 5, 10) + else + sliderFrame:SetPoint("BOTTOMLEFT", parent, "BOTTOMRIGHT", 5, -10) + end + else + if level.lastVDirection == "DOWN" then + sliderFrame:SetPoint("TOPRIGHT", parent, "TOPLEFT", -5, 10) + else + sliderFrame:SetPoint("BOTTOMRIGHT", parent, "BOTTOMLEFT", -5, -10) + end + end + local dirty + if level.lastDirection == "RIGHT" then + if sliderFrame:GetRight() > GetScreenWidth() then + level.lastDirection = "LEFT" + dirty = true + end + elseif sliderFrame:GetLeft() < 0 then + level.lastDirection = "RIGHT" + dirty = true + end + if level.lastVDirection == "DOWN" then + if sliderFrame:GetBottom() < 0 then + level.lastVDirection = "UP" + dirty = true + end + elseif sliderFrame:GetTop() > GetScreenWidth() then + level.lastVDirection = "DOWN" + dirty = true + end + if dirty then + sliderFrame:ClearAllPoints() + if level.lastDirection == "RIGHT" then + if level.lastVDirection == "DOWN" then + sliderFrame:SetPoint("TOPLEFT", parent, "TOPRIGHT", 5, 10) + else + sliderFrame:SetPoint("BOTTOMLEFT", parent, "BOTTOMRIGHT", 5, -10) + end + else + if level.lastVDirection == "DOWN" then + sliderFrame:SetPoint("TOPRIGHT", parent, "TOPLEFT", -5, 10) + else + sliderFrame:SetPoint("BOTTOMRIGHT", parent, "BOTTOMLEFT", -5, -10) + end + end + end + local left, bottom = sliderFrame:GetLeft(), sliderFrame:GetBottom() + sliderFrame:ClearAllPoints() + sliderFrame:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", left, bottom) + if mod(level.num, 5) == 0 then + local left, bottom = level:GetLeft(), level:GetBottom() + level:ClearAllPoints() + level:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", left, bottom) + end +end + +function OpenEditBox(self, parent) + if not editBoxFrame then + editBoxFrame = CreateFrame("Frame", nil, nil) + editBoxFrame:SetWidth(200) + editBoxFrame:SetHeight(40) + editBoxFrame:SetScale(UIParent:GetScale()) + editBoxFrame:SetBackdrop(tmp( + 'bgFile', "Interface\\Tooltips\\UI-Tooltip-Background", + 'edgeFile', "Interface\\Tooltips\\UI-Tooltip-Border", + 'tile', true, + 'insets', tmp2( + 'left', 5, + 'right', 5, + 'top', 5, + 'bottom', 5 + ), + 'tileSize', 16, + 'edgeSize', 16 + )) + editBoxFrame:SetFrameStrata("FULLSCREEN_DIALOG") + if editBoxFrame.SetTopLevel then + editBoxFrame:SetTopLevel(true) + end + editBoxFrame:SetBackdropBorderColor(TOOLTIP_DEFAULT_COLOR.r, TOOLTIP_DEFAULT_COLOR.g, TOOLTIP_DEFAULT_COLOR.b) + editBoxFrame:SetBackdropColor(TOOLTIP_DEFAULT_BACKGROUND_COLOR.r, TOOLTIP_DEFAULT_BACKGROUND_COLOR.g, TOOLTIP_DEFAULT_BACKGROUND_COLOR.b) + editBoxFrame:EnableMouse(true) + editBoxFrame:Hide() + editBoxFrame:SetPoint("CENTER", UIParent, "CENTER") + + local editBox = CreateFrame("EditBox", nil, editBoxFrame) + editBoxFrame.editBox = editBox + editBox:SetFontObject(ChatFontNormal) + editBox:SetWidth(160) + editBox:SetHeight(13) + editBox:SetPoint("CENTER", editBoxFrame, "CENTER", 0, 0) + + local left = editBox:CreateTexture(nil, "BACKGROUND") + left:SetTexture("Interface\\ChatFrame\\UI-ChatInputBorder-Left") + left:SetTexCoord(0, 100 / 256, 0, 1) + left:SetWidth(100) + left:SetHeight(32) + left:SetPoint("LEFT", editBox, "LEFT", -10, 0) + local right = editBox:CreateTexture(nil, "BACKGROUND") + right:SetTexture("Interface\\ChatFrame\\UI-ChatInputBorder-Right") + right:SetTexCoord(156/256, 1, 0, 1) + right:SetWidth(100) + right:SetHeight(32) + right:SetPoint("RIGHT", editBox, "RIGHT", 10, 0) + + editBox:SetScript("OnEnterPressed", function() + if editBoxFrame.parent and editBoxFrame.parent.editBoxValidateFunc then + local a1,a2,a3,a4 = editBoxFrame.parent.editBoxValidateArg1, editBoxFrame.parent.editBoxValidateArg2, editBoxFrame.parent.editBoxValidateArg3, editBoxFrame.parent.editBoxValidateArg4 + + local t = editBox.realText or editBox:GetText() or "" + local result + if a1 == nil then + result = editBoxFrame.parent.editBoxValidateFunc(t) + elseif a2 == nil then + result = editBoxFrame.parent.editBoxValidateFunc(a1, t) + elseif a3 == nil then + result = editBoxFrame.parent.editBoxValidateFunc(a1, a2, t) + elseif a4 == nil then + result = editBoxFrame.parent.editBoxValidateFunc(a1, a2, a3, t) + else + result = editBoxFrame.parent.editBoxValidateFunc(a1, a2, a3, a4, t) + end + if not result then + UIErrorsFrame:AddMessage(VALIDATION_ERROR, 1, 0, 0) + return + end + end + if editBoxFrame.parent and editBoxFrame.parent.editBoxFunc then + local a1,a2,a3,a4 = editBoxFrame.parent.editBoxArg1, editBoxFrame.parent.editBoxArg2, editBoxFrame.parent.editBoxArg3, editBoxFrame.parent.editBoxArg4 + local t + if editBox.realText ~= "NONE" then + t = editBox.realText or editBox:GetText() or "" + end + if a1 == nil then + editBoxFrame.parent.editBoxFunc(t) + elseif a2 == nil then + editBoxFrame.parent.editBoxFunc(a1, t) + elseif a3 == nil then + editBoxFrame.parent.editBoxFunc(a1, a2, t) + elseif a4 == nil then + editBoxFrame.parent.editBoxFunc(a1, a2, a3, t) + else + editBoxFrame.parent.editBoxFunc(a1, a2, a3, a4, t) + end + end + self:Close(editBoxFrame.level) + for i = 1, editBoxFrame.level - 1 do + Refresh(self, levels[i]) + end + end) + editBox:SetScript("OnEscapePressed", function() + self:Close(editBoxFrame.level) + end) + local changing = false + local skipNext = false + + function editBox:SpecialSetText(text) + local oldText = editBox:GetText() or "" + if not text then + text = "" + end + if text ~= oldText then + changing = true + self:SetText(text) + changing = false + skipNext = true + end + end + + editBox:SetScript("OnTextChanged", function() + if skipNext then + skipNext = false + elseif not changing and editBoxFrame.parent and editBoxFrame.parent.editBoxChangeFunc then + local a1,a2,a3,a4 = editBoxFrame.parent.editBoxChangeArg1, editBoxFrame.parent.editBoxChangeArg2, editBoxFrame.parent.editBoxChangeArg3, editBoxFrame.parent.editBoxChangeArg4 + local t + if editBox.realText ~= "NONE" then + t = editBox.realText or editBox:GetText() or "" + end + local text + if a1 == nil then + text = editBoxFrame.parent.editBoxChangeFunc(t) + elseif a2 == nil then + text = editBoxFrame.parent.editBoxChangeFunc(a1, t) + elseif a3 == nil then + text = editBoxFrame.parent.editBoxChangeFunc(a1, a2, t) + elseif a4 == nil then + text = editBoxFrame.parent.editBoxChangeFunc(a1, a2, a3, t) + else + text = editBoxFrame.parent.editBoxChangeFunc(a1, a2, a3, a4, t) + end + if text then + editBox:SpecialSetText(text) + end + end + end) + editBoxFrame:SetScript("OnEnter", function() + StopCounting(self, editBoxFrame.level) + end) + editBoxFrame:SetScript("OnLeave", function() + StartCounting(self, editBoxFrame.level) + end) + editBox:SetScript("OnEnter", function() + StopCounting(self, editBoxFrame.level) + end) + editBox:SetScript("OnLeave", function() + StartCounting(self, editBoxFrame.level) + end) + editBoxFrame:SetScript("OnKeyDown", function() + if not editBox.keybinding then + return + end + local arg1 = arg1 + local screenshotKey = GetBindingKey("SCREENSHOT") + if screenshotKey and arg1 == screenshotKey then + Screenshot() + return + end + + if arg1 == "LeftButton" then + arg1 = "BUTTON1" + elseif arg1 == "RightButton" then + arg1 = "BUTTON2" + elseif arg1 == "MiddleButton" then + arg1 = "BUTTON3" + elseif arg1 == "Button4" then + arg1 = "BUTTON4" + elseif arg1 == "Button5" then + arg1 = "BUTTON5" + end + if arg1 == "BUTTON1" or arg1 == "BUTTON2" or arg1 == "UNKNOWN" then + return + elseif arg1 == "SHIFT" or arg1 == "CTRL" or arg1 == "ALT" then + return + elseif arg1 == "ENTER" then + return editBox:GetScript("OnEnterPressed")() + elseif arg1 == "ESCAPE" then + if editBox.realText == "NONE" then + return editBox:GetScript("OnEscapePressed")() + else + editBox:SpecialSetText(NONE or "NONE") + editBox.realText = "NONE" + return + end + end + local s = GetBindingText(arg1, "KEY_") + local real = arg1 + if IsShiftKeyDown() then + s = "SHIFT-" .. s + real = "SHIFT-" .. real + end + if IsControlKeyDown() then + s = "CTRL-" .. s + real = "CTRL-" .. real + end + if IsAltKeyDown() then + s = "ALT-" .. s + real = "ALT-" .. real + end + if editBox:GetText() ~= s then + editBox:SpecialSetText(s) + editBox.realText = real + return editBox:GetScript("OnTextChanged")() + end + end) + editBoxFrame:SetScript("OnMouseDown", editBoxFrame:GetScript("OnKeyDown")) + editBox:SetScript("OnMouseDown", editBoxFrame:GetScript("OnKeyDown")) + end + editBoxFrame.parent = parent + editBoxFrame.level = parent.level.num + 1 + editBoxFrame.parentValue = parent.level.value + editBoxFrame:SetFrameLevel(parent.level:GetFrameLevel() + 3) + editBoxFrame.editBox:SetFrameLevel(editBoxFrame:GetFrameLevel() + 1) + editBoxFrame.editBox.realText = nil + + if parent.editBoxIsKeybinding then + local s = parent.editBoxText + editBoxFrame.editBox.realText = s + if s and s ~= "" then + local _,_,alpha,bravo = string.find("^(.+)%-(.+)$", s) + if not bravo then + alpha = nil + bravo = s + end + bravo = GetBindingText(bravo, "KEY_") + if alpha then + editBoxFrame.editBox:SpecialSetText(string.upper(alpha) .. "-" .. bravo) + else + editBoxFrame.editBox:SpecialSetText(bravo) + end + else + editBoxFrame.editBox:SpecialSetText(NONE or "NONE") + end + else + editBoxFrame.editBox:SpecialSetText(parent.editBoxText) + end + + editBoxFrame.editBox.keybinding = parent.editBoxIsKeybinding + editBoxFrame.editBox:EnableKeyboard(not parent.editBoxIsKeybinding) + editBoxFrame:EnableKeyboard(parent.editBoxIsKeybinding) + + if parent.arrow then +-- parent.arrow:SetVertexColor(0.2, 0.6, 0) + parent.arrow:SetHeight(24) + parent.arrow:SetWidth(24) + end + + local level = parent.level + editBoxFrame:Show() + editBoxFrame:ClearAllPoints() + if level.lastDirection == "RIGHT" then + if level.lastVDirection == "DOWN" then + editBoxFrame:SetPoint("TOPLEFT", parent, "TOPRIGHT", 5, 10) + else + editBoxFrame:SetPoint("BOTTOMLEFT", parent, "BOTTOMRIGHT", 5, -10) + end + else + if level.lastVDirection == "DOWN" then + editBoxFrame:SetPoint("TOPRIGHT", parent, "TOPLEFT", -5, 10) + else + editBoxFrame:SetPoint("BOTTOMRIGHT", parent, "BOTTOMLEFT", -5, -10) + end + end + local dirty + if level.lastDirection == "RIGHT" then + if editBoxFrame:GetRight() > GetScreenWidth() then + level.lastDirection = "LEFT" + dirty = true + end + elseif editBoxFrame:GetLeft() < 0 then + level.lastDirection = "RIGHT" + dirty = true + end + if level.lastVDirection == "DOWN" then + if editBoxFrame:GetBottom() < 0 then + level.lastVDirection = "UP" + dirty = true + end + elseif editBoxFrame:GetTop() > GetScreenWidth() then + level.lastVDirection = "DOWN" + dirty = true + end + if dirty then + editBoxFrame:ClearAllPoints() + if level.lastDirection == "RIGHT" then + if level.lastVDirection == "DOWN" then + editBoxFrame:SetPoint("TOPLEFT", parent, "TOPRIGHT", 5, 10) + else + editBoxFrame:SetPoint("BOTTOMLEFT", parent, "BOTTOMRIGHT", 5, -10) + end + else + if level.lastVDirection == "DOWN" then + editBoxFrame:SetPoint("TOPRIGHT", parent, "TOPLEFT", -5, 10) + else + editBoxFrame:SetPoint("BOTTOMRIGHT", parent, "BOTTOMLEFT", -5, -10) + end + end + end + local left, bottom = editBoxFrame:GetLeft(), editBoxFrame:GetBottom() + editBoxFrame:ClearAllPoints() + editBoxFrame:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", left, bottom) + if mod(level.num, 5) == 0 then + local left, bottom = level:GetLeft(), level:GetBottom() + level:ClearAllPoints() + level:SetPoint("BOTTOMLEFT", UIParent, "BOTTOMLEFT", left, bottom) + end +end + +function Hewdrop:IsOpen(parent) + self:argCheck(parent, 2, "table", "nil") + return levels[1] and levels[1]:IsShown() and (not parent or parent == levels[1].parent or parent == levels[1]:GetParent()) +end + +function Hewdrop:GetOpenedParent() + return (levels[1] and levels[1]:IsShown()) and (levels[1].parent or levels[1]:GetParent()) +end + +function Open(self, parent, func, level, value, point, relativePoint, cursorX, cursorY) + self:Close(level) + if HewdropLib then + local d = HewdropLib:GetInstance('1.0') + local ret, val = pcall(d, IsOpen, d) + if ret and val then + HewdropLib:GetInstance('1.0'):Close() + end + end + parent:GetCenter() + local frame = AcquireLevel(self, level) + if level == 1 then + frame.lastDirection = "RIGHT" + frame.lastVDirection = "DOWN" + else + frame.lastDirection = levels[level - 1].lastDirection + frame.lastVDirection = levels[level - 1].lastVDirection + end + frame:SetFrameStrata("FULLSCREEN_DIALOG") + frame:ClearAllPoints() + frame.parent = parent + frame:SetPoint("LEFT", UIParent, "RIGHT", 10000, 0) + frame:Show() + if level == 1 then + baseFunc = func + end + levels[level].value = value +-- levels[level].parentText = parent.text and parent.text:GetText() or nil +-- levels[level].parentTooltipTitle = parent.tooltipTitle +-- levels[level].parentTooltipText = parent.tooltipText +-- levels[level].parentTooltipFunc = parent.tooltipFunc + if parent.arrow then +-- parent.arrow:SetVertexColor(0.2, 0.6, 0) + parent.arrow:SetHeight(24) + parent.arrow:SetWidth(24) + end + relativePoint = relativePoint or point + Refresh(self, levels[level]) + if point or (cursorX and cursorY) then + frame:ClearAllPoints() + if cursorX and cursorY then + local curX, curY = GetScaledCursorPosition() + if curY < GetScreenHeight() / 2 then + point, relativePoint = "BOTTOM", "BOTTOM" + else + point, relativePoint = "TOP", "TOP" + end + if curX < GetScreenWidth() / 2 then + point, relativePoint = point .. "LEFT", relativePoint .. "RIGHT" + else + point, relativePoint = point .. "RIGHT", relativePoint .. "LEFT" + end + end + frame:SetPoint(point, parent, relativePoint) + if cursorX and cursorY then + local left = frame:GetLeft() + local width = frame:GetWidth() + local bottom = frame:GetBottom() + local height = frame:GetHeight() + local curX, curY = GetScaledCursorPosition() + frame:ClearAllPoints() + relativePoint = relativePoint or point + if point == "BOTTOM" or point == "TOP" then + if curX < GetScreenWidth() / 2 then + point = point .. "LEFT" + else + point = point .. "RIGHT" + end + elseif point == "CENTER" then + if curX < GetScreenWidth() / 2 then + point = "LEFT" + else + point = "RIGHT" + end + end + local xOffset, yOffset = 0, 0 + if curY > GetScreenHeight() / 2 then + yOffset = -height + end + if curX > GetScreenWidth() / 2 then + xOffset = -width + end + frame:SetPoint(point, parent, relativePoint, curX - left + xOffset, curY - bottom + yOffset) + if level == 1 then + frame.lastDirection = "RIGHT" + end + elseif cursorX then + local left = frame:GetLeft() + local width = frame:GetWidth() + local curX, curY = GetScaledCursorPosition() + frame:ClearAllPoints() + relativePoint = relativePoint or point + if point == "BOTTOM" or point == "TOP" then + if curX < GetScreenWidth() / 2 then + point = point .. "LEFT" + else + point = point .. "RIGHT" + end + elseif point == "CENTER" then + if curX < GetScreenWidth() / 2 then + point = "LEFT" + else + point = "RIGHT" + end + end + frame:SetPoint(point, parent, relativePoint, curX - left - width / 2, 0) + if level == 1 then + frame.lastDirection = "RIGHT" + end + elseif cursorY then + local bottom = frame:GetBottom() + local height = frame:GetHeight() + local curX, curY = GetScaledCursorPosition() + frame:ClearAllPoints() + relativePoint = relativePoint or point + if point == "LEFT" or point == "RIGHT" then + if curX < GetScreenHeight() / 2 then + point = point .. "BOTTOM" + else + point = point .. "TOP" + end + elseif point == "CENTER" then + if curX < GetScreenHeight() / 2 then + point = "BOTTOM" + else + point = "TOP" + end + end + frame:SetPoint(point, parent, relativePoint, 0, curY - bottom - height / 2) + if level == 1 then + frame.lastDirection = "DOWN" + end + end + if (strsub(point, 1, 3) ~= strsub(relativePoint, 1, 3)) then + if frame:GetBottom() < 0 then + local point, parent, relativePoint, x, y = frame:GetPoint(1) + local change = GetScreenHeight() - frame:GetTop() + local otherChange = -frame:GetBottom() + if otherChange < change then + change = otherChange + end + frame:SetPoint(point, parent, relativePoint, x, y + change) + elseif frame:GetTop() > GetScreenHeight() then + local point, parent, relativePoint, x, y = frame:GetPoint(1) + local change = GetScreenHeight() - frame:GetTop() + local otherChange = -frame:GetBottom() + if otherChange < change then + change = otherChange + end + frame:SetPoint(point, parent, relativePoint, x, y + change) + end + end + end + CheckDualMonitor(self, frame) + StartCounting(self, level) +end + +function Hewdrop:IsRegistered(parent) + self:argCheck(parent, 2, "table") + return not not self.registry[parent] +end + +function Hewdrop:Register(parent, k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + self:argCheck(parent, 2, "table") + if self.registry[parent] then + self:Unregister(parent) + end + local info = new(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + if type(info.children) == "table" then + local err, position = validateOptions(info.children) + + if err then + if position then + Hewdrop:error(position .. ": " .. err) + else + Hewdrop:error(err) + end + end + end + self.registry[parent] = info + if not info.dontHook and not self.onceRegistered[parent] then + if parent:HasScript("OnMouseUp") then + local script = parent:GetScript("OnMouseUp") + parent:SetScript("OnMouseUp", function() + if script then + script() + end + if arg1 == "RightButton" and self.registry[parent] then + if self:IsOpen(parent) then + self:Close() + else + self:Open(parent) + end + end + end) + end + if parent:HasScript("OnMouseDown") then + local script = parent:GetScript("OnMouseDown") + parent:SetScript("OnMouseDown", function() + if script then + script() + end + if self.registry[parent] then + self:Close() + end + end) + end + end + self.onceRegistered[parent] = true +end + +function Hewdrop:Unregister(parent) + self:argCheck(parent, 2, "table") + self.registry[parent] = nil +end + +function Hewdrop:Open(parent, k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + self:argCheck(parent, 2, "table") + local info + if type(k1) == "table" and k1[0] and k1.IsFrameType and self.registry[k1] then + info = tmp() + for k,v in pairs(self.registry[k1]) do + info[k] = v + end + else + info = tmp(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + if self.registry[parent] then + for k,v in pairs(self.registry[parent]) do + if info[k] == nil then + info[k] = v + end + end + end + end + local point = info.point + local relativePoint = info.relativePoint + local cursorX = info.cursorX + local cursorY = info.cursorY + if type(point) == "function" then + local b + point, b = point(parent) + if b then + relativePoint = b + end + end + if type(relativePoint) == "function" then + relativePoint = relativePoint(parent) + end + Open(self, parent, info.children, 1, nil, point, relativePoint, cursorX, cursorY) +end + +function Clear(self, level) + if level then + if level.buttons then + for i = table.getn(level.buttons), 1, -1 do + ReleaseButton(self, level, i) + end + end + end +end + +function Hewdrop:Close(level) + if DropDownList1:IsShown() then + DropDownList1:Hide() + end + if HewdropLib then + local d = HewdropLib:GetInstance('1.0') + local ret, val = pcall(d, IsOpen, d) + if ret and val then + HewdropLib:GetInstance('1.0'):Close() + end + end + self:argCheck(level, 2, "number", "nil") + if not level then + level = 1 + end + if level == 1 and levels[level] then + levels[level].parented = false + end + if level > 1 and levels[level-1].buttons then + local buttons = levels[level-1].buttons + for _,button in ipairs(buttons) do + button.arrow:SetWidth(16) + button.arrow:SetHeight(16) +-- button.arrow:SetVertexColor(1, 1, 1) + end + end + if sliderFrame and sliderFrame.level >= level then + sliderFrame:Hide() + end + if editBoxFrame and editBoxFrame.level >= level then + editBoxFrame:Hide() + end + for i = level, table.getn(levels) do + Clear(self, levels[level]) + levels[level]:Hide() + levels[i]:ClearAllPoints() + levels[i]:SetPoint("CENTER", UIParent, "CENTER") + end +end + +function Hewdrop:AddLine(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + local info = tmp(k1, v1, k2, v2, k3, v3, k4, v4, k5, v5, k6, v6, k7, v7, k8, v8, k9, v9, k10, v10, k11, v11, k12, v12, k13, v13, k14, v14, k15, v15, k16, v16, k17, v17, k18, v18, k19, v19, k20, v20) + local level = info.level or currentLevel + info.level = nil + local button = AcquireButton(self, level) + if not next(info) then + info.disabled = true + end + button.disabled = info.isTitle or info.notClickable or info.disabled + button.isTitle = info.isTitle + button.notClickable = info.notClickable + if button.isTitle then + button.text:SetFontObject(GameFontNormalSmall) + elseif button.notClickable then + button.text:SetFontObject(GameFontHighlightSmall) + elseif button.disabled then + button.text:SetFontObject(GameFontDisableSmall) + else + button.text:SetFontObject(GameFontHighlightSmall) + end + if info.disabled then + button.arrow:SetDesaturated(true) + button.check:SetDesaturated(true) + else + button.arrow:SetDesaturated(false) + button.check:SetDesaturated(false) + end + if info.textR and info.textG and info.textB then + button.textR = info.textR + button.textG = info.textG + button.textB = info.textB + button.text:SetTextColor(button.textR, button.textG, button.textB) + else + button.text:SetTextColor(button.text:GetFontObject():GetTextColor()) + end + button.notCheckable = info.notCheckable + button.text:SetPoint("LEFT", button, "LEFT", button.notCheckable and 0 or 24, 0) + button.checked = not info.notCheckable and info.checked + button.isRadio = not info.notCheckable and info.isRadio + if info.isRadio then + button.check:Show() + button.check:SetTexture(info.checkIcon or "Interface\\Buttons\\UI-RadioButton") + if button.checked then + button.check:SetTexCoord(0.25, 0.5, 0, 1) + button.check:SetVertexColor(1, 1, 1, 1) + else + button.check:SetTexCoord(0, 0.25, 0, 1) + button.check:SetVertexColor(1, 1, 1, 0.5) + end + button.radioHighlight:SetTexture(info.checkIcon or "Interface\\Buttons\\UI-RadioButton") + button.check:SetWidth(16) + button.check:SetHeight(16) + elseif info.icon then + button.check:Show() + button.check:SetTexture(info.icon) + if info.iconWidth and info.iconHeight then + button.check:SetWidth(info.iconWidth) + button.check:SetHeight(info.iconHeight) + else + button.check:SetWidth(16) + button.check:SetHeight(16) + end + if info.iconCoordLeft and info.iconCoordRight and info.iconCoordTop and info.iconCoordBottom then + button.check:SetTexCoord(info.iconCoordLeft, info.iconCoordRight, info.iconCoordTop, info.iconCoordBottom) + elseif string.find(info.icon, "^Interface\\Icons\\") then + button.check:SetTexCoord(0.05, 0.95, 0.05, 0.95) + else + button.check:SetTexCoord(0, 1, 0, 1) + end + button.check:SetVertexColor(1, 1, 1, 1) + else + if button.checked then + if info.checkIcon then + button.check:SetWidth(16) + button.check:SetHeight(16) + button.check:SetTexture(info.checkIcon) + if string.find(info.checkIcon, "^Interface\\Icons\\") then + button.check:SetTexCoord(0.05, 0.95, 0.05, 0.95) + else + button.check:SetTexCoord(0, 1, 0, 1) + end + else + button.check:SetWidth(24) + button.check:SetHeight(24) + button.check:SetTexture("Interface\\Buttons\\UI-CheckBox-Check") + button.check:SetTexCoord(0, 1, 0, 1) + end + button.check:SetVertexColor(1, 1, 1, 1) + else + button.check:SetVertexColor(1, 1, 1, 0) + end + end + if not button.disabled then + button.func = info.func + end + button.hasColorSwatch = info.hasColorSwatch + if button.hasColorSwatch then + button.colorSwatch:Show() + button.colorSwatch.texture:Show() + button.r = info.r or 1 + button.g = info.g or 1 + button.b = info.b or 1 + button.colorSwatch.texture:SetTexture(button.r, button.g, button.b) + button.checked = false + button.func = nil + button.colorFunc = info.colorFunc + button.colorArg1 = info.colorArg1 + button.colorArg2 = info.colorArg2 + button.colorArg3 = info.colorArg3 + button.colorArg4 = info.colorArg4 + button.hasOpacity = info.hasOpacity + button.opacity = info.opacity or 1 + else + button.colorSwatch:Hide() + button.colorSwatch.texture:Hide() + end + button.hasArrow = not button.hasColorSwatch and (info.value or info.hasSlider or info.hasEditBox) and info.hasArrow + if button.hasArrow then + button.arrow:SetAlpha(1) + if info.hasSlider then + button.hasSlider = true + button.sliderMin = info.sliderMin or 0 + button.sliderMax = info.sliderMax or 1 + button.sliderStep = info.sliderStep or 0 + button.sliderIsPercent = info.sliderIsPercent and true or false + button.sliderMinText = info.sliderMinText or button.sliderIsPercent and string.format("%.0f%%", button.sliderMin * 100) or button.sliderMin + button.sliderMaxText = info.sliderMaxText or button.sliderIsPercent and string.format("%.0f%%", button.sliderMax * 100) or button.sliderMax + button.sliderFunc = info.sliderFunc + button.sliderValue = info.sliderValue + button.sliderArg1 = info.sliderArg1 + button.sliderArg2 = info.sliderArg2 + button.sliderArg3 = info.sliderArg3 + button.sliderArg4 = info.sliderArg4 + elseif info.hasEditBox then + button.hasEditBox = true + button.editBoxText = info.editBoxText or "" + button.editBoxFunc = info.editBoxFunc + button.editBoxArg1 = info.editBoxArg1 + button.editBoxArg2 = info.editBoxArg2 + button.editBoxArg3 = info.editBoxArg3 + button.editBoxArg4 = info.editBoxArg4 + button.editBoxChangeFunc = info.editBoxChangeFunc + button.editBoxChangeArg1 = info.editBoxChangeArg1 + button.editBoxChangeArg2 = info.editBoxChangeArg2 + button.editBoxChangeArg3 = info.editBoxChangeArg3 + button.editBoxChangeArg4 = info.editBoxChangeArg4 + button.editBoxValidateFunc = info.editBoxValidateFunc + button.editBoxValidateArg1 = info.editBoxValidateArg1 + button.editBoxValidateArg2 = info.editBoxValidateArg2 + button.editBoxValidateArg3 = info.editBoxValidateArg3 + button.editBoxValidateArg4 = info.editBoxValidateArg4 + button.editBoxIsKeybinding = info.editBoxIsKeybinding + else + button.value = info.value + end + else + button.arrow:SetAlpha(0) + end + button.arg1 = info.arg1 + button.arg2 = info.arg2 + button.arg3 = info.arg3 + button.arg4 = info.arg4 + button.closeWhenClicked = info.closeWhenClicked + button.textHeight = info.textHeight or UIDROPDOWNMENU_DEFAULT_TEXT_HEIGHT or 10 + local font,_ = button.text:GetFont() + button.text:SetFont(STANDARD_TEXT_FONT or "Fonts\\FRIZQT__.TTF", button.textHeight) + button:SetHeight(button.textHeight + 6) + button.text:SetPoint("RIGHT", button.arrow, (button.hasColorSwatch or button.hasArrow) and "LEFT" or "RIGHT") + button.text:SetJustifyH(info.justifyH or "LEFT") + button.text:SetText(info.text) + button.tooltipTitle = info.tooltipTitle + button.tooltipText = info.tooltipText + button.tooltipFunc = info.tooltipFunc + button.tooltipArg1 = info.tooltipArg1 + button.tooltipArg2 = info.tooltipArg2 + button.tooltipArg3 = info.tooltipArg3 + button.tooltipArg4 = info.tooltipArg4 + if not button.tooltipTitle and not button.tooltipText and not button.tooltipFunc and not info.isTitle then + button.tooltipTitle = info.text + end + if type(button.func) == "string" then + self:assert(type(button.arg1) == "table", "Cannot call method " .. button.func .. " on a non-table") + self:assert(type(button.arg1[button.func]) == "function", "Method " .. button.func .. " nonexistant.") + end +end + +function Hewdrop:InjectAceOptionsTable(handler, options) + self:argCheck(handler, 2, "table") + self:argCheck(options, 3, "table") + if string.lower(tostring(options.type)) ~= "group" then + self:error('Cannot inject into options table argument #3 if its type is not "group"') + end + if options.handler ~= nil and options.handler ~= handler then + self:error("Cannot inject into options table argument #3 if it has a different handler than argument #2") + end + options.handler = handler + local class = handler.class + if not AceLibrary:HasInstance("AceOO-2.0") or not class then + self:error("Cannot retrieve AceOptions tables from a non-object argument #2") + end + while class and class ~= AceLibrary("AceOO-2.0").Class do + if type(class.GetAceOptionsDataTable) == "function" then + local t = class:GetAceOptionsDataTable(handler) + for k,v in pairs(t) do + if type(options.args) ~= "table" then + options.args = {} + end + if options.args[k] == nil then + options.args[k] = v + end + end + end + local mixins = class.mixins + if mixins then + for mixin in pairs(mixins) do + if type(mixin.GetAceOptionsDataTable) == "function" then + local t = mixin:GetAceOptionsDataTable(handler) + for k,v in pairs(t) do + if type(options.args) ~= "table" then + options.args = {} + end + if options.args[k] == nil then + options.args[k] = v + end + end + end + end + end + class = class.super + end + return options +end + +local function activate(self, oldLib, oldDeactivate) + Hewdrop = self + if oldLib and oldLib.registry then + self.registry = oldLib.registry + self.onceRegistered = oldLib.onceRegistered + else + self.registry = {} + self.onceRegistered = {} + + local WorldFrame_OnMouseDown = WorldFrame:GetScript("OnMouseDown") + local WorldFrame_OnMouseUp = WorldFrame:GetScript("OnMouseUp") + local oldX, oldY, clickTime + WorldFrame:SetScript("OnMouseDown", function() + oldX,oldY = GetCursorPosition() + clickTime = GetTime() + if WorldFrame_OnMouseDown then + WorldFrame_OnMouseDown() + end + end) + + WorldFrame:SetScript("OnMouseUp", function() + local x,y = GetCursorPosition() + if not oldX or not oldY or not x or not y or not clickTime then + self:Close() + if WorldFrame_OnMouseUp then + WorldFrame_OnMouseUp() + end + return + end + local d = math.abs(x - oldX) + math.abs(y - oldY) + if d <= 5 and GetTime() - clickTime < 0.5 then + self:Close() + end + if WorldFrame_OnMouseUp then + WorldFrame_OnMouseUp() + end + end) + + if hooksecurefunc then + hooksecurefunc(DropDownList1, "Show", function() + if levels[1] and levels[1]:IsVisible() then + self:Close() + end + end) + else + local DropDownList1_Show = DropDownList1.Show + function DropDownList1.Show(DropDownList1) + if levels[1] and levels[1]:IsVisible() then + self:Close() + end + DropDownList1_Show(DropDownList1) + end + end + + if hooksecurefunc then + hooksecurefunc("HideDropDownMenu", function() + if levels[1] and levels[1]:IsVisible() then + self:Close() + end + end) + else + local old_HideDropDownMenu = HideDropDownMenu + function HideDropDownMenu(num) + if levels[1] and levels[1]:IsVisible() then + self:Close() + end + old_HideDropDownMenu(num) + end + end + + if hooksecurefunc then + hooksecurefunc("CloseDropDownMenus", function() + if levels[1] and levels[1]:IsVisible() then + self:Close() + end + end) + else + local old_CloseDropDownMenus = CloseDropDownMenus + function CloseDropDownMenus(num) + if levels[1] and levels[1]:IsVisible() then + self:Close() + end + old_CloseDropDownMenus(num) + end + end + end + levels = {} + buttons = {} + + if oldDeactivate then + oldDeactivate(oldLib) + end +end + +AceLibrary:Register(Hewdrop, MAJOR_VERSION, MINOR_VERSION, activate) diff --git a/Locale/Locale.xml b/Locale/Locale.xml index cebe7bd..3c71df3 100644 --- a/Locale/Locale.xml +++ b/Locale/Locale.xml @@ -1,10 +1,10 @@ -