Core/Spells:

* fixed Jinx talent
* Shadow Trance is now consumed uppon casting Shadow Bolt
This commit is contained in:
Ovahlord
2019-12-16 21:39:34 +01:00
parent 04498998d9
commit 846d4f3472
2 changed files with 126 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
DELETE FROM `spell_proc` WHERE `SpellId` IN (-18179, 17941);
INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `Chance`, `Charges`, `AttributesMask`) VALUES
(-18179, 5, 0, 0x00000200, 0, 0, 4, 2, 0, 0, 0, 32),
(17941, 5, 0x00000001, 0, 0, 0x00010000, 1, 1, 0, 100, 1, 8);
DELETE FROM `spell_script_names` WHERE `ScriptName` IN
('spell_warl_jinx',
'spell_warl_curse_of_weakness');
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(-18179, 'spell_warl_jinx'),
(702, 'spell_warl_curse_of_weakness');