Core/Spells: updated Beacon of Light to Cataclysm

This commit is contained in:
Ovahlord
2019-04-16 19:32:16 +02:00
parent 3fb3ed2954
commit f2049d5f0d
2 changed files with 60 additions and 59 deletions

View File

@@ -0,0 +1,14 @@
DELETE FROM `spell_script_names` WHERE `ScriptName` IN
('spell_pal_light_s_beacon',
'spell_pal_lights_beacon');
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
(53651, 'spell_pal_lights_beacon');
SET @FAMILY_FLAGS0 := 0 | 0x00200000 | 0x40000000 | 0x80000000;
SET @FAMILY_FLAGS1 := 0;
SET @FAMILY_FLAGS2 := 0 | 0x00000400 | 0x00004000 | 0x00040000;
DELETE FROM `spell_proc` WHERE `SpellId`= 53651;
INSERT INTO `spell_proc` (`SpellId`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `ProcFlags`, `SpellTypeMask`, `SpellPhaseMask`, `HitMask`, `AttributesMask`) VALUES
(53651, 10, @FAMILY_FLAGS0, @FAMILY_FLAGS1, @FAMILY_FLAGS2, 0, 2, 2, 0, 0);