From 819c03e2388c70934b35b108556bbac44b2b7652 Mon Sep 17 00:00:00 2001 From: Jelle Meeus Date: Sat, 19 Jul 2025 19:08:11 +0200 Subject: [PATCH] fix(DB/Event): Scourge Invasion creature_template, quest mail, loot (#22501) --- .../pending_db_world/rev_1752706389703869030.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1752706389703869030.sql diff --git a/data/sql/updates/pending_db_world/rev_1752706389703869030.sql b/data/sql/updates/pending_db_world/rev_1752706389703869030.sql new file mode 100644 index 000000000..56525d3d5 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1752706389703869030.sql @@ -0,0 +1,14 @@ +-- +-- Bone Witch +UPDATE `creature_template` SET `minlevel` = 71, `maxlevel` = 71 WHERE (`entry` = 16380); + +UPDATE `quest_template_addon` SET `RewardMailDelay`=2*24*3600 WHERE `ID` IN (9295, 9299, 9300, 9301, 9302, 9304); + +-- Delete rare loot (lvl 60) and add epic loot (copied from Bone Witch - 16380) +DELETE FROM `creature_loot_template` WHERE (`Entry` = 16143) AND `Item` IN (23085, 23087, 22484, 23090, 23091, 23092, 23093); +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(16143, 22484, 0, 50.12, 0, 1, 0, 1, 1, 'Shadow of Doom - Necrotic Rune'), +(16143, 23090, 0, 20.68, 0, 1, 0, 1, 1, 'Shadow of Doom - Bracers of Undead Slaying'), +(16143, 23091, 0, 20.68, 0, 1, 0, 1, 1, 'Shadow of Doom - Bracers of Undead Cleansing'), +(16143, 23092, 0, 20.63, 0, 1, 0, 1, 1, 'Shadow of Doom - Wristguards of Undead Slaying'), +(16143, 23093, 0, 20.82, 0, 1, 0, 1, 1, 'Shadow of Doom - Wristwraps of Undead Slaying');