diff options
author | offl <11556157+offl@users.noreply.github.com> | 2025-08-05 19:52:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-05 18:52:48 +0200 |
commit | cac0188e4974b9013e0eda09f4c7352f4d3b5e6e (patch) | |
tree | 102347fe1ab07a7f4986057854b570fb12f2ba15 /sql | |
parent | f22afbca056f502c94f65b28846c2bcd7c57eb02 (diff) |
Scripts/Spells: Implement Itch (#31193)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2025_08_05_00_world.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2025_08_05_00_world.sql b/sql/updates/world/3.3.5/2025_08_05_00_world.sql new file mode 100644 index 00000000000..e7a517d19c7 --- /dev/null +++ b/sql/updates/world/3.3.5/2025_08_05_00_world.sql @@ -0,0 +1,11 @@ +-- +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_ruins_of_ahnqiraj_itch', 'spell_temple_of_ahnqiraj_itch'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(25185, 'spell_ruins_of_ahnqiraj_itch'), +(26077, 'spell_temple_of_ahnqiraj_itch'); + +UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 15325; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (15325,15236) 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`,`event_param5`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_param4`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(15325,0,0,0,0,0,100,0,5000,10000,10000,15000,0,11,25185,0,0,0,0,0,2,0,0,0,0,0,0,0,0,"Hive'Zara Wasp - In Combat - Cast 'Itch'"), +(15236,0,0,0,0,0,100,0,5000,10000,10000,15000,0,11,26077,0,0,0,0,0,2,0,0,0,0,0,0,0,0,"Vekniss Wasp - In Combat - Cast 'Itch'"); |