diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2017-06-01 10:10:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-01 10:10:08 +0200 |
commit | 737b73645bfacbda96626b793db15114428de73c (patch) | |
tree | 6b709785068897b8387c2a3ffad560fb0f5cdfe7 | |
parent | f6b0f58760f420260760b1efa454ebc30fda81aa (diff) |
DB/Creature: Gug Fatcandle SAI
By Malcrom
-rw-r--r-- | sql/updates/world/master/2017_06_01_01_world.sql | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/world/master/2017_06_01_01_world.sql b/sql/updates/world/master/2017_06_01_01_world.sql new file mode 100644 index 00000000000..33e75c590cc --- /dev/null +++ b/sql/updates/world/master/2017_06_01_01_world.sql @@ -0,0 +1,17 @@ +-- Gug Fatcandle SAI +SET @ENTRY := 62; +UPDATE `creature_template` SET `mingold`=2, `maxgold`=7, `lootid`=62,`ExperienceModifier`=7.5, `AIName`="SmartAI" WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,1,0,100,0,0,0,10000,10000,11,12544,0,0,0,0,0,1,0,0,0,0,0,0,0,"Gug Fatcandle - OOC - Cast 'Frost Armor'"), +(@ENTRY,0,1,0,0,0,100,0,0,0,3600,4000,11,20793,64,0,0,0,0,2,0,0,0,0,0,0,0,"Gug Fatcandle - In Combat CMC - Cast 'Fireball'"); + +UPDATE `creature` SET `spawntimesecs`=1800 WHERE `guid`=279748; +UPDATE `creature_template` SET `mingold`=1, `maxgold`=4, `lootid`=62,`ExperienceModifier`=7.5 WHERE `entry`=62; +UPDATE `creature_template_addon` SET `auras`='' WHERE `entry`=62; + +DELETE FROM `creature_loot_template` WHERE `Entry`=62; +INSERT INTO `creature_loot_template` (`Entry`,`Item`,`Reference`,`Chance`,`QuestRequired`,`LootMode`,`GroupId`,`MinCount`,`MaxCount`,`Comment`) VALUES +(62,56147,0,100,0,1,0,1,1, 'Fatcandle Bag'), +(62,117,0,20,0,1,1,1,1, 'Tough Jerky'), +(62,159,0,20,0,1,2,1,1, 'Refreshing Spring Water'); |