fix(DB/Creature): [Loot] Unyielding mobs low drop of Runecloth (#19910)

* fix(DB/Creature): chances items changed

* fix: edit items chances and set GroupId
This commit is contained in:
Mattia
2024-09-22 13:57:20 +02:00
committed by GitHub
parent bb0d292e1c
commit 8dc0827b55

View File

@@ -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;