diff options
author | offl <11556157+offl@users.noreply.github.com> | 2025-07-28 21:28:32 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-28 20:28:32 +0200 |
commit | b75d047a33597a9f576632d07a4f3ba2546c5e6e (patch) | |
tree | 64b0fe6bbe849a08e069a4cf213ebea496d7bdf1 /sql | |
parent | 994b1df1158a5f4a6c045f8c5b470be04b7ac46f (diff) |
Scripts/Spells: Implement Cataclysm Breath & Chaos Breath & Death Count (#31172)
* Implement Cataclysm Breath (forces creature to cast 4 of 8 random spells)
* Implement Chaos Breath (forces creature to cast 3 of 8 random spells)
* Implement Death Count remover spell (replace SAI implementation with spell script)
Closes #30320
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2025_07_28_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2025_07_28_00_world.sql b/sql/updates/world/3.3.5/2025_07_28_00_world.sql new file mode 100644 index 00000000000..2232a70a1d2 --- /dev/null +++ b/sql/updates/world/3.3.5/2025_07_28_00_world.sql @@ -0,0 +1,9 @@ +-- +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_sunwell_plateau_cataclysm_breath', 'spell_arcatraz_chaos_breath', 'spell_arcatraz_death_count'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(46292, 'spell_sunwell_plateau_cataclysm_breath'), +(36677, 'spell_arcatraz_chaos_breath'), +(36660, 'spell_arcatraz_death_count'), +(38820, 'spell_arcatraz_death_count'); + +DELETE FROM `smart_scripts` WHERE `entryorguid` = 20867 AND `source_type` = 0 AND `id` IN (8,9); |