diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-03-25 22:57:14 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-03-25 22:57:14 +0100 |
commit | 8947a048131032c2aa1041b2421a7e3b336c7258 (patch) | |
tree | bf9d44f52e8688ef79b1cac3c491d52b5adba5d0 /sql | |
parent | 22ef6ad94cddbc2a062fb3e926c797669a77ddaa (diff) |
Scripts/Spells: Fixed shaman talents Converging Storms, Ice Strike (maelstrom gain), Molten Thunder, Nature's Guardian, Swirling Maelstrom, Unrelenting Storms
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2025_03_25_01_world.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_03_25_01_world.sql b/sql/updates/world/master/2025_03_25_01_world.sql new file mode 100644 index 00000000000..f553e974101 --- /dev/null +++ b/sql/updates/world/master/2025_03_25_01_world.sql @@ -0,0 +1,16 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_sha_artifact_gathering_storms','spell_sha_unrelenting_storms','spell_sha_converging_storms','spell_sha_converging_storms_buff','spell_sha_ice_strike','spell_sha_swirling_maelstrom','spell_sha_molten_thunder','spell_sha_molten_thunder_sundering'); +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(187874,'spell_sha_artifact_gathering_storms'), +(187874,'spell_sha_unrelenting_storms'), +(187874,'spell_sha_converging_storms'), +(198300,'spell_sha_converging_storms_buff'), +(342240,'spell_sha_ice_strike'), +(384359,'spell_sha_swirling_maelstrom'), +(469344,'spell_sha_molten_thunder'), +(197214,'spell_sha_molten_thunder_sundering'); + +DELETE FROM `spell_proc` WHERE `SpellId` IN (384359,198300,469346); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(384359,0x00,11,0x88000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0,0,0,0), -- Swirling Maelstrom +(198300,0x00,11,0x00000000,0x00000000,0x00001000,0x00000000,0x0,0x0,0x0,0x4,0x0,0x10,0x0,0,0,0,1), -- Converging Storms +(469346,0x00,11,0x00000000,0x00000000,0x00000000,0x04000000,0x1010,0x0,0x0,0x2,0x0,0x0,0x0,0,0,0,0); -- Molten Thunder |