aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/world
diff options
context:
space:
mode:
authorkaelima <jeppo_meyer@msn.com>2011-05-06 13:01:51 +0200
committerkaelima <jeppo_meyer@msn.com>2011-05-06 13:01:51 +0200
commit3f7926e0d213154b34d7bfdc38fb2e40dcfe6cb1 (patch)
tree2f72acdf1dab087bdf1dad6303092c9d273219ec /sql/updates/world
parent9e0129a72a08b8417425cc67fa95d2c644279a54 (diff)
Core/Spells: Fix Warlock T6 2p Bonus. Also split last commit into two sqls
Diffstat (limited to 'sql/updates/world')
-rw-r--r--sql/updates/world/2011_05_06_02_spell_proc_event.sql5
-rw-r--r--sql/updates/world/2011_05_06_03_spell_bonus_data.sql5
-rw-r--r--sql/updates/world/2011_05_06_04_spell_bonus_data.sql4
3 files changed, 9 insertions, 5 deletions
diff --git a/sql/updates/world/2011_05_06_02_spell_proc_event.sql b/sql/updates/world/2011_05_06_02_spell_proc_event.sql
index 5f8ecf6d7fb..7cdf1d264e5 100644
--- a/sql/updates/world/2011_05_06_02_spell_proc_event.sql
+++ b/sql/updates/world/2011_05_06_02_spell_proc_event.sql
@@ -1,8 +1,3 @@
--- Procced spell Pillar of Flame should not scale with spellpower
-DELETE FROM `spell_bonus_data` WHERE `entry` IN (67760,67714);
-INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
-(67760,0,0,0,0, 'Item - Coliseum 25 Heroic Caster Trinket - Pillar of Flame'),
-(67714,0,0,0,0, 'Item - Coliseum 25 Normal Caster Trinket - Pillar of Flame');
-- Proc event for item spells
DELETE FROM `spell_proc_event` WHERE `entry` IN (67712,67758);
INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`procFlags`,`procEx`,`ppmRate`,`CustomChance`,`Cooldown`) VALUES
diff --git a/sql/updates/world/2011_05_06_03_spell_bonus_data.sql b/sql/updates/world/2011_05_06_03_spell_bonus_data.sql
new file mode 100644
index 00000000000..98779bb87f5
--- /dev/null
+++ b/sql/updates/world/2011_05_06_03_spell_bonus_data.sql
@@ -0,0 +1,5 @@
+-- Procced spell Pillar of Flame should not scale with spellpower
+DELETE FROM `spell_bonus_data` WHERE `entry` IN (67760,67714);
+INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
+(67760,0,0,0,0, 'Item - Coliseum 25 Heroic Caster Trinket - Pillar of Flame'),
+(67714,0,0,0,0, 'Item - Coliseum 25 Normal Caster Trinket - Pillar of Flame'); \ No newline at end of file
diff --git a/sql/updates/world/2011_05_06_04_spell_bonus_data.sql b/sql/updates/world/2011_05_06_04_spell_bonus_data.sql
new file mode 100644
index 00000000000..1ab23c0e8bd
--- /dev/null
+++ b/sql/updates/world/2011_05_06_04_spell_bonus_data.sql
@@ -0,0 +1,4 @@
+-- Siphon Essence should not scale with spellpower
+DELETE FROM `spell_bonus_data` WHERE `entry`=38395;
+INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
+(38395,0,0,0,0, 'Warlock - Siphon Essence T6 2P proc');