diff options
-rw-r--r-- | sql/base/world_database.sql | 7 | ||||
-rw-r--r-- | sql/updates/world/2011_05_06_02_spell_proc_event.sql | 5 | ||||
-rw-r--r-- | sql/updates/world/2011_05_06_03_spell_bonus_data.sql | 5 | ||||
-rw-r--r-- | sql/updates/world/2011_05_06_04_spell_bonus_data.sql | 4 |
4 files changed, 14 insertions, 7 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index c77635c789c..6b4461ec6e7 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -16925,6 +16925,8 @@ INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`a (53352, -1, -1, 0.14, -1, 'Hunter - Explosive Shot (triggered)'), (55039, 0, 0, 0, 0, 'Item - Gnomish Lightning Generator'), (40293, 0, 0, 0, 0, 'Item - Siphon Essence'), +(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'), (44425, 0.7143, -1, -1, -1, 'Mage - Arcane Barrage'), (30451, 0.7143, -1, -1, -1, 'Mage - Arcane Blast'), (1449, 0.2128, -1, -1, -1, 'Mage - Arcane Explosion'), @@ -17140,6 +17142,7 @@ INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`a (61291, 0.1064, 0.0667, -1, -1, 'Warlock - Shadowflame Rank 2'), (30283, 0.1932, -1, -1, -1, 'Warlock - Shadowfury'), (63106, 0, 0, 0, 0, 'Warlock - Siphon Life Triggered'), +(38395, 0 ,0, 0, 0, 'Warlock - Siphon Essence T6 2P proc'), (6353, 1.15, -1, -1, -1, 'Warlock - Soul Fire'), (30294, 0, 0, 0, 0, 'Warlock - Soul Leech'), (30108, -1, 0.2, -1, -1, 'Warlock - Unstable Affliction'), @@ -19389,8 +19392,8 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam ( 63320, 0x00, 5, 0x80040000, 0x00000000, 0x00008000, 0x00000400, 0x00000000, 0, 0, 0), -- Glyph of Life Tap ( 64955, 0x00, 10, 0x00000000, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Paladin T8 Protection Relic ( 67115, 0x00, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Death Knight T9 Melee 2P Bonus -( 67712, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00011000, 0x0000002, 0, 0, 2), -- Item - Coliseum 25 Normal Caster Trinket - Pillar of Flame -( 67758, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00011000, 0x0000002, 0, 0, 2), -- Item - Coliseum 25 Heroic Caster Trinket - Pillar of Flame +( 67712, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00011000, 0x00000002, 0, 0, 2), -- Item - Coliseum 25 Normal Caster Trinket - Pillar of Flame +( 67758, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00011000, 0x00000002, 0, 0, 2), -- Item - Coliseum 25 Heroic Caster Trinket - Pillar of Flame ( 67356, 0x08, 7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Item - Druid T9 Restoration Relic (Rejuvenation) ( 67361, 0x00, 7, 0x00000002, 0x00000000, 0x00000000, 0x00040000, 0x00000000, 0, 0, 0), -- Item - Druid T9 Balance Relic (Moonfire) ( 67363, 0x00, 10, 0x00000000, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Item - Paladin T9 Holy Relic (Judgement) 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'); |