From 5cefcf7995283198df5d66fdf14c6aa0f8bb890e Mon Sep 17 00:00:00 2001 From: Aokromes Date: Tue, 7 Nov 2017 00:54:17 +0100 Subject: DB/Creature: Add loot to some low level creatures By Malcrom --- sql/updates/world/master/2017_11_07_00_world.sql | 63 ++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 sql/updates/world/master/2017_11_07_00_world.sql (limited to 'sql') diff --git a/sql/updates/world/master/2017_11_07_00_world.sql b/sql/updates/world/master/2017_11_07_00_world.sql new file mode 100644 index 00000000000..aa1d8b86edd --- /dev/null +++ b/sql/updates/world/master/2017_11_07_00_world.sql @@ -0,0 +1,63 @@ + -- Zar'jira +UPDATE `creature_template` SET `minlevel`=5,`maxlevel`=5 WHERE `entry` IN (38306); + +-- Wildmane Cat (1) +SET @ENTRY := 38046; +UPDATE `creature_template` SET `lootid`=@ENTRY, `mingold`=0, `maxgold`=0 WHERE `entry`=@ENTRY; +DELETE FROM `creature_loot_template` WHERE `Entry`=@ENTRY; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(@ENTRY,50222,0,100,1,1,0,1,1, 'Wildmane Cat Pelt'), +(@ENTRY,62391,0,95,0,1,1,1,1, 'Cat Hair'), +(@ENTRY,4813,0,5,0,1,1,1,1, 'Small Leather Collar'); + +-- Docile Island Boar (2) +SET @ENTRY := 38141; +UPDATE `creature_template` SET `lootid`=@ENTRY, `mingold`=0, `maxgold`=0 WHERE `entry`=@ENTRY; +DELETE FROM `creature_loot_template` WHERE `Entry`=@ENTRY; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(@ENTRY,117,0,100,0,1,1,1,1, 'Tough Jerky'); + +-- Pygmy Surf Crawler (2-3) +SET @ENTRY := 39004; +UPDATE `creature_template` SET `lootid`=@ENTRY, `mingold`=0, `maxgold`=0 WHERE `entry`=@ENTRY; +DELETE FROM `creature_loot_template` WHERE `Entry`=@ENTRY; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(@ENTRY,52080,0,100,1,1,0,1,1, 'Fresh Crawler Meat'), +(@ENTRY,62514,0,100,0,1,1,1,1, 'Cracked Pincer'); + +-- Bloodtalon Raptor (2-3) +SET @ENTRY := 37956; +UPDATE `creature_template` SET `lootid`=@ENTRY, `mingold`=0, `maxgold`=0 WHERE `entry`=@ENTRY; +DELETE FROM `creature_loot_template` WHERE `Entry`=@ENTRY; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(@ENTRY,62512,0,90,0,1,1,1,1, 'Small Animal Bone'), +(@ENTRY,4877,0,10,0,1,1,1,1, 'Stone Arrowhead'); + +-- Corrupted Bloodtalon (2-3) +SET @ENTRY := 37961; +UPDATE `creature_template` SET `lootid`=@ENTRY, `mingold`=0, `maxgold`=0 WHERE `entry`=@ENTRY; +DELETE FROM `creature_loot_template` WHERE `Entry`=@ENTRY; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(@ENTRY,62512,0,90,0,1,1,1,1, 'Small Animal Bone'), +(@ENTRY,4877,0,10,0,1,1,1,1, 'Stone Arrowhead'); + +-- Naj'tess (3) +SET @ENTRY := 50018; +UPDATE `creature_template` SET `lootid`=@ENTRY, `mingold`=1, `maxgold`=5 WHERE `entry`=@ENTRY; +DELETE FROM `creature_loot_template` WHERE `Entry`=@ENTRY; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(@ENTRY,62512,0,100,1,1,0,1,1, 'Naj''tess'' Orb of Corruption'); + +-- Spitescale Wavethrasher (4) +SET @ENTRY := 38300; +UPDATE `creature_template` SET `lootid`=@ENTRY, `mingold`=1, `maxgold`=5 WHERE `entry`=@ENTRY; +DELETE FROM `creature_loot_template` WHERE `Entry`=@ENTRY; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(@ENTRY,5523,0,75,0,1,1,1,1, 'Small Barnacled Clam'); + +-- Spitescale Siren (4) +SET @ENTRY := 38301; +UPDATE `creature_template` SET `lootid`=@ENTRY, `mingold`=1, `maxgold`=5 WHERE `entry`=@ENTRY; +DELETE FROM `creature_loot_template` WHERE `Entry`=@ENTRY; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(@ENTRY,5523,0,75,0,1,1,1,1, 'Small Barnacled Clam'); -- cgit v1.2.3