From 16ce5d7ca5d898a9cd4b445b8bb587929dd98828 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Tue, 7 Jul 2020 22:13:31 +0200 Subject: [PATCH] DB/TotT: added loot for Lady Naz'jar and Commander Ulthok --- .../world/4.3.4/2020_07_07_03_world.sql | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 sql/updates/world/4.3.4/2020_07_07_03_world.sql diff --git a/sql/updates/world/4.3.4/2020_07_07_03_world.sql b/sql/updates/world/4.3.4/2020_07_07_03_world.sql new file mode 100644 index 00000000000..22e58a47935 --- /dev/null +++ b/sql/updates/world/4.3.4/2020_07_07_03_world.sql @@ -0,0 +1,31 @@ +-- Lady Naz'jar +DELETE FROM `creature_loot_template` WHERE `Entry` IN (40586, 49080); +UPDATE `creature_template` SET `lootid`= `entry` WHERE `entry` IN (40586, 49080); +INSERT INTO `creature_loot_template` (`Entry`, `Reference`, `Item`, `Chance`, `QuestRequired`, `GroupId`, `MinCount`, `MaxCount`) VALUES +(40586, 0, 55202, 100, 0, 1, 1, 1), +(40586, 0, 55203, 100, 0, 1, 1, 1), +(40586, 0, 55195, 100, 0, 1, 1, 1), +(40586, 0, 55198, 100, 0, 1, 1, 1), +(40586, 0, 55201, 100, 0, 1, 1, 1), +-- +(49080, 0, 56269, 100, 0, 1, 1, 1), +(49080, 0, 56266, 100, 0, 1, 1, 1), +(49080, 0, 56270, 100, 0, 1, 1, 1), +(49080, 0, 56268, 100, 0, 1, 1, 1), +(49080, 0, 56267, 100, 0, 1, 1, 1); + +-- Commander Ulthok +DELETE FROM `creature_loot_template` WHERE `Entry` IN (40765, 49064); +UPDATE `creature_template` SET `lootid`= `entry` WHERE `entry` IN (40765, 49064); +INSERT INTO `creature_loot_template` (`Entry`, `Reference`, `Item`, `Chance`, `QuestRequired`, `GroupId`, `MinCount`, `MaxCount`) VALUES +(40765, 0, 55228, 100, 0, 1, 1, 1), +(40765, 0, 55204, 100, 0, 1, 1, 1), +(40765, 0, 55206, 100, 0, 1, 1, 1), +(40765, 0, 55205, 100, 0, 1, 1, 1), +(40765, 0, 55207, 100, 0, 1, 1, 1), +-- +(49064, 0, 56273, 100, 0, 1, 1, 1), +(49064, 0, 56271, 100, 0, 1, 1, 1), +(49064, 0, 56274, 100, 0, 1, 1, 1), +(49064, 0, 56272, 100, 0, 1, 1, 1), +(49064, 0, 56275, 100, 0, 1, 1, 1);