From 7536b9919f626b5d7fd5e8bb6d44ede40cc4980d Mon Sep 17 00:00:00 2001 From: neifion-00000000 <91289495+neifion-00000000@users.noreply.github.com> Date: Sat, 18 Jun 2022 08:48:25 -0500 Subject: [PATCH] (DB/loot): Addressed drop style to be proper for Fire Hardened Mail (#12060) Quest drops properly drop individual stacks in loot window. What's left of #12007 that isn't fixed by #12024 (Extra Notes section) --- .../pending_db_world/rev_1655244193594772800.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1655244193594772800.sql diff --git a/data/sql/updates/pending_db_world/rev_1655244193594772800.sql b/data/sql/updates/pending_db_world/rev_1655244193594772800.sql new file mode 100644 index 000000000..903850a8d --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1655244193594772800.sql @@ -0,0 +1,16 @@ +-- +DELETE FROM `creature_loot_template` WHERE item=6838; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(1111, 6838, 0, 100, 1, 1, 2, 1, 1, 'Leech Stalker - Scorched Spider Fang'), +(1111, 6838, 0, 50, 1, 1, 3, 1, 1, 'Leech Stalker - Scorched Spider Fang'), +(4040, 6838, 0, 100, 1, 1, 2, 1, 1, 'Cave Stalker - Scorched Spider Fang'), +(4040, 6838, 0, 50, 1, 1, 3, 1, 1, 'Cave Stalker - Scorched Spider Fang'); + +DELETE FROM `creature_loot_template` WHERE item=6839; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(4031, 6839, 0, 100, 1, 1, 2, 1, 1, 'Fledgling Chimaera - Charred Horn'), +(4031, 6839, 0, 34, 1, 1, 3, 1, 1, 'Fledgling Chimaera - Charred Horn'), +(4031, 6839, 0, 34, 1, 1, 4, 1, 1, 'Fledgling Chimaera - Charred Horn'), +(4032, 6839, 0, 100, 1, 1, 2, 1, 1, 'Young Chimaera - Charred Horn'), +(4032, 6839, 0, 34, 1, 1, 3, 1, 1, 'Young Chimaera - Charred Horn'), +(4032, 6839, 0, 34, 1, 1, 4, 1, 1, 'Young Chimaera - Charred Horn');