diff options
| author | offl <11556157+offl@users.noreply.github.com> | 2020-07-31 23:35:07 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-31 23:35:07 +0300 |
| commit | 7d7be8d5ac77f2d3a16f7b64aa04804041c37463 (patch) | |
| tree | 5f8337117279152270ba6fa3d1c7e38b73573897 | |
| parent | 6a9c63886e04830f52fe1e3e85fca9b97ac64e5e (diff) | |
DB/Creature: Deathwhisper Necrolyte
Closes #25048
| -rw-r--r-- | sql/updates/world/3.3.5/2020_07_31_16_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2020_07_31_16_world.sql b/sql/updates/world/3.3.5/2020_07_31_16_world.sql new file mode 100644 index 00000000000..620f5202804 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_07_31_16_world.sql @@ -0,0 +1,5 @@ +-- Removed useless event_flags 6, added CMC flag since he uses caster AI type https://youtu.be/tEAZeDdtK-E?t=89 +-- Interrupt Shadow Bolt so he can cast second spell +UPDATE `smart_scripts` SET `event_flags` = 0 WHERE `entryorguid` = 36788 AND `source_type` = 0; +UPDATE `smart_scripts` SET `event_param1` = 0, `event_param2` = 0, `action_param2` = 64, `comment` = "Deathwhisper Necrolyte - In Combat CMC - Cast 'Shadow Bolt'" WHERE `entryorguid` = 36788 AND `source_type` = 0 AND `id` = 0; +UPDATE `smart_scripts` SET `action_param2` = 1 WHERE `entryorguid` = 36788 AND `source_type` = 0 AND `id` = 1; |
