mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 08:28:32 +01:00
DB/Items: added loot for Satchel of Freshly-Picked Herbs
This commit is contained in:
14
sql/updates/world/4.3.4/2020_07_07_00_world.sql
Normal file
14
sql/updates/world/4.3.4/2020_07_07_00_world.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
SET @ENTRY := 68813;
|
||||
DELETE FROM `item_loot_template` WHERE `Entry`= @ENTRY;
|
||||
DELETE FROM `reference_loot_template` WHERE `Entry`= @ENTRY * 10;
|
||||
INSERT INTO `reference_loot_template` (`Entry`, `Reference`, `Item`, `Chance`, `GroupId`, `MinCount`, `MaxCount`) VALUES
|
||||
-- 5 herbs per roll
|
||||
(@ENTRY * 10, 0, 52984, 0, 1, 5, 5),
|
||||
(@ENTRY * 10, 0, 52986, 0, 1, 5, 5),
|
||||
(@ENTRY * 10, 0, 52983, 0, 1, 5, 5),
|
||||
(@ENTRY * 10, 0, 52988, 0, 1, 5, 5),
|
||||
(@ENTRY * 10, 0, 52987, 0, 1, 5, 5),
|
||||
(@ENTRY * 10, 0, 52985, 0, 1, 5, 5);
|
||||
|
||||
INSERT INTO `item_loot_template` (`Entry`, `Reference`, `Item`, `Chance`, `GroupId`, `MinCount`, `MaxCount`) VALUES
|
||||
(@ENTRY, @ENTRY * 10, @ENTRY * 10, 100, 0, 4, 4);
|
||||
Reference in New Issue
Block a user