fix(DB/loot): normalise Tunnel Rat Ear drop rates (#6375)
This commit is contained in:
parent
64aa901c2a
commit
002ff53fe2
1 changed files with 9 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623848244419594409');
|
||||
|
||||
-- Changes Tunnel Rat Ear drop rate to 38% for Geomancers, Diggers and Surveyors
|
||||
UPDATE `creature_loot_template` SET `Chance` = 38 WHERE `entry` IN (1174, 1175, 1177) AND `item` = 3110;
|
||||
|
||||
-- Adds Tunnel Rat Ears to Scouts with 38% drop rate
|
||||
DELETE FROM `creature_loot_template` WHERE `Entry` = 1173 AND `Item` = 3110;
|
||||
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
||||
(1173, 3110, 0, 38, 1, 1, 0, 1, 1, 'Quest drop for Rat Catching');
|
||||
Loading…
Add table
Add a link
Reference in a new issue