From 4529f2022a575db29d7ff08ff99ff3f584ffa8b8 Mon Sep 17 00:00:00 2001 From: Spit <19otari98@gmail.com> Date: Fri, 11 Jul 2025 22:12:41 +0300 Subject: [PATCH] fixed some crafted AR gear recipes, fixed overlapping tooltips --- AtlasLoot.toc | 2 +- Core/AtlasLoot.lua | 77 ++++++++++++++--------- Core/Spells.lua | 128 +++++++++++++++++++-------------------- Crafting/crafting.en.lua | 126 +++++++++++++++++++------------------- 4 files changed, 178 insertions(+), 155 deletions(-) diff --git a/AtlasLoot.toc b/AtlasLoot.toc index 54639c3..7026087 100644 --- a/AtlasLoot.toc +++ b/AtlasLoot.toc @@ -3,7 +3,7 @@ ## Notes: Shows possible loot from dungeon bosses and other sources. ## Author: Shagu (pfUI update code), Lexie (Turtle WoW fixes/updates), Otari (overhaul/revamp, menu changes, bugfixes/updates) ## LegacyAuthor: Daviesh, Pompa (Turtle WoW World Bosses), Xerron (Turtle WoW World Bosses), Gurky (Turtle WoW 1.16/1.16.1 Dungeons) -## Version: 3.1.7 +## Version: 3.1.8 ## SavedVariablesPerCharacter: AtlasLootCharDB ## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, HewdropLib, Ace2, EquipCompare, EQCompare diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua index 3245f0e..1a9a530 100644 --- a/Core/AtlasLoot.lua +++ b/Core/AtlasLoot.lua @@ -1377,7 +1377,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) if droprate and string.find(droprate, "%%") then itemButton.droprate = droprate end end itemButton:Show(); - if MouseIsOver(itemButton) then + if GetMouseFocus() == itemButton then itemButton:Hide() itemButton:Show() end @@ -1852,7 +1852,7 @@ function AtlasLoot_NavButton_OnClick() AtlasLootCharDB.LastBoss = this.lootpage; AtlasLootCharDB.LastBossText = this.title; AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], this.title, AtlasLoot_AnchorPoint); - if AtlasLootDefaultFrame_SelectedTable:GetText()~=nil then + if AtlasLootDefaultFrame_SelectedTable:GetText()~=nil then AtlasLootDefaultFrame_SelectedTable:SetText(AtlasLoot_BossName:GetText()) else AtlasLootDefaultFrame_SelectedCategory:SetText(AtlasLoot_BossName:GetText()) @@ -2991,7 +2991,8 @@ function AtlasLootItem_OnEnter() end elseif isEnchant then local spellID = tonumber(string.sub(this.itemID, 2)); - AtlasLootTooltip:SetOwner(this, "ANCHOR_RIGHT", -(this:GetWidth() / 2), 24); + AtlasLootTooltip:SetOwner(this, "ANCHOR_NONE"); + AtlasLootTooltip:SetPoint("BOTTOMLEFT", this, "TOPRIGHT", -(this:GetWidth() / 2), 24) AtlasLootTooltip:ClearLines(); if SetAutoloot == nil or (SUPERWOW_VERSION and (tonumber(SUPERWOW_VERSION)) >= 1.2) then AtlasLootTooltip:SetHyperlink("enchant:"..spellID) @@ -3007,7 +3008,8 @@ function AtlasLootItem_OnEnter() end AtlasLootTooltip:Show(); if GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] and GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] ~= nil and GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] ~= "" then - AtlasLootTooltip2:SetOwner(AtlasLootTooltip, "ANCHOR_BOTTOMRIGHT", -(AtlasLootTooltip:GetWidth()), 0); + AtlasLootTooltip2:SetOwner(this, "ANCHOR_NONE"); + AtlasLootTooltip2:SetPoint("TOPLEFT", AtlasLootTooltip, "BOTTOMLEFT", 0, 0) AtlasLootTooltip2:ClearLines(); AtlasLootTooltip2:SetHyperlink("item:"..GetSpellInfoAtlasLootDB["enchants"][spellID]["item"]..":0:0:0"); if GetSpellInfoAtlasLootDB["enchants"][spellID]["extra"] and GetSpellInfoAtlasLootDB["enchants"][spellID]["extra"] ~= nil and GetSpellInfoAtlasLootDB["enchants"][spellID]["extra"] ~= "" then @@ -3017,6 +3019,13 @@ function AtlasLootItem_OnEnter() AtlasLootTooltip2:AddLine(AL["ItemID:"].." "..GetSpellInfoAtlasLootDB["enchants"][spellID]["item"], nil, nil, nil, 1); end AtlasLootTooltip2:Show(); + -- Reposition if tooltips overlap + if AtlasLootTooltip:GetBottom() < AtlasLootTooltip2:GetTop() then + AtlasLootTooltip2:ClearAllPoints() + AtlasLootTooltip2:SetPoint("TOPLEFT", this, "TOPRIGHT", -(this:GetWidth() / 2), 24) + AtlasLootTooltip:ClearAllPoints() + AtlasLootTooltip:SetPoint("BOTTOMLEFT", AtlasLootTooltip2, "TOPLEFT", 0, 0) + end end elseif isSpell then local spellID = tonumber(string.sub(this.itemID, 2)); @@ -3035,7 +3044,8 @@ function AtlasLootItem_OnEnter() end TooltipReagents = string.sub(TooltipReagents, 1, -3) end - AtlasLootTooltip:SetOwner(this, "ANCHOR_RIGHT", -(this:GetWidth() / 2), 24); + AtlasLootTooltip:SetOwner(this, "ANCHOR_NONE"); + AtlasLootTooltip:SetPoint("BOTTOMLEFT", this, "TOPRIGHT", -(this:GetWidth() / 2), 24) AtlasLootTooltip:ClearLines(); AtlasLootTooltip:AddLine(GetSpellInfoAtlasLootDB["craftspells"][spellID]["name"]); AtlasLootTooltip:AddLine(WHITE..GetSpellInfoAtlasLootDB["craftspells"][spellID]["castTime"].." sec cast"); @@ -3068,7 +3078,8 @@ function AtlasLootItem_OnEnter() AtlasLootTooltip:Show(); local craftitem2 = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"] if craftitem2 ~= nil and craftitem2 ~= "" then - AtlasLootTooltip2:SetOwner(AtlasLootTooltip, "ANCHOR_BOTTOMRIGHT", -(AtlasLootTooltip:GetWidth()), 0); + AtlasLootTooltip2:SetOwner(this, "ANCHOR_NONE"); + AtlasLootTooltip2:SetPoint("TOPLEFT", AtlasLootTooltip, "BOTTOMLEFT", 0, 0) AtlasLootTooltip2:ClearLines(); AtlasLootTooltip2:SetHyperlink("item:"..GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"]..":0:0:0"); if GetSpellInfoAtlasLootDB["craftspells"][spellID]["extra"] and GetSpellInfoAtlasLootDB["craftspells"][spellID]["extra"] ~= nil then @@ -3078,6 +3089,13 @@ function AtlasLootItem_OnEnter() AtlasLootTooltip2:AddLine(AL["ItemID:"].." "..GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"], nil, nil, nil, 1); end AtlasLootTooltip2:Show(); + -- Reposition if tooltips overlap + if AtlasLootTooltip:GetBottom() < AtlasLootTooltip2:GetTop() then + AtlasLootTooltip2:ClearAllPoints() + AtlasLootTooltip2:SetPoint("TOPLEFT", this, "TOPRIGHT", -(this:GetWidth() / 2), 24) + AtlasLootTooltip:ClearAllPoints() + AtlasLootTooltip:SetPoint("BOTTOMLEFT", AtlasLootTooltip2, "TOPLEFT", 0, 0) + end end end end @@ -3088,26 +3106,31 @@ end -- Called when the mouse cursor leaves a loot item -------------------------------------------------------------------------------- function AtlasLootItem_OnLeave() - --Hide the necessary tooltips - if( AtlasLootCharDB.LootlinkTT ) then - AtlasLootTooltip:Hide(); - AtlasLootTooltip2:Hide(); - elseif( AtlasLootCharDB.ItemSyncTT ) then - if(GameTooltip:IsVisible()) then - GameTooltip:Hide(); - AtlasLootTooltip2:Hide(); - end - else - if(this.itemID ~= nil) then - AtlasLootTooltip:Hide(); - GameTooltip:Hide(); - AtlasLootTooltip2:Hide(); - end - end - if ( ShoppingTooltip2:IsVisible() or ShoppingTooltip1.IsVisible) then - ShoppingTooltip2:Hide(); - ShoppingTooltip1:Hide(); - end + -- --Hide the necessary tooltips + -- if( AtlasLootCharDB.LootlinkTT ) then + -- AtlasLootTooltip:Hide(); + -- AtlasLootTooltip2:Hide(); + -- elseif( AtlasLootCharDB.ItemSyncTT ) then + -- if(GameTooltip:IsVisible()) then + -- GameTooltip:Hide(); + -- AtlasLootTooltip2:Hide(); + -- end + -- else + -- if(this.itemID ~= nil) then + -- AtlasLootTooltip:Hide(); + -- GameTooltip:Hide(); + -- AtlasLootTooltip2:Hide(); + -- end + -- end + -- if ( ShoppingTooltip2:IsVisible() or ShoppingTooltip1.IsVisible) then + -- ShoppingTooltip2:Hide(); + -- ShoppingTooltip1:Hide(); + -- end + AtlasLootTooltip:Hide(); + AtlasLootTooltip2:Hide(); + GameTooltip:Hide(); + ShoppingTooltip1:Hide(); + ShoppingTooltip2:Hide(); end -------------------------------------------------------------------------------- @@ -3414,7 +3437,7 @@ function AtlasLoot_AddContainerItemTooltip(frame ,itemID) local numLines = AtlasLootTooltip:NumLines() if AtlasLootCharDB.ItemIDs then if numLines and numLines > 0 then - local lastLine = getglobal("AtlasLootTooltipTextLeft"..numLines) + local lastLine = getglobal("AtlasLootTooltipTextLeft"..numLines) if lastLine:GetText() then lastLine:SetText(lastLine:GetText().."\n\n"..DEFAULT..AL["ItemID:"].." "..itemID) end diff --git a/Core/Spells.lua b/Core/Spells.lua index eaa9949..ffcaf63 100644 --- a/Core/Spells.lua +++ b/Core/Spells.lua @@ -654,35 +654,35 @@ GetSpellInfoAtlasLootDB = { ["name"] = "Eternal Dreamstone Shard", ["icon"] = "Interface\\Icons\\inv_misc_gem_pearl_04", }, - [57127] = { + [57127] = { ["name"] = "Enchant Boots - Superior Stamina", ["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal", }, - [57148] = { + [57148] = { ["name"] = "Enchant Boots - Vampirism", ["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal", }, - [57144] = { + [57144] = { ["name"] = "Enchant Bracer - Greater Deflection", ["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal", }, - [57119] = { + [57119] = { ["name"] = "Enchant Chest - Mighty Mana", ["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal", }, - [57117] = { + [57117] = { ["name"] = "Enchant Cloak - Greater Arcane Resistance", ["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal", }, - [46601] = { + [46601] = { ["name"] = "Enchant Gloves - Arcane Power", ["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal", }, - [46602] = { + [46602] = { ["name"] = "Enchant Gloves - Nature Power", ["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal", }, - [46086] = { + [46086] = { ["name"] = "Enchant Gloves - Major Strength", ["icon"] = "Interface\\Icons\\Spell_Holy_GreaterHeal", }, @@ -6224,7 +6224,7 @@ GetSpellInfoAtlasLootDB = { [3] = {7910, 2}, [4] = {14341, 2}, }, - }, + }, [57024] = { ["name"] = "Tailoring: Windbinder Gloves", ["requires"] = "", @@ -12504,7 +12504,7 @@ GetSpellInfoAtlasLootDB = { ["reagents"] = { [1] = {2841, 4}, }, - }, + }, [3491] = { ["name"] = "Blacksmithing: Big Bronze Knife", ["requires"] = AL["Anvil"], @@ -13299,128 +13299,128 @@ GetSpellInfoAtlasLootDB = { [4] = {12810, 2}, }, }, - [55526] = { + [57617] = { ["name"] = "Blacksmithing: Otherworldly Coif", ["requires"] = AL["Anvil"], ["tools"] = {5956}, - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55526, ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12359, 6}, - [2] = {12655, 1}, - [3] = {12360, 1}, + [1] = {15407, 1}, + [2] = {12360, 1}, + [3] = {61673, 6}, [4] = {12607, 1}, }, }, - [55527] = { + [57619] = { ["name"] = "Blacksmithing: Otherworldly Spaulders", ["requires"] = AL["Anvil"], ["tools"] = {5956}, - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55527, ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12359, 5}, - [2] = {12655, 1}, - [3] = {12360, 1}, + [1] = {15407, 1}, + [2] = {12360, 1}, + [3] = {61673, 6}, [4] = {12607, 3}, }, }, - [55528] = { + [57621] = { ["name"] = "Blacksmithing: Otherworldly Breastplate", ["requires"] = AL["Anvil"], ["tools"] = {5956}, - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55528, ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12359, 6}, - [2] = {12655, 1}, - [3] = {12360, 2}, + [1] = {15407, 2}, + [2] = {12360, 1}, + [3] = {61673, 6}, [4] = {12607, 2}, }, }, - [55529] = { + [57623] = { ["name"] = "Blacksmithing: Otherworldly Leggings", ["requires"] = AL["Anvil"], ["tools"] = {5956}, - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55529, ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12359, 7}, - [2] = {12655, 1}, - [3] = {12360, 2}, + [1] = {15407, 2}, + [2] = {12360, 1}, + [3] = {61673, 7}, [4] = {12607, 2}, }, }, - [55530] = { + [57625] = { ["name"] = "Blacksmithing: Reflective Helmet", ["requires"] = AL["Anvil"], ["tools"] = {5956}, - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55530, ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12359, 6}, - [2] = {12360, 2}, - [3] = {12655, 7}, + [1] = {12360, 2}, + [2] = {12655, 7}, + [3] = {61673, 6}, }, }, - [55531] = { + [57627] = { ["name"] = "Blacksmithing: Reflective Pauldrons", ["requires"] = AL["Anvil"], ["tools"] = {5956}, - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55531, ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12359, 7}, - [2] = {12360, 2}, - [3] = {12655, 9}, + [1] = {12360, 2}, + [2] = {12655, 9}, + [3] = {61673, 7}, }, }, - [55532] = { + [57629] = { ["name"] = "Blacksmithing: Reflective Breastplate", ["requires"] = AL["Anvil"], ["tools"] = {5956}, - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55532, ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12359, 5}, - [2] = {12360, 2}, - [3] = {12655, 10}, + [1] = {12360, 2}, + [2] = {12655, 10}, + [3] = {61673, 5}, }, }, - [55533] = { + [57631] = { ["name"] = "Blacksmithing: Reflective Leggings", ["requires"] = AL["Anvil"], ["tools"] = {5956}, - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55533, ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12359, 7}, - [2] = {12360, 2}, - [3] = {12655, 12}, + [1] = {12360, 2}, + [2] = {12655, 12}, + [3] = {61673, 7}, }, }, [15296] = { @@ -15488,7 +15488,7 @@ GetSpellInfoAtlasLootDB = { [5] = {12644, 8}, [6] = {12800, 2}, }, - }, + }, [16654] = { ["name"] = "Blacksmithing: Radiant Gloves", ["requires"] = AL["Anvil"], @@ -18982,7 +18982,7 @@ GetSpellInfoAtlasLootDB = { [3] = {7082, 2}, [4] = {7076}, }, - }, + }, [24850] = { ["name"] = "Leatherworking: Sandstalker Gauntlets", ["requires"] = "", @@ -19046,11 +19046,11 @@ GetSpellInfoAtlasLootDB = { [4] = {15407}, }, }, - [55522] = { - ["name"] = "Leatherworking: Etheral Helmet", + [57609] = { + ["name"] = "Leatherworking: Ethereal Helmet", ["requires"] = "", ["tools"] = "", - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55522, ["craftQuantityMin"] = "", @@ -19062,11 +19062,11 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 1}, }, }, - [55523] = { - ["name"] = "Leatherworking: Etheral Shoulder Pads", + [57611] = { + ["name"] = "Leatherworking: Ethereal Shoulder Pads", ["requires"] = "", ["tools"] = "", - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55523, ["craftQuantityMin"] = "", @@ -19078,11 +19078,11 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 2}, }, }, - [55524] = { - ["name"] = "Leatherworking: Etheral Tunic", + [57613] = { + ["name"] = "Leatherworking: Ethereal Tunic", ["requires"] = "", ["tools"] = "", - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55524, ["craftQuantityMin"] = "", @@ -19094,11 +19094,11 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 1}, }, }, - [55525] = { - ["name"] = "Leatherworking: Etheral Leggings", + [57615] = { + ["name"] = "Leatherworking: Ethereal Leggings", ["requires"] = "", ["tools"] = "", - ["castTime"] = 60, + ["castTime"] = 5.125, ["text"] = "", ["craftItem"] = 55525, ["craftQuantityMin"] = "", diff --git a/Crafting/crafting.en.lua b/Crafting/crafting.en.lua index c2253eb..86eecac 100644 --- a/Crafting/crafting.en.lua +++ b/Crafting/crafting.en.lua @@ -64,7 +64,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { 19693, "INV_Chest_Plate08", "=q3=Darksoul Breastplate", "=ds=#s5#, #a4#" }, { 19694, "INV_Pants_Plate_21", "=q3=Darksoul Leggings", "=ds=#s11#, #a4#" }, }; - + ------------------------------- --- Blacksmithing Mail Sets --- ------------------------------- @@ -93,7 +93,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { 83286, "INV_Helmet_11", "=q2=Augerer's Hat", "=ds=#s1#, #a1#" }, { 83287, "inv_chest_cloth_22", "=q2=Augerer's Robe", "=ds=#s5#, #a1#" }, }; - + ShadoweaveSet = { { 0, "", "", "" }, { 0, "INV_Box_01", "=q6=#craftt2#", "" }, @@ -151,7 +151,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { 14137, "inv_pants_13", "=q3=Mooncloth Leggings", "=ds=#s11#, #a1#" }, { 15802, "inv_boots_05", "=q3=Mooncloth Boots", "=ds=#s12#, #a1#" }, }; - + ----------------------------------- --- Leatherworking Leather Sets --- ----------------------------------- @@ -167,7 +167,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "83403", "inv_belt_04", "=q2=Grifter's Belt", "=ds=#s10#, #a2#" }, { "83405", "inv_boots_05", "=q2=Grifter's Boots", "=ds=#s12#, #a2#" }, }; - + PrimalistsTrappings = { { 0, "", "", "" }, { 0, "INV_Box_01", "=q6=#craftlwl8#", "" }, @@ -411,7 +411,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { }; AlchemyFlasks1 = { { "s17638", "inv_potion_48", "=q1=Flask of Chromatic Resistance", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, - { "s17634", "inv_potion_26", "=q1=Flask of Petrification", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, + { "s17634", "inv_potion_26", "=q1=Flask of Petrification", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, { "s17636", "inv_potion_97", "=q1=Flask of Distilled Wisdom", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, { "s17637", "inv_potion_41", "=q1=Flask of Supreme Power", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, { "s17635", "inv_potion_62", "=q1=Flask of the Titans", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, @@ -506,7 +506,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s3188", "inv_potion_57", "=q1=Elixir of Ogre's Strength", "=ds=#sr# =so1=150 =so2=175 =so3=195 =so4=215" }, { "s8240", "inv_potion_10", "=q1=Elixir of Giant Growth", "=ds=#sr# =so1=90 =so2=120 =so3=140 =so4=160" }, { "s11472", "inv_potion_61", "=q1=Elixir of Giants", "=ds=#sr# =so1=245 =so2=260 =so3=280 =so4=300" }, - { "s17557", "inv_potion_40", "=q1=Elixir of Brute Force", "=ds=#sr# =so1=275 =so2=290 =so3=310 =so4=330" }, + { "s17557", "inv_potion_40", "=q1=Elixir of Brute Force", "=ds=#sr# =so1=275 =so2=290 =so3=310 =so4=330" }, { "", "", "", ""}, { "s3230", "inv_potion_91", "=q1=Elixir of Minor Agility", "=ds=#sr# =so1=50 =so2=80 =so3=100 =so4=120" }, { "s2333", "inv_potion_92", "=q1=Elixir of Lesser Agility", "=ds=#sr# =so1=140 =so2=165 =so3=185 =so4=205" }, @@ -522,13 +522,13 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s11461", "inv_potion_30", "=q1=Arcane Elixir", "=ds=#sr# =so1=235 =so2=250 =so3=270 =so4=290" }, { "s26277", "inv_potion_60", "=q1=Elixir of Greater Firepower", "=ds=#sr# =so1=250 =so2=265 =so3=285 =so4=305" }, { "s11476", "inv_potion_46", "=q1=Elixir of Shadow Power", "=ds=#sr# =so1=250 =so2=265 =so3=285 =so4=305" }, - { "s17573", "inv_potion_25", "=q1=Greater Arcane Elixir", "=ds=#sr# =so1=285 =so2=300 =so3=320 =so4=340" }, + { "s17573", "inv_potion_25", "=q1=Greater Arcane Elixir", "=ds=#sr# =so1=285 =so2=300 =so3=320 =so4=340" }, { "s45989", "inv_potion_22", "=q1=Elixir of Greater Nature Power", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, { "s57131", "INV_Potion_12", "=q1=Dreamshard Elixir", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, { "", "", "", ""}, { "s3171", "inv_potion_06", "=q1=Elixir of Wisdom", "=ds=#sr# =so1=90 =so2=120 =so3=140 =so4=160" }, { "s11465", "inv_potion_10", "=q1=Elixir of Greater Intellect", "=ds=#sr# =so1=235 =so2=250 =so3=270 =so4=290" }, - { "s17555", "inv_potion_29", "=q1=Elixir of the Sages", "=ds=#sr# =so1=265 =so2=280 =so3=300 =so4=320" }, + { "s17555", "inv_potion_29", "=q1=Elixir of the Sages", "=ds=#sr# =so1=265 =so2=280 =so3=300 =so4=320" }, { "", "", "", ""}, { "s11477", "inv_potion_27", "=q1=Elixir of Demonslaying", "=ds=#sr# =so1=250 =so2=265 =so3=285 =so4=305" }, { "s57111", "inv_potion_08", "=q1=Potion of Quickness", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, @@ -545,7 +545,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s7179", "inv_potion_17", "=q1=Elixir of Water Breathing", "=ds=#sr# =so1=90 =so2=120 =so3=140 =so4=160" }, { "s22808", "inv_potion_05", "=q1=Elixir of Greater Water Breathing", "=ds=#sr# =so1=215 =so2=230 =so3=250 =so4=270"}, { "", "", "", ""}, - { "s2335", "inv_potion_95", "=q1=Swiftness Potion", "=ds=#sr# =so1=60 =so2=90 =so3=110 =so4=130" }, + { "s2335", "inv_potion_95", "=q1=Swiftness Potion", "=ds=#sr# =so1=60 =so2=90 =so3=110 =so4=130" }, { "s7841", "inv_potion_13", "=q1=Swim Speed Potion", "=ds=#sr# =so1=100 =so2=130 =so3=150 =so4=170" }, { "", "", "", ""}, { "", "", "", ""}, @@ -560,8 +560,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s11478", "inv_potion_53", "=q1=Elixir of Detect Demon", "=ds=#sr# =so1=250 =so2=265 =so3=285 =so4=305" }, { "", "", "", ""}, { "s11459", "inv_misc_orb_01", "=q1=Philosopher's Stone", "=ds=#sr# =so1=200 =so2=240 =so3=260 =so4=280" }, - { "s11456", "inv_cask_02", "=q1=Goblin Rocket Fuel", "=ds=#sr# =so1=210 =so2=225 =so3=245 =so4=265" }, - { "s11473", "inv_poison_mindnumbing", "=q1=Ghost Dye", "=ds=#sr# =so1=245 =so2=260 =so3=280 =so4=300" }, + { "s11456", "inv_cask_02", "=q1=Goblin Rocket Fuel", "=ds=#sr# =so1=210 =so2=225 =so3=245 =so4=265" }, + { "s11473", "inv_poison_mindnumbing", "=q1=Ghost Dye", "=ds=#sr# =so1=245 =so2=260 =so3=280 =so4=300" }, { "s24266", "inv_poison_mindnumbing", "=q3=Gurubashi Mojo Madness", "=ds=#sr# =so1=300 =so2=315 =so3=322 =so4=330" }, }, @@ -623,8 +623,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "e13622", "Spell_Holy_GreaterHeal", "=ds=Enchant Bracer - Lesser Intellect", "=ds=#sr# =so1=150 =so2=175 =so3=195 =so4=215" }, { "e13626", "Spell_Holy_GreaterHeal", "=ds=Enchant Chest - Minor Stats", "=ds=#sr# =so1=150 =so2=175 =so3=195 =so4=215" }, { "e13628", "INV_Staff_10", "=q1=Runed Golden Rod", "=ds=#sr# =so1=150 =so2=175 =so3=195 =so4=215" }, - }; - + }; + EnchantingExpert1 = { { "e13635", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Defense", "=ds=#sr# =so1=155 =so2=175 =so3=195 =so4=215" }, { "e13631", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Lesser Stamina", "=ds=#sr# =so1=155 =so2=175 =so3=195 =so4=215" }, @@ -702,7 +702,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "e20016", "Spell_Holy_GreaterHeal", "=ds=Enchant Shield - Superior Spirit", "=ds=#sr# =so1=280 =so2=300 =so3=320 =so4=340" }, { "e20015", "Spell_Holy_GreaterHeal", "=ds=Enchant Cloak - Superior Defense", "=ds=#sr# =so1=285 =so2=305 =so3=325 =so4=345" }, }; - + EnchantingArtisan2 = { { "e20029", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Icy Chill", "=ds=#sr# =so1=285 =so2=305 =so3=325 =so4=345" }, { "e27837", "Spell_Holy_GreaterHeal", "=ds=Enchant 2H Weapon - Agility", "=ds=#sr# =so1=290 =so2=310 =so3=330 =so4=350" }, @@ -735,7 +735,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "e25080", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Superior Agility", "=ds=#sr# =so1=300 =so2=320 =so3=340 =so4=360" }, { "e25072", "Spell_Holy_GreaterHeal", "=ds=Enchant Gloves - Threat", "=ds=#sr# =so1=300 =so2=320 =so3=340 =so4=360" }, }; - + EnchantingArtisan3 = { { "e20034", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Crusader", "=ds=#sr# =so1=300 =so2=320 =so3=340 =so4=360" }, { "e22750", "Spell_Holy_GreaterHeal", "=ds=Enchant Weapon - Healing Power", "=ds=#sr# =so1=300 =so2=320 =so3=340 =so4=360" }, @@ -1039,7 +1039,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s7221", "inv_misc_armorkit_01", "=q1=Iron Shield Spike", "=ds=#sr# =so1=150 =so2=180 =so3=195 =so4=210" }, { "s3336", "inv_gauntlets_05", "=q2=Green Iron Gauntlets", "=ds=#sr# =so1=150 =so2=180 =so3=195 =so4=210" }, }; - + SmithingExpert1 = { { "s3506", "inv_pants_05", "=q2=Green Iron Leggings", "=ds=#sr# =so1=155 =so2=180 =so3=192 =so4=205" }, { "s12259", "inv_pants_04", "=q2=Silvered Bronze Leggings", "=ds=#sr# =so1=155 =so2=180 =so3=192 =so4=205" }, @@ -1064,7 +1064,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s9820", "inv_gauntlets_31", "=q2=Barbaric Iron Gloves", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" }, { "s3498", "inv_throwingaxe_05", "=q2=Massive Iron Axe", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" }, { "s3513", "inv_boots_01", "=q2=Polished Steel Boots", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" }, - { "s57172", "INV_Misc_Buckle_04", "=q2=Mithril Belt Buckle", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" }, + { "s57172", "INV_Misc_Buckle_04", "=q2=Mithril Belt Buckle", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" }, { "s7224", "spell_frost_chainsofice", "=q1=Steel Weapon Chain", "=ds=#sr# =so1=190 =so2=215 =so3=227 =so4=240" }, { "s21913", "inv_axe_06", "=q2=Edge of Winter", "=ds=#sr# =so1=190 =so2=215 =so3=227 =so4=240" }, { "s3503", "inv_helmet_36", "=q2=Golden Scale Coif", "=ds=#sr# =so1=190 =so2=215 =so3=227 =so4=240" }, @@ -1105,7 +1105,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "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" }, }; - + SmithingExpert3 = { { "s46629", "inv_chest_chain_10", "=q2=Steel Plate Armor", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" }, { "s46628", "inv_pants_04", "=q2=Steel Plate Legguards", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" }, @@ -1120,7 +1120,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s9968", "inv_boots_plate_01", "=q2=Heavy Mithril Boots", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" }, { "s9966", "inv_shoulder_12", "=q3=Mithril Scale Shoulders", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" }, { "s9964", "ability_rogue_sprint", "=q2=Mithril Spurs", "=ds=#sr# =so1=235 =so2=255 =so3=265 =so4=275" }, - { "s57175", "INV_Misc_Buckle_05", "=q2=Thorium Belt Buckle", "=ds=#sr# =so1=240 =so2=265 =so3=277 =so4=290" }, + { "s57175", "INV_Misc_Buckle_05", "=q2=Thorium Belt Buckle", "=ds=#sr# =so1=240 =so2=265 =so3=277 =so4=290" }, { "s10005", "inv_sword_30", "=q2=Dazzling Mithril Rapier", "=ds=#sr# =so1=240 =so2=265 =so3=277 =so4=290" }, { "s9970", "inv_helmet_10", "=q2=Heavy Mithril Helm", "=ds=#sr# =so1=245 =so2=255 =so3=265 =so4=275" }, { "s10009", "inv_hammer_17", "=q3=Runed Mithril Hammer", "=ds=#sr# =so1=245 =so2=270 =so3=282 =so4=295" }, @@ -1151,7 +1151,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "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", "=q4=Hateforge Grips", "=ds=#sr# =so1=285 =so2=300 =so3=310 =so4=320" }, + { "s47033", "inv_gauntlets_04", "=q4=Hateforge Grips", "=ds=#sr# =so1=285 =so2=300 =so3=310 =so4=320" }, { "s16654", "inv_gauntlets_26", "=q2=Radiant Gloves", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" }, { "s47029", "inv_helmet_10", "=q3=Hateforge Helmet", "=ds=#sr# =so1=290 =so2=300 =so3=310 =so4=320" }, { "s47030", "inv_chest_chain_09", "=q3=Hateforge Cuirass", "=ds=#sr# =so1=290 =so2=300 =so3=310 =so4=320" }, @@ -1179,8 +1179,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = { SmithingArtisan3 = { { "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" }, + { "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" }, { "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" }, @@ -1209,20 +1209,20 @@ 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" }, }; - + SmithingArtisan4 = { { "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" }, { "s57196", "INV_Misc_Buckle_08", "=q3=Bloody Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, { "s57181", "INV_Misc_Buckle_07", "=q3=Dreamsteel Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, - { "s55526", "INV_Helmet_20", "=q3=Otherworldly Coif", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55527", "INV_Shoulder_14", "=q3=Otherworldly Spaulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55528", "INV_Chest_Chain_11", "=q3=Otherworldly Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55529", "INV_Pants_Mail_15", "=q3=Otherworldly Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55530", "INV_Helmet_20", "=q3=Reflective Helmet", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55531", "INV_Shoulder_16", "=q3=Reflective Pauldrons", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55532", "INV_Chest_Chain_11", "=q3=Reflective Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55533", "Inv_Pants_Mail_15", "=q3=Reflective Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57617", "INV_Helmet_20", "=q3=Otherworldly Coif", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57619", "INV_Shoulder_14", "=q3=Otherworldly Spaulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57621", "INV_Chest_Chain_11", "=q3=Otherworldly Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57623", "INV_Pants_Mail_15", "=q3=Otherworldly Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57625", "INV_Helmet_20", "=q3=Reflective Helmet", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57627", "INV_Shoulder_16", "=q3=Reflective Pauldrons", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57629", "INV_Chest_Chain_11", "=q3=Reflective Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57631", "Inv_Pants_Mail_15", "=q3=Reflective Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s45471", "INV_Boots_01", "=q4=Dreamsteel Boots", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, { "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" }, @@ -1324,8 +1324,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s16728", "inv_helmet_24", "=q3=Helm of the Great Chief", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s16724", "inv_helmet_13", "=q3=Whitesoul Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s23636", "inv_helmet_22", "=q4=Dark Iron Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55526", "INV_Helmet_20", "=q3=Otherworldly Coif", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55530", "INV_Helmet_20", "=q3=Reflective Helmet", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57617", "INV_Helmet_20", "=q3=Otherworldly Coif", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57625", "INV_Helmet_20", "=q3=Reflective Helmet", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s16729", "inv_helmet_36", "=q4=Lionheart Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s57187", "inv_helmet_37", "=q4=Towerforge Crown", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, }, @@ -1343,14 +1343,14 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s15295", "inv_shoulder_09", "=q2=Dark Iron Shoulders", "=ds=#sr# =so1=280 =so2=300 =so3=310 =so4=320" }, { "s16660", "inv_shoulder_20", "=q3=Dawnbringer Shoulders", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" }, { "s16664", "inv_shoulder_23", "=q2=Runic Plate Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s24137", "inv_shoulder_15", "=q3=Bloodsoul Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s24137", "inv_shoulder_15", "=q3=Bloodsoul Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s24141", "inv_shoulder_01", "=q3=Darksoul Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s57026", "inv_shoulder_13", "=q3=Mantle of Centaur Authority", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s47025", "INV_Shoulder_11", "=q3=Rune-Etched Mantle", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s54005", "inv_shoulder_02", "=q3=Pauldrons of the Timbermaw", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, { "s20873", "inv_shoulder_23", "=q4=Fiery Chain Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55527", "INV_Shoulder_14", "=q3=Otherworldly Spaulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55531", "INV_Shoulder_16", "=q3=Reflective Pauldrons", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57619", "INV_Shoulder_14", "=q3=Otherworldly Spaulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57627", "INV_Shoulder_16", "=q3=Reflective Pauldrons", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s57191", "inv_shoulder_26", "=q4=Towerforge Pauldrons", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, }, SmithingChest1 = { @@ -1386,8 +1386,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s47023", "inv_chest_plate08", "=q3=Rune-Etched Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, }, SmithingChest2 = { - { "s55528", "INV_Chest_Chain_11", "=q3=Otherworldly Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55532", "INV_Chest_Chain_11", "=q3=Reflective Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57621", "INV_Chest_Chain_11", "=q3=Otherworldly Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57629", "INV_Chest_Chain_11", "=q3=Reflective Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s28242", "inv_chest_chain_11", "=q4=Icebane Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s27590", "inv_chest_chain_17", "=q4=Obsidian Mail Tunic", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s27587", "inv_chest_chain_17", "=q4=Thick Obsidian Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, @@ -1421,11 +1421,11 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "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" }, { "s9954", "inv_gauntlets_29", "=q3=Truesilver Gauntlets", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" }, - { "s47033", "inv_gauntlets_04", "=q4=Hateforge Grips", "=ds=#sr# =so1=285 =so2=300 =so3=310 =so4=320" }, + { "s47033", "inv_gauntlets_04", "=q4=Hateforge Grips", "=ds=#sr# =so1=285 =so2=300 =so3=310 =so4=320" }, { "s16654", "inv_gauntlets_26", "=q2=Radiant Gloves", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" }, { "s16655", "inv_gauntlets_03", "=q3=Fiery Plate Gauntlets", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" }, { "s16661", "inv_gauntlets_30", "=q3=Storm Gauntlets", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" }, - { "s24138", "inv_gauntlets_31", "=q3=Bloodsoul Gauntlets", "=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" }, { "s24912", "inv_gauntlets_27", "=q3=Darkrune Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s23633", "inv_gauntlets_29", "=q3=Gloves of the Dawn", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s28462", "inv_gauntlets_29", "=q3=Ironvine Gloves", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, @@ -1470,8 +1470,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s24140", "inv_pants_plate_21", "=q3=Darksoul Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s47022", "inv_pants_04", "=q3=Rune-Etched Legplates", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s16744", "inv_pants_04", "=q3=Enchanted Thorium Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55529", "INV_Pants_Mail_15", "=q3=Otherworldly Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55533", "Inv_Pants_Mail_15", "=q3=Reflective Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57623", "INV_Pants_Mail_15", "=q3=Otherworldly Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s57631", "Inv_Pants_Mail_15", "=q3=Reflective Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s45467", "INV_Pants_03", "=q4=Dreamsteel Leggings", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, { "s20876", "inv_pants_04", "=q4=Dark Iron Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s27829", "inv_pants_04", "=q4=Titanic Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, @@ -1597,8 +1597,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s57163", "INV_Misc_Buckle_01", "=q2=Copper Belt Buckle", "=ds=#sr# =so1=25 =so2=65 =so3=85 =so4=105" }, { "s57166", "INV_Misc_Buckle_02", "=q2=Bronze Belt Buckle", "=ds=#sr# =so1=90 =so2=115 =so3=127 =so4=140" }, { "s57169", "INV_Misc_Buckle_03", "=q2=Iron Belt Buckle", "=ds=#sr# =so1=140 =so2=170 =so3=185 =so4=200" }, - { "s57172", "INV_Misc_Buckle_04", "=q2=Mithril Belt Buckle", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" }, - { "s57175", "INV_Misc_Buckle_05", "=q2=Thorium Belt Buckle", "=ds=#sr# =so1=240 =so2=265 =so3=277 =so4=290" }, + { "s57172", "INV_Misc_Buckle_04", "=q2=Mithril Belt Buckle", "=ds=#sr# =so1=185 =so2=210 =so3=222 =so4=235" }, + { "s57175", "INV_Misc_Buckle_05", "=q2=Thorium Belt Buckle", "=ds=#sr# =so1=240 =so2=265 =so3=277 =so4=290" }, { "s57178", "INV_Misc_Buckle_06", "=q2=Arcanite Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, { "s57196", "INV_Misc_Buckle_08", "=q3=Bloody Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, { "s57181", "INV_Misc_Buckle_07", "=q3=Dreamsteel Belt Buckle", "=ds=#sr# =so1=300 =so2=325 =so3=337 =so4=350" }, @@ -1865,7 +1865,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { LeatherArtisan3 = { { "s24121", "inv_chest_leather_03", "=q3=Primal Batskin Jerkin", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s24849", "inv_bracer_12", "=q3=Sandstalker Bracers", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s24851", "inv_chest_plate07", "=q3=Sandstalker Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s24851", "inv_chest_plate07", "=q3=Sandstalker Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s57022", "inv_chest_leather_04", "=q3=Centaur Battle Harness", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "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" }, @@ -1873,10 +1873,10 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "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" }, - { "s55522", "INV_Helmet_04", "=q3=Ethereal Helmet", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, - { "s55523", "INV_Shoulder_07", "=q3=Ethereal Shoulder Pads", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, - { "s55524", "INV_Chest_Cloth_08", "=q3=Ethereal Tunic", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, - { "s55525", "INV_Pants_Leather_21", "=q3=Ethereal Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, + { "s57609", "INV_Helmet_04", "=q3=Ethereal Helmet", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, + { "s57611", "INV_Shoulder_07", "=q3=Ethereal Shoulder Pads", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, + { "s57613", "INV_Chest_Cloth_08", "=q3=Ethereal Tunic", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, + { "s57615", "INV_Pants_Leather_21", "=q3=Ethereal Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "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" }, @@ -1978,7 +1978,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s19082", "inv_misc_bandage_11", "=q2=Runic Leather Headband", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" }, { "s19088", "inv_helmet_20", "=q2=Heavy Scorpid Helm", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" }, { "s28472", "inv_helmet_58", "=q3=Bramblewood Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55522", "INV_Helmet_04", "=q3=Ethereal Helmet", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, + { "s57609", "INV_Helmet_04", "=q3=Ethereal Helmet", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "s20854", "inv_helmet_08", "=q4=Molten Helm", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s57016", "inv_helmet_13", "=q4=Depthstalker Helm", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, }, @@ -2002,7 +2002,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s23706", "inv_shoulder_26", "=q3=Golden Mantle of the Dawn", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s46654", "inv_shoulder_23", "=q3=Red Dragonscale Shoulders", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "s19094", "inv_shoulder_01", "=q3=Black Dragonscale Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55523", "INV_Shoulder_07", "=q3=Ethereal Shoulder Pads", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, + { "s57611", "INV_Shoulder_07", "=q3=Ethereal Shoulder Pads", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "s45473", "inv_shoulder_18", "=q4=Dreamhide Mantle", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, }, LeatherCloak1 = { @@ -2067,13 +2067,13 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s19098", "inv_chest_plate06", "=q2=Wicked Leather Armor", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s24124", "inv_chest_leather_07", "=q3=Blood Tiger Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s24121", "inv_chest_leather_03", "=q3=Primal Batskin Jerkin", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s24851", "inv_chest_plate07", "=q3=Sandstalker Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s24851", "inv_chest_plate07", "=q3=Sandstalker Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s57022", "inv_chest_leather_04", "=q3=Centaur Battle Harness", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s24848", "inv_chest_leather_02", "=q3=Spitfire Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s19054", "inv_chest_chain_06", "=q3=Red Dragonscale Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s19095", "inv_chest_plate07", "=q3=Living Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s19104", "inv_chest_chain_10", "=q2=Frostsaber Tunic", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, - { "s55524", "INV_Chest_Cloth_08", "=q3=Ethereal Tunic", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, + { "s57613", "INV_Chest_Cloth_08", "=q3=Ethereal Tunic", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "s57012", "inv_chest_leather_08", "=q4=Earthguard Tunic", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "s28222", "inv_chest_plate09", "=q4=Icy Scale Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s28219", "inv_chest_cloth_08", "=q4=Polar Tunic", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, @@ -2205,7 +2205,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { LeatherPants2 = { { "s19097", "inv_pants_wolf", "=q3=Devilsaur Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s57014", "inv_pants_06", "=q4=Flamewrath Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, - { "s55525", "INV_Pants_Leather_21", "=q3=Ethereal Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, + { "s57615", "INV_Pants_Leather_21", "=q3=Ethereal Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "s54015", "Inv_pants_leather_19", "=q4=Molten Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "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" }, @@ -2258,7 +2258,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s3818", "inv_misc_pelt_wolf_02", "=q1=Cured Heavy Hide", "=ds=#sr# =so1=150 =so2=160 =so3=165 =so4=170" }, { "s10482", "inv_misc_pelt_bear_01", "=q1=Cured Thick Hide", "=ds=#sr# =so1=200 =so2=200 =so3=200 =so4=200" }, { "s19047", "inv_misc_pelt_bear_03", "=q1=Cured Rugged Hide", "=ds=#sr# =so1=250 =so2=250 =so3=255 =so4=260" }, - { "s45455", "INV_Misc_MonsterScales_04", "=q2=Dreamhide", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s45455", "INV_Misc_MonsterScales_04", "=q2=Dreamhide", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "", "", ""}, { "s23190", "inv_misc_throwingball_01", "=q1=Heavy Leather Ball", "=ds=#sr# =so1=150 =so2=150 =so3=155 =so4=160" }, { "", "", ""}, @@ -2653,7 +2653,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s18403", "inv_chest_cloth_08", "=q2=Frostweave Tunic", "=ds=#sr# =so1=255 =so2=270 =so3=285 =so4=300" }, { "s18408", "inv_chest_cloth_07", "=q2=Cindercloth Vest", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" }, }, - TailoringChest2 = { + TailoringChest2 = { { "s18406", "inv_chest_cloth_04", "=q2=Runecloth Robe", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" }, { "s18407", "inv_chest_cloth_04", "=q2=Runecloth Tunic", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" }, { "s69437", "inv_chest_cloth_22", "=q3=Pillager's Robe", "=ds=#sr# =so1=270 =so2=270 =so3=270 =so4=270" }, @@ -2896,8 +2896,8 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "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" }, }; - - EngineeringJourneyman2 = { + + 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" }, @@ -3233,7 +3233,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s26011", "ability_hunter_pet_gorilla", "=q1=Tranquil Mechanical Yeti", "=ds=#sr# =so1=250 =so2=320 =so3=330 =so4=340" }, { "s19793", "inv_misc_monsterhead_03", "=q1=Lifelike Mechanical Toad", "=ds=#sr# =so1=265 =so2=285 =so3=295 =so4=305" }, { "s15633", "inv_misc_idol_02", "=q1=Lil' Smoky", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" }, - { "s15628", "inv_misc_bomb_04", "=q1=Pet Bombling", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" }, + { "s15628", "inv_misc_bomb_04", "=q1=Pet Bombling", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" }, }, ------------ -- Mining -- @@ -3466,7 +3466,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { 0, "", "", "" }, { "s10844", "inv_misc_ammo_gunpowder_02", "=q1=Powerful Smelling Salts", "=ds=#sr# =so1=300 =so2=300 =so3=330 =so4=360" }, }; - + -------------- -- Survival -- -------------- @@ -3486,7 +3486,7 @@ 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, "", "", "" }, @@ -3513,7 +3513,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { 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 = { @@ -3841,7 +3841,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s41225", "INV_Jewelry_Ring_20", "=q2=Ironbloom Ring", "=ds=#sr# =so1=190 =so2=205 =so3=215 =so4=225" }, { "s41541", "INV_Jewelry_Ring_28", "=q2=Dazzling Aquamarine Loop", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" }, }; - JewelcraftingRings2 = { + JewelcraftingRings2 = { { "s41579", "INV_Jewelry_Ring_12", "=q2=Marine's Demise", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" }, { "s41744", "INV_Jewelry_Ring_03", "=q2=Bloodfire Circlet", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" }, { "s41554", "INV_Jewelry_Ring_Emerald", "=q3=Golden Jade Ring", "=ds=#sr# =so1=210 =so2=235 =so3=245 =so4=255" },