root/trunk/sql/updates/146_world.sql @ 293

Revision 239, 2.7 kB (checked in by yumileroy, 17 years ago)

[svn] *Update Kalecgos script.
*Correctly select aura triggered spell target.
*Fix some scripts, should be pGOHello = &
*Fix a bug that some channel spells cannot be interrupted.
*Fix a bug that not-selectable creature cannot be hit by target_entry spells.
*If eventAI cannot find heroic flag and normal flag, enable event as default rather than disable it.

Original author: megamage
Date: 2008-11-15 15:09:22-06:00

Line 
1DROP TABLE IF EXISTS `spell_linked_spell`;
2CREATE TABLE `spell_linked_spell` (
3  `spell_trigger` int(10) NOT NULL,
4  `spell_effect` int(10) NOT NULL default '0',
5  `type` smallint(3) unsigned NOT NULL default '0',
6  `comment` text NOT NULL,
7  PRIMARY KEY (`spell_trigger`)
8) ENGINE=MyISAM DEFAULT CHARSET=utf8;
9
10INSERT INTO spell_linked_spell
11   (`spell_trigger`, `spell_effect`, `type`, `comment`)
12VALUES
13   (44008, 45265, 1, 'Static Disruption Visual');
14
15INSERT INTO spell_linked_spell
16   (`spell_trigger`, `spell_effect`, `type`, `comment`)
17VALUES
18   (-30410, 44032, 0, 'Manticron Cube Mind Exhaustion');
19
20INSERT INTO spell_linked_spell
21   (`spell_trigger`, `spell_effect`, `type`, `comment`)
22VALUES
23   (45661, 45665, 1, 'Encapsulate\r\n');
24
25INSERT INTO spell_linked_spell
26   (`spell_trigger`, `spell_effect`, `type`, `comment`)
27VALUES
28   (40604, 40616, 1, 'Fel Rage Aura');
29
30INSERT INTO spell_linked_spell
31   (`spell_trigger`, `spell_effect`, `type`, `comment`)
32VALUES
33   (40616, 41625, 1, 'Fel Rage Aura');
34
35INSERT INTO spell_linked_spell
36   (`spell_trigger`, `spell_effect`, `type`, `comment`)
37VALUES
38   (41292, 42017, 1, 'Aura of Suffering');
39
40INSERT INTO spell_linked_spell
41   (`spell_trigger`, `spell_effect`, `type`, `comment`)
42VALUES
43   (-41292, -42017, 0, 'Aura of Suffering');
44
45INSERT INTO spell_linked_spell
46   (`spell_trigger`, `spell_effect`, `type`, `comment`)
47VALUES
48   (45347, -45348, 1, 'Remove Flame Touched');
49
50INSERT INTO spell_linked_spell
51   (`spell_trigger`, `spell_effect`, `type`, `comment`)
52VALUES
53   (45348, -45347, 1, 'Remove Dark Touched');
54
55INSERT INTO spell_linked_spell
56   (`spell_trigger`, `spell_effect`, `type`, `comment`)
57VALUES
58   (45248, 45347, 1, 'Apply Dark Touched');
59
60INSERT INTO spell_linked_spell
61   (`spell_trigger`, `spell_effect`, `type`, `comment`)
62VALUES
63   (45329, 45347, 1, 'Apply Dark Touched');
64
65INSERT INTO spell_linked_spell
66   (`spell_trigger`, `spell_effect`, `type`, `comment`)
67VALUES
68   (45256, 45347, 1, 'Apply Dark Touched');
69
70INSERT INTO spell_linked_spell
71   (`spell_trigger`, `spell_effect`, `type`, `comment`)
72VALUES
73   (45270, 45347, 1, 'Apply Dark Touched');
74
75INSERT INTO spell_linked_spell
76   (`spell_trigger`, `spell_effect`, `type`, `comment`)
77VALUES
78   (45342, 45348, 1, 'Apply Flame Touched');
79
80INSERT INTO spell_linked_spell
81   (`spell_trigger`, `spell_effect`, `type`, `comment`)
82VALUES
83   (46771, 45348, 1, 'Apply Flame Touched');
84
85INSERT INTO spell_linked_spell
86   (`spell_trigger`, `spell_effect`, `type`, `comment`)
87VALUES
88   (45271, 45347, 1, 'Apply Dark Touched');
89
90INSERT INTO spell_linked_spell
91   (`spell_trigger`, `spell_effect`, `type`, `comment`)
92VALUES
93   (45246, 45348, 1, 'Apply Flame Touched');
Note: See TracBrowser for help on using the browser.