diff options
-rw-r--r-- | sql/base/world_database.sql | 2 | ||||
-rw-r--r-- | sql/updates/world/2011_05_06_02_spell_proc_event.sql | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index 5aaae2bcddb..c77635c789c 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -19389,6 +19389,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 ( 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 new file mode 100644 index 00000000000..5f8ecf6d7fb --- /dev/null +++ b/sql/updates/world/2011_05_06_02_spell_proc_event.sql @@ -0,0 +1,10 @@ +-- 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 +(67712,0,0,0,0,0,0x00011000,0x0000002,0,0,2), +(67758,0,0,0,0,0,0x00011000,0x0000002,0,0,2); |