From d8b07784cedf93680529f02b157ce67b276c93f0 Mon Sep 17 00:00:00 2001 From: Naddley Date: Sat, 26 Apr 2025 19:29:49 +0200 Subject: DB/Drustvar: Implement Quest: "Harmfull if Swallowed" --- sql/updates/world/master/2025_04_26_01_world.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 sql/updates/world/master/2025_04_26_01_world.sql (limited to 'sql') diff --git a/sql/updates/world/master/2025_04_26_01_world.sql b/sql/updates/world/master/2025_04_26_01_world.sql new file mode 100644 index 00000000000..27efb60202e --- /dev/null +++ b/sql/updates/world/master/2025_04_26_01_world.sql @@ -0,0 +1,20 @@ +SET @REFERENCEID := 700003; + +-- Difficulty +UPDATE `creature_template_difficulty` SET `LootID` = 125452 WHERE `Entry` = 125452; + +-- Loot +DELETE FROM `creature_loot_template` WHERE `Entry` = 125452; +INSERT INTO `creature_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(125452, 0, 151935, 32, 1, 1, 0, 1, 1, 'Intact Venom Gland'), +(125452, 0, 154899, 27, 0, 1, 0, 1, 4, 'Thick Paleo Steak'), +(125452, 1, 700000, 6, 0, 1, 0, 1, 1, 'Reference World drop greens loot'), +(125452, 1, (@REFERENCEID+0), 100, 0, 1, 0, 1, 1, 'Reference World drop junk loot'); + +-- Reference Loot table junk +DELETE FROM `reference_loot_template` WHERE `Entry` = @REFERENCEID+0; +INSERT INTO `reference_loot_template` (`Entry`, `ItemType`, `Item`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(@REFERENCEID+0, 0, 155609, 0, 0, 1, 1, 1, 1, 'Springy Eyeball'), +(@REFERENCEID+0, 0, 158859, 0, 0, 1, 1, 1, 1, 'Jagged Fang'), +(@REFERENCEID+0, 0, 158849, 0, 0, 1, 1, 1, 1, 'Sawtooth Jawbone'), +(@REFERENCEID+0, 0, 155618, 0, 0, 1, 1, 1, 1, 'Discarded Molting'); -- cgit v1.2.3