diff options
| author | Cristian Vintila <127750549+cristianvnt@users.noreply.github.com> | 2025-12-18 00:54:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-17 23:54:28 +0100 |
| commit | 0cd789bbb52ff3050e0219baab29e612499075f3 (patch) | |
| tree | 2b5dd7985342af68b550a741e24e18cbb43abb86 /sql/updates | |
| parent | 7d9392e6a3d7506784d744786718d27686803396 (diff) | |
Scripts/Spells: Implemented priest talent Divine Procession (#31419)
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/world/master/2025_12_17_01_world.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/master/2025_12_17_01_world.sql b/sql/updates/world/master/2025_12_17_01_world.sql new file mode 100644 index 00000000000..09a73684b48 --- /dev/null +++ b/sql/updates/world/master/2025_12_17_01_world.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_script_names` WHERE `ScriptName` IN ('spell_pri_divine_procession'); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(472361, 'spell_pri_divine_procession'); + +DELETE FROM `spell_proc` WHERE `SpellId` IN (472361); +INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`ProcFlags2`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES +(472361,0x00,6,0x00000080,0x00000000,0x00000000,0x00000000,0x0,0x0,0x1,0x2,0x403,0x0,0x0,0,0,0,0); -- Divine Procession |
