root/trunk/sql/updates/230_world_blacktemple.sql

Revision 221, 1.9 kB (checked in by yumileroy, 17 years ago)

[svn] Fix a bug that players cannot hear others talking.
Provide script support for type 10 gameobject.
Add some missing script sql.

Original author: megamage
Date: 2008-11-12 16:21:08-06:00

Line 
1DELETE FROM spell_linked_spell WHERE `spell_trigger` IN (39992, 39835, 42052, -41914, -41917, 41126, -41376, 39908);
2-- INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (39992, 39835, 1, 'Needle Spine');
3INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (39835, 39968, 1, 'Needle Spine');
4INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (-41376, 41377, 0, 'Spite');
5INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (41126, 41131, 1, 'Flame Crash');
6INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (-41914, 41915, 0, 'Summon Parasitic Shadowfiend');
7INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (-41917, 41915, 0, 'Summon Parasitic Shadowfiend');
8INSERT INTO spell_linked_spell (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (39908, 40017, 1, 'Eye Blast');
9
10-- spine
11update gameobject_template set scriptname = 'go_najentus_spine' where entry = 185584;
12-- molten_flame
13UPDATE creature_template SET spell1 = 40980, flags_extra = 128, speed = 1.0, scriptname = 'molten_flame' WHERE entry = 23095;
14-- volcano
15UPDATE creature_template SET spell1 = 40117, flags_extra = 128, scriptname = '' WHERE entry = 23085;
16-- flame crash
17update creature_template set spell1 = 40836, flags_extra = 128, scriptname = '' where entry = 23336;
18-- blaze
19update creature_template set spell1 = 40610, flags_extra = 128, scriptname = '' where entry = 23259;
20-- glaive
21update creature_template set scriptname = 'mob_blade_of_azzinoth' where entry = 22996;
22-- parasitic shadowfiend
23update creature_template set scriptname = 'mob_parasitic_shadowfiend' where entry = 23498;
24-- Maiev
25update creature_template set minlevel = 73, maxlevel = 73, minhealth = 500000, maxhealth = 500000, mindmg = 3000, maxdmg = 4000 where entry = 23197;
Note: See TracBrowser for help on using the browser.