mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 10:56:38 +01:00
Core/Spells:
* fixed Seal of Truth procs * added damage formular for Judgement when casted with Seal of Truth * fixed Judgemenets of the Bold passive
This commit is contained in:
16
sql/updates/world/custom/custom_2018_07_14_00_world.sql
Normal file
16
sql/updates/world/custom/custom_2018_07_14_00_world.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName` IN
|
||||
('spell_pal_seal_of_truth',
|
||||
'spell_pal_judgements_of_the_wise',
|
||||
'spell_pal_judgements');
|
||||
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(31801, 'spell_pal_seal_of_truth'),
|
||||
(31878, 'spell_pal_judgements'),
|
||||
(89901, 'spell_pal_judgements');
|
||||
|
||||
DELETE FROM `spell_proc` WHERE `SpellId` IN (31801, 89901);
|
||||
INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`, `Cooldown`, `Charges`, `Chance`) VALUES
|
||||
(31801, 0, 0, 0, 0, 0, 1, 2, 0, 32 | 64, 0, 0, 0),
|
||||
(89901, 10, 0x00800000, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0);
|
||||
|
||||
UPDATE `spell_bonus_data` SET `dot_bonus`= 0, `ap_dot_bonus`= 0, `comments`= 'Paladin - Censure' WHERE `entry`= 31803;
|
||||
Reference in New Issue
Block a user