forked from AshamaneProject/AshamaneCore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed secondary target damage with Splitting Ice talent * fixed dropping 2 charges of Fingers of Frost with Splitting Ice
- Loading branch information
Showing
3 changed files
with
119 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
-- Fingers of Frost | ||
DELETE FROM `spell_proc` WHERE `SpellId`=44544; | ||
INSERT INTO `spell_proc` (`SpellId`,`SchoolMask`,`SpellFamilyName`,`SpellFamilyMask0`,`SpellFamilyMask1`,`SpellFamilyMask2`,`SpellFamilyMask3`,`ProcFlags`,`SpellTypeMask`,`SpellPhaseMask`,`HitMask`,`AttributesMask`,`DisableEffectsMask`,`ProcsPerMinute`,`Chance`,`Cooldown`,`Charges`) VALUES | ||
(44544,0,3,0,0,0,0x100,0x10000,0,0x4,0x3FFF,0,0,0,100,0,0); -- PROC_FLAG_DONE_SPELL_MAGIC_DMG_CLASS_NEG; PROC_SPELL_PHASE_FINISH; PROC_HIT_MASK_ALL | ||
|
||
-- mage ice lance | ||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_fingers_of_frost'; | ||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_ice_lance'; | ||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mage_ice_lance_damage'; | ||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES | ||
(44544,'spell_mage_fingers_of_frost'), | ||
(30455,'spell_mage_ice_lance'), | ||
(228598,'spell_mage_ice_lance_damage'); |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters