diff options
author | offl <offl@users.noreply.github.com> | 2021-01-29 14:09:53 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-03-06 18:17:42 +0100 |
commit | 899ef6b7b13a3b36b4fd536d30796d9d996d67e5 (patch) | |
tree | 4e0a5e9239609492910df7c82720db6393a831a6 | |
parent | 9b088287b30e4d0807acb8066868bdfb8195df80 (diff) |
DB/Creature: Update Arcatraz Sentinel
(cherry picked from commit 34e8988e200b51d3d7b9cbf724a754f6de9fe5ba)
-rw-r--r-- | sql/updates/world/master/2022_03_06_09_world_2021_01_29_01_world.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_03_06_09_world_2021_01_29_01_world.sql b/sql/updates/world/master/2022_03_06_09_world_2021_01_29_01_world.sql new file mode 100644 index 00000000000..9144c0b218a --- /dev/null +++ b/sql/updates/world/master/2022_03_06_09_world_2021_01_29_01_world.sql @@ -0,0 +1,11 @@ +-- Passive react state set in Feign Death aura script should be changed back to aggressive to allow aggro +-- This removes hacky attack start on LoS, they should not have fixed aggro range and can be skipped by high level characters +DELETE FROM `smart_scripts` WHERE `entryorguid` = 20869 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 +-- 46107 in normal / 62315 in heroic +(20869,0,0,0,25,0,100,0,0,0,0,0,0,142,40,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Arcatraz Sentinel - On Reset - Set Health 40%"), +(20869,0,1,0,25,0,100,0,0,0,0,0,0,8,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Arcatraz Sentinel - On Reset - Set Reactstate Aggressive"), +(20869,0,2,0,4,0,100,0,0,0,0,0,0,28,31261,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Arcatraz Sentinel - On Aggro - Remove Aura 'Permanent Feign Death (Root)'"), +(20869,0,3,0,2,0,100,1,0,10,0,0,0,11,36719,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Arcatraz Sentinel - Between 0-10% Health - Cast 'Explode' (No Repeat)"), +(20869,0,4,0,6,0,100,0,0,0,0,0,0,11,37394,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Arcatraz Sentinel - On Death - Cast 'Summon Destroyed Sentinel'"); +-- UPDATE `creature` SET `curhealth` = 115269 WHERE `id` = 20869; |