diff options
author | ariel- <ariel-@users.noreply.github.com> | 2018-02-16 00:54:03 -0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-06-22 13:15:11 +0200 |
commit | d36f8bb7547c5ebef067f834c79754c57ff66a34 (patch) | |
tree | 0199a183a388420186bdc2157ae3d4e781731c9b /sql | |
parent | 1fe817a9957bdc62d1e9a0b33f4615746831a6a7 (diff) |
Core/Scripts: implemented Fungal Decay & Tail Sting
Refs #18542
(cherry picked from commit 7dc78d8e3f437ad7f3ad40bf1ef6801ac1ed5fc2)
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/world/master/2021_06_22_02_world_2018_02_16_02_world.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/master/2021_06_22_02_world_2018_02_16_02_world.sql b/sql/updates/world/master/2021_06_22_02_world_2018_02_16_02_world.sql new file mode 100644 index 00000000000..ac6733d1059 --- /dev/null +++ b/sql/updates/world/master/2021_06_22_02_world_2018_02_16_02_world.sql @@ -0,0 +1,8 @@ +DELETE FROM `spell_proc` WHERE `SpellId` IN (32065, 36659); +INSERT INTO `spell_proc` (`SpellId`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`, `ProcsPerMinute`, `Chance`, `Cooldown`, `Charges`) VALUES +(32065, 0x0, 0, 0x00000000, 0x00000000, 0x00000000, 0x80000, 0x1, 0x0, 0x0, 0x0, 0, 0, 0, 0), +(36659, 0x0, 0, 0x00000000, 0x00000000, 0x00000000, 0x80000, 0x1, 0x0, 0x0, 0x0, 0, 0, 0, 0); +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_gen_decay_over_time_fungal_decay','spell_gen_decay_over_time_tail_sting'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(32065, 'spell_gen_decay_over_time_fungal_decay'), +(36659, 'spell_gen_decay_over_time_tail_sting'); |