fix(DB/creature_loot): Removes Black Metal War Axe from RLT (#8447)

This commit is contained in:
syssneck
2021-10-17 19:41:59 +02:00
committed by GitHub
parent 74db38ea14
commit 644d7f5124

View File

@@ -0,0 +1,12 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1634045250480483175');
-- Deletes Black Metal War Axe from the RLT 24068
DELETE FROM `reference_loot_template` WHERE `Entry` = 24068 AND `Item` = 2015;
-- Adds Black Metal War Axe to Brain Eaters directly
DELETE FROM `creature_loot_template` WHERE `Entry` = 570 AND `Item` = 2015;
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(570, 2015, 0, 0.9, 0, 1, 0, 1, 1, '');
-- Reduces the drop chance of Nightcrawler to not exceed 100 % overall loot chance for Brain Eaters
UPDATE `creature_loot_template` SET `Chance` = 32.28 WHERE `Entry` = 570 AND `Item` = 6530;