aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorAqua Deus <95978183+aquadeus@users.noreply.github.com>2022-02-07 00:20:01 +0100
committerGitHub <noreply@github.com>2022-02-07 00:20:01 +0100
commitd5bb799f27f2604741af2de8db07b2871d37b378 (patch)
tree56146c95d783810a4f67801e812ff89fb92ea0a2 /sql
parenta8cace4c7086c65b760cca38c922410b7400130c (diff)
Scripts/Spells: Fix shaman Undulation talent (#27695)
Co-authored-by: Modox <moardox@gmail.com> Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2022_02_06_02_world_shaman_undulation.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_02_06_02_world_shaman_undulation.sql b/sql/updates/world/master/2022_02_06_02_world_shaman_undulation.sql
new file mode 100644
index 00000000000..d7a141e4099
--- /dev/null
+++ b/sql/updates/world/master/2022_02_06_02_world_shaman_undulation.sql
@@ -0,0 +1,8 @@
+DELETE FROM `spell_proc` WHERE `SpellId` IN (200071,216251);
+INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
+(200071,0x00,11,0x00000080,0x00000000,0x00010000,0x00000000,0x00004400,0x0,0x1,0x0,0x0,0x0,0,100,0,0), -- Undulation (passive)
+(216251,0x00,11,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x0,0x8,0x0,0,0,0,0); -- Undulation (proc)
+
+DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_sha_undulation_passive';
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(200071,'spell_sha_undulation_passive');