diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-03-20 15:05:08 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-03-20 15:05:08 +0100 |
commit | 0922b9d4d96415e6f6f20bf68b57617d2f8098c0 (patch) | |
tree | 9c385880fe1d074e019cb3fe349123b29b2052d5 /sql | |
parent | fa75f635669df6f0aab4abef074f9e8da4b5bf06 (diff) |
Scripts/Spells: Fixed shaman talents Doom Winds, Hailstorm, Fire Nova, Sundering, Flurry and Ashen Catalyst
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2025_03_20_00_world.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_03_20_00_world.sql b/sql/updates/world/master/2025_03_20_00_world.sql new file mode 100644 index 00000000000..b5cc91ee35f --- /dev/null +++ b/sql/updates/world/master/2025_03_20_00_world.sql @@ -0,0 +1,15 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_sha_doom_winds','spell_sha_hailstorm','spell_sha_fire_nova','spell_sha_flame_shock_fire_nova_enabler','spell_sha_ashen_catalyst'); +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(466772,'spell_sha_doom_winds'), +(334196,'spell_sha_hailstorm'), +(333974,'spell_sha_fire_nova'), +(466620,'spell_sha_flame_shock_fire_nova_enabler'), +(390370,'spell_sha_ashen_catalyst'); + +DELETE FROM `spell_proc` WHERE `SpellId` IN (334196,382888,382889,390370,390371); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(334196,0x00,11,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x0,0x4,0x0,0x8,0x0,0,0,0,1), -- Hailstorm +(382888,0x00,11,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x2,0x0,0x0,0,0,0,0), -- Flurry +(382889,0x00,0,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x0,0x0,0x25F7,0x0,0x0,0,0,0,0), -- Flurry +(390370,0x00,11,0x10000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0,0,0,0), -- Ashen Catalyst +(390371,0x00,11,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x0,0x4,0x0,0x8,0x0,0,0,0,1); -- Ashen Catalyst |