fix(DB/Loot): Strange Engine Part should be fishable (#17520)

* fix(DB/Loot): Strange Engine Part should be fishable

* repeatable + correct gold reward
This commit is contained in:
avarishd
2023-10-19 01:14:30 +03:00
committed by GitHub
parent ed9f359328
commit 45bfef1962

View File

@@ -0,0 +1,8 @@
-- Strange Engine Part
DELETE FROM `gameobject_loot_template` WHERE `Entry` = 19605 AND `Item` = 34469;
INSERT INTO `gameobject_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(19605, 34469, 0, 0.5, 0, 1, 1, 1, 1, 'Strange Engine Part');
-- Make it repeatable + correct gold reward
UPDATE `quest_template_addon` SET `SpecialFlags` = `SpecialFlags`|1 WHERE (`ID` = 11531);
UPDATE `quest_template` SET `RewardBonusMoney` = 75900 WHERE (`ID` = 11531);