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

Revision 178, 2.9 kB (checked in by yumileroy, 17 years ago)

[svn] Rewrite canSeeOrDetect function.
Minor change on trigger creatures.
Remove some unused hacks in scripts.

Original author: megamage
Date: 2008-11-06 10:27:58-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   (-45934, 7, 0, 'Dark Fiend Suicide');
24
25INSERT INTO spell_linked_spell
26   (`spell_trigger`, `spell_effect`, `type`, `comment`)
27VALUES
28   (45661, 45665, 1, 'Encapsulate\r\n');
29
30INSERT INTO spell_linked_spell
31   (`spell_trigger`, `spell_effect`, `type`, `comment`)
32VALUES
33   (40604, 40616, 1, 'Fel Rage Aura');
34
35INSERT INTO spell_linked_spell
36   (`spell_trigger`, `spell_effect`, `type`, `comment`)
37VALUES
38   (40616, 41625, 1, 'Fel Rage Aura');
39
40INSERT INTO spell_linked_spell
41   (`spell_trigger`, `spell_effect`, `type`, `comment`)
42VALUES
43   (41292, 42017, 1, 'Aura of Suffering');
44
45INSERT INTO spell_linked_spell
46   (`spell_trigger`, `spell_effect`, `type`, `comment`)
47VALUES
48   (-41292, -42017, 0, 'Aura of Suffering');
49
50INSERT INTO spell_linked_spell
51   (`spell_trigger`, `spell_effect`, `type`, `comment`)
52VALUES
53   (45347, -45348, 1, 'Remove Flame Touched');
54
55INSERT INTO spell_linked_spell
56   (`spell_trigger`, `spell_effect`, `type`, `comment`)
57VALUES
58   (45348, -45347, 1, 'Remove Dark Touched');
59
60INSERT INTO spell_linked_spell
61   (`spell_trigger`, `spell_effect`, `type`, `comment`)
62VALUES
63   (45248, 45347, 1, 'Apply Dark Touched');
64
65INSERT INTO spell_linked_spell
66   (`spell_trigger`, `spell_effect`, `type`, `comment`)
67VALUES
68   (45329, 45347, 1, 'Apply Dark Touched');
69
70INSERT INTO spell_linked_spell
71   (`spell_trigger`, `spell_effect`, `type`, `comment`)
72VALUES
73   (45256, 45347, 1, 'Apply Dark Touched');
74
75INSERT INTO spell_linked_spell
76   (`spell_trigger`, `spell_effect`, `type`, `comment`)
77VALUES
78   (45270, 45347, 1, 'Apply Dark Touched');
79
80INSERT INTO spell_linked_spell
81   (`spell_trigger`, `spell_effect`, `type`, `comment`)
82VALUES
83   (45342, 45348, 1, 'Apply Flame Touched');
84
85INSERT INTO spell_linked_spell
86   (`spell_trigger`, `spell_effect`, `type`, `comment`)
87VALUES
88   (46771, 45348, 1, 'Apply Flame Touched');
89
90INSERT INTO spell_linked_spell
91   (`spell_trigger`, `spell_effect`, `type`, `comment`)
92VALUES
93   (45271, 45347, 1, 'Apply Dark Touched');
94
95INSERT INTO spell_linked_spell
96   (`spell_trigger`, `spell_effect`, `type`, `comment`)
97VALUES
98   (45246, 45348, 1, 'Apply Flame Touched');
Note: See TracBrowser for help on using the browser.