fix(DB/loot): Removes various overlevelled gear drops (#6103)

This commit is contained in:
Azcobu
2021-06-05 00:55:35 +09:30
committed by GitHub
parent 07f4907ea7
commit 1da7a483bd

View File

@@ -0,0 +1,19 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622268692168409196');
-- Cave Creeper -> removes Lefty's Brass Knuckle
DELETE FROM `creature_loot_template` WHERE `Entry` = 8933 AND `Item` = 22317;
-- Borer Beetle -> removes Shroud of Arcane Mastery
DELETE FROM `creature_loot_template` WHERE `Entry` = 8932 AND `Item` = 22330;
-- Dark Screecher -> removes Lefty's Brass Knuckle, Malgen's Long Bow
DELETE FROM `creature_loot_template` WHERE `Entry` = 8927 AND `Item` IN (22317, 22318);
-- Deep Stinger -> removes Ironweave Mantle
DELETE FROM `creature_loot_template` WHERE `Entry` = 8926 AND `Item` = 22305;
-- Dredge Worm -> removes Malgen's Long Bow
DELETE FROM `creature_loot_template` WHERE `Entry` = 8925 AND `Item` = 22318;
-- Unfettered Spirit -> removes Steelclaw Reaver
DELETE FROM `creature_loot_template` WHERE `Entry` = 4308 AND `Item` = 7761;
-- Tink Sprocketwhistle -> removes Gnomeregan Amulet
DELETE FROM `creature_loot_template` WHERE `Entry` = 9676 AND `Item` = 10299;
-- Wailing Death, Scarlet Spellbinder, Stitched Horror, Eyeless Watcher, Chromatic Whelp,
-- Risen Aberration, Stonelash Flayer, Desert Rumbler, Carrion Swarmer -> removes Idol of Brutality
DELETE FROM `creature_loot_template` WHERE `Entry` IN (1804, 4494, 8543, 8539, 10442, 10485, 11737, 11746, 13160) AND `Item` = 23198;