From d7bbc08730f43e0ebc69df46d0e3f1ac1e343c0b Mon Sep 17 00:00:00 2001 From: RDW Date: Tue, 29 Oct 2024 05:59:59 +0100 Subject: [PATCH 1/2] DB: Updated the drop rate of Malfunctioning Mechsuit A drop rate of 100% is clearly bogus. --- DB/Toys/TheWarWithin.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DB/Toys/TheWarWithin.lua b/DB/Toys/TheWarWithin.lua index dd65d937..703d2a25 100644 --- a/DB/Toys/TheWarWithin.lua +++ b/DB/Toys/TheWarWithin.lua @@ -26,7 +26,7 @@ local twwToysAndItems = { npcs = { 219440, 213119 }, itemId = 226683, spellId = 442358, - chance = 1, -- No data available + chance = 200, groupSize = 5, equalOdds = true, instanceDifficulties = { [CONSTANTS.INSTANCE_DIFFICULTIES.MYTHIC_DUNGEON] = true }, From 9d093bce67986049911cc0fde4bf646946a03730 Mon Sep 17 00:00:00 2001 From: RDW Date: Tue, 29 Oct 2024 06:01:14 +0100 Subject: [PATCH 2/2] DB: Enabled kill statistics for Malfunctioning Mechsuit This should allow Rarity to detect M+ attempts (untested). --- DB/Toys/TheWarWithin.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/DB/Toys/TheWarWithin.lua b/DB/Toys/TheWarWithin.lua index 703d2a25..0769f022 100644 --- a/DB/Toys/TheWarWithin.lua +++ b/DB/Toys/TheWarWithin.lua @@ -21,9 +21,11 @@ local twwToysAndItems = { ["Malfunctioning Mechsuit"] = { cat = CONSTANTS.ITEM_CATEGORIES.TWW, type = CONSTANTS.ITEM_TYPES.ITEM, - method = CONSTANTS.DETECTION_METHODS.NPC, + method = CONSTANTS.DETECTION_METHODS.BOSS, name = L["Malfunctioning Mechsuit"], - npcs = { 219440, 213119 }, + npcs = { 99999 }, + tooltipNpcs = { 219440, 213119 }, + statisticId = { 40722 }, itemId = 226683, spellId = 442358, chance = 200,