From c2c2b32b57a7a8355a089bbbdbb1100b66a33637 Mon Sep 17 00:00:00 2001 From: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Date: Tue, 16 Jul 2024 12:28:06 -0400 Subject: [PATCH] fix(DB/Loot): Add loot for Tenris Mirkblood event boss. (#19410) Init. --- data/sql/updates/pending_db_world/mirkblood-loot.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 data/sql/updates/pending_db_world/mirkblood-loot.sql diff --git a/data/sql/updates/pending_db_world/mirkblood-loot.sql b/data/sql/updates/pending_db_world/mirkblood-loot.sql new file mode 100644 index 000000000..563249682 --- /dev/null +++ b/data/sql/updates/pending_db_world/mirkblood-loot.sql @@ -0,0 +1,8 @@ +UPDATE `creature_template` SET `lootid` = 28194, `mingold` = 350000, `maxgold` = 450000 WHERE `entry` = 28194; + +DELETE FROM `creature_loot_template` WHERE `Entry` = 28194; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(28194, 39769, 0, 100, 0, 1, 0, 1, 1, 'Prince Tenris Mirkblood - Arcanite Ripper'), +(28194, 38658, 0, 100, 0, 1, 0, 1, 1, 'Prince Tenris Mirkblood - Vampiric Batling'), +(28194, 29434, 0, 100, 0, 1, 0, 2, 2, 'Prince Tenris Mirkblood - Badge of Justice'), +(28194, 4113, 4113, 100, 0, 1, 0, 1, 1, 'Prince Tenris Mirkblood - (ReferenceTable)');