From 8dc0827b55668c293530fb48e0320d3af9cb1bed Mon Sep 17 00:00:00 2001 From: Mattia Date: Sun, 22 Sep 2024 13:57:20 +0200 Subject: [PATCH] fix(DB/Creature): [Loot] Unyielding mobs low drop of Runecloth (#19910) * fix(DB/Creature): chances items changed * fix: edit items chances and set GroupId --- .../pending_db_world/2024_09_08_00.sql | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 data/sql/updates/pending_db_world/2024_09_08_00.sql diff --git a/data/sql/updates/pending_db_world/2024_09_08_00.sql b/data/sql/updates/pending_db_world/2024_09_08_00.sql new file mode 100644 index 000000000..26dc39cf3 --- /dev/null +++ b/data/sql/updates/pending_db_world/2024_09_08_00.sql @@ -0,0 +1,40 @@ +-- Unyielding Footman + +-- Runecloth chance 50 (chance was 20) +UPDATE `creature_loot_template` +SET `Chance` = 50, `GroupId` = 1 +WHERE `Entry` = 16904 AND `Item` = 14047; + +-- Netherweave Cloth chance 25 (chance was 60) +UPDATE `creature_loot_template` +SET `Chance` = 25, `GroupId` = 1 +WHERE `Entry` = 16904 AND `Item` = 21877; + + + +-- Unyielding Sorcerer + +-- Runecloth chance 50 (chance was 20) +UPDATE `creature_loot_template` +SET `Chance` = 50, `GroupId` = 1 +WHERE `Entry` = 16905 AND `Item` = 14047; + +-- Netherweave Cloth chance 25 (chance was 60) +UPDATE `creature_loot_template` +SET `Chance` = 25, `GroupId` = 1 +WHERE `Entry` = 16905 AND `Item` = 21877; + + + +-- Unyielding Knight + +-- Runecloth chance 50 (chance was 20) +UPDATE `creature_loot_template` +SET `Chance` = 50, `GroupId` = 1 +WHERE `Entry` = 16906 AND `Item` = 14047; + +-- Netherweave Cloth chance 25 (chance was 60) +UPDATE `creature_loot_template` +SET `Chance` = 25, `GroupId` = 1 +WHERE `Entry` = 16906 AND `Item` = 21877; +