From ae777db3389a1731cb703fc47e1761a3f6110e6f Mon Sep 17 00:00:00 2001 From: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Date: Mon, 5 Aug 2024 20:41:32 -0400 Subject: [PATCH] fix(DB/Loot): Update uncommon drops for Ethereum prisoner creatures. (#19560) Init. --- data/sql/updates/pending_db_world/ethereum-redux.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/ethereum-redux.sql diff --git a/data/sql/updates/pending_db_world/ethereum-redux.sql b/data/sql/updates/pending_db_world/ethereum-redux.sql new file mode 100644 index 000000000..91310b2ed --- /dev/null +++ b/data/sql/updates/pending_db_world/ethereum-redux.sql @@ -0,0 +1,7 @@ +UPDATE `creature_loot_template` SET `Chance` = 50, `GroupId` = 2 WHERE `Entry` = 20783 AND `Reference` IN (14501, 24013); +UPDATE `creature_loot_template` SET `Chance` = 50, `GroupId` = 1 WHERE `Entry` IN (20785, 20786, 20788, 20789, 20790) AND `Reference` IN (14501, 24013); +UPDATE `creature_loot_template` SET `Chance` = 50, `GroupId` = 1 WHERE `Entry` = 20784 AND `Reference` = 14501; + +DELETE FROM `creature_loot_template` WHERE `Entry` = 20784 AND `Reference` = 24013; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(20784, 24013, 24013, 50, 0, 1, 1, 1, 1, 'Armbreaker Huffaz - (ReferenceTable)');