diff options
| author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2023-06-30 19:34:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-30 19:34:58 +0200 |
| commit | 083ef35acc337521bb507b1e11fa506cf2b8f2c4 (patch) | |
| tree | 7d259802c004580681a4df8dde5ee8a9f20bd9d2 /sql | |
| parent | 39c137d7c0ac1b86a3a4647113e8e3a29a32b089 (diff) | |
Scripts/Spells: Implement Deeply Rooted Elements (#29111)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2023_06_30_00_world.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_06_30_00_world.sql b/sql/updates/world/master/2023_06_30_00_world.sql new file mode 100644 index 00000000000..7cc8e0eeecd --- /dev/null +++ b/sql/updates/world/master/2023_06_30_00_world.sql @@ -0,0 +1,9 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_sha_deeply_rooted_elements'; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(378270,'spell_sha_deeply_rooted_elements'); + +DELETE FROM `spell_proc` WHERE `SpellId`=378270; +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(378270,0x00,11,0x00000000,0x00001010,0x00000010,0x00000000,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0,0,0,0); -- Deeply Rooted Elements + +UPDATE `spell_proc` SET `SpellTypeMask`=0x5,`HitMask`=0x403 WHERE `SpellId`=378268; -- Windspeaker's Lava Resurgence |
