aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorNaddley <64811442+Naddley@users.noreply.github.com>2023-01-29 20:40:39 +0100
committerGitHub <noreply@github.com>2023-01-29 20:40:39 +0100
commitb73330999f447a2c4893d50b3d24fd77b2500178 (patch)
treec54174ad740dd62156ae4ea5c06090ca7300ae77 /sql
parent97d413c9b4be6af296490580f7acc1d66e606ca9 (diff)
Scripts/Monk: Implement Power Strikes (#28794)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2023_01_29_01_world.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_01_29_01_world.sql b/sql/updates/world/master/2023_01_29_01_world.sql
new file mode 100644
index 00000000000..72c253e7ffd
--- /dev/null
+++ b/sql/updates/world/master/2023_01_29_01_world.sql
@@ -0,0 +1,9 @@
+-- Power Strikes
+DELETE FROM `spell_proc` WHERE `SpellId` IN (129914);
+INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
+(129914,0x00,53,0x00000400,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x0,0x10,0x0,0,0,0,0); -- Power Strikes (consume procc)
+
+DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_monk_power_strike_periodic', 'spell_monk_power_strike_proc');
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(121817, 'spell_monk_power_strike_periodic'),
+(129914, 'spell_monk_power_strike_proc');