fix(DB/loot): Shiver Blade drop (#5944)

This commit is contained in:
anguaive
2021-05-25 16:24:53 +02:00
committed by GitHub
parent d16605d4c2
commit 368918c5c9

View File

@@ -0,0 +1,10 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1621414710329639831');
SET @SHIVER_BLADE := 5182;
SET @GESHARAHAN := 3398;
DELETE FROM `reference_loot_template` where `Item` = @SHIVER_BLADE;
DELETE FROM `creature_loot_template` WHERE `Entry` = @GESHARAHAN AND `Item` = @SHIVER_BLADE;
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(@GESHARAHAN, @SHIVER_BLADE, 0, 72.12, 0, 1, 0, 1, 1, "Gesharahan - Shiver Blade");