1 |
function scr_monstersetup_ch1scr_monstersetup_ch1function scr_monstersetup_ch1()
{
if (global.monstertype[myself] == 1 Enemy (placeholder/G-BODY))
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 130;
global.monsterhp[myself] = 130;
global.monsterat[myself] = 7;
global.monsterdf[myself] = 0;
global.monsterexp[myself] = 0;
global.monstergold[myself] = 0;
global.sparepoint[myself] = 10;
global.mercymod[myself] = 0;
global.mercymax[myself] = 100;
global.canact[myself][0] = 1;
global.actname[myself][0] = ;
global.canact[myself][1] = 1;
global.actname[myself][1] = ;
global.canact[myself][2] = 1;
global.actname[myself][2] = ;
global.canact[myself][3] = 1;
global.actname[myself][3] = ;
global.canact[myself][4] = 1;
global.actname[myself][4] = ;
global.canact[myself][5] = 1;
global.actname[myself][5] = ;
global.battlemsg[0] = * You've come again to this wonderful place. * Now tear off the mask beneath your face! ;
}
if (global.monstertype[myself] == 2 Lancer)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 540;
global.monsterhp[myself] = 540;
global.monsterat[myself] = 5;
global.monsterdf[myself] = 1;
global.monsterexp[myself] = 0;
global.monstergold[myself] = 20;
global.sparepoint[myself] = 10;
global.mercymod[myself] = 0;
global.mercymax[myself] = 100;
global.canact[myself][0] = 1;
global.actname[myself][0] = ;
global.canact[myself][1] = 1;
global.actname[myself][1] = ;
global.canact[myself][2] = 1;
global.actname[myself][2] = ;
global.battlemsg[0] = ;
}
if (global.monstertype[myself] == 3 Dummy)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 450;
global.monsterhp[myself] = 450;
global.monsterat[myself] = 0;
global.monsterdf[myself] = 0;
global.monsterexp[myself] = 0;
global.monstergold[myself] = 0;
global.sparepoint[myself] = 0;
global.mercymod[myself] = 0;
global.mercymax[myself] = 100;
global.canact[myself][0] = 1;
global.actname[myself][0] = ;
global.canact[myself][1] = 1;
global.actname[myself][1] = ;
global.canact[myself][2] = 1;
global.actname[myself][2] = ;
global.actactor[myself][2] = 3;
global.battlemsg[0] = ;
}
if (global.monstertype[myself] == 4 Ralsei)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 90;
global.monsterhp[myself] = 90;
global.monsterat[myself] = 8;
global.monsterdf[myself] = 6;
global.monsterexp[myself] = 0;
global.monstergold[myself] = 0;
global.sparepoint[myself] = 0;
global.mercymod[myself] = 0;
global.mercymax[myself] = 100;
global.canact[myself][0] = 1;
global.actname[myself][0] = ;
global.canact[myself][1] = 1;
global.actname[myself][1] = ;
global.battlemsg[0] = ;
}
if (global.monstertype[myself] == 5 Rudinn)
{
global.monstername[myself] = ;
global.monstermaxhp[myself] = 120;
global.monsterhp[myself] = 120;
global.monsterat[myself] = 5;
global.monsterdf[myself] = 0;
global.monsterexp[myself] = 0;
global.monstergold[myself] = 30;
global.sparepoint[myself] = 10;
global.mercymod[myself] = 0;
global.mercymax[myself] = 100;
global.canact[myself][0] = 1;
global.actname[myself][0] = ;
... () |
2 |
{ |
3 |
if (global.monstertype[myself] == 1Enemy (placeholder/G-BODY)) |
4 |
{ |
5 |
global.monstername[myself] = ; |
6 |
global.monstermaxhp[myself] = 130; |
7 |
global.monsterhp[myself] = 130; |
8 |
global.monsterat[myself] = 7; |
9 |
global.monsterdf[myself] = 0; |
10 |
global.monsterexp[myself] = 0; |
11 |
global.monstergold[myself] = 0; |
12 |
global.sparepoint[myself] = 10; |
13 |
global.mercymod[myself] = 0; |
14 |
global.mercymax[myself] = 100; |
15 |
global.canact[myself][0] = 1; |
16 |
global.actname[myself][0] = ; |
17 |
global.canact[myself][1] = 1; |
18 |
global.actname[myself][1] = ; |
19 |
global.canact[myself][2] = 1; |
20 |
global.actname[myself][2] = ; |
21 |
global.canact[myself][3] = 1; |
22 |
global.actname[myself][3] = ; |
23 |
global.canact[myself][4] = 1; |
24 |
global.actname[myself][4] = ; |
25 |
global.canact[myself][5] = 1; |
26 |
global.actname[myself][5] = ; |
27 |
global.battlemsg[0] = * You've come again to this wonderful place. * Now tear off the mask beneath your face! ; |
28 |
} |
29 |
if (global.monstertype[myself] == 2Lancer) |
30 |
{ |
31 |
global.monstername[myself] = ; |
32 |
global.monstermaxhp[myself] = 540; |
33 |
global.monsterhp[myself] = 540; |
34 |
global.monsterat[myself] = 5; |
35 |
global.monsterdf[myself] = 1; |
36 |
global.monsterexp[myself] = 0; |
37 |
global.monstergold[myself] = 20; |
38 |
global.sparepoint[myself] = 10; |
39 |
global.mercymod[myself] = 0; |
40 |
global.mercymax[myself] = 100; |
41 |
global.canact[myself][0] = 1; |
42 |
global.actname[myself][0] = ; |
43 |
global.canact[myself][1] = 1; |
44 |
global.actname[myself][1] = ; |
45 |
global.canact[myself][2] = 1; |
46 |
global.actname[myself][2] = ; |
47 |
global.battlemsg[0] = ; |
48 |
} |
49 |
if (global.monstertype[myself] == 3Dummy) |
50 |
{ |
51 |
global.monstername[myself] = ; |
52 |
global.monstermaxhp[myself] = 450; |
53 |
global.monsterhp[myself] = 450; |
54 |
global.monsterat[myself] = 0; |
55 |
global.monsterdf[myself] = 0; |
56 |
global.monsterexp[myself] = 0; |
57 |
global.monstergold[myself] = 0; |
58 |
global.sparepoint[myself] = 0; |
59 |
global.mercymod[myself] = 0; |
60 |
global.mercymax[myself] = 100; |
61 |
global.canact[myself][0] = 1; |
62 |
global.actname[myself][0] = ; |
63 |
global.canact[myself][1] = 1; |
64 |
global.actname[myself][1] = ; |
65 |
global.canact[myself][2] = 1; |
66 |
global.actname[myself][2] = ; |
67 |
global.actactor[myself][2] = 3; |
68 |
global.battlemsg[0] = ; |
69 |
} |
70 |
if (global.monstertype[myself] == 4Ralsei) |
71 |
{ |
72 |
global.monstername[myself] = ; |
73 |
global.monstermaxhp[myself] = 90; |
74 |
global.monsterhp[myself] = 90; |
75 |
global.monsterat[myself] = 8; |
76 |
global.monsterdf[myself] = 6; |
77 |
global.monsterexp[myself] = 0; |
78 |
global.monstergold[myself] = 0; |
79 |
global.sparepoint[myself] = 0; |
80 |
global.mercymod[myself] = 0; |
81 |
global.mercymax[myself] = 100; |
82 |
global.canact[myself][0] = 1; |
83 |
global.actname[myself][0] = ; |
84 |
global.canact[myself][1] = 1; |
85 |
global.actname[myself][1] = ; |
86 |
global.battlemsg[0] = ; |
87 |
} |
88 |
if (global.monstertype[myself] == 5Rudinn) |
89 |
{ |
90 |
global.monstername[myself] = ; |
91 |
global.monstermaxhp[myself] = 120; |
92 |
global.monsterhp[myself] = 120; |
93 |
global.monsterat[myself] = 5; |
94 |
global.monsterdf[myself] = 0; |
95 |
global.monsterexp[myself] = 0; |
96 |
global.monstergold[myself] = 30; |
97 |
global.sparepoint[myself] = 10; |
98 |
global.mercymod[myself] = 0; |
99 |
global.mercymax[myself] = 100; |
100 |
global.canact[myself][0] = 1; |
101 |
global.actname[myself][0] = ; |
102 |
global.canact[myself][1] = 1; |
103 |
global.actname[myself][1] = ; |
104 |
global.canact[myself][2] = 1; |
105 |
global.actname[myself][2] = ; |
106 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2) && global.plot < 150) |
107 |
{ |
108 |
global.canact[myself][3] = 1; |
109 |
global.actname[myself][3] = ; |
110 |
global.actactor[myself][3] = 3; |
111 |
} |
112 |
} |
113 |
if (global.monstertype[myself] == 6Hathy) |
114 |
{ |
115 |
global.monstername[myself] = ; |
116 |
global.monstermaxhp[myself] = 150; |
117 |
global.monsterhp[myself] = 150; |
118 |
global.monsterat[myself] = 6; |
119 |
global.monsterdf[myself] = 0; |
120 |
global.monsterexp[myself] = 0; |
121 |
global.monstergold[myself] = 28; |
122 |
global.sparepoint[myself] = 10; |
123 |
global.mercymod[myself] = 0; |
124 |
global.mercymax[myself] = 100; |
125 |
global.canact[myself][0] = 1; |
126 |
global.actname[myself][0] = ; |
127 |
global.canact[myself][1] = 1; |
128 |
global.actname[myself][1] = ; |
129 |
global.canact[myself][2] = 1; |
130 |
global.actname[myself][2] = ; |
131 |
global.actactor[myself][2] = 3; |
132 |
if (global.encounterno == 7) |
133 |
{ |
134 |
global.actactor[myself][2] = 2; |
135 |
if (global.plot < 40) |
136 |
global.plot = 40; |
137 |
} |
138 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2) && global.plot < 150) |
139 |
{ |
140 |
global.canact[myself][3] = 1; |
141 |
global.actname[myself][3] = ; |
142 |
global.actactor[myself][3] = 3; |
143 |
} |
144 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2) && global.plot >= 150) |
145 |
{ |
146 |
global.canact[myself][3] = 1; |
147 |
global.actname[myself][3] = ; |
148 |
global.actactor[myself][3] = 2; |
149 |
} |
150 |
} |
151 |
if (global.monstertype[myself] == 7Clover (old/unused)) |
152 |
{ |
153 |
global.monstername[myself] = ; |
154 |
global.monstermaxhp[myself] = 270; |
155 |
global.monsterhp[myself] = 270; |
156 |
global.monsterat[myself] = 8; |
157 |
global.monsterdf[myself] = 1; |
158 |
global.monsterexp[myself] = 0; |
159 |
global.monstergold[myself] = 43; |
160 |
global.sparepoint[myself] = 10; |
161 |
global.mercymod[myself] = 0; |
162 |
global.mercymax[myself] = 100; |
163 |
global.canact[myself][0] = 1; |
164 |
global.actname[myself][0] = ; |
165 |
myact = choose(0, 1, 2); |
166 |
if (myact == 0) |
167 |
{ |
168 |
global.canact[myself][1] = 1; |
169 |
global.actname[myself][1] = ; |
170 |
global.canact[myself][2] = 1; |
171 |
global.actname[myself][2] = ; |
172 |
global.canact[myself][3] = 1; |
173 |
global.actname[myself][3] = ; |
174 |
} |
175 |
if (myact == 1) |
176 |
{ |
177 |
global.canact[myself][1] = 1; |
178 |
global.actname[myself][1] = ; |
179 |
global.canact[myself][2] = 1; |
180 |
global.actname[myself][2] = ; |
181 |
global.canact[myself][3] = 1; |
182 |
global.actname[myself][3] = ; |
183 |
} |
184 |
if (myact == 2) |
185 |
{ |
186 |
global.canact[myself][1] = 1; |
187 |
global.actname[myself][1] = ; |
188 |
global.canact[myself][2] = 1; |
189 |
global.actname[myself][2] = ; |
190 |
global.canact[myself][3] = 1; |
191 |
global.actname[myself][3] = ; |
192 |
} |
193 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2)) |
194 |
{ |
195 |
global.canact[myself][4] = 1; |
196 |
global.actname[myself][4] = ; |
197 |
global.actactor[myself][4] = 3; |
198 |
} |
199 |
} |
200 |
if (global.monstertype[myself] == 8Pippins) |
201 |
{ |
202 |
global.monstername[myself] = ; |
203 |
global.monstermaxhp[myself] = 170; |
204 |
global.monsterhp[myself] = 170; |
205 |
global.monsterat[myself] = 8; |
206 |
global.monsterdf[myself] = 0; |
207 |
global.monsterexp[myself] = 0; |
208 |
global.monstergold[myself] = 50; |
209 |
global.sparepoint[myself] = 10; |
210 |
global.mercymod[myself] = 0; |
211 |
global.mercymax[myself] = 100; |
212 |
global.canact[myself][0] = 1; |
213 |
global.actname[myself][0] = ; |
214 |
global.canact[myself][1] = 1; |
215 |
global.actname[myself][1] = ; |
216 |
global.canact[myself][2] = 1; |
217 |
global.actname[myself][2] = ; |
218 |
global.actactor[myself][2] = 3; |
219 |
} |
220 |
if (global.monstertype[myself] == 9C.Round) |
221 |
{ |
222 |
global.monstername[myself] = ; |
223 |
global.monstermaxhp[myself] = 10; |
224 |
global.monsterhp[myself] = 10; |
225 |
global.monsterat[myself] = 5; |
226 |
global.monsterdf[myself] = 0; |
227 |
global.monsterexp[myself] = 0; |
228 |
global.monstergold[myself] = 10; |
229 |
global.sparepoint[myself] = 0; |
230 |
global.mercymod[myself] = 0; |
231 |
global.mercymax[myself] = 100; |
232 |
global.canact[myself][0] = 1; |
233 |
global.actname[myself][0] = ; |
234 |
if (global.encounterno == 7) |
235 |
{ |
236 |
if (global.plot < 40) |
237 |
global.plot = 40; |
238 |
} |
239 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2)) |
240 |
{ |
241 |
global.canact[myself][1] = 1; |
242 |
global.actactor[myself][1] = 2; |
243 |
global.actname[myself][1] = ; |
244 |
global.canact[myself][2] = 1; |
245 |
global.actname[myself][2] = ; |
246 |
global.actactor[myself][2] = 3; |
247 |
} |
248 |
} |
249 |
if (global.monstertype[myself] == 10K.Round) |
250 |
{ |
251 |
global.monstername[myself] = ; |
252 |
global.monstermaxhp[myself] = 1300; |
253 |
global.monsterhp[myself] = 1300; |
254 |
global.monsterat[myself] = 7.5; |
255 |
global.monsterdf[myself] = 3; |
256 |
global.monsterexp[myself] = 0; |
257 |
global.monstergold[myself] = 100; |
258 |
global.sparepoint[myself] = 0; |
259 |
global.mercymod[myself] = 0; |
260 |
global.mercymax[myself] = 100; |
261 |
global.canact[myself][0] = 1; |
262 |
global.actname[myself][0] = ; |
263 |
global.canact[myself][1] = 1; |
264 |
global.actname[myself][1] = ; |
265 |
global.canact[myself][2] = 1; |
266 |
global.actname[myself][2] = ; |
267 |
global.actactor[myself][2] = 3; |
268 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2)) |
269 |
{ |
270 |
global.canact[myself][3] = 1; |
271 |
global.actname[myself][3] = ; |
272 |
global.actactor[myself][3] = 3; |
273 |
} |
274 |
} |
275 |
if (global.monstertype[myself] == 11Ponman) |
276 |
{ |
277 |
global.monstername[myself] = ; |
278 |
global.monstermaxhp[myself] = 140; |
279 |
global.monsterhp[myself] = 140; |
280 |
global.monsterat[myself] = 7; |
281 |
global.monsterdf[myself] = 1; |
282 |
global.monsterexp[myself] = 0; |
283 |
global.monstergold[myself] = 23; |
284 |
global.sparepoint[myself] = 10; |
285 |
global.mercymod[myself] = 0; |
286 |
global.mercymax[myself] = 100; |
287 |
global.canact[myself][0] = 1; |
288 |
global.actname[myself][0] = ; |
289 |
global.canact[myself][1] = 1; |
290 |
global.actname[myself][1] = ; |
291 |
global.canact[myself][2] = 1; |
292 |
global.actname[myself][2] = ; |
293 |
global.actactor[myself][2] = 3; |
294 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2) && global.plot < 150) |
295 |
{ |
296 |
global.canact[myself][3] = 1; |
297 |
global.actname[myself][3] = ; |
298 |
global.actactor[myself][3] = 3; |
299 |
} |
300 |
} |
301 |
if (global.monstertype[myself] == 12Lancer 2) |
302 |
{ |
303 |
global.monstername[myself] = ; |
304 |
global.monstermaxhp[myself] = 2400; |
305 |
global.monsterhp[myself] = 2400; |
306 |
global.monsterat[myself] = 4; |
307 |
global.monsterdf[myself] = -40; |
308 |
global.monsterexp[myself] = 0; |
309 |
global.monstergold[myself] = 0; |
310 |
global.sparepoint[myself] = 0; |
311 |
global.mercymod[myself] = 0; |
312 |
global.mercymax[myself] = 100; |
313 |
global.canact[myself][0] = 1; |
314 |
global.actname[myself][0] = ; |
315 |
} |
316 |
if (global.monstertype[myself] == 13Rabbick) |
317 |
{ |
318 |
global.monstername[myself] = ; |
319 |
global.monstermaxhp[myself] = 120; |
320 |
global.monsterhp[myself] = 120; |
321 |
global.monsterat[myself] = 8; |
322 |
global.monsterdf[myself] = 1; |
323 |
global.monsterexp[myself] = 0; |
324 |
global.monstergold[myself] = 38; |
325 |
global.sparepoint[myself] = 10; |
326 |
global.mercymod[myself] = 0; |
327 |
global.mercymax[myself] = 100; |
328 |
global.canact[myself][0] = 1; |
329 |
global.actname[myself][0] = ; |
330 |
global.canact[myself][1] = 1; |
331 |
global.actname[myself][1] = ; |
332 |
global.canact[myself][2] = 1; |
333 |
global.actname[myself][2] = ; |
334 |
global.actactor[myself][2] = 3; |
335 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2) && global.plot < 150) |
336 |
{ |
337 |
global.canact[myself][3] = 1; |
338 |
global.actname[myself][3] = ; |
339 |
global.actactor[myself][3] = 3; |
340 |
} |
341 |
} |
342 |
if (global.monstertype[myself] == 14Bloxer) |
343 |
{ |
344 |
global.monstername[myself] = ; |
345 |
global.monstermaxhp[myself] = 130; |
346 |
global.monsterhp[myself] = 130; |
347 |
global.monsterat[myself] = 9; |
348 |
global.monsterdf[myself] = 2; |
349 |
global.monsterexp[myself] = 0; |
350 |
global.monstergold[myself] = 38; |
351 |
global.sparepoint[myself] = 10; |
352 |
global.mercymod[myself] = 0; |
353 |
global.mercymax[myself] = 100; |
354 |
global.canact[myself][0] = 1; |
355 |
global.actname[myself][0] = ; |
356 |
global.canact[myself][1] = 1; |
357 |
global.actname[myself][1] = ; |
358 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2) && global.plot >= 150) |
359 |
{ |
360 |
global.canact[myself][2] = 1; |
361 |
global.actname[myself][2] = ; |
362 |
global.actactor[myself][2] = 2; |
363 |
} |
364 |
} |
365 |
if (global.monstertype[myself] == 15Jigsawry) |
366 |
{ |
367 |
global.monstername[myself] = ; |
368 |
global.monstermaxhp[myself] = 90; |
369 |
global.monsterhp[myself] = 90; |
370 |
global.monsterat[myself] = 5; |
371 |
global.monsterdf[myself] = 0; |
372 |
global.monsterexp[myself] = 0; |
373 |
global.monstergold[myself] = 20; |
374 |
global.sparepoint[myself] = 10; |
375 |
global.mercymod[myself] = 0; |
376 |
global.mercymax[myself] = 100; |
377 |
global.canact[myself][0] = 1; |
378 |
global.actname[myself][0] = ; |
379 |
global.canact[myself][1] = 1; |
380 |
global.actname[myself][1] = ; |
381 |
if (scr_havechar_ch1scr_havechar_ch1function scr_havechar_ch1(arg0)
{
_rreturn = 0;
if (global.char[0] == arg0)
_rreturn = 1;
if (global.char[1] == arg0)
_rreturn = 1;
if (global.char[2] == arg0)
_rreturn = 1;
return _rreturn;
} (2) && global.plot < 150) |
382 |
{ |
383 |
global.canact[myself][2] = 1; |
384 |
global.actname[myself][2] = ; |
385 |
global.actactor[myself][2] = 3; |
386 |
} |
387 |
} |
388 |
if (global.monstertype[myself] == 16Clover (Boss)) |
389 |
{ |
390 |
global.monstername[myself] = ; |
391 |
global.monstermaxhp[myself] = 270; |
392 |
global.monsterhp[myself] = 270; |
393 |
global.monsterat[myself] = 6; |
394 |
global.monsterdf[myself] = 1; |
395 |
global.monsterexp[myself] = 0; |
396 |
global.monstergold[myself] = 80; |
397 |
global.sparepoint[myself] = 10; |
398 |
global.mercymod[myself] = 0; |
399 |
global.mercymax[myself] = 100; |
400 |
global.canact[myself][0] = 1; |
401 |
global.actname[myself][0] = ; |
402 |
global.canact[myself][1] = 1; |
403 |
global.actname[myself][1] = ; |
404 |
global.actactor[myself][1] = 3; |
405 |
global.actname[myself][2] = ; |
406 |
global.canact[myself][2] = 1; |
407 |
global.actactor[myself][2] = 3; |
408 |
global.actname[myself][3] = ; |
409 |
global.canact[myself][3] = 1; |
410 |
global.actactor[myself][3] = 3; |
411 |
global.actname[myself][4] = ; |
412 |
global.canact[myself][4] = 1; |
413 |
global.actname[myself][5] = ; |
414 |
global.canact[myself][5] = 1; |
415 |
myact = choose(0, 1, 2); |
416 |
} |
417 |
if (global.monstertype[myself] == 17DoomTank) |
418 |
{ |
419 |
global.monstername[myself] = ; |
420 |
global.monstermaxhp[myself] = 700; |
421 |
global.monsterhp[myself] = 700; |
422 |
global.monsterat[myself] = 6; |
423 |
global.monsterdf[myself] = 0; |
424 |
global.monsterexp[myself] = 0; |
425 |
global.monstergold[myself] = 0; |
426 |
global.sparepoint[myself] = 0; |
427 |
global.mercymod[myself] = 0; |
428 |
global.mercymax[myself] = 100; |
429 |
global.canact[myself][0] = 1; |
430 |
global.actname[myself][0] = ; |
431 |
global.canact[myself][1] = 1; |
432 |
global.actname[myself][1] = ; |
433 |
global.actactor[myself][1] = 3; |
434 |
global.canact[myself][2] = 1; |
435 |
global.actname[myself][2] = ; |
436 |
global.actactor[myself][2] = 3; |
437 |
global.canact[myself][3] = 1; |
438 |
global.actname[myself][3] = ; |
439 |
global.canact[myself][4] = 1; |
440 |
global.actname[myself][4] = ; |
441 |
} |
442 |
if (global.monstertype[myself] == 18Lancer 3 (w/ Susie)) |
443 |
{ |
444 |
global.monstername[myself] = ; |
445 |
global.monstermaxhp[myself] = 800; |
446 |
global.monsterhp[myself] = 800; |
447 |
global.monsterat[myself] = 6; |
448 |
global.monsterdf[myself] = 1; |
449 |
global.monsterexp[myself] = 0; |
450 |
global.monstergold[myself] = 0; |
451 |
global.sparepoint[myself] = 0; |
452 |
global.mercymod[myself] = 0; |
453 |
global.mercymax[myself] = 100; |
454 |
global.canact[myself][0] = 1; |
455 |
global.actname[myself][0] = ; |
456 |
global.canact[myself][1] = 1; |
457 |
global.actname[myself][1] = ; |
458 |
global.canact[myself][2] = 1; |
459 |
global.actname[myself][2] = ; |
460 |
global.actactor[myself][2] = 3; |
461 |
} |
462 |
if (global.monstertype[myself] == 19Susie (w/ Lancer)) |
463 |
{ |
464 |
_armordf = global.itemdf[2][0] + global.itemdf[2][1] + global.itemdf[2][2]; |
465 |
global.monstername[myself] = ; |
466 |
global.monstermaxhp[myself] = 120; |
467 |
global.monsterhp[myself] = 120; |
468 |
global.monsterat[myself] = 7; |
469 |
global.monsterdf[myself] = -5 + _armordf; |
470 |
global.monsterexp[myself] = 0; |
471 |
global.monstergold[myself] = 0; |
472 |
global.sparepoint[myself] = 0; |
473 |
global.mercymod[myself] = 0; |
474 |
global.mercymax[myself] = 100; |
475 |
global.canact[myself][0] = 1; |
476 |
global.actname[myself][0] = ; |
477 |
global.canact[myself][1] = 1; |
478 |
global.actname[myself][1] = ; |
479 |
global.canact[myself][2] = 1; |
480 |
global.actname[myself][2] = ; |
481 |
global.actactor[myself][2] = 3; |
482 |
} |
483 |
if (global.monstertype[myself] == 20JEVIL) |
484 |
{ |
485 |
global.monstername[myself] = ; |
486 |
global.monstermaxhp[myself] = 3500; |
487 |
global.monsterhp[myself] = 3500; |
488 |
global.monsterat[myself] = 10; |
489 |
global.monsterdf[myself] = 5; |
490 |
global.monsterexp[myself] = 0; |
491 |
global.monstergold[myself] = 0; |
492 |
global.sparepoint[myself] = 0; |
493 |
global.mercymod[myself] = 0; |
494 |
global.mercymax[myself] = 999; |
495 |
global.canact[myself][0] = 1; |
496 |
global.actname[myself][0] = ; |
497 |
global.canact[myself][1] = 1; |
498 |
global.actactor[myself][1] = 1; |
499 |
global.actname[myself][1] = ; |
500 |
global.actdesc[myself][1] = ; |
501 |
global.actcost[myself][1] = 50; |
502 |
global.canact[myself][2] = 1; |
503 |
global.actactor[myself][2] = 4; |
504 |
global.actname[myself][2] = ; |
505 |
global.actdesc[myself][2] = ; |
506 |
global.actcost[myself][2] = 125; |
507 |
} |
508 |
if (global.monstertype[myself] == 21K.Round 2) |
509 |
{ |
510 |
global.monstername[myself] = ; |
511 |
global.monstermaxhp[myself] = 1300; |
512 |
global.monsterhp[myself] = 1300; |
513 |
global.monsterat[myself] = 8; |
514 |
global.monsterdf[myself] = 3; |
515 |
global.monsterexp[myself] = 0; |
516 |
global.monstergold[myself] = 100; |
517 |
global.sparepoint[myself] = 0; |
518 |
global.mercymod[myself] = 0; |
519 |
global.mercymax[myself] = 100; |
520 |
global.canact[myself][0] = 1; |
521 |
global.actname[myself][0] = ; |
522 |
if (global.flag[246 checkers_act] == 1) |
523 |
global.actname[myself][0] = ; |
524 |
global.canact[myself][1] = 1; |
525 |
global.actname[myself][1] = ; |
526 |
global.canact[myself][2] = 1; |
527 |
global.actname[myself][2] = ; |
528 |
global.actactor[myself][2] = 4; |
529 |
} |
530 |
if (global.monstertype[myself] == 22Rudinn Ranger) |
531 |
{ |
532 |
global.monstername[myself] = ; |
533 |
global.monstermaxhp[myself] = 170; |
534 |
global.monsterhp[myself] = 170; |
535 |
global.monsterat[myself] = 8; |
536 |
global.monsterdf[myself] = 0; |
537 |
global.monsterexp[myself] = 0; |
538 |
global.monstergold[myself] = 45; |
539 |
global.sparepoint[myself] = 25; |
540 |
global.mercymod[myself] = 0; |
541 |
global.mercymax[myself] = 100; |
542 |
global.canact[myself][0] = 1; |
543 |
global.actname[myself][0] = ; |
544 |
global.canact[myself][1] = 1; |
545 |
global.actname[myself][1] = ; |
546 |
global.canact[myself][2] = 1; |
547 |
global.actname[myself][2] = ; |
548 |
global.actactor[myself][2] = 2; |
549 |
} |
550 |
if (global.monstertype[myself] == 23Head Hathy) |
551 |
{ |
552 |
global.monstername[myself] = ; |
553 |
global.monstermaxhp[myself] = 190; |
554 |
global.monsterhp[myself] = 190; |
555 |
global.monsterat[myself] = 8; |
556 |
global.monsterdf[myself] = 0; |
557 |
global.monsterexp[myself] = 0; |
558 |
global.monstergold[myself] = 40; |
559 |
global.sparepoint[myself] = 10; |
560 |
global.mercymod[myself] = 0; |
561 |
global.mercymax[myself] = 100; |
562 |
global.canact[myself][0] = 1; |
563 |
global.actname[myself][0] = ; |
564 |
global.canact[myself][1] = 1; |
565 |
global.actname[myself][1] = ; |
566 |
global.canact[myself][2] = 1; |
567 |
global.actname[myself][2] = ; |
568 |
global.actactor[myself][2] = 2; |
569 |
} |
570 |
if (global.monstertype[myself] == 25King) |
571 |
{ |
572 |
global.monstername[myself] = ; |
573 |
global.monstermaxhp[myself] = 2800; |
574 |
global.monsterhp[myself] = 2800; |
575 |
global.monsterat[myself] = 8; |
576 |
global.monsterdf[myself] = 0; |
577 |
global.monsterexp[myself] = 0; |
578 |
global.monstergold[myself] = 0; |
579 |
global.sparepoint[myself] = 0; |
580 |
global.mercymod[myself] = 0; |
581 |
global.mercymax[myself] = 999; |
582 |
global.canact[myself][0] = 1; |
583 |
global.actname[myself][0] = ; |
584 |
global.canact[myself][1] = 1; |
585 |
global.actactor[myself][1] = 1; |
586 |
global.actname[myself][1] = ; |
587 |
global.actdesc[myself][1] = " "; |
588 |
global.actcost[myself][1] = 0; |
589 |
global.canact[myself][2] = 1; |
590 |
global.actactor[myself][2] = 2; |
591 |
global.actname[myself][2] = ; |
592 |
global.actdesc[myself][2] = " "; |
593 |
global.actcost[myself][2] = 0; |
594 |
global.canact[myself][3] = 1; |
595 |
global.actactor[myself][3] = 3; |
596 |
global.actname[myself][3] = ; |
597 |
global.actdesc[myself][3] = " "; |
598 |
global.actcost[myself][3] = 0; |
599 |
if (global.tempflag[5] == 1) |
600 |
{ |
601 |
global.canact[myself][1] = 1; |
602 |
global.actactor[myself][1] = 1; |
603 |
global.actname[myself][1] = ; |
604 |
global.actdesc[myself][1] = ; |
605 |
global.actcost[myself][1] = 62; |
606 |
} |
607 |
if (global.tempflag[6] == 1) |
608 |
{ |
609 |
global.canact[myself][2] = 1; |
610 |
global.actactor[myself][2] = 2; |
611 |
global.actname[myself][2] = ; |
612 |
global.actdesc[myself][2] = ; |
613 |
global.actcost[myself][2] = 150; |
614 |
} |
615 |
if (global.tempflag[7] == 1) |
616 |
{ |
617 |
global.canact[myself][3] = 1; |
618 |
global.actactor[myself][3] = 3; |
619 |
global.actname[myself][3] = ; |
620 |
global.actdesc[myself][3] = ; |
621 |
global.actcost[myself][3] = 125; |
622 |
} |
623 |
} |
624 |
} |