diff options
author | offl <11556157+offl@users.noreply.github.com> | 2025-08-10 12:54:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-10 11:54:09 +0200 |
commit | 54f42db98f311d5925f71211b4f55f4ac2b8b6ee (patch) | |
tree | fd5d86e240af9f66b39f10ada6a1df3dc33cd6af /sql | |
parent | 73bc61a4fdd09cf276235ad43c266169b56d4467 (diff) |
Scripts/AQ40: Rewrite Sartura (#31197)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/3.3.5/2025_08_10_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2025_08_10_00_world.sql b/sql/updates/world/3.3.5/2025_08_10_00_world.sql new file mode 100644 index 00000000000..2c8d752352f --- /dev/null +++ b/sql/updates/world/3.3.5/2025_08_10_00_world.sql @@ -0,0 +1,9 @@ +-- +DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_sartura_whirlwind'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(26084, 'spell_sartura_whirlwind'), +(26686, 'spell_sartura_whirlwind'); + +DELETE FROM `creature_text` WHERE `CreatureID` = 15516 AND `GroupID` = 3; +INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`) VALUES +(15516,3,0,"%s goes into a frenzy!",16,0,100,0,0,0,2384,0,"sartura EMOTE_FRENZY"); |