diff options
| author | Mematoru23 <127750549+Mematoru23@users.noreply.github.com> | 2024-02-05 18:00:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-05 17:00:48 +0100 |
| commit | e42cd2ffcc69947611fd5bcd67649c57c3c45d97 (patch) | |
| tree | 211605c0acacd87f12164eaf35b28f1cd7111f2c /sql | |
| parent | dabb4dd5f61352b67c5649fbe54fafa51a55c2de (diff) | |
Scripts/Spells: Implemented Priest talent Blaze of Light (#29649)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2024_02_05_01_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2024_02_05_01_world.sql b/sql/updates/world/master/2024_02_05_01_world.sql new file mode 100644 index 00000000000..4bca1e78bea --- /dev/null +++ b/sql/updates/world/master/2024_02_05_01_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_proc` WHERE `SpellId` IN (215768); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(215768,0x02,6,0x00000000,0x00800000,0x00000080,0x00000000,0x0,0x0,0x4,0x2,0x403,0x0,0x0,0,0,0,0); -- Blaze of Light + +DELETE FROM `spell_script_names` WHERE `spell_id` IN (215768); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(215768, 'spell_pri_blaze_of_light'); |
