aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkaelima <jeppo_meyer@msn.com>2011-05-18 04:38:34 +0200
committerkaelima <jeppo_meyer@msn.com>2011-05-18 04:38:34 +0200
commit15bf78a57285a12110d269eaa74ca0d2a073cccd (patch)
tree775fade7002fcbafed8729e7360c84ae08741d15
parent73995d8bcf83ae449412bbd8e2d5f1271ad47c7b (diff)
Core/Spells: Set higher ppmRate for talent Killing Machine.
Closes #1512
-rw-r--r--sql/base/world_database.sql6
-rw-r--r--sql/updates/world/2011_05_18_00_world_spell_proc_event.sql4
2 files changed, 7 insertions, 3 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index c5c84361e00..1eee8601ec2 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -19021,9 +19021,9 @@ INSERT INTO `spell_proc_event` (`entry`,`SchoolMask`,`SpellFamilyName`,`SpellFam
( 50887, 0x00, 15, 0x00000000, 0x04000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 0), -- Icy Talons
( 51123, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1, 0, 0), -- Killing Machine (Rank 1)
( 51127, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2, 0, 0), -- Killing Machine (Rank 2)
-( 51128, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3, 0, 0), -- Killing Machine (Rank 3)
-( 51129, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4, 0, 0), -- Killing Machine (Rank 4)
-( 51130, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5, 0, 0), -- Killing Machine (Rank 5)
+( 51128, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4, 0, 0), -- Killing Machine (Rank 3)
+( 51129, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6, 0, 0), -- Killing Machine (Rank 4)
+( 51130, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8, 0, 0), -- Killing Machine (Rank 5)
( 51346, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Venture Company Beatdown!
( 51349, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Venture Company Beatdown
( 51352, 0x00, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0, 0, 10), -- Venture Company Beatdown!
diff --git a/sql/updates/world/2011_05_18_00_world_spell_proc_event.sql b/sql/updates/world/2011_05_18_00_world_spell_proc_event.sql
new file mode 100644
index 00000000000..0bc98a25d85
--- /dev/null
+++ b/sql/updates/world/2011_05_18_00_world_spell_proc_event.sql
@@ -0,0 +1,4 @@
+UPDATE `spell_proc_event` SET `ppmRate`=2 WHERE `entry`=51127;
+UPDATE `spell_proc_event` SET `ppmRate`=4 WHERE `entry`=51128;
+UPDATE `spell_proc_event` SET `ppmRate`=6 WHERE `entry`=51129;
+UPDATE `spell_proc_event` SET `ppmRate`=8 WHERE `entry`=51130;