diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2017-11-07 00:54:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 00:54:17 +0100 |
commit | 5cefcf7995283198df5d66fdf14c6aa0f8bb890e (patch) | |
tree | 4bd5de87f0a8ed62170711a626dc08f53bd4d9f5 | |
parent | d647e9aa359195aeecbefe7976d0691b6b16b151 (diff) |
DB/Creature: Add loot to some low level creatures
By Malcrom
-rw-r--r-- | sql/updates/world/master/2017_11_07_00_world.sql | 63 |
1 files changed, 63 insertions, 0 deletions
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 <Consort of the Sea Witch> (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'); |