diff options
author | Discover- <amort11@hotmail.com> | 2011-12-25 00:54:25 +0100 |
---|---|---|
committer | Discover- <amort11@hotmail.com> | 2011-12-25 00:54:25 +0100 |
commit | 462edabca4bc490baf539465f2b70658e6a3e6ce (patch) | |
tree | 18156485b47791baaf8358f909e4e7dee04f52a2 | |
parent | 49e10f992a7e73e4afcc627cfbdf0dc3db28ef1a (diff) |
DB/Quests: Script quest Corrosion Prevention
Closes #3139.
-rw-r--r-- | sql/updates/world/2011_12_25_01_world_sai.sql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sql/updates/world/2011_12_25_01_world_sai.sql b/sql/updates/world/2011_12_25_01_world_sai.sql new file mode 100644 index 00000000000..8ae439ffe67 --- /dev/null +++ b/sql/updates/world/2011_12_25_01_world_sai.sql @@ -0,0 +1,19 @@ +-- Acidic Swamp Ooze SAI +SET @ENTRY := 4393; +SET @SPELL_END_CHANNEL := 42485; +SET @SPELL_BUBBLING_OOZE := 43135; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY; +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,8,0,100,0,@SPELL_END_CHANNEL,0,0,0,33,23797,0,0,0,0,0,7,0,0,0,0,0,0,0,"Acidic Swamp Ooze - On Spellhit - Quest Credit"), +(@ENTRY,0,1,0,2,0,100,1,0,15,0,0,11,@SPELL_BUBBLING_OOZE,0,0,0,0,0,2,0,0,0,0,0,0,0,"Acidic Swamp Ooze - At 15% HP - Cast Bubbling Ooze"); + +-- Bubbling Swamp Ooze SAI +SET @ENTRY := 4394; +SET @SPELL_END_CHANNEL := 42485; +SET @SPELL_BUBBLING_OOZE := 43135; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY; +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,8,0,100,0,@SPELL_END_CHANNEL,0,0,0,33,23797,0,0,0,0,0,7,0,0,0,0,0,0,0,"Bubbling Swamp Ooze - On Spellhit - Quest Credit"), +(@ENTRY,0,1,0,2,0,100,1,0,15,0,0,11,@SPELL_BUBBLING_OOZE,0,0,0,0,0,2,0,0,0,0,0,0,0,"Bubbling Swamp Ooze - At 15% HP - Cast Bubbling Ooze"); |