From ddc812163a808e0bf44143586f96cbda21b0f60d Mon Sep 17 00:00:00 2001 From: Machiavelli Date: Tue, 9 Nov 2010 11:15:00 +0100 Subject: Core/Spells: Fix Shield of Righteousness damage Author: Dr.Tenma Fixes issue #4174 --HG-- branch : trunk --- sql/base/world_database.sql | 1 + sql/updates/10392_world_spell_bonus_data.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 sql/updates/10392_world_spell_bonus_data.sql (limited to 'sql') diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 09c86e55816..5c6865b0ed0 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -16981,6 +16981,7 @@ INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`a (25742, 0.07, -1, 0.039, -1, 'Paladin - Seal of Righteousness Dummy Proc'), (53719, 0, 0, 0, 0, 'Paladin - Seal of the Martyr Proc Enemy'), (53718, 0, 0, 0, 0, 'Paladin - Seal of the Martyr Proc Self'), +(53600, 0, 0, 0, 0 ,'Paladin - Shield of Righteousness'), (20267, 0, 0, 0, 0, 'Paladin - Judgement of Light Proc'), (25997, 0, 0, 0, 0, 'Paladin - Eye for an Eye'), (50256, -1, -1, 0.08, -1, 'Pet Skills - Bear (Swipe)'), diff --git a/sql/updates/10392_world_spell_bonus_data.sql b/sql/updates/10392_world_spell_bonus_data.sql new file mode 100644 index 00000000000..3a808bddf13 --- /dev/null +++ b/sql/updates/10392_world_spell_bonus_data.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_bonus_data` WHERE `entry` = 53600; +INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`, `ap_bonus`, `ap_dot_bonus`, `comments`) VALUES +(53600, 0, 0, 0, 0 ,'Paladin - Shield of Righteousness'); \ No newline at end of file -- cgit v1.2.3