From c9595ed88b0d0dfbc4751e77318e4b9d9becb9e9 Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Wed, 9 Apr 2025 09:26:14 +0200 Subject: [PATCH] fix(DB/Loot) Add gold drop, Netherweave Cloth and a drop chance for Gan'arg Analyzer. (#21883) --- data/sql/updates/pending_db_world/Ganarg_Analyzer.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 data/sql/updates/pending_db_world/Ganarg_Analyzer.sql diff --git a/data/sql/updates/pending_db_world/Ganarg_Analyzer.sql b/data/sql/updates/pending_db_world/Ganarg_Analyzer.sql new file mode 100644 index 000000000..ac2446b48 --- /dev/null +++ b/data/sql/updates/pending_db_world/Ganarg_Analyzer.sql @@ -0,0 +1,9 @@ + +-- Add gold drop +UPDATE `creature_template` SET `mingold` = 173, `maxgold` = 231 WHERE (`entry` = 23386); + +-- Add Netherweave Cloth and change chance drop for Schematic: Field Repair Bot 110G +DELETE FROM `creature_loot_template` WHERE (`Entry` = 23386) AND (`Item` IN (34114, 21877)); +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(23386, 34114, 0, 5, 0, 1, 0, 1, 1, 'Gan\'arg Analyzer - Schematic: Field Repair Bot 110G'), +(23386, 21877, 0, 4, 0, 1, 0, 1, 3, 'Netherweave Cloth');