aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroffl <11556157+offl@users.noreply.github.com>2020-07-31 23:39:16 +0300
committerGitHub <noreply@github.com>2020-07-31 23:39:16 +0300
commitd12076705559558495d8246ece75aa077cb0de3c (patch)
treef873fca48821f2eab7ada3724a1465165fdbe994
parent509c24ab53a97999ff5982e858935cd86199c527 (diff)
DB/Creature: Add missing green items to Doomwalker & Badge of Justice to Doomwalker & Doom Lord Kazzak
Closes #25058
-rw-r--r--sql/updates/world/3.3.5/2020_07_31_18_world.sql16
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_07_31_18_world.sql b/sql/updates/world/3.3.5/2020_07_31_18_world.sql
new file mode 100644
index 00000000000..f685a5cb4f2
--- /dev/null
+++ b/sql/updates/world/3.3.5/2020_07_31_18_world.sql
@@ -0,0 +1,16 @@
+-- Add missing green items to Doomwalker & Badge of Justice to Doomwalker & Doom Lord Kazzak
+-- view-source:http://web.archive.org/web/20100413180103/www.wowhead.com/npc=17711
+-- view-source:http://web.archive.org/web/20100415005607/www.wowhead.com/npc=18728
+-- https://youtu.be/MMgdY4FB-aM?t=418
+-- https://youtu.be/v4tXW9FG1kA?t=181
+-- https://github.com/cmangos/tbc-db/commit/d10a189755188633a6c9c3a2fc45d8d2729dfee1#diff-b58a7adfa3834b2bdb9f236ea7e979c1R1-R13
+UPDATE `creature_loot_template` SET `GroupId` = 0 WHERE `Entry` = 17711 AND `Item` = 34080 AND `Reference` = 34080;
+UPDATE `creature_loot_template` SET `Item` = 26043 WHERE `Entry` = 18728 AND `Reference` = 26043;
+UPDATE `creature_loot_template` SET `Item` = 4113 WHERE `Entry` = 18728 AND `Reference` = 4113;
+
+DELETE FROM `creature_loot_template` WHERE `Entry` IN (17711,18728) AND `Item` = 29434;
+DELETE FROM `creature_loot_template` WHERE `Entry` = 17711 AND `Item` = 4113 AND `Reference` = 4113;
+INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`) VALUES
+(17711,29434,0,100,0,1,0,2,2),
+(18728,29434,0,100,0,1,0,2,2),
+(17711,4113,4113,5,0,1,0,1,1);