mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 08:00:48 +01:00
Minor change on trigger creatures. Remove some unused hacks in scripts. --HG-- branch : trunk
15 lines
1.2 KiB
SQL
15 lines
1.2 KiB
SQL
DELETE FROM spell_linked_spell WHERE `spell_trigger` IN (39992, 39835, 42052, -41914, 41126, 41376);
|
|
-- INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (39992, 39835, 1, 'Needle Spine');
|
|
INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (39835, 39968, 1, 'Needle Spine');
|
|
INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (-41376, 41377, 0, 'Spite');
|
|
INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (-41914, 41915, 0, 'Summon Parasitic Shadowfiend');
|
|
INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (41126, 41131, 1, 'Flame Crash');
|
|
|
|
-- molten_flame
|
|
UPDATE creature_template SET flags_extra = 128, speed = 1.0 WHERE entry = 23095;
|
|
-- volcano
|
|
UPDATE creature_template SET spell1 = 40117, flags_extra = 128, scriptname = '' WHERE entry = 23085;
|
|
-- flame crash
|
|
update creature_template set spell1 = 40836, flags_extra = 128, scriptname = '' where entry = 23336;
|
|
-- blaze
|
|
update creature_template set spell1 = 40610, flags_extra = 128, scriptname = '' where entry = 23259; |