From a794dd8b25a307fc1c41044a7286b2c31b47ee44 Mon Sep 17 00:00:00 2001 From: Anch Date: Wed, 2 Nov 2022 17:22:31 +1300 Subject: [PATCH] added another way to enable back button -added another way to enable back button -added page save variables for back button --- AtlasLoot/Core/AtlasLoot.lua | 13 +- AtlasLoot/Core/Filter.lua | 47 +-- AtlasLoot/Core/LootButtons.lua | 21 +- .../DefaultFrame/AtlaslootDefaultFrame.lua | 9 +- AtlasLoot_BurningCrusade/burningcrusade.lua | 20 +- AtlasLoot_OriginalWoW/originalwow.lua | 297 +++++++----------- 6 files changed, 183 insertions(+), 224 deletions(-) diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua index 156bbe4..0b19cae 100644 --- a/AtlasLoot/Core/AtlasLoot.lua +++ b/AtlasLoot/Core/AtlasLoot.lua @@ -52,6 +52,7 @@ ATLASLOOT_DEBUGSHOWN = false; ATLASLOOT_FILTER_ENABLE = false; ATLASLOOT_CURRENTTYPE = "Default"; ATLASLOOT_TYPE = {}; +ATLASLOOT_BACKENABLED = false; -- Colours stored for code readability local GREY = "|cff999999"; @@ -725,8 +726,10 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum) if (dataID == "SearchResult" or dataSource_backup == "AtlasLoot_CurrentWishList") and dataSource[dataID][tablenum][i][8] then itemButton.sourcePage = dataSource[dataID][tablenum][i][8]; - elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=LT=") then + elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=TT=") then itemButton.sourcePage = string.sub(dataSource[dataID][tablenum][i][8], 5); + elseif dataSource[dataID][tablenum][i][8] ~= nil and dataSource[dataID][tablenum][i][8]:match("=LT=") then + itemButton.sourcePage = dataSource[dataID][tablenum][i][8]; else itemButton.sourcePage = nil; end @@ -819,10 +822,11 @@ function AtlasLoot:ShowItemsFrame(dataID, dataSource_backup, tablenum) _G["AtlasLootItemsFrame_PREV"].tablebase = tablebase; end - if dataSource[dataID].Back then + if dataSource[dataID].Back or ATLASLOOT_BACKENABLED then _G["AtlasLootItemsFrame_BACK"]:Show(); + else + AtlasLootItemsFrame.refreshBack = {dataID, dataSource_backup, tablenum}; end - end --Anchor the item frame where it is supposed to be @@ -853,7 +857,8 @@ AtlasLoot:NavButton_OnClick: Called when 'Back'Button is pressed and calls up the appropriate loot page ]] function AtlasLoot:BackButton_OnClick() - AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refreshOri[1], AtlasLootItemsFrame.refreshOri[2], AtlasLootItemsFrame.refreshOri[3]); + ATLASLOOT_BACKENABLED = false; + AtlasLoot:ShowItemsFrame(AtlasLootItemsFrame.refreshBack[1], AtlasLootItemsFrame.refreshBack[2], AtlasLootItemsFrame.refreshBack[3]); end --[[ diff --git a/AtlasLoot/Core/Filter.lua b/AtlasLoot/Core/Filter.lua index a3663b4..fd33266 100644 --- a/AtlasLoot/Core/Filter.lua +++ b/AtlasLoot/Core/Filter.lua @@ -20,26 +20,6 @@ AtlasLoot_FilterMenu = AceLibrary("Dewdrop-2.0"); AtlasLoot_SetFiltersMenu = AceLibrary("Dewdrop-2.0"); local FilterTable = { - { - Name = AL["Primary Stats"], - Type = "PrimaryStat", - {"Strength", "ITEM_MOD_STRENGTH_SHORT"}, - {"Agility", "ITEM_MOD_AGILITY_SHORT"}, - {"Intellect", "ITEM_MOD_INTELLECT_SHORT"}, - {"Spirit", "ITEM_MOD_SPIRIT_SHORT"} - }, - { - Name = AL["Secondary Stats"], - Type = "Stat", - {"Attack Power", "ITEM_MOD_ATTACK_POWER_SHORT"}, - {"Spell Power", "ITEM_MOD_SPELL_POWER_SHORT"}, - {"Crit", "ITEM_MOD_CRIT_RATING_SHORT"}, - {"Hit", "ITEM_MOD_HIT_RATING_SHORT"}, - {"Haste", "ITEM_MOD_HASTE_RATING_SHORT"}, - {"Expertise", "ITEM_MOD_EXPERTISE_RATING_SHORT"}, - {"Armor Pen", "ITEM_MOD_ARMOR_PENETRATION_RATING_SHORT"}, - {"Spell Pen", "ITEM_MOD_SPELL_PENETRATION_SHORT"} - }, { Name = AL["Armor Type"], Type = "ArmorType", @@ -69,6 +49,26 @@ local FilterTable = { {"Ring", "INVTYPE_FINGER"}, {"Trinket", "INVTYPE_TRINKET"} }, + { + Name = AL["Secondary Stats"], + Type = "Stat", + {"Attack Power", "ITEM_MOD_ATTACK_POWER_SHORT"}, + {"Spell Power", "ITEM_MOD_SPELL_POWER_SHORT"}, + {"Crit", "ITEM_MOD_CRIT_RATING_SHORT"}, + {"Hit", "ITEM_MOD_HIT_RATING_SHORT"}, + {"Haste", "ITEM_MOD_HASTE_RATING_SHORT"}, + {"Expertise", "ITEM_MOD_EXPERTISE_RATING_SHORT"}, + {"Armor Pen", "ITEM_MOD_ARMOR_PENETRATION_RATING_SHORT"}, + {"Spell Pen", "ITEM_MOD_SPELL_PENETRATION_SHORT"} + }, + { + Name = AL["Primary Stats"], + Type = "PrimaryStat", + {"Strength", "ITEM_MOD_STRENGTH_SHORT"}, + {"Agility", "ITEM_MOD_AGILITY_SHORT"}, + {"Intellect", "ITEM_MOD_INTELLECT_SHORT"}, + {"Spirit", "ITEM_MOD_SPIRIT_SHORT"} + }, { Name = AL["Defensive Stats"], Type = "Stat", @@ -119,8 +119,8 @@ function AtlasLoot:HideFilteredItems() local filterSelect3, filterSelect2,_ , filterSelect1 = select(6,GetItemInfo(itemID)); local filter1 = AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter][filterSelect1]; local filter2 = AtlasLootFilterDB["FilterLists"][AtlasLootCharDB.SelectedFilter][filterSelect2]; - if filter1 and filter1[1] and filter1[3] == "InvType" and getStats(itemID,"Stat") or - filter2 and filter2[1] and filter2[3] == "ArmorType" and getStats(itemID,"Stat") + if (filter1 and filter1[1] and filter1[3] == "InvType" and getStats(itemID,"Stat")) or + (filter2 and filter2[1] and filter2[3] == "ArmorType" and getStats(itemID,"Stat")) then return true; else @@ -267,7 +267,7 @@ function AtlasLoot:OpenFilterCreate() filterCatLable:Show(); if count == 1 then filterCatLable:SetPoint("TOP", "AtlasLootItemsFrame", "TOP",-150,-90); - elseif count == 15 then + elseif count == 16 then filterCatLable:SetPoint("TOP", "AtlasLootItemsFrame", "TOP",0,-90); elseif count == 30 then filterCatLable:SetPoint("TOP", "AtlasLootItemsFrame", "TOP",150,-90); @@ -314,6 +314,7 @@ function AtlasLoot:OpenFilterCreate() end AtlasLootFilterSelect:Show(); AtlasLootFilterCreate:Show(); + AtlasLootFilterDelete:Show(); --Ditch the Quicklook selector AtlasLootQuickLooksButton:Hide(); diff --git a/AtlasLoot/Core/LootButtons.lua b/AtlasLoot/Core/LootButtons.lua index 9af14f6..f07dcf4 100644 --- a/AtlasLoot/Core/LootButtons.lua +++ b/AtlasLoot/Core/LootButtons.lua @@ -154,15 +154,6 @@ function AtlasLootItem_OnEnter(self) if((AtlasLoot.db.profile.EquipCompare and ((not EquipCompare_RegisterTooltip) or (not EquipCompare_Enabled)))) or IsShiftKeyDown() then AtlasLootItem_ShowCompareItem(self); --- CALL MISSING METHOD TO SHOW 2 TOOLTIPS (Item Compare) end ---[[ else - AtlasLootTooltip:SetOwner(self, "ANCHOR_RIGHT", -(self:GetWidth() / 2), 24); - AtlasLootTooltip:ClearLines(); - AtlasLootTooltip:AddLine(RED..AL["Item Unavailable"], nil, nil, nil, 1); - AtlasLootTooltip:AddLine(BLUE..AL["ItemID:"].." "..self.itemID, nil, nil, nil, 1); - AtlasLootTooltip:AddLine(AL["self item is unsafe. To view self item without the risk of disconnection, you need to have first seen it in the game world. This is a restriction enforced by Blizzard since Patch 1.10."], nil, nil, nil, 1); - AtlasLootTooltip:AddLine(" "); - AtlasLootTooltip:AddLine(AL["You can right-click to attempt to query the server. You may be disconnected."], nil, nil, nil, 1); - AtlasLootTooltip:Show(); ]] end end end @@ -264,6 +255,12 @@ function AtlasLootItem_OnClick(self ,arg1) if(dataID and dataSource) then AtlasLoot:ShowItemsFrame(dataID, "AtlasLoot_Data", tonumber(dataPage)); end + elseif( self.sourcePage and self.sourcePage:match("=LT=") ) then + local dataID, dataSource, dataPage = strsplit("|", string.sub(self.sourcePage, 5)); + if(dataID and dataSource) then + ATLASLOOT_BACKENABLED = true; + AtlasLoot:ShowItemsFrame(dataID, "AtlasLoot_Data", tonumber(dataPage)); + end elseif (arg1=="LeftButton") and self.sourcePage then --Create token table if there isnt one if AtlasLoot_TokenData[self.sourcePage] == nil then @@ -297,6 +294,12 @@ function AtlasLootItem_OnClick(self ,arg1) if(dataID and dataSource) then AtlasLoot:ShowItemsFrame(dataID, "AtlasLoot_Data", tonumber(dataPage)); end + elseif( self.sourcePage and self.sourcePage:match("=LT=") ) then + local dataID, dataSource, dataPage = strsplit("|", string.sub(self.sourcePage, 5)); + if(dataID and dataSource) then + ATLASLOOT_BACKENABLED = true; + AtlasLoot:ShowItemsFrame(dataID, "AtlasLoot_Data", tonumber(dataPage)); + end end end end diff --git a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua index 63a5a02..0a281d4 100644 --- a/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua +++ b/AtlasLoot/DefaultFrame/AtlaslootDefaultFrame.lua @@ -89,6 +89,7 @@ Called when a button in AtlasLoot_Dewdrop is clicked ]] function AtlasLoot:DewDropClick(tablename, text, tablenum) ATLASLOOT_FILTER_ENABLE = false; + ATLASLOOT_BACKENABLED = false; AtlasLootFilterCheck:SetChecked(false); tablename = tablename .. AtlasLoot_Expac; ATLASLOOT_CURRENTTABLE = tablename; @@ -114,6 +115,7 @@ text - Heading for the loot table Called when a button in AtlasLoot_DewdropSubMenu is clicked ]] function AtlasLoot:DewDropSubMenuClick(tablename) + ATLASLOOT_BACKENABLED = false; --Show the select loot table local tablenum = AtlasLoot_Data[tablename].Loadfirst or 1; --Show the table that has been selected @@ -123,11 +125,12 @@ end --[[ AtlasLoot:DewdropExpansionMenuClick(expansion, name): -tablename - Name of the loot table in the database -text - Heading for the loot table -Called when a button in AtlasLoot_DewdropSubMenu is clicked +expansion - expansion to load +name - label for the expansion +Called when a button in DewdropExpansionMenuClick is clicked ]] function AtlasLoot:DewdropExpansionMenuClick(expansion, name) + ATLASLOOT_BACKENABLED = false; AtlasLootDefaultFrame_ExpansionMenu:SetText(name); AtlasLoot_DewdropExpansionMenu:Close(1); AtlasLoot_Expac = expansion; diff --git a/AtlasLoot_BurningCrusade/burningcrusade.lua b/AtlasLoot_BurningCrusade/burningcrusade.lua index 7c692b1..6dac872 100644 --- a/AtlasLoot_BurningCrusade/burningcrusade.lua +++ b/AtlasLoot_BurningCrusade/burningcrusade.lua @@ -1255,7 +1255,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 4, 30096, "", "=q4=Girdle of the Invulnerable", "=ds=#s10#, #a4#", "", "14%"}; { 5, 30627, "", "=q4=Tsunami Talisman", "=ds=#s14#", "", "15%"}; { 6, 30095, "", "=q4=Fang of the Leviathan", "=ds=#h3#, #w10#", "", "14%"}; - { 16, 30240, "", "=q4=Gloves of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5HAND"}; + { 16, 30240, "", "=q4=Gloves of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5HAND"}; { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; }; { @@ -1266,7 +1266,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 4, 30663, "", "=q4=Fathom-Brooch of the Tidewalker", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "15%"}; { 5, 30626, "", "=q4=Sextant of Unstable Currents", "=ds=#s14#", "", "14%"}; { 6, 30090, "", "=q4=World Breaker", "=ds=#h2#, #w6#", "", "15%"}; - { 16, 30246, "", "=q4=Leggings of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5LEGS"}; + { 16, 30246, "", "=q4=Leggings of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5LEGS"}; { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; }; { @@ -1300,7 +1300,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 10, 30103, "", "=q4=Fang of Vashj", "=ds=#h1#, #w4#", "", "14%"}; { 11, 30108, "", "=q4=Lightfathom Scepter", "=ds=#h3#, #w6#", "", "14%"}; { 12, 30105, "", "=q4=Serpent Spine Longbow", "=ds=#w2#", "", "13%"}; - { 16, 30243, "", "=q4=Helm of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5HEAD"}; + { 16, 30243, "", "=q4=Helm of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5HEAD"}; { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; { 19, 29906, "", "=q1=Vashj's Vial Remnant", "=ds=#m3#", "", "35%"}; { 21, 450000, "", "=q5=Intact Vial of Lady Vashj", "", "", "5%"}; @@ -1351,7 +1351,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 4, 28801, "", "=q4=Maulgar's Warhelm", "=ds=#s1#, #a3#", "", "21.32%"}; { 5, 28795, "", "=q4=Bladespire Warbands", "=ds=#s8#, #a4#", "", "12.02%"}; { 6, 28800, "", "=q4=Hammer of the Naaru", "=ds=#h2#, #w6#", "", "15.87%"}; - { 16, 29764, "", "=q4=Pauldrons of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4SHOULDER"}; + { 16, 29764, "", "=q4=Pauldrons of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4SHOULDER"}; { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; { 19, 816252, "", "=q3=Formula: Enchant Weapon - Undaunted Might", "=ds=#p4# (375)", "", "N:2%/H:5%/A:10%"}; }; @@ -1367,7 +1367,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 8, 28823, "", "=q4=Eye of Gruul", "=ds=#s14#", "", "6.73%"}; { 9, 28830, "", "=q4=Dragonspine Trophy", "=ds=#s14#", "", "11.72%"}; { 11, 31750, "", "=q1=Earthen Signet", "=ds=#m3#", "", "100%"}; - { 16, 29767, "", "=q4=Leggings of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4LEGS"}; + { 16, 29767, "", "=q4=Leggings of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4LEGS"}; { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; { 20, 28802, "", "=q4=Bloodmaw Magus-Blade", "=ds=#h3#, #w10#", "", "9.23%"}; { 21, 28794, "", "=q4=Axe of the Gronn Lords", "=ds=#h2#, #w1#", "", "6.73%"}; @@ -1673,7 +1673,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 12, 28783, "", "=q4=Eredar Wand of Obliteration", "=ds=#w12#"}; { 14, 34845, "", "=q4=Pit Lord's Satchel", "=ds=#e1# #m15#"}; { 15, 34846, "", "=q2=Black Sack of Gems", "=ds=#e1#"}; - { 16, 29753, "", "=q4=Chestguard of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4CHEST"}; + { 16, 29753, "", "=q4=Chestguard of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4CHEST"}; { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; { 19, 32385, "", "=q4=Magtheridon's Head", "=ds=#m2#", "", "100%"}; { 20, 28791, "", "=q4=Ring of the Recalcitrant", "=q1=#m4#: =ds=#s13#"}; @@ -1824,7 +1824,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 5, 28649, "", "=q4=Garona's Signet Ring", "=ds=#s13#", "", "12.07%"}; { 6, 28633, "", "=q4=Staff of Infinite Mysteries", "=ds=#h2#, #w9#", "", "12.28%"}; { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 29758, "", "=q4=Gloves of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4HAND"}; + { 16, 29758, "", "=q4=Gloves of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4HAND"}; }; { Name = BabbleBoss["Terestian Illhoof"]; @@ -1907,7 +1907,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 11, 28773, "", "=q4=Gorehowl", "=ds=#h2#, #w1#", "", "12.63%"}; { 12, 28771, "", "=q4=Light's Justice", "=ds=#h3#, #w6#", "", "11.17%"}; { 13, 28772, "", "=q4=Sunfury Bow of the Phoenix", "=ds=#w2#", "", "9.97%"}; - { 16, 29761, "", "=q4=Helm of the Fallen Defender", "=ds=#tt4#", "", "100%", "=LT=T4HEAD"}; + { 16, 29761, "", "=q4=Helm of the Fallen Defender", "=ds=#tt4#", "", "100%", "=TT=T4HEAD"}; { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; { 20, 499438, "", "=q4=Smoldering Emberwyrm", "=ds=#e12#", [AtlasLoot_Difficulty.MIN_DIF] = AtlasLoot_Difficulty.Heroic, "" }; }; @@ -2560,7 +2560,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 5, 32515, "", "=q4=Wristguards of Determination", "=ds=#s8#, #a4#", "", "13%"}; { 6, 30619, "", "=q4=Fel Reaver's Piston", "=ds=#s14#", "", "13%"}; { 7, 30450, "", "=q4=Warp-Spring Coil", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "12%"}; - { 16, 30249, "", "=q4=Pauldrons of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5SHOULDER"}; + { 16, 30249, "", "=q4=Pauldrons of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5SHOULDER"}; { 18, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; }; { @@ -2595,7 +2595,7 @@ local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0"); { 11, 29996, "", "=q4=Rod of the Sun King", "=ds=#h1#, #w6#", "", "15%"}; { 12, 29988, "", "=q4=The Nexus Key", "=ds=#h2#, #w9#", "", "14%"}; { 14, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"}; - { 16, 30237, "", "=q4=Chestguard of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=LT=T5CHEST"}; + { 16, 30237, "", "=q4=Chestguard of the Vanquished Defender", "=ds=#tt5#", "", "100%", "=TT=T5CHEST"}; { 18, 32458, "", "=q4=Ashes of Al'ar", "=ds=#e12#", "", "2%"}; { 19, 32405, "", "=q4=Verdant Sphere", "=ds=#m2#", "", "100%"}; { 20, 30018, "", "=q4=Lord Sanguinar's Claim", "=q1=#m4#: =ds=#s2#"}; diff --git a/AtlasLoot_OriginalWoW/originalwow.lua b/AtlasLoot_OriginalWoW/originalwow.lua index 606fd56..fe05fec 100644 --- a/AtlasLoot_OriginalWoW/originalwow.lua +++ b/AtlasLoot_OriginalWoW/originalwow.lua @@ -410,8 +410,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 6, 21625, "", "=q4=Scarab Brooch", "=ds=#s14#", "", "21.46%"}; { 7, 22399, "", "=q4=Idol of Health", "=ds=#s16#, #w14#", "", "7.32%"}; { 8, 21622, "", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "", "15.12%"}; - { 10, 20932, "", "=q4=Spaulders of the Imperial Guard", "=ds=#tt2.5#", "", "100%", "=LT=T2.5SHOULDER"}; - { 11, 20928, "", "=q4=Bindings of the Lost Nomad","=ds=#tt2.5#", "", "100%", "=LT=T2.5FEET"}; + { 10, 20932, "", "=q4=Spaulders of the Imperial Guard", "=ds=#tt2.5#", "", "100%", "=TT=T2.5SHOULDER"}; + { 11, 20928, "", "=q4=Bindings of the Lost Nomad","=ds=#tt2.5#", "", "100%", "=TT=T2.5FEET"}; { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "3.19%"}; { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"}; { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"}; @@ -430,8 +430,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 4, 21618, "", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "", "10.34%"}; { 6, 21620, "", "=q4=Ring of the Martyr", "=ds=#s13#", "", "12.97%"}; { 7, 21616, "", "=q4=Huhuran's Stinger", "=ds=#w2#", "", "5.71%"}; - { 9, 20932, "", "=q4=Spaulders of the Imperial Guard", "=ds=#tt2.5#", "", "100%", "=LT=T2.5SHOULDER"}; - { 10, 20928, "", "=q4=Bindings of the Lost Nomad","=ds=#tt2.5#", "", "100%", "=LT=T2.5FEET"}; + { 9, 20932, "", "=q4=Spaulders of the Imperial Guard", "=ds=#tt2.5#", "", "100%", "=TT=T2.5SHOULDER"}; + { 10, 20928, "", "=q4=Bindings of the Lost Nomad","=ds=#tt2.5#", "", "100%", "=TT=T2.5FEET"}; { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.31%"}; { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"}; { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"}; @@ -456,7 +456,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 11, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"}; { 12, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"}; { 13, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"}; - { 15, 20930, "", "=q4=Diadem of the Desert Prince", "=ds=#tt2.5#", "", "100%", "=LT=T2.5HEAD"}; + { 15, 20930, "", "=q4=Diadem of the Desert Prince", "=ds=#tt2.5#", "", "100%", "=TT=T2.5HEAD"}; { 16, 21604, "", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "", "12.51%"}; { 17, 21605, "", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "", "15.45%"}; { 18, 21609, "", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "", "13.35%"}; @@ -478,7 +478,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 4, 23570, "", "=q4=Jom Gabbar", "=ds=#s14#", "", "2.80%"}; { 5, 23557, "", "=q4=Larvae of the Great Worm", "=ds=#w5#", "", "3.95%"}; { 6, 21610, "", "=q4=Wormscale Blocker", "=ds=#w8#", "", "16.54%"}; - { 8, 20931, "", "=q4=Hardened Qiraj Chitin", "=ds=#tt2.5#", "", "100%", "=LT=T2.5LEGS"}; + { 8, 20931, "", "=q4=Hardened Qiraj Chitin", "=ds=#tt2.5#", "", "100%", "=TT=T2.5LEGS"}; { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.20%"}; { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#"}; { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#"}; @@ -504,7 +504,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 12, 21126, "", "=q4=Death's Sting", "=ds=#h1#, #w4#", "", "6.84%"}; { 13, 21134, "", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "", "5.93%"}; { 14, 21839, "", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "", "4.75%"}; - { 16, 20933, "", "=q4=Husk of the Old God", "=ds=#tt2.5#", "", "100%", "=LT=T2.5CHEST"}; + { 16, 20933, "", "=q4=Husk of the Old God", "=ds=#tt2.5#", "", "100%", "=TT=T2.5CHEST"}; { 18, 21221, "", "=q4=Eye of C'Thun", "=ds=#m2#", "", "100%"}; { 19, 21710, "", "=q4=Cloak of the Fallen God", "=q1=#m4#: =ds=#s4#"}; { 20, 21712, "", "=q4=Amulet of the Fallen God", "=q1=#m4#: =ds=#s2#"}; @@ -1284,7 +1284,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 9, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.23%"}; { 10, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.23%"}; { 11, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "1.60%"}; - { 16, 2522362, "", "=q4=Molten Wristgaurds", "=ds=#tt1#", "", "100%", "=LT=T1WRIST"}; + { 16, 2522362, "", "=q4=Molten Wristgaurds", "=ds=#tt1#", "", "100%", "=TT=T1WRIST"}; { 18, 17329, "", "=q1=Hand of Lucifron", "=ds=#m3#"}; }; { @@ -1304,7 +1304,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 13, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "5.68%"}; { 14, 17073, "", "=q4=Earthshaker", "=ds=#h2#, #w6#", "", "16.75%"}; { 15, 17069, "", "=q4=Striker's Mark", "=ds=#w2#", "", "16.37%"}; - { 16, 2522359, "", "=q4=Molten Leggaurds", "=ds=#tt1#", "", "100%", "=LT=T1LEGS"}; + { 16, 2522359, "", "=q4=Molten Leggaurds", "=ds=#tt1#", "", "100%", "=TT=T1LEGS"}; }; { Name = BabbleBoss["Gehennas"]; @@ -1318,7 +1318,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "3.78%"}; { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "3.79%"}; { 10, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.34%"}; - { 16, 2522364, "", "=q4=Molten Girdle", "=ds=#tt1#", "", "100%", "=LT=T1HAND"}; + { 16, 2522364, "", "=q4=Molten Girdle", "=ds=#tt1#", "", "100%", "=TT=T1HAND"}; { 18, 17331, "", "=q1=Hand of Gehennas", "=ds=#m3#"}; }; { @@ -1338,7 +1338,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 13, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "4.09%"}; { 14, 17105, "", "=q4=Aurastone Hammer", "=ds=#h3#, #w6#", "", "12.67%"}; { 15, 17066, "", "=q4=Drillborer Disk", "=ds=#w8#", "", "11.85%"}; - { 16, 2522360, "", "=q4=Molten Headpiece", "=ds=#tt1#", "", "100%", "=LT=T1HEAD"}; + { 16, 2522360, "", "=q4=Molten Headpiece", "=ds=#tt1#", "", "100%", "=TT=T1HEAD"}; { 18, 18564, "", "=q5=Bindings of the Windseeker", "=ds=#m3#, =q1=#m9#", "", "3.74%"}; { 19, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"}; { 21, 17782, "", "=q5=Talisman of Binding Shard", "=ds=#s2#", "", ""}; @@ -1356,7 +1356,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 8, 19147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "1.99%"}; { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.27%"}; { 10, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.32%"}; - { 16, 2522363, "", "=q4=Molten Handgaurds", "=ds=#tt1#", "", "100%", "=LT=T1WAIST"}; + { 16, 2522363, "", "=q4=Molten Handgaurds", "=ds=#tt1#", "", "100%", "=TT=T1WAIST"}; { 18, 17332, "", "=q1=Hand of Shazzrah", "=ds=#m3#"}; }; { @@ -1373,7 +1373,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 10, 18820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.68%"}; { 11, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.59%"}; { 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.70%"}; - { 16, 2522361, "", "=q4=Molten Spaulders", "=ds=#tt1#", "", "100%", "=LT=T1SHOULDER"}; + { 16, 2522361, "", "=q4=Molten Spaulders", "=ds=#tt1#", "", "100%", "=TT=T1SHOULDER"}; { 18, 18563, "", "=q5=Bindings of the Windseeker", " =ds=#m3#, =q1=#m10#", "", "3.78%"}; { 19, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"}; }; @@ -1393,7 +1393,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.89%"}; { 13, 18842, "", "=q4=Staff of Dominance", "=ds=#w9#", "", "18.95%"}; { 14, 17072, "", "=q4=Blastershot Launcher", "=ds=#w5#", "", "17.83%"}; - { 16, 2522350, "", "=q4=Molten Tunic", "=ds=#tt1#", "", "100%", "=LT=T1CHEST"}; + { 16, 2522350, "", "=q4=Molten Tunic", "=ds=#tt1#", "", "100%", "=TT=T1CHEST"}; { 18, 17203, "", "=q4=Sulfuron Ingot", "=ds=#m3#", "", "11.98%"}; { 19, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"}; }; @@ -1410,7 +1410,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 9, 18878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.53%"}; { 10, 17074, "", "=q4=Shadowstrike", "=ds=#w7#", "", "23.50%"}; { 11, 17077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "2.26%"}; - { 16, 2522365, "", "=q4=Molten Boots", "=ds=#tt1#", "", "100%", "=LT=T1FEET"}; + { 16, 2522365, "", "=q4=Molten Boots", "=ds=#tt1#", "", "100%", "=TT=T1FEET"}; { 18, 17330, "", "=q1=Hand of Sulfuron", "=ds=#m3#"}; }; { @@ -1449,7 +1449,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 12, 17104, "", "=q4=Spinal Reaper", "=ds=#h2#, #w1#", "", " 4.63%"}; { 13, 17106, "", "=q4=Malistar's Defender", "=ds=#w8#", "", "13.88%"}; { 15, 21110, "", "=q1=Draconic for Dummies", "=ds=#m3#", "", "100%"}; - { 16, 2522459, "", "=q4=Chromatic Leggaurds", "=ds=#tt2#", "", "100%", "=LT=T2LEGS"}; + { 16, 2522459, "", "=q4=Chromatic Leggaurds", "=ds=#tt2#", "", "100%", "=TT=T2LEGS"}; { 18, 17204, "", "=q5=Eye of Sulfuras", "=ds=#m3#", "", "3.42%"}; { 19, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"}; { 21, 19017, "", "=q1=Essence of the Firelord", "=ds=#m3#", "", "0.46%"}; @@ -1506,7 +1506,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 9, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"}; { 10, 19357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"}; { 11, 19405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "16.67%"}; - { 16, 2522462, "", "=q4=Chromatic Wristgaurds", "=ds=#tt2#", "", "100%", "=LT=T2WRIST"}; + { 16, 2522462, "", "=q4=Chromatic Wristgaurds", "=ds=#tt2#", "", "100%", "=TT=T2WRIST"}; }; { Name = BabbleBoss["Vaelastrasz the Corrupt"]; @@ -1519,7 +1519,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 7, 19430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "16.67%"}; { 8, 19403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "16.67%"}; { 9, 19367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"}; - { 16, 2522463, "", "=q4=Chromatic Girdle", "=ds=#tt2#", "", "100%", "=LT=T2WAIST"}; + { 16, 2522463, "", "=q4=Chromatic Girdle", "=ds=#tt2#", "", "100%", "=TT=T2WAIST"}; }; { Name = BabbleBoss["Broodlord Lashlayer"]; @@ -1534,7 +1534,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 9, 19365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%"}; { 10, 14000, "", "=q4=Ring of Trinity Force", "=ds=#h3#, #w13#", "", "12.5%"}; { 11, 19432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "16.67%"}; - { 16, 2522465, "", "=q4=Chromatic Boots", "=ds=#tt2#", "", "100%", "=LT=T2FEET"}; + { 16, 2522465, "", "=q4=Chromatic Boots", "=ds=#tt2#", "", "100%", "=TT=T2FEET"}; { 18, 20383, "", "=q1=Head of the Broodlord Lashlayer", "=ds=#m3#", "", "100%"}; }; { @@ -1553,7 +1553,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 12, 19402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "12.5%"}; { 13, 19397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"}; { 14, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"}; - { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"}; + { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=TT=T2HAND"}; }; { Name = BabbleBoss["Ebonroc"]; @@ -1569,7 +1569,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 10, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"}; { 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"}; { 12, 19368, "", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "", "16.67%"}; - { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"}; + { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=TT=T2HAND"}; }; { Name = BabbleBoss["Flamegor"]; @@ -1585,7 +1585,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 10, 19357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"}; { 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"}; { 12, 19367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"}; - { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=LT=T2HAND"}; + { 16, 2522464, "", "=q4=Chromatic Handgaurds", "=ds=#tt2#", "", "100%", "=TT=T2HAND"}; }; { Name = BabbleBoss["Chromaggus"]; @@ -1602,7 +1602,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 12, 19352, "", "=q4=Chromatically Tempered Sword", "=ds=#h1#, #w10#", "", "10%"}; { 13, 19349, "", "=q4=Elementium Reinforced Bulwark", "=ds=#w8#", "", "10%"}; { 14, 19361, "", "=q4=Ashjre'thul, Crossbow of Smiting", "=ds=#w3#", "", "10%"}; - { 16, 2522461, "", "=q4=Chromatic Spaulders", "=ds=#tt2#", "", "100%", "=LT=T2SHOULDER"}; + { 16, 2522461, "", "=q4=Chromatic Spaulders", "=ds=#tt2#", "", "100%", "=TT=T2SHOULDER"}; }; { Name = BabbleBoss["Nefarian"]; @@ -1619,7 +1619,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 11, 19360, "", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "", "16.67%"}; { 12, 19356, "", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "", "16.67%%"}; { 13, 14001, "", "=q4=Archimtiros' Ring of Armageddon", "=ds=#s13#", "", "16.67%%"}; - { 16, 2522450, "", "=q4=Chromatic Tunic", "=ds=#tt2#", "", "100%", "=LT=T2CHEST"}; + { 16, 2522450, "", "=q4=Chromatic Tunic", "=ds=#tt2#", "", "100%", "=TT=T2CHEST"}; { 18, 19003, "", "=q4=Head of Nefarian", "=ds=#m2#", "", "100%"}; { 19, 19383, "", "=q4=Master Dragonslayer's Medallion", "=q1=#m4#: =ds=#s2#"}; { 20, 19384, "", "=q4=Master Dragonslayer's Ring", "=q1=#m4#: =ds=#s13#"}; @@ -3627,92 +3627,60 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") Map = "ZulGurub"; { Name = BabbleBoss["High Priestess Jeklik"]; - { 1, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "11.41%"}; - { 2, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.02%"}; - { 3, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.84%"}; - { 4, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "5.89%"}; - { 5, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "5.80%"}; - { 6, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "5.56%"}; - { 7, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.33%"}; - { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.32%"}; - { 9, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.17%"}; - { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.8%"}; - { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 16, 19918, "", "=q4=Jeklik's Crusher", "=ds=#h2#, #w6#", "", "3.96%"}; - { 18, 19928, "", "=q3=Animist's Spaulders", "=ds=#s3#, #a2#", "", "3.39%"}; - { 19, 20262, "", "=q3=Seafury Boots", "=ds=#s12#, #a3#", "", "4.31%"}; - { 20, 20265, "", "=q3=Peacekeeper Boots", "=ds=#s12#, #a4#", "", "6.99%"}; - { 21, 19923, "", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "", "12.22%"}; - { 22, 19920, "", "=q3=Primalist's Band", "=ds=#s13#", "", "11.89%"}; - { 23, 19915, "", "=q3=Zulian Defender", "=ds=#w8#", "", " 11.36%"}; + { 1, 19918, "", "=q4=Jeklik's Crusher", "=ds=#h2#, #w6#", "", "3.96%"}; + { 2, 19928, "", "=q3=Animist's Spaulders", "=ds=#s3#, #a2#", "", "3.39%"}; + { 3, 20262, "", "=q3=Seafury Boots", "=ds=#s12#, #a3#", "", "4.31%"}; + { 4, 20265, "", "=q3=Peacekeeper Boots", "=ds=#s12#, #a4#", "", "6.99%"}; + { 5, 19923, "", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "", "12.22%"}; + { 6, 19920, "", "=q3=Primalist's Band", "=ds=#s13#", "", "11.89%"}; + { 7, 19915, "", "=q3=Zulian Defender", "=ds=#w8#", "", " 11.36%"}; + { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1"}; + { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.8%"}; + { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; }; { Name = BabbleBoss["High Priest Venoxis"]; - { 1, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.01%"}; - { 2, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.55%"}; - { 3, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "10.18%"}; - { 4, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "5.93%"}; - { 5, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "5.67%"}; - { 6, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "5.52%"}; - { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.18%"}; - { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.02%"}; - { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.00%"}; - { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "6.0%"}; - { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 13, 22216, "", "=q1=Venoxis's Venom Sac", "=ds=#m3#", "", "100%"}; - { 16, 19904, "", "=q4=Runed Bloodstained Hauberk", "=ds=#s5#, #a3#", "", "3.70%"}; - { 17, 19903, "", "=q4=Fang of Venoxis", "=ds=#h3#, #w4#", "", "3.68%"}; - { 19, 19907, "", "=q3=Zulian Tigerhide Cloak", "=ds=#s4#", "", "12.09%"}; - { 20, 19906, "", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "", "11.36%"}; - { 21, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#", "", "6.99%"}; - { 22, 19900, "", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "", "11.89%"}; + { 1, 19904, "", "=q4=Runed Bloodstained Hauberk", "=ds=#s5#, #a3#", "", "3.70%"}; + { 2, 19903, "", "=q4=Fang of Venoxis", "=ds=#h3#, #w4#", "", "3.68%"}; + { 4, 19907, "", "=q3=Zulian Tigerhide Cloak", "=ds=#s4#", "", "12.09%"}; + { 5, 19906, "", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "", "11.36%"}; + { 6, 19905, "", "=q3=Zanzil's Band", "=ds=#s13#", "", "6.99%"}; + { 7, 19900, "", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "", "11.89%"}; + { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1"}; + { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "6.0%"}; + { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; + { 21, 22216, "", "=q1=Venoxis's Venom Sac", "=ds=#m3#", "", "100%"}; }; { Name = BabbleBoss["High Priestess Mar'li"]; - { 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "13.69%"}; - { 2, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.69%"}; - { 3, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "13.64%"}; - { 4, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "6.55%"}; - { 5, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "6.49%"}; - { 6, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "6.31%"}; - { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.56%"}; - { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.55%"}; - { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.30%"}; - { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "7.4%"}; - { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 16, 20032, "", "=q4=Flowing Ritual Robes", "=ds=#s5#, #a1#", "", "4.46%"}; - { 17, 19927, "", "=q4=Mar'li's Touch", "=ds=#w12#", "", "4.35%"}; - { 19, 19919, "", "=q3=Bloodstained Greaves", "=ds=#s12#, #a3#", "", "11.89%"}; - { 20, 19871, "", "=q3=Talisman of Protection", "=ds=#s2#", "", "11.36%"}; - { 21, 19925, "", "=q3=Band of Jin", "=ds=#s13#", "", " 6.99%"}; - { 22, 19930, "", "=q3=Mar'li's Eye", "=ds=#s14#", "", "12.09%"}; + { 1, 20032, "", "=q4=Flowing Ritual Robes", "=ds=#s5#, #a1#", "", "4.46%"}; + { 2, 19927, "", "=q4=Mar'li's Touch", "=ds=#w12#", "", "4.35%"}; + { 3, 19919, "", "=q3=Bloodstained Greaves", "=ds=#s12#, #a3#", "", "11.89%"}; + { 4, 19871, "", "=q3=Talisman of Protection", "=ds=#s2#", "", "11.36%"}; + { 5, 19925, "", "=q3=Band of Jin", "=ds=#s13#", "", " 6.99%"}; + { 6, 19930, "", "=q3=Mar'li's Eye", "=ds=#s14#", "", "12.09%"}; + { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1"}; + { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "7.4%"}; + { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; }; { Name = BabbleBoss["Bloodlord Mandokir"]; - { 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "12.94%"}; - { 2, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.07%"}; - { 3, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "11.56%"}; - { 4, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "6.65%"}; - { 5, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "6.55%"}; - { 6, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "6.52%"}; - { 7, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "2.98%"}; - { 8, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "2.65%"}; - { 9, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "2.48%"}; - { 11, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"}; - { 12, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "9.4%"}; - { 16, 19867, "", "=q4=Bloodlord's Defender", "=ds=#h1#, #w10#", "", "5.83%"}; - { 17, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#", "", "3.96%"}; - { 18, 19874, "", "=q4=Halberd of Smiting", "=ds=#w7#", "", "6.35%"}; - { 19, 20038, "", "=q4=Mandokir's Sting", "=ds=#w2#", "", "5.96%"}; - { 20, 19872, "", "=q4=Swift Razzashi Raptor", "=ds=#e12#", "", "0.43%"}; - { 22, 19870, "", "=q3=Hakkari Loa Cloak", "=ds=#s4#", "", "12.54%"}; - { 23, 19895, "", "=q3=Bloodtinged Kilt", "=ds=#s11#, #a1#", "", "13.50%"}; - { 24, 19869, "", "=q3=Blooddrenched Grips", "=ds=#s9#, #a2#", "", "12.87%"}; - { 25, 19877, "", "=q3=Animist's Leggings", "=ds=#s11#, #a2#", "", "12.14%"}; - { 26, 19878, "", "=q3=Bloodsoaked Pauldrons", "=ds=#s9#, #a4#", "", "12.31%"}; - { 27, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#", "", "12.28%"}; - { 28, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#", "", "13.11%"}; - { 29, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#", "", "12.32%"}; + { 1, 19867, "", "=q4=Bloodlord's Defender", "=ds=#h1#, #w10#", "", "5.83%"}; + { 2, 19866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#", "", "3.96%"}; + { 3, 19874, "", "=q4=Halberd of Smiting", "=ds=#w7#", "", "6.35%"}; + { 4, 20038, "", "=q4=Mandokir's Sting", "=ds=#w2#", "", "5.96%"}; + { 5, 19872, "", "=q4=Swift Razzashi Raptor", "=ds=#e12#", "", "0.43%"}; + { 7, 19870, "", "=q3=Hakkari Loa Cloak", "=ds=#s4#", "", "12.54%"}; + { 8, 19895, "", "=q3=Bloodtinged Kilt", "=ds=#s11#, #a1#", "", "13.50%"}; + { 9, 19869, "", "=q3=Blooddrenched Grips", "=ds=#s9#, #a2#", "", "12.87%"}; + { 10, 19877, "", "=q3=Animist's Leggings", "=ds=#s11#, #a2#", "", "12.14%"}; + { 11, 19878, "", "=q3=Bloodsoaked Pauldrons", "=ds=#s9#, #a4#", "", "12.31%"}; + { 12, 19873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#", "", "12.28%"}; + { 13, 19893, "", "=q3=Zanzil's Seal", "=ds=#s13#", "", "13.11%"}; + { 14, 19863, "", "=q3=Primalist's Seal", "=ds=#s13#", "", "12.32%"}; + { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1"}; + { 18, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"}; + { 19, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "9.4%"}; }; { Name = BabbleZone["Zul'Gurub"]; @@ -3743,68 +3711,47 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") }; { Name = BabbleBoss["High Priest Thekal"]; - { 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", " 14.95%"}; - { 2, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", " 13.74%"}; - { 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", " 12.95%"}; - { 4, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", " 6.60%"}; - { 5, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", " 6.56%"}; - { 6, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", " 6.45%"}; - { 8, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.3%"}; - { 9, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 16, 19897, "", "=q4=Betrayer's Boots", "=ds=#s12#, #a1#", "", "5.83%"}; - { 17, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#", "", "4.23%"}; - { 18, 19902, "", "=q4=Swift Zulian Tiger", "=ds=#e12#", "", "0.70%"}; - { 20, 19898, "", "=q3=Seal of Jin", "=ds=#s13#", "", "13.65%"}; - { 21, 19899, "", "=q3=Ritualistic Legguards", "=ds=#s11#, #a1#", "", "13.41%"}; - { 22, 20260, "", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "", "4.30%"}; - { 23, 20266, "", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", "", "8.69%"}; - { 24, 19901, "", "=q3=Zulian Slicer", "=ds=#h1#, #w10#, =q1=#e18#", "", "13.36%"}; + { 1, 19897, "", "=q4=Betrayer's Boots", "=ds=#s12#, #a1#", "", "5.83%"}; + { 2, 19896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#", "", "4.23%"}; + { 3, 19902, "", "=q4=Swift Zulian Tiger", "=ds=#e12#", "", "0.70%"}; + { 5, 19898, "", "=q3=Seal of Jin", "=ds=#s13#", "", "13.65%"}; + { 6, 19899, "", "=q3=Ritualistic Legguards", "=ds=#s11#, #a1#", "", "13.41%"}; + { 7, 20260, "", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "", "4.30%"}; + { 8, 20266, "", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", "", "8.69%"}; + { 9, 19901, "", "=q3=Zulian Slicer", "=ds=#h1#, #w10#, =q1=#e18#", "", "13.36%"}; + { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1"}; + { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.3%"}; + { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; }; { Name = BabbleBoss["High Priestess Arlokk"]; - { 1, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "15.49%"}; - { 2, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "12.52%"}; - { 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.17%"}; - { 4, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "6.94%"}; - { 5, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "6.65%"}; - { 6, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "6.21%"}; - { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.75%"}; - { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.60%"}; - { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.41%"}; - { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "5.6%"}; - { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; - { 16, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "", "3.62%"}; - { 17, 19909, "", "=q4=Will of Arlokk", "=ds=#w9#", "", "5.14%"}; - { 19, 19913, "", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "", "13.29%"}; - { 20, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#", "", "13.95%"}; - { 21, 19922, "", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "", "13.66%"}; - { 22, 19914, "", "=q3=Panther Hide Sack", "=ds=#m14# #e1#", "", "14.03%"}; + { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1"}; + { 18, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "5.6%"}; + { 19, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"}; + { 1, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "", "3.62%"}; + { 2, 19909, "", "=q4=Will of Arlokk", "=ds=#w9#", "", "5.14%"}; + { 4, 19913, "", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "", "13.29%"}; + { 5, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#", "", "13.95%"}; + { 6, 19922, "", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "", "13.66%"}; + { 7, 19914, "", "=q3=Panther Hide Sack", "=ds=#m14# #e1#", "", "14.03%"}; }; { Name = BabbleBoss["Jin'do the Hexxer"]; - { 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "13.56%"}; - { 2, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "13.48%"}; - { 3, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.09%"}; - { 4, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "7.30%"}; - { 5, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "6.37%"}; - { 6, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "6.10%"}; - { 7, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "2.85%"}; - { 8, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "2.70%"}; - { 9, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "2.36%"}; - { 11, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"}; - { 12, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.4%"}; - { 16, 19885, "", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "", "6.82%"}; - { 17, 19891, "", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "", "7.70%"}; - { 18, 19890, "", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "", "8.08%"}; - { 19, 19884, "", "=q4=Jin'do's Judgement", "=ds=#w9#", "", "8.36%"}; - { 21, 19888, "", "=q3=Overlord's Embrace", "=ds=#s4#", "", "12.72%"}; - { 22, 19886, "", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "", "12.11%"}; - { 23, 19929, "", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "", "11.75%"}; - { 24, 19889, "", "=q3=Blooddrenched Leggings", "=ds=#s11#, #a2#", "", "11.97%"}; - { 25, 19892, "", "=q3=Animist's Boots", "=ds=#s12#, #a2#", "", "12.28%"}; - { 26, 19875, "", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "", "13.73%"}; - { 27, 19887, "", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "", "11.11%"}; - { 28, 19894, "", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "", "12.93%"}; + { 16, 0, "INV_Banner_01", "=q4=ZG Sets", "=ds=#m3#", "", "", "=LT=ZGSets|AtlasLoot_Data|1"}; + { 18, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"}; + { 19, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.4%"}; + { 1, 19885, "", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "", "6.82%"}; + { 2, 19891, "", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "", "7.70%"}; + { 3, 19890, "", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "", "8.08%"}; + { 4, 19884, "", "=q4=Jin'do's Judgement", "=ds=#w9#", "", "8.36%"}; + { 6, 19888, "", "=q3=Overlord's Embrace", "=ds=#s4#", "", "12.72%"}; + { 7, 19886, "", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "", "12.11%"}; + { 8, 19929, "", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "", "11.75%"}; + { 9, 19889, "", "=q3=Blooddrenched Leggings", "=ds=#s11#, #a2#", "", "11.97%"}; + { 10, 19892, "", "=q3=Animist's Boots", "=ds=#s12#, #a2#", "", "12.28%"}; + { 11, 19875, "", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "", "13.73%"}; + { 12, 19887, "", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "", "11.11%"}; + { 13, 19894, "", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "", "12.93%"}; }; { Name = BabbleBoss["Hakkar"]; @@ -3923,7 +3870,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 22820, "", "=q4=Wand of Fates", "=ds=#w12#","", "20%" }, { 4, 22818, "", "=q4=The Plague Bearer", "=ds=#w8#","", "20%" }, { 5, 22961, "", "=q4=Band of Reanimation", "=ds=#s13#","", "20%" }, - { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=LT=T3SHOULDER"}; + { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=TT=T3SHOULDER"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -3934,7 +3881,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 22803, "", "=q4=Midnight Haze", "=ds=#h3#, #w4#", "", "20%" }, { 4, 22988, "", "=q4=The End of Dreams", "=ds=#h3#, #w6#","","20%" }, { 5, 22810, "", "=q4=Toxin Injector", "=ds=#w5#", "","20%" }, - { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=LT=T3SHOULDER"}; + { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=TT=T3SHOULDER"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -3945,10 +3892,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 23075, "", "=q4=Death's Bargain", "=ds=#w8#", "","20%" }, { 4, 22994, "", "=q4=Digested Hand of Power", "=ds=#s15#","","20%"}, { 5, 22981, "", "=q4=Gluth's Missing Collar", "=ds=#s2#","","20%" }, - { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=LT=T3SHOULDER"}; - { 17, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#","", "8.33%", "=LT=T3WRIST"}; - { 18, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#","", "8.33%", "=LT=T3WAIST"}; - { 19, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#","", "8.33%", "=LT=T3FEET"}; + { 16, 22354, "", "=q4=Desecrated Pauldrons", "=ds=#tt3#","", "100%", "=TT=T3SHOULDER"}; + { 17, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#","", "8.33%", "=TT=T3WRIST"}; + { 18, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#","", "8.33%", "=TT=T3WAIST"}; + { 19, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#","", "8.33%", "=TT=T3FEET"}; { 21, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 22, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -3959,7 +3906,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 22808, "", "=q4=The Castigator", "=ds=#h1#, #w6#" ,"", "20%"}, { 4, 22801, "", "=q4=Spire of Twilight", "=ds=#w9#" ,"", "20%"}, { 5, 23001, "", "=q4=Eye of Diminution", "=ds=#s14#" ,"", "20%"}, - { 16, 22353, "", "=q4=Desecrated Helmet", "=ds=#tt3#" ,"", "100%", "=LT=T3HEAD"}; + { 16, 22353, "", "=q4=Desecrated Helmet", "=ds=#tt3#" ,"", "100%", "=TT=T3HEAD"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -3970,7 +3917,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 22937, "", "=q4=Gem of Nerubis", "=ds=#s15#","", "20%" }, { 4, 22939, "", "=q4=Band of Unanswered Prayers", "=ds=#s13#","", "20%" }, { 5, 22935, "", "=q4=Touch of Frost", "=ds=#s2#", "", "20%" }, - { 16, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#","", "100%", "=LT=T3WRIST"}; + { 16, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#","", "100%", "=TT=T3WRIST"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -3981,7 +3928,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 22806, "", "=q4=Widow's Remorse", "=ds=#h1#, #w10#","", "20%" }, { 4, 22942, "", "=q4=The Widow's Embrace", "=ds=#h3#, #w6#","", "20%" }, { 5, 22943, "", "=q4=Malice Stone Pendant", "=ds=#s2#","", "20%" }, - { 16, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#" ,"", "100%", "=LT=T3WRIST"}; + { 16, 22355, "", "=q4=Desecrated Bracers", "=ds=#tt3#" ,"", "100%", "=TT=T3WRIST"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -3992,7 +3939,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 22807, "", "=q4=Wraith Blade", "=ds=#h3#, #w10#","", "20%" }, { 4, 22947, "", "=q4=Pendant of Forgotten Names", "=ds=#s2#","", "20%" }, { 5, 22954, "", "=q4=Kiss of the Spider", "=ds=#s14#","", "20%" }, - { 16, 22357, "", "=q4=Desecrated Gauntlets", "=ds=#tt3#","", "100%", "=LT=T3HAND"}; + { 16, 22357, "", "=q4=Desecrated Gauntlets", "=ds=#tt3#","", "100%", "=TT=T3HAND"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -4004,7 +3951,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 4, 23009, "", "=q4=Wand of the Whispering Dead", "=ds=#w12#","", "16.67%" }, { 5, 23004, "", "=q4=Idol of Longevity", "=ds=#s16#, #w14#","", "16.67%" }, { 6, 23018, "", "=q4=Signet of the Fallen Defender", "=ds=#s13#","", "16.67%" }, - { 16, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#" ,"", "100%", "=LT=T3FEET"}; + { 16, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#" ,"", "100%", "=TT=T3FEET"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -4015,7 +3962,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 23020, "", "=q4=Polar Helmet", "=ds=#s1#, #a2#","", "20%" }, { 4, 23073, "", "=q4=Boots of Displacement", "=ds=#s12#, #a2#","", "20%" }, { 5, 23023, "", "=q4=Sadist's Collar", "=ds=#s2#","", "20%" }, - { 16, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#" ,"", "100%", "=LT=T3SHOULDER"}; + { 16, 22358, "", "=q4=Desecrated Sabatons", "=ds=#tt3#" ,"", "100%", "=TT=T3SHOULDER"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -4027,7 +3974,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 4, 22811, "", "=q4=Soulstring", "=ds=#w2#","", "20%" }, { 5, 23025, "", "=q4=Seal of the Damned", "=ds=#s13#","", "16.67%" }, { 6, 23027, "", "=q4=Warmth of Forgiveness", "=ds=#s14#","", "16.67%" }, - { 16, 22349, "", "=q4=Desecrated Breastplate", "=ds=#tt3#" ,"", "100%", "=LT=T3CHEST"}; + { 16, 22349, "", "=q4=Desecrated Breastplate", "=ds=#tt3#" ,"", "100%", "=TT=T3CHEST"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -4040,7 +3987,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 5, 23029, "", "=q4=Noth's Frigid Heart", "=ds=#s15#","", "14.29%" }, { 6, 23031, "", "=q4=Band of the Inevitable", "=ds=#s13#","", "14.29%" }, { 7, 23028, "", "=q4=Hailstone Band", "=ds=#s13#","", "14.29%" }, - { 16, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#" ,"", "100%", "=LT=T3WAIST"}; + { 16, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#" ,"", "100%", "=TT=T3WAIST"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -4051,7 +3998,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 23019, "", "=q4=Icebane Helmet", "=ds=#s1#, #a4#","", "20%" }, { 4, 23068, "", "=q4=Legplates of Carnage", "=ds=#s11#, #a4#","", "20%" }, { 5, 23036, "", "=q4=Necklace of Necropsy", "=ds=#s2#","", "20%" }, - { 16, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#" ,"", "100%", "=LT=T3WAIST"}; + { 16, 22356, "", "=q4=Desecrated Waistguard", "=ds=#tt3#" ,"", "100%", "=TT=T3WAIST"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -4062,7 +4009,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 3, 23037, "", "=q4=Ring of Spiritual Fervor", "=ds=#s13#","", "20%" }, { 4, 23038, "", "=q4=Band of Unnatural Forces", "=ds=#s13#" ,"", "20%"}, { 5, 23042, "", "=q4=Loatheb's Reflection", "=ds=#s14#","", "20%" }, - { 16, 22352, "", "=q4=Desecrated Legplates", "=ds=#tt3#" ,"", "100%", "=LT=T3LEGS"}; + { 16, 22352, "", "=q4=Desecrated Legplates", "=ds=#tt3#" ,"", "100%", "=TT=T3LEGS"}; { 18, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" }, { 19, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" }, }; @@ -4103,7 +4050,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 13, 691119, "", "=q4=The Phylactery of Kel'Thuzad", "=ds=#m2#","", "100%" }, { 14, 23207, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" }, { 15, 23206, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" }, - { 16, 1510496, "", "=q4=Desecrated Ring", "=ds=#tt3#","", "100%" , "=LT=T3FINGER"}; + { 16, 1510496, "", "=q4=Desecrated Ring", "=ds=#tt3#","", "100%" , "=TT=T3FINGER"}; { 18, 22733, "", "=q1=Staff Head of Atiesh", "=ds=#m3#" }, { 19, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"}, { 20, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"}, @@ -4154,7 +4101,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0") { 10, 18713, "", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4#: =ds=#w2#, =q1=#m1# =ds=#c2#" }, { 12, 15410, "","=q3=Scale of Onyxia", "=ds=#e8#" }, { 13, 17966, "", "=q2=Onyxia Hide Backpack", "=ds=#m14# #e1#","", "100%"}, - { 16, 2522460, "", "=q4=Chromatic Headpiece", "=ds=#tt2#", "", "100%", "=LT=T2HEAD"}; + { 16, 2522460, "", "=q4=Chromatic Headpiece", "=ds=#tt2#", "", "100%", "=TT=T2HEAD"}; { 18, 18423, "", "=q4=Head of Onyxia","=ds=#m2#","", "100%" }, { 19, 18404, "", "=q4=Onyxia Tooth Pendant", "=q1=#m4#: =ds=#s2#" }, { 20, 18403, "", "=q4=Dragonslayer's Signet", "=q1=#m4#: =ds=#s13#" },