1 | DROP TABLE IF EXISTS `spell_linked_spell`; |
---|
2 | CREATE 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 | |
---|
10 | INSERT INTO spell_linked_spell |
---|
11 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
12 | VALUES |
---|
13 | (44008, 45265, 1, 'Static Disruption Visual'); |
---|
14 | |
---|
15 | INSERT INTO spell_linked_spell |
---|
16 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
17 | VALUES |
---|
18 | (-30410, 44032, 0, 'Manticron Cube Mind Exhaustion'); |
---|
19 | |
---|
20 | INSERT INTO spell_linked_spell |
---|
21 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
22 | VALUES |
---|
23 | (-45934, 7, 0, 'Dark Fiend Suicide'); |
---|
24 | |
---|
25 | INSERT INTO spell_linked_spell |
---|
26 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
27 | VALUES |
---|
28 | (45661, 45665, 1, 'Encapsulate\r\n'); |
---|
29 | |
---|
30 | INSERT INTO spell_linked_spell |
---|
31 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
32 | VALUES |
---|
33 | (40604, 40616, 1, 'Fel Rage Aura'); |
---|
34 | |
---|
35 | INSERT INTO spell_linked_spell |
---|
36 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
37 | VALUES |
---|
38 | (40616, 41625, 1, 'Fel Rage Aura'); |
---|
39 | |
---|
40 | INSERT INTO spell_linked_spell |
---|
41 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
42 | VALUES |
---|
43 | (41292, 42017, 1, 'Aura of Suffering'); |
---|
44 | |
---|
45 | INSERT INTO spell_linked_spell |
---|
46 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
47 | VALUES |
---|
48 | (-41292, -42017, 0, 'Aura of Suffering'); |
---|
49 | |
---|
50 | INSERT INTO spell_linked_spell |
---|
51 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
52 | VALUES |
---|
53 | (45347, -45348, 1, 'Remove Flame Touched'); |
---|
54 | |
---|
55 | INSERT INTO spell_linked_spell |
---|
56 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
57 | VALUES |
---|
58 | (45348, -45347, 1, 'Remove Dark Touched'); |
---|
59 | |
---|
60 | INSERT INTO spell_linked_spell |
---|
61 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
62 | VALUES |
---|
63 | (45248, 45347, 1, 'Apply Dark Touched'); |
---|
64 | |
---|
65 | INSERT INTO spell_linked_spell |
---|
66 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
67 | VALUES |
---|
68 | (45329, 45347, 1, 'Apply Dark Touched'); |
---|
69 | |
---|
70 | INSERT INTO spell_linked_spell |
---|
71 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
72 | VALUES |
---|
73 | (45256, 45347, 1, 'Apply Dark Touched'); |
---|
74 | |
---|
75 | INSERT INTO spell_linked_spell |
---|
76 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
77 | VALUES |
---|
78 | (45270, 45347, 1, 'Apply Dark Touched'); |
---|
79 | |
---|
80 | INSERT INTO spell_linked_spell |
---|
81 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
82 | VALUES |
---|
83 | (45342, 45348, 1, 'Apply Flame Touched'); |
---|
84 | |
---|
85 | INSERT INTO spell_linked_spell |
---|
86 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
87 | VALUES |
---|
88 | (46771, 45348, 1, 'Apply Flame Touched'); |
---|
89 | |
---|
90 | INSERT INTO spell_linked_spell |
---|
91 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
92 | VALUES |
---|
93 | (45271, 45347, 1, 'Apply Dark Touched'); |
---|
94 | |
---|
95 | INSERT INTO spell_linked_spell |
---|
96 | (`spell_trigger`, `spell_effect`, `type`, `comment`) |
---|
97 | VALUES |
---|
98 | (45246, 45348, 1, 'Apply Flame Touched'); |
---|