aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorTeleqraph <nyrdeveloper@gmail.com>2023-07-01 04:23:59 +0200
committerGitHub <noreply@github.com>2023-07-01 04:23:59 +0200
commit6a3c98ac3184ab3b93b90fa5bd297ba231165a7d (patch)
tree0049e37511ebb3cbf09a7e80d976588f5170eaed /sql
parent2041374a16f7a6573ed26ee7dbee9bfd9529b7ee (diff)
Scripts/Priest: Implement Trail of Light (#29096)
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2023_07_01_01_world.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/master/2023_07_01_01_world.sql b/sql/updates/world/master/2023_07_01_01_world.sql
new file mode 100644
index 00000000000..f44583c84e9
--- /dev/null
+++ b/sql/updates/world/master/2023_07_01_01_world.sql
@@ -0,0 +1,8 @@
+DELETE FROM `spell_script_names` WHERE `spell_id`=200128;
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(200128, 'spell_pri_trail_of_light');
+
+DELETE FROM `spell_proc` WHERE `SpellId` IN (200128);
+INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES
+(200128,0x00,6,0x00001800,0x00000000,0x00000000,0x00000000,0x0,0x0,0x2,0x2,0x3,0x0,0x0,0,0,0,0); -- Trail of Light
+