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] 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