From 44c2679d4ea9e599888db4023f37364be95575a5 Mon Sep 17 00:00:00 2001 From: Lexie <6937574+Lexiebean@users.noreply.github.com> Date: Tue, 11 Jan 2022 18:56:50 +1100 Subject: [PATCH 1/2] Added patch 1.16 tailoring. Added Augerer's set Added Diviners's set Added Pillagers's set Added Shadoweave set to Crafted Sets > Tailoring Augerer's, Diviners's and Pillagers's sets are missing Orange/Yellow/Green/Grey skillup information. However they were also immediately grey for me when I trained them at level. So this may also be a server bug as well as missing information. --- Core/AtlasLoot.lua | 6 + Core/Crafting.lua | 202 ++++++++++++---------- Core/Spells.lua | 298 ++++++++++++++++++++++++++++++++ Core/TextParsing.lua | 6 +- Crafting/crafting.en.lua | 88 ++++++++-- Locale/locale.en.lua | 4 + TableRegister/loottables.en.lua | 4 + 7 files changed, 507 insertions(+), 101 deletions(-) diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua index 7d8e6d8..a7e9350 100644 --- a/Core/AtlasLoot.lua +++ b/Core/AtlasLoot.lua @@ -2883,6 +2883,12 @@ AtlasLoot_DewDropDown_SubTables = { { AL["Blue Dragon Mail"], "BlueDragonM" }, { AL["Black Dragon Mail"], "BlackDragonM" }, }, + ["CraftSetTailoring"] = { + { AL["Augerer's Attire"], "AugerersAttire" }, + { AL["Diviner's Garments"], "DivinersGarments" }, + { AL["Pillager's Garb"], "PillagersGarb" }, + { AL["Bloodvine Garb"], "BloodvineG" }, + }, ["DungeonSets12"] = { { "|cffffffff"..AL["Priest"], "T0Priest" }, { "|cff68ccef"..AL["Mage"], "T0Mage" }, diff --git a/Core/Crafting.lua b/Core/Crafting.lua index f9c696e..b5cde25 100644 --- a/Core/Crafting.lua +++ b/Core/Crafting.lua @@ -115,113 +115,137 @@ function AtlasLootCraftedSetMenu() getglobal("AtlasLootItemsFrame_PREV"):Hide(); getglobal("AtlasLootServerQueryButton"):Hide(); --Tailoring Header - AtlasLootMenuItem_2_Name:SetText(RED..AL["Tailoring"]); + AtlasLootMenuItem_1_Name:SetText(RED..AL["Tailoring"]); + AtlasLootMenuItem_1_Extra:SetText(""); + AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\INV_Chest_Cloth_21"); + AtlasLootMenuItem_1.isheader = true; + AtlasLootMenuItem_1:Show(); + --Augerer's Attire + AtlasLootMenuItem_2_Name:SetText(AL["Augerer's Attire"]); AtlasLootMenuItem_2_Extra:SetText(""); - AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Chest_Cloth_21"); - AtlasLootMenuItem_2.isheader = true; + AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Helmet_11"); + AtlasLootMenuItem_2.lootpage="AugerersAttire"; AtlasLootMenuItem_2:Show(); - --Bloodvine Garb - AtlasLootMenuItem_3_Name:SetText(AL["Bloodvine Garb"]); + --Shadoweave + AtlasLootMenuItem_3_Name:SetText(AL["Shadoweave"]); AtlasLootMenuItem_3_Extra:SetText(""); - AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Pants_Cloth_14"); - AtlasLootMenuItem_3.lootpage="BloodvineG"; + AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Helmet_27"); + AtlasLootMenuItem_3.lootpage="ShadoweaveSet"; AtlasLootMenuItem_3:Show(); - --Leatherworking Leather Header - AtlasLootMenuItem_5_Name:SetText(RED..AL["Leatherworking"]); - AtlasLootMenuItem_5_Extra:SetText(WHITE..AL["Leather"]); - AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_04"); - AtlasLootMenuItem_5.isheader = true; + --Diviner's Garments + AtlasLootMenuItem_4_Name:SetText(AL["Diviner's Garments"]); + AtlasLootMenuItem_4_Extra:SetText(""); + AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Helmet_33"); + AtlasLootMenuItem_4.lootpage="DivinersGarments"; + AtlasLootMenuItem_4:Show(); + --Pillager's Garb + AtlasLootMenuItem_5_Name:SetText(AL["Pillager's Garb"]); + AtlasLootMenuItem_5_Extra:SetText(""); + AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Helmet_28"); + AtlasLootMenuItem_5.lootpage="PillagersGarb"; AtlasLootMenuItem_5:Show(); - --Volcanic Armor - AtlasLootMenuItem_6_Name:SetText(AL["Volcanic Armor"]); - AtlasLootMenuItem_6_Extra:SetText(ORANGE..AL["Fire Resistance Gear"]); - AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\INV_Pants_06"); - AtlasLootMenuItem_6.lootpage="VolcanicArmor"; + --Bloodvine Garb + AtlasLootMenuItem_6_Name:SetText(AL["Bloodvine Garb"]); + AtlasLootMenuItem_6_Extra:SetText(""); + AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\INV_Pants_Cloth_14"); + AtlasLootMenuItem_6.lootpage="BloodvineG"; AtlasLootMenuItem_6:Show(); - --Ironfeather Armor - AtlasLootMenuItem_7_Name:SetText(AL["Ironfeather Armor"]); - AtlasLootMenuItem_7_Extra:SetText(""); - AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_06"); - AtlasLootMenuItem_7.lootpage="IronfeatherArmor"; - AtlasLootMenuItem_7:Show(); - --Stormshroud Armor - AtlasLootMenuItem_8_Name:SetText(AL["Stormshroud Armor"]); - AtlasLootMenuItem_8_Extra:SetText(""); - AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_08"); - AtlasLootMenuItem_8.lootpage="StormshroudArmor"; + --Leatherworking Leather Header + AtlasLootMenuItem_8_Name:SetText(RED..AL["Leatherworking"]); + AtlasLootMenuItem_8_Extra:SetText(WHITE..AL["Leather"]); + AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_04"); + AtlasLootMenuItem_8.isheader = true; AtlasLootMenuItem_8:Show(); - --Devilsaur Armor - AtlasLootMenuItem_9_Name:SetText(AL["Devilsaur Armor"]); - AtlasLootMenuItem_9_Extra:SetText(""); - AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Pants_Wolf"); - AtlasLootMenuItem_9.lootpage="DevilsaurArmor"; + --Volcanic Armor + AtlasLootMenuItem_9_Name:SetText(AL["Volcanic Armor"]); + AtlasLootMenuItem_9_Extra:SetText(ORANGE..AL["Fire Resistance Gear"]); + AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Pants_06"); + AtlasLootMenuItem_9.lootpage="VolcanicArmor"; AtlasLootMenuItem_9:Show(); - --Blood Tiger Harness - AtlasLootMenuItem_10_Name:SetText(AL["Blood Tiger Harness"]); + --Ironfeather Armor + AtlasLootMenuItem_10_Name:SetText(AL["Ironfeather Armor"]); AtlasLootMenuItem_10_Extra:SetText(""); - AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_23"); - AtlasLootMenuItem_10.lootpage="BloodTigerH"; + AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_06"); + AtlasLootMenuItem_10.lootpage="IronfeatherArmor"; AtlasLootMenuItem_10:Show(); - --Primal Batskin - AtlasLootMenuItem_11_Name:SetText(AL["Primal Batskin"]); + --Stormshroud Armor + AtlasLootMenuItem_11_Name:SetText(AL["Stormshroud Armor"]); AtlasLootMenuItem_11_Extra:SetText(""); - AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_03"); - AtlasLootMenuItem_11.lootpage="PrimalBatskin"; + AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_08"); + AtlasLootMenuItem_11.lootpage="StormshroudArmor"; AtlasLootMenuItem_11:Show(); - --Mail Blacksmithing Header - AtlasLootMenuItem_13_Name:SetText(RED..AL["Blacksmithing"]); - AtlasLootMenuItem_13_Extra:SetText(WHITE..AL["Mail"]); - AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_04"); - AtlasLootMenuItem_13.isheader = true; + --Devilsaur Armor + AtlasLootMenuItem_12_Name:SetText(AL["Devilsaur Armor"]); + AtlasLootMenuItem_12_Extra:SetText(""); + AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\INV_Pants_Wolf"); + AtlasLootMenuItem_12.lootpage="DevilsaurArmor"; + AtlasLootMenuItem_12:Show(); + --Blood Tiger Harness + AtlasLootMenuItem_13_Name:SetText(AL["Blood Tiger Harness"]); + AtlasLootMenuItem_13_Extra:SetText(""); + AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_23"); + AtlasLootMenuItem_13.lootpage="BloodTigerH"; AtlasLootMenuItem_13:Show(); - --Bloodsoul Embrace - AtlasLootMenuItem_14_Name:SetText(AL["Bloodsoul Embrace"]); + --Primal Batskin + AtlasLootMenuItem_14_Name:SetText(AL["Primal Batskin"]); AtlasLootMenuItem_14_Extra:SetText(""); - AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_15"); - AtlasLootMenuItem_14.lootpage="BloodsoulEmbrace"; + AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_03"); + AtlasLootMenuItem_14.lootpage="PrimalBatskin"; AtlasLootMenuItem_14:Show(); - --Leatherworking Mail Header - AtlasLootMenuItem_20_Name:SetText(RED..AL["Leatherworking"]); - AtlasLootMenuItem_20_Extra:SetText(WHITE..AL["Mail"]); - AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_12"); - AtlasLootMenuItem_20.isheader = true; - AtlasLootMenuItem_20:Show(); - --Green Dragon Mail - AtlasLootMenuItem_21_Name:SetText(AL["Green Dragon Mail"]); - AtlasLootMenuItem_21_Extra:SetText(ORANGE..AL["Nature Resistance Gear"]); - AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Pants_05"); - AtlasLootMenuItem_21.lootpage="GreenDragonM"; - AtlasLootMenuItem_21:Show(); - --Blue Dragon Mail - AtlasLootMenuItem_22_Name:SetText(AL["Blue Dragon Mail"]); - AtlasLootMenuItem_22_Extra:SetText(ORANGE..AL["Arcane Resistance Gear"]); - AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_04"); - AtlasLootMenuItem_22.lootpage="BlueDragonM"; - AtlasLootMenuItem_22:Show(); - --Black Dragon Mail - AtlasLootMenuItem_23_Name:SetText(AL["Black Dragon Mail"]); - AtlasLootMenuItem_23_Extra:SetText(ORANGE..AL["Fire Resistance Gear"]); - AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Pants_03"); - AtlasLootMenuItem_23.lootpage="BlackDragonM"; - AtlasLootMenuItem_23:Show(); + --Mail Blacksmithing Header + AtlasLootMenuItem_16_Name:SetText(RED..AL["Blacksmithing"]); + AtlasLootMenuItem_16_Extra:SetText(WHITE..AL["Mail"]); + AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_04"); + AtlasLootMenuItem_16.isheader = true; + AtlasLootMenuItem_16:Show(); + --Bloodsoul Embrace + AtlasLootMenuItem_17_Name:SetText(AL["Bloodsoul Embrace"]); + AtlasLootMenuItem_17_Extra:SetText(""); + AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_15"); + AtlasLootMenuItem_17.lootpage="BloodsoulEmbrace"; + AtlasLootMenuItem_17:Show(); --Plate Blacksmithing header - AtlasLootMenuItem_28_Name:SetText(RED..AL["Blacksmithing"]); - AtlasLootMenuItem_28_Extra:SetText(WHITE..AL["Plate"]); - AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate10"); - AtlasLootMenuItem_28.isheader = true; - AtlasLootMenuItem_28:Show(); + AtlasLootMenuItem_19_Name:SetText(RED..AL["Blacksmithing"]); + AtlasLootMenuItem_19_Extra:SetText(WHITE..AL["Plate"]); + AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate10"); + AtlasLootMenuItem_19.isheader = true; + AtlasLootMenuItem_19:Show(); --Imperial Plate - AtlasLootMenuItem_29_Name:SetText(AL["Imperial Plate"]); - AtlasLootMenuItem_29_Extra:SetText(""); - AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\INV_Belt_01"); - AtlasLootMenuItem_29.lootpage="ImperialPlate"; - AtlasLootMenuItem_29:Show(); + AtlasLootMenuItem_20_Name:SetText(AL["Imperial Plate"]); + AtlasLootMenuItem_20_Extra:SetText(""); + AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Belt_01"); + AtlasLootMenuItem_20.lootpage="ImperialPlate"; + AtlasLootMenuItem_20:Show(); --The Darksoul - AtlasLootMenuItem_30_Name:SetText(AL["The Darksoul"]); - AtlasLootMenuItem_30_Extra:SetText(""); - AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_01"); - AtlasLootMenuItem_30.lootpage="TheDarksoul"; - AtlasLootMenuItem_30:Show(); + AtlasLootMenuItem_21_Name:SetText(AL["The Darksoul"]); + AtlasLootMenuItem_21_Extra:SetText(""); + AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_01"); + AtlasLootMenuItem_21.lootpage="TheDarksoul"; + AtlasLootMenuItem_21:Show(); + --Leatherworking Mail Header + AtlasLootMenuItem_23_Name:SetText(RED..AL["Leatherworking"]); + AtlasLootMenuItem_23_Extra:SetText(WHITE..AL["Mail"]); + AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_12"); + AtlasLootMenuItem_23.isheader = true; + AtlasLootMenuItem_23:Show(); + --Green Dragon Mail + AtlasLootMenuItem_24_Name:SetText(AL["Green Dragon Mail"]); + AtlasLootMenuItem_24_Extra:SetText(ORANGE..AL["Nature Resistance Gear"]); + AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Pants_05"); + AtlasLootMenuItem_24.lootpage="GreenDragonM"; + AtlasLootMenuItem_24:Show(); + --Blue Dragon Mail + AtlasLootMenuItem_25_Name:SetText(AL["Blue Dragon Mail"]); + AtlasLootMenuItem_25_Extra:SetText(ORANGE..AL["Arcane Resistance Gear"]); + AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_04"); + AtlasLootMenuItem_25.lootpage="BlueDragonM"; + AtlasLootMenuItem_25:Show(); + --Black Dragon Mail + AtlasLootMenuItem_26_Name:SetText(AL["Black Dragon Mail"]); + AtlasLootMenuItem_26_Extra:SetText(ORANGE..AL["Fire Resistance Gear"]); + AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Pants_03"); + AtlasLootMenuItem_26.lootpage="BlackDragonM"; + AtlasLootMenuItem_26:Show(); for i = 1, 30, 1 do getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show(); end diff --git a/Core/Spells.lua b/Core/Spells.lua index f840be7..45459be 100644 --- a/Core/Spells.lua +++ b/Core/Spells.lua @@ -3513,6 +3513,304 @@ GetSpellInfoVanillaDB = { [4] = {4337, 2}, }, }, + [69420] = { + ["name"] = "Tailoring: Augerer's Boots", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83288, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 2}, + [2] = {8343}, + [3] = {6260}, + [4] = {7070}, + [5] = {4234, 3}, + }, + }, + [69421] = { + ["name"] = "Tailoring: Augerer's Gloves", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83289, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 3}, + [2] = {8343, 2}, + [3] = {6260}, + [4] = {6373}, + [5] = {9036}, + }, + }, + [69422] = { + ["name"] = "Tailoring: Augerer's Mantle", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83290, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 3}, + [2] = {8343}, + [3] = {6260}, + [4] = {7070}, + [5] = {6149, 2}, + }, + }, + [69423] = { + ["name"] = "Tailoring: Augerer's Trousers", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83291, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 4}, + [2] = {8343}, + [3] = {6260}, + [4] = {7070}, + [5] = {3827, 2}, + }, + }, + [69424] = { + ["name"] = "Tailoring: Augerer's Hat", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83286, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 3}, + [2] = {8343}, + [3] = {6260}, + [4] = {7070}, + [5] = {3827, 2}, + }, + }, + [69425] = { + ["name"] = "Tailoring: Augerer's Robe", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83287, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 6}, + [2] = {8343}, + [3] = {6260, 2}, + [4] = {7070, 2}, + [5] = {1705, 2}, + [6] = {20746}, + }, + }, + [69426] = { + ["name"] = "Tailoring: Diviner's Boots", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83283, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 3}, + [2] = {8343, 3}, + [3] = {2324}, + [4] = {4304, 2}, + }, + }, + [69427] = { + ["name"] = "Tailoring: Diviner's Mitts", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83284, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 3}, + [2] = {8343, 2}, + [3] = {2324}, + [4] = {6048}, + }, + }, + [69428] = { + ["name"] = "Tailoring: Diviner's Epaulets", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83285, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 6}, + [2] = {8343, 2}, + [3] = {2842}, + [4] = {17028}, + [5] = {2324}, + }, + }, + [69429] = { + ["name"] = "Tailoring: Diviner's Pantaloons", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83291, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 4}, + [2] = {8343, 2}, + [3] = {2842}, + [4] = {2324}, + }, + }, + [69430] = { + ["name"] = "Tailoring: Diviner's Cowl", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83282, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 4}, + [2] = {8343}, + [3] = {2842}, + [4] = {2324}, + }, + }, + [69431] = { + ["name"] = "Tailoring: Diviner's Robes", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83281, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4339, 10}, + [2] = {8343, 4}, + [3] = {2842, 2}, + [4] = {2324}, + [5] = {17028}, + [6] = {5500}, + }, + }, + [69432] = { + ["name"] = "Tailoring: Pillager's Shoes", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83281, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {14048, 2}, + [2] = {8170, 2}, + [3] = {14341}, + [4] = {6371}, + }, + }, + [69433] = { + ["name"] = "Tailoring: Pillager's Grips", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83295, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {14048, 2}, + [2] = {7077, 4}, + [3] = {14341}, + }, + }, + [69434] = { + ["name"] = "Tailoring: Pillager's Amice", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83293, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {14048, 4}, + [2] = {7068}, + [3] = {14341, 3}, + [4] = {4625}, + }, + }, + [69435] = { + ["name"] = "Tailoring: Pillager's Pantaloons", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83297, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {14048, 4}, + [2] = {7077, 4}, + [3] = {14341, 2}, + [4] = {4625}, + }, + }, + [69436] = { + ["name"] = "Tailoring: Pillager's Hood", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83292, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {14048, 5}, + [2] = {7068, 2}, + [3] = {14341}, + }, + }, + [69437] = { + ["name"] = "Tailoring: Pillager's Robe", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 83294, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {14048, 8}, + [2] = {7068, 3}, + [3] = {14341, 4}, + [4] = {7078, 2}, + [5] = {4625, 4}, + [6] = {6037, 2}, + }, + }, [3864] = { ["name"] = "Tailoring: Star Belt", ["requires"] = "", diff --git a/Core/TextParsing.lua b/Core/TextParsing.lua index dc1902c..f442ca5 100644 --- a/Core/TextParsing.lua +++ b/Core/TextParsing.lua @@ -313,7 +313,11 @@ function AtlasLoot_FixText(text) text = gsub(text, "#craftbm1#", AL["Bloodsoul Embrace"]); -- Tailoring Crafted Sets - text = gsub(text, "#craftt1#", AL["Bloodvine Garb"]); + text = gsub(text, "#craftt1#", AL["Augerer's Attire"]); + text = gsub(text, "#craftt2#", AL["Shadoweave"]); + text = gsub(text, "#craftt3#", AL["Diviner's Garments"]); + text = gsub(text, "#craftt4#", AL["Pillager's Garb"]); + text = gsub(text, "#craftt5##", AL["Bloodvine Garb"]); -- Leatherworking Crafted Sets text = gsub(text, "#craftlwl1#", AL["Volcanic Armor"]); diff --git a/Crafting/crafting.en.lua b/Crafting/crafting.en.lua index 01a1b7b..5c2bc0c 100644 --- a/Crafting/crafting.en.lua +++ b/Crafting/crafting.en.lua @@ -70,15 +70,63 @@ AtlasLoot_Data["AtlasLootCrafting"] = { --- Tailoring Sets --- ---------------------- - BloodvineG = { + AugerersAttire = { { 0, "", "", "" }, { 0, "INV_Box_01", "=q6=#craftt1#", "" }, { 0, "", "", "" }, + { 83288, "INV_Boots_05", "=q2=Augerer's Boots", "=ds=#s12#, #a1#" }, + { 83289, "INV_Gauntlets_06", "=q2=Augerer's Gloves", "=ds=#s9#, #a1#" }, + { 83290, "INV_Shoulder_02", "=q2=Augerer's Mantle", "=ds=#s3#, #a1#" }, + { 83291, "INV_Pants_08", "=q2=Augerer's Trousers", "=ds=#s11#, #a1#" }, + { 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#", "" }, + { 0, "", "", "" }, + { 10002, "inv_pants_11", "=q2=Shadoweave Pants", "=ds=#s11#, #a1#" }, + { 10004, "inv_chest_cloth_38", "=q2=Shadoweave Robe", "=ds=#s5#, #a1#" }, + { 10023, "inv_gauntlets_09", "=q2=Shadoweave Gloves", "=ds=#s9#, #a1#" }, + { 10028, "inv_shoulder_25", "=q2=Shadoweave Shoulders", "=ds=#s3#, #a1#" }, + { 10031, "inv_boots_05", "=q2=Shadoweave Boots", "=ds=#s12#, #a1#" }, + { 10025, "inv_helmet_27", "=q2=Shadoweave Mask", "=ds=#s1#, #a1#" }, + }; + + DivinersGarments = { + { 0, "", "", "" }, + { 0, "INV_Box_01", "=q6=#craftt3#", "" }, + { 0, "", "", "" }, + { 83283, "inv_boots_09", "=q2=Diviner's Boots", "=ds=#s12#, #a1#" }, + { 83284, "inv_gauntlets_23", "=q2=Diviner's Mitts", "=ds=#s9#, #a1#" }, + { 83285, "inv_shoulder_02", "=q2=Diviner's Epaulets", "=ds=#s3#, #a1#" }, + { 83280, "inv_pants_07", "=q2=Diviner's Pantaloons", "=ds=#s11#, #a1#" }, + { 83282, "inv_helmet_33", "=q2=Diviner's Cowl", "=ds=#s1#, #a1#" }, + { 83281, "inv_chest_cloth_22", "=q2=Diviner's Robes", "=ds=#s5#, #a1#" }, + }; + + PillagersGarb = { + { 0, "", "", "" }, + { 0, "INV_Box_01", "=q6=#craftt4#", "" }, + { 0, "", "", "" }, + { 83296, "inv_boots_09", "=q2=Pillager's Shoes", "=ds=#s12#, #a1#" }, + { 83295, "inv_gauntlets_15", "=q2=Pillager's Grips", "=ds=#s9#, #a1#" }, + { 83297, "inv_pants_06", "=q2=Pillager's Pantaloons", "=ds=#s11#, #a1#" }, + { 83293, "inv_shoulder_02", "=q2=Pillager's Amice", "=ds=#s3#, #a1#" }, + { 83292, "inv_helmet_28", "=q2=Pillager's Hood", "=ds=#s1#, #a1#" }, + { 83294, "inv_chest_cloth_22", "=q2=Pillager's Robe", "=ds=#s5#, #a1#" }, + }; + + BloodvineG = { + { 0, "", "", "" }, + { 0, "INV_Box_01", "=q6=#craftt5#", "" }, + { 0, "", "", "" }, { 19682, "INV_Chest_Cloth_07", "=q3=Bloodvine Vest", "=ds=#s5#, #a1#" }, { 19683, "INV_Pants_Cloth_14", "=q3=Bloodvine Leggings", "=ds=#s11#, #a1#" }, { 19684, "INV_Boots_Cloth_02","=q3=Bloodvine Boots", "=ds=#s12#, #a1#" }, }; - + ----------------------------------- --- Leatherworking Leather Sets --- ----------------------------------- @@ -1144,9 +1192,15 @@ AtlasLoot_Data["AtlasLootCrafting"] = { TailoringExpert2 = { { "s3862", "inv_misc_cape_04", "=q3=Icy Cloak", "=ds=#sr# =so1=200 =so2=220 =so3=235 =so4=250" }, + { "s69420", "INV_Boots_05", "=q2=Augerer's Boots", "=ds=#sr# =so1=200 =so2=200 =so3=200 =so4=200" }, + { "s69421", "INV_Gauntlets_06", "=q2=Augerer's Gloves", "=ds=#sr# =so1=200 =so2=200 =so3=200 =so4=200" }, + { "s69422", "INV_Shoulder_02", "=q2=Augerer's Mantle", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" }, + { "s69423", "INV_Pants_08", "=q2=Augerer's Trousers", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" }, + { "s69424", "INV_Helmet_11", "=q2=Augerer's Hat", "=ds=#sr# =so1=205 =so2=205 =so3=205 =so4=205" }, { "s12049", "inv_pants_09", "=q2=Black Mageweave Leggings", "=ds=#sr# =so1=205 =so2=220 =so3=235 =so4=250" }, { "s12048", "inv_chest_leather_03", "=q2=Black Mageweave Vest", "=ds=#sr# =so1=205 =so2=220 =so3=235 =so4=250" }, { "s8802", "inv_chest_cloth_25", "=q2=Crimson Silk Robe", "=ds=#sr# =so1=205 =so2=220 =so3=235 =so4=250" }, + { "s69425", "inv_chest_cloth_22", "=q3=Augerer's Robe", "=ds=#sr# =so1=210 =so2=210 =so3=210 =so4=210" }, { "s12050", "inv_chest_cloth_13", "=q2=Black Mageweave Robe", "=ds=#sr# =so1=210 =so2=225 =so3=240 =so4=255" }, { "s8804", "inv_gauntlets_05", "=q2=Crimson Silk Gloves", "=ds=#sr# =so1=210 =so2=225 =so3=240 =so4=255" }, { "s12052", "inv_pants_11", "=q2=Shadoweave Pants", "=ds=#sr# =so1=210 =so2=225 =so3=240 =so4=255" }, @@ -1164,13 +1218,19 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s12071", "inv_gauntlets_09", "=q2=Shadoweave Gloves", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" }, { "s12067", "inv_gauntlets_18", "=q3=Dreamweave Gloves", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" }, { "s12070", "inv_chest_cloth_42", "=q3=Dreamweave Vest", "=ds=#sr# =so1=225 =so2=240 =so3=255 =so4=270" }, + { "s69426", "inv_boots_09", "=q2=Diviner's Boots", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" }, + { "s69427", "inv_gauntlets_23", "=q2=Diviner's Mitts", "=ds=#sr# =so1=225 =so2=225 =so3=225 =so4=225" }, + { "s69428", "inv_shoulder_02", "=q2=Diviner's Epaulets", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" }, }; TailoringArtisan1 = { + { "s69429", "inv_pants_07", "=q2=Diviner's Pantaloons", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" }, + { "s69430", "inv_helmet_33", "=q2=Diviner's Cowl", "=ds=#sr# =so1=230 =so2=230 =so3=230 =so4=230" }, { "s12075", "inv_shirt_purple_01", "=q1=Lavender Mageweave Shirt", "=ds=#sr# =so1=230 =so2=235 =so3=240 =so4=245" }, { "s12073", "inv_boots_05", "=q2=Black Mageweave Boots", "=ds=#sr# =so1=230 =so2=245 =so3=260 =so4=275" }, { "s12072", "inv_misc_bandana_01", "=q2=Black Mageweave Headband", "=ds=#sr# =so1=230 =so2=245 =so3=260 =so4=275" }, { "s12074", "inv_shoulder_25", "=q2=Black Mageweave Shoulders", "=ds=#sr# =so1=230 =so2=245 =so3=260 =so4=275" }, + { "s69431", "inv_chest_cloth_22", "=q3=Diviner's Robes", "=ds=#sr# =so1=235 =so2=235 =so3=235 =so4=235" }, { "s12080", "inv_shirt_red_01", "=q1=Pink Mageweave Shirt", "=ds=#sr# =so1=235 =so2=240 =so3=245 =so4=250" }, { "s12077", "inv_chest_cloth_21", "=q1=Simple Black Dress", "=ds=#sr# =so1=235 =so2=240 =so3=245 =so4=250" }, { "s12079", "inv_misc_bag_10_red", "=q1=Red Mageweave Bag", "=ds=#sr# =so1=235 =so2=250 =so3=265 =so4=280" }, @@ -1193,17 +1253,23 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s18404", "inv_chest_cloth_03", "=q2=Frostweave Robe", "=ds=#sr# =so1=255 =so2=270 =so3=285 =so4=300" }, { "s18403", "inv_chest_cloth_08", "=q2=Frostweave Tunic", "=ds=#sr# =so1=255 =so2=270 =so3=285 =so4=300" }, { "s18402", "inv_belt_15", "=q2=Runecloth Belt", "=ds=#sr# =so1=255 =so2=270 =so3=285 =so4=300" }, + }; + + TailoringArtisan2 = { + { "s69432", "inv_boots_09", "=q2=Pillager's Shoes", "=ds=#sr# =so1=260 =so2=260 =so3=260 =so4=260" }, + { "s69433", "inv_gauntlets_15", "=q2=Pillager's Grips", "=ds=#sr# =so1=260 =so2=260 =so3=260 =so4=260" }, { "s18405", "inv_misc_bag_19", "=q1=Runecloth Bag", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" }, { "s18408", "inv_chest_cloth_07", "=q2=Cindercloth Vest", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" }, { "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" }, - }; - - TailoringArtisan2 = { { "s26085", "inv_misc_bag_soulbag", "=q2=Soul Pouch", "=ds=#sr# =so1=260 =so2=275 =so3=290 =so4=305" }, + { "s69434", "inv_shoulder_02", "=q2=Pillager's Amice", "=ds=#sr# =so1=265 =so2=265 =so3=265 =so4=265" }, + { "s69435", "inv_pants_06", "=q2=Pillager's Pantaloons", "=ds=#sr# =so1=265 =so2=265 =so3=265 =so4=265" }, + { "s69436", "inv_helmet_28", "=q2=Pillager's Hood", "=ds=#sr# =so1=265 =so2=265 =so3=265 =so4=265" }, { "s18411", "inv_gauntlets_05", "=q2=Frostweave Gloves", "=ds=#sr# =so1=265 =so2=280 =so3=295 =so4=310" }, { "s18410", "inv_belt_16", "=q2=Ghostweave Belt", "=ds=#sr# =so1=265 =so2=280 =so3=295 =so4=310" }, { "s18409", "inv_misc_cape_10", "=q2=Runecloth Cloak", "=ds=#sr# =so1=265 =so2=280 =so3=295 =so4=310" }, + { "s69437", "inv_chest_cloth_22", "=q3=Pillager's Robe", "=ds=#sr# =so1=270 =so2=270 =so3=270 =so4=270" }, { "s18415", "inv_gauntlets_21", "=q2=Brightcloth Gloves", "=ds=#sr# =so1=270 =so2=285 =so3=300 =so4=315" }, { "s18414", "inv_chest_cloth_26", "=q2=Brightcloth Robe", "=ds=#sr# =so1=270 =so2=285 =so3=300 =so4=315" }, { "s18412", "inv_gauntlets_05", "=q2=Cindercloth Gloves", "=ds=#sr# =so1=270 =so2=285 =so3=300 =so4=315" }, @@ -1220,6 +1286,9 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s18422", "inv_misc_cape_18", "=q3=Cloak of Fire", "=ds=#sr# =so1=275 =so2=290 =so3=305 =so4=320" }, { "s18434", "inv_pants_06", "=q2=Cindercloth Pants", "=ds=#sr# =so1=280 =so2=295 =so3=310 =so4=325" }, { "s18424", "inv_pants_08", "=q2=Frostweave Pants", "=ds=#sr# =so1=280 =so2=295 =so3=310 =so4=325" }, + }; + + TailoringArtisan3 = { { "s18423", "inv_boots_05", "=q2=Runecloth Boots", "=ds=#sr# =so1=280 =so2=295 =so3=310 =so4=325" }, { "s26086", "inv_misc_bag_felclothbag", "=q3=Felcloth Bag", "=ds=#sr# =so1=280 =so2=300 =so3=315 =so4=330" }, { "s18437", "inv_boots_05", "=q2=Felcloth Boots", "=ds=#sr# =so1=285 =so2=300 =so3=315 =so4=330" }, @@ -1230,9 +1299,6 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s18442", "inv_helmet_34", "=q2=Felcloth Hood", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" }, { "s18441", "inv_pants_01", "=q2=Ghostweave Pants", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" }, { "s23664", "inv_boots_cloth_03", "=q3=Argent Boots", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" }, - }; - - TailoringArtisan3 = { { "s18440", "inv_pants_13", "=q3=Mooncloth Leggings", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" }, { "s23662", "inv_belt_09", "=q3=Wisdom of the Timbermaw", "=ds=#sr# =so1=290 =so2=305 =so3=320 =so4=335" }, { "s18444", "inv_misc_bandana_03", "=q2=Runecloth Headband", "=ds=#sr# =so1=295 =so2=310 =so3=325 =so4=340" }, @@ -1253,6 +1319,9 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s22867", "inv_gauntlets_19", "=q3=Felcloth Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s28210", "inv_misc_cape_17", "=q3=Gaea's Embrace", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s22868", "inv_gauntlets_19", "=q3=Inferno Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, + }; + + TailoringArtisan4 = { { "s23663", "inv_shoulder_19", "=q3=Mantle of the Timbermaw", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s18452", "inv_misc_bandana_01", "=q3=Mooncloth Circlet", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s22869", "inv_gauntlets_17", "=q3=Mooncloth Gloves", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, @@ -1263,9 +1332,6 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s24903", "inv_boots_05", "=q3=Runed Stygian Boots", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s24901", "inv_pants_cloth_05", "=q3=Runed Stygian Leggings", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s28481", "inv_crown_01", "=q3=Sylvan Crown", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, - }; - - TailoringArtisan4 = { { "s28482", "inv_shoulder_18", "=q3=Sylvan Shoulders", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s28480", "inv_chest_plate07", "=q3=Sylvan Vest", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s22866", "inv_belt_31", "=q4=Belt of the Archmage", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, diff --git a/Locale/locale.en.lua b/Locale/locale.en.lua index 73b2b19..9668478 100644 --- a/Locale/locale.en.lua +++ b/Locale/locale.en.lua @@ -297,6 +297,10 @@ AL:RegisterTranslations("enUS", function() return { ["Burning Rage"] = true, ["Bloodsoul Embrace"] = true, ["Fel Iron Chain"] = true, + ["Augerer's Attire"] = true, + ["Shadoweave"] = true, + ["Diviner's Garments"] = true, + ["Pillager's Garb"] = true, ["Bloodvine Garb"] = true, ["Netherweave Vestments"] = true, ["Imbued Netherweave"] = true, diff --git a/TableRegister/loottables.en.lua b/TableRegister/loottables.en.lua index 6b295f4..8d22eea 100644 --- a/TableRegister/loottables.en.lua +++ b/TableRegister/loottables.en.lua @@ -498,6 +498,10 @@ AtlasLoot_TableNames = { ["TheDarksoul"] = { AL["The Darksoul"], "AtlasLootCrafting" }, ["BloodsoulEmbrace"] = { AL["Bloodsoul Embrace"], "AtlasLootCrafting" }, --Crafted Sets - Tailoring + ["AugerersAttire"] = { AL["Augerer's Attire"], "AtlasLootCrafting" }, + ["ShadoweaveSet"] = { AL["Shadoweave"], "AtlasLootCrafting" }, + ["DivinersGarments"] = { AL["Diviner's Garments"], "AtlasLootCrafting" }, + ["PillagersGarb"] = { AL["Pillager's Garb"], "AtlasLootCrafting" }, ["BloodvineG"] = { AL["Bloodvine Garb"], "AtlasLootCrafting" }, --Crafted Sets - Leatherworking ["VolcanicArmor"] = { AL["Volcanic Armor"], "AtlasLootCrafting" }, From 3349996c3f20e7e8bdaacff1976a6b4f8f2cdd07 Mon Sep 17 00:00:00 2001 From: Lexie <6937574+Lexiebean@users.noreply.github.com> Date: Tue, 11 Jan 2022 21:42:02 +1100 Subject: [PATCH 2/2] Added patch 1.16 tailoring. Added Augerer's set Added Diviners's set Added Pillagers's set Added Shadoweave set to Crafted Sets > Tailoring Augerer's, Diviners's and Pillagers's sets are missing Orange/Yellow/Green/Grey skillup information. However they were also immediately grey for me when I trained them at level. So this may also be a server bug as well as missing information. --- Core/AtlasLoot.lua | 3 ++- Core/ButtonRegistry.lua | 20 ++++++++++++++++++++ Core/TextParsing.lua | 2 +- TableRegister/loottables.en.lua | 4 ++++ 4 files changed, 27 insertions(+), 2 deletions(-) diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua index a7e9350..ee0e58f 100644 --- a/Core/AtlasLoot.lua +++ b/Core/AtlasLoot.lua @@ -2395,7 +2395,7 @@ AtlasLoot_DewDropDown = { [AL["Crafted Sets"]] = { { (AL["Blacksmithing"]), "CraftSetBlacksmith", "Submenu" }, { (AL["Leatherworking"]), "CraftSetLeatherwork", "Submenu" }, - { (AL["Tailoring"]), "BloodvineG", "Table" }, + { (AL["Tailoring"]), "CraftSetTailoring", "Submenu" }, }, }, [13] = { { AL["Crafted Epic Weapons"], "CraftedWeapons1", "Table" }, }, @@ -2885,6 +2885,7 @@ AtlasLoot_DewDropDown_SubTables = { }, ["CraftSetTailoring"] = { { AL["Augerer's Attire"], "AugerersAttire" }, + { AL["Shadoweave"], "ShadoweaveSet" }, { AL["Diviner's Garments"], "DivinersGarments" }, { AL["Pillager's Garb"], "PillagersGarb" }, { AL["Bloodvine Garb"], "BloodvineG" }, diff --git a/Core/ButtonRegistry.lua b/Core/ButtonRegistry.lua index 918d957..7d358f8 100644 --- a/Core/ButtonRegistry.lua +++ b/Core/ButtonRegistry.lua @@ -873,6 +873,26 @@ AtlasLoot_ButtonRegistry = { Title = AL["Bloodsoul Embrace"]; Back_Page = "CRAFTSET"; Back_Title = AL["Crafted Sets"]; + }; + ["AugerersAttire"] = { + Title = AL["Augerer's Attire"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["ShadoweaveSet"] = { + Title = AL["Shadoweave"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["DivinersGarments"] = { + Title = AL["Diviner's Garments"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; + ["PillagersGarb"] = { + Title = AL["Pillager's Garb"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; }; ["BloodvineG"] = { Title = AL["Bloodvine Garb"]; diff --git a/Core/TextParsing.lua b/Core/TextParsing.lua index f442ca5..feb2d5d 100644 --- a/Core/TextParsing.lua +++ b/Core/TextParsing.lua @@ -317,7 +317,7 @@ function AtlasLoot_FixText(text) text = gsub(text, "#craftt2#", AL["Shadoweave"]); text = gsub(text, "#craftt3#", AL["Diviner's Garments"]); text = gsub(text, "#craftt4#", AL["Pillager's Garb"]); - text = gsub(text, "#craftt5##", AL["Bloodvine Garb"]); + text = gsub(text, "#craftt5#", AL["Bloodvine Garb"]); -- Leatherworking Crafted Sets text = gsub(text, "#craftlwl1#", AL["Volcanic Armor"]); diff --git a/TableRegister/loottables.en.lua b/TableRegister/loottables.en.lua index 8d22eea..9083d05 100644 --- a/TableRegister/loottables.en.lua +++ b/TableRegister/loottables.en.lua @@ -1404,6 +1404,10 @@ AtlasLoot_TableNamesBoss = { }, --Crafted Sets - Tailoring ["Crafted Sets - Tailoring"] = { + ["AugerersAttire"] = { AL["Augerer's Attire"], "AtlasLootCrafting" }, + ["ShadoweaveSet"] = { AL["Shadoweave"], "AtlasLootCrafting" }, + ["DivinersGarments"] = { AL["Diviner's Garments"], "AtlasLootCrafting" }, + ["PillagersGarb"] = { AL["Pillager's Garb"], "AtlasLootCrafting" }, ["BloodvineG"] = { AL["Bloodvine Garb"], "AtlasLootCrafting" }, }, --Crafted Sets - Leatherworking