aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2025-01-05 00:19:43 +0100
committerShauren <shauren.trinity@gmail.com>2025-01-05 00:19:43 +0100
commitf46a042d98e82fdf882bc5ab4d6063f5aeb7b472 (patch)
tree9afe1b707be17f89be2f04d5de336f0c110d9023 /sql
parent3a19b8160d8e2c8f2c2b10380fcd3fe7468810e2 (diff)
Scripts/Spells: Implemented several enhancement shaman resource related talents - Maelstrom Weapon, Overflowing Maelstrom, Stormweaver, Thorim's Invocation
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2025_01_05_00_world.sql15
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_01_05_00_world.sql b/sql/updates/world/master/2025_01_05_00_world.sql
new file mode 100644
index 00000000000..b8aed0aa442
--- /dev/null
+++ b/sql/updates/world/master/2025_01_05_00_world.sql
@@ -0,0 +1,15 @@
+DELETE FROM `spell_proc` WHERE `SpellId` IN (344179,410681);
+INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
+(344179,0x00,11,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0,0,0,0), -- Maelstrom Weapon
+(410681,0x00,11,0x00000000,0x00000000,0x00000000,0x00000000,0x0,0x0,0x2,0x2,0x0,0x8,0x0,0,0,0,1); -- Stormweaver (PvP Talent)
+
+DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_sha_maelstrom_weapon','spell_sha_maelstrom_weapon_proc','spell_sha_thorims_invocation','spell_sha_thorims_invocation_primer','spell_sha_thorims_invocation_trigger','spell_sha_stormweaver');
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(187880,'spell_sha_maelstrom_weapon'),
+(344179,'spell_sha_maelstrom_weapon_proc'),
+(384444,'spell_sha_thorims_invocation'),
+(188196,'spell_sha_thorims_invocation_primer'),
+(188443,'spell_sha_thorims_invocation_primer'),
+(452201,'spell_sha_thorims_invocation_primer'),
+(115357,'spell_sha_thorims_invocation_trigger'),
+(187881,'spell_sha_stormweaver');