aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorAqua Deus <95978183+aquadeus@users.noreply.github.com>2023-09-01 00:16:48 +0200
committerGitHub <noreply@github.com>2023-09-01 00:16:48 +0200
commit638e3ece91a8abfaacf4742a0558466e5f156558 (patch)
treeeb79f3fefda54f0d49743f8d17d47a4d28497d39 /sql
parent0e818e23e71b5bc824913a4e06f55e16a925341a (diff)
Scripts/Spells: Implement warrior talent Strategist (#29235)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2023_08_31_02_world.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_08_31_02_world.sql b/sql/updates/world/master/2023_08_31_02_world.sql
new file mode 100644
index 00000000000..5eeb2569fe9
--- /dev/null
+++ b/sql/updates/world/master/2023_08_31_02_world.sql
@@ -0,0 +1,7 @@
+DELETE FROM `spell_proc` WHERE `SpellId` IN (384041);
+INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
+(384041,0x00,4,0x00000480,0x00000040,0x00000000,0x00100000,0x1010,0x0,0x1,0x4,0x403,0x0,0x0,0,100,0,0); -- Strategist
+
+DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_warr_strategist';
+INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
+(384041,'spell_warr_strategist');