From c26d5560ea446e2aca2ecfbddc08adf6e168fa7b Mon Sep 17 00:00:00 2001 From: megamage Date: Fri, 31 Jul 2009 10:36:29 +0800 Subject: [8253] Some spell proc fixes. Author: Den --HG-- branch : trunk --- sql/updates/8253_02_mangos_spell_proc_event.sql.tbd | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sql/updates/8253_02_mangos_spell_proc_event.sql.tbd (limited to 'sql/updates') diff --git a/sql/updates/8253_02_mangos_spell_proc_event.sql.tbd b/sql/updates/8253_02_mangos_spell_proc_event.sql.tbd new file mode 100644 index 00000000000..8e3472cbc0d --- /dev/null +++ b/sql/updates/8253_02_mangos_spell_proc_event.sql.tbd @@ -0,0 +1,21 @@ +ALTER TABLE db_version CHANGE COLUMN required_8253_01_mangos_spell_chain required_8253_02_mangos_spell_proc_event bit; + +/*Bandit's Insignia*/ +DELETE FROM `spell_proc_event` WHERE entry IN (60442); +INSERT INTO spell_proc_event VALUES +(60442, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45); + +/*Seal of wisdom*/ +DELETE FROM `spell_proc_event` WHERE `entry` IN (20166); +INSERT INTO `spell_proc_event` VALUES +(20166, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,15.000000, 0.000000, 0); + +/*Shadow embrace*/ +DELETE FROM `spell_proc_event` WHERE `entry` IN (32385); +INSERT INTO `spell_proc_event` VALUES +(32385, 0x00000000, 5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 0); + +/*Maelstrom Weapon*/ +DELETE FROM `spell_proc_event` WHERE `entry` IN (51528); +INSERT INTO `spell_proc_event` VALUES +(51528, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,12.500000, 0.000000, 0); -- cgit v1.2.3 From 11e5132a70b1fb75baf99e35c3650101a6520a0d Mon Sep 17 00:00:00 2001 From: megamage Date: Fri, 31 Jul 2009 10:37:02 +0800 Subject: [8254] Internal cooldowns for some item effects. Author: Alez --HG-- branch : trunk --- sql/updates/8254_01_mangos_spell_proc_event.sql.tbd | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 sql/updates/8254_01_mangos_spell_proc_event.sql.tbd (limited to 'sql/updates') diff --git a/sql/updates/8254_01_mangos_spell_proc_event.sql.tbd b/sql/updates/8254_01_mangos_spell_proc_event.sql.tbd new file mode 100644 index 00000000000..9be2487810e --- /dev/null +++ b/sql/updates/8254_01_mangos_spell_proc_event.sql.tbd @@ -0,0 +1,6 @@ +ALTER TABLE db_version CHANGE COLUMN required_8253_02_mangos_spell_proc_event required_8254_01_mangos_spell_proc_event bit; + +DELETE FROM `spell_proc_event` WHERE `entry` IN (55747,60436); +INSERT INTO `spell_proc_event` VALUES +(55747, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45), +(60436, 0x00000000, 0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45); -- cgit v1.2.3