aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShocker <shocker@freakz.ro>2011-02-25 16:56:45 +0200
committerShocker <shocker@freakz.ro>2011-02-25 16:56:45 +0200
commit3525cb39b823e0aaa28853363b181ad3807cb8a0 (patch)
treeec7e02ea2b0991ca2c56ba24b3c28403ba918637
parent02d8d7c2a6cf30d21e18a2f1798ccc81d0dc18a6 (diff)
Core/Spells: Focus Magic should proc only from critical hits
-rw-r--r--sql/base/world_database.sql1
-rw-r--r--sql/updates/world/2011_02_25_2_world_spell_proc_event.sql3
2 files changed, 4 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index cd832431df8..3e3098e8f42 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -19090,6 +19090,7 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam
( 54488, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 3)
( 54489, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 4)
( 54490, 0x00, 0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Missile Barrage (Rank 5)
+( 54646, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 0); -- Focus Magic
( 54695, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 45), -- Item - Death Knight's Anguish Base
( 54707, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 60), -- Sonic Awareness (DND)
( 54738, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0, 0, 45), -- Star of Light
diff --git a/sql/updates/world/2011_02_25_2_world_spell_proc_event.sql b/sql/updates/world/2011_02_25_2_world_spell_proc_event.sql
new file mode 100644
index 00000000000..aad58f50e30
--- /dev/null
+++ b/sql/updates/world/2011_02_25_2_world_spell_proc_event.sql
@@ -0,0 +1,3 @@
+DELETE FROM `spell_proc_event` WHERE entry = 54646;
+INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES
+(54646, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0);