aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorXanadu <none@none>2010-09-29 03:33:09 +0200
committerXanadu <none@none>2010-09-29 03:33:09 +0200
commitdcbe4026c327539391e022c69e417928f83c4ab5 (patch)
tree77c0d53fc2a16a0574769df4dd8e0694d34ef01b /sql/updates
parenteb1b037611627dfd3f75e7f3d0bb63feb56d83e4 (diff)
Core/Spells: * Any offensive mage spell hit will now drop Fingers of Frost charge.
* Nature's Grace will proc only from non-periodic magic spell crits. --HG-- branch : trunk
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/10113_world_spell_proc_event.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/10113_world_spell_proc_event.sql b/sql/updates/10113_world_spell_proc_event.sql
new file mode 100644
index 00000000000..ff256a695eb
--- /dev/null
+++ b/sql/updates/10113_world_spell_proc_event.sql
@@ -0,0 +1,5 @@
+-- Allow any mage spell to drop Fingers of Frost charge
+UPDATE `spell_proc_event` SET `SchoolMask` = 0x54, `SpellFamilyMask0` = 0x28E212F7, `SpellFamilyMask1` = 0x00119048 WHERE `entry` = 74396;
+
+-- Let Nature's Grace proc only from non-periodic magic spells
+UPDATE `spell_proc_event` SET `SchoolMask` = 0x48, `SpellFamilyName` = 7, `SpellFamilyMask0` = 0x00000067, `SpellFamilyMask1` = 0x03800002 WHERE `entry` IN (16880, 61345, 61346);