1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back! *
3 *----------------------------------------------------------*
4 * (c) 1995-2006 Artsoft Entertainment *
6 * Detmolder Strasse 189 *
9 * e-mail: info@artsoft.org *
10 *----------------------------------------------------------*
12 ***********************************************************/
14 #include "libgame/libgame.h"
18 /* List values that are not defined in the configuration file are set to
19 reliable default values. If that value is GFX_ARG_UNDEFINED, it will
20 be dynamically determined, using some of the other list values. */
22 struct ConfigTypeInfo image_config_suffix[] =
24 { ".x", ARG_UNDEFINED, TYPE_INTEGER },
25 { ".y", ARG_UNDEFINED, TYPE_INTEGER },
26 { ".xpos", ARG_UNDEFINED, TYPE_INTEGER },
27 { ".ypos", ARG_UNDEFINED, TYPE_INTEGER },
28 { ".width", ARG_UNDEFINED, TYPE_INTEGER },
29 { ".height", ARG_UNDEFINED, TYPE_INTEGER },
30 { ".vertical", "false", TYPE_BOOLEAN },
31 { ".offset", ARG_UNDEFINED, TYPE_INTEGER },
32 { ".xoffset", ARG_UNDEFINED, TYPE_INTEGER },
33 { ".yoffset", ARG_UNDEFINED, TYPE_INTEGER },
34 { ".2nd_movement_tile", "false", TYPE_BOOLEAN },
35 { ".2nd_vertical", ARG_UNDEFINED, TYPE_BOOLEAN },
36 { ".2nd_offset", ARG_UNDEFINED, TYPE_INTEGER },
37 { ".2nd_xoffset", ARG_UNDEFINED, TYPE_INTEGER },
38 { ".2nd_yoffset", ARG_UNDEFINED, TYPE_INTEGER },
39 { ".2nd_swap_tiles", ARG_UNDEFINED, TYPE_BOOLEAN },
40 { ".frames", ARG_UNDEFINED, TYPE_INTEGER },
41 { ".frames_per_line", ARG_UNDEFINED, TYPE_INTEGER },
42 { ".start_frame", ARG_UNDEFINED, TYPE_INTEGER },
43 { ".delay", "1", TYPE_INTEGER },
44 { ".anim_mode", ARG_UNDEFINED, TYPE_STRING },
45 { ".global_sync", "false", TYPE_BOOLEAN },
46 { ".crumbled_like", ARG_UNDEFINED, TYPE_ELEMENT },
47 { ".diggable_like", ARG_UNDEFINED, TYPE_ELEMENT },
48 { ".border_size", ARG_UNDEFINED, TYPE_INTEGER },
49 { ".step_offset", "4", TYPE_INTEGER },
50 { ".step_delay", "1", TYPE_INTEGER },
51 { ".direction", ARG_UNDEFINED, TYPE_STRING },
52 { ".position", ARG_UNDEFINED, TYPE_STRING },
53 { ".draw_xoffset", "0", TYPE_INTEGER },
54 { ".draw_yoffset", "0", TYPE_INTEGER },
55 { ".draw_masked", "false", TYPE_BOOLEAN },
56 { ".anim_delay_fixed", ARG_UNDEFINED, TYPE_INTEGER },
57 { ".anim_delay_random", ARG_UNDEFINED, TYPE_INTEGER },
58 { ".post_delay_fixed", ARG_UNDEFINED, TYPE_INTEGER },
59 { ".post_delay_random", ARG_UNDEFINED, TYPE_INTEGER },
60 { ".name", ARG_UNDEFINED, TYPE_STRING },
61 { ".scale_up_factor", ARG_UNDEFINED, TYPE_INTEGER },
62 { ".clone_from", ARG_UNDEFINED, TYPE_GRAPHIC },
63 { ".fade_mode", ARG_UNDEFINED, TYPE_INTEGER },
64 { ".fade_delay", ARG_UNDEFINED, TYPE_INTEGER },
65 { ".post_delay", ARG_UNDEFINED, TYPE_INTEGER },
66 { ".auto_delay", ARG_UNDEFINED, TYPE_INTEGER },
67 { ".align", ARG_UNDEFINED, TYPE_INTEGER },
68 { ".valign", ARG_UNDEFINED, TYPE_INTEGER },
69 { ".sort_priority", ARG_UNDEFINED, TYPE_INTEGER },
70 { ".class", ARG_UNDEFINED, TYPE_STRING },
71 { ".style", ARG_UNDEFINED, TYPE_STRING },
76 struct ConfigInfo image_config[] =
78 /* images for Boulder Dash style elements and actions */
80 { "bd_wall", "RocksDC.pcx" },
81 { "bd_wall.xpos", "12" },
82 { "bd_wall.ypos", "9" },
83 { "bd_wall.frames", "1" },
84 { "bd_wall.EDITOR", "RocksDC.pcx" },
85 { "bd_wall.EDITOR.xpos", "14" },
86 { "bd_wall.EDITOR.ypos", "13" },
88 { "bd_rock", "RocksDC.pcx" },
89 { "bd_rock.xpos", "12" },
90 { "bd_rock.ypos", "10" },
91 { "bd_rock.frames", "1" },
92 { "bd_rock.EDITOR", "RocksDC.pcx" },
93 { "bd_rock.EDITOR.xpos", "14" },
94 { "bd_rock.EDITOR.ypos", "14" },
95 { "bd_rock.moving.left", "RocksDC.pcx" },
96 { "bd_rock.moving.left.xpos", "12" },
97 { "bd_rock.moving.left.ypos", "10" },
98 { "bd_rock.moving.left.frames", "4" },
99 { "bd_rock.moving.left.delay", "2" },
100 { "bd_rock.moving.left.anim_mode", "reverse" },
101 { "bd_rock.moving.right", "RocksDC.pcx" },
102 { "bd_rock.moving.right.xpos", "12" },
103 { "bd_rock.moving.right.ypos", "10" },
104 { "bd_rock.moving.right.frames", "4" },
105 { "bd_rock.moving.right.start_frame", "1" },
106 { "bd_rock.moving.right.delay", "2" },
107 { "bd_rock.pushing.left", "RocksDC.pcx" },
108 { "bd_rock.pushing.left.xpos", "12" },
109 { "bd_rock.pushing.left.ypos", "10" },
110 { "bd_rock.pushing.left.frames", "4" },
111 { "bd_rock.pushing.left.delay", "2" },
112 { "bd_rock.pushing.left.anim_mode", "reverse" },
113 { "bd_rock.pushing.right", "RocksDC.pcx" },
114 { "bd_rock.pushing.right.xpos", "12" },
115 { "bd_rock.pushing.right.ypos", "10" },
116 { "bd_rock.pushing.right.frames", "4" },
117 { "bd_rock.pushing.right.start_frame", "1" },
118 { "bd_rock.pushing.right.delay", "2" },
120 { "bd_diamond", "RocksElements.pcx" },
121 { "bd_diamond.xpos", "0" },
122 { "bd_diamond.ypos", "10" },
123 { "bd_diamond.frames", "4" },
124 { "bd_diamond.delay", "4" },
125 { "bd_diamond.anim_mode", "reverse" },
126 { "bd_diamond.moving", "RocksElements.pcx" },
127 { "bd_diamond.moving.xpos", "3" },
128 { "bd_diamond.moving.ypos", "10" },
129 { "bd_diamond.moving.frames", "2" },
130 { "bd_diamond.moving.delay", "4" },
131 { "bd_diamond.falling", "RocksElements.pcx" },
132 { "bd_diamond.falling.xpos", "3" },
133 { "bd_diamond.falling.ypos", "10" },
134 { "bd_diamond.falling.frames", "2" },
135 { "bd_diamond.falling.delay", "4" },
137 { "bd_magic_wall", "RocksElements.pcx" },
138 { "bd_magic_wall.xpos", "12" },
139 { "bd_magic_wall.ypos", "10" },
140 { "bd_magic_wall.frames", "1" },
141 { "bd_magic_wall.active", "RocksElements.pcx" },
142 { "bd_magic_wall.active.xpos", "12" },
143 { "bd_magic_wall.active.ypos", "10" },
144 { "bd_magic_wall.active.frames", "4" },
145 { "bd_magic_wall.active.anim_mode", "reverse" },
146 { "bd_magic_wall.active.delay", "4" },
147 { "bd_magic_wall.active.global_sync", "true" },
148 { "bd_magic_wall.filling", "RocksElements.pcx" },
149 { "bd_magic_wall.filling.xpos", "12" },
150 { "bd_magic_wall.filling.ypos", "10" },
151 { "bd_magic_wall.filling.frames", "4" },
152 { "bd_magic_wall.filling.anim_mode", "reverse" },
153 { "bd_magic_wall.filling.delay", "4" },
154 { "bd_magic_wall.filling.global_sync", "true" },
155 { "bd_magic_wall_full", "RocksElements.pcx" },
156 { "bd_magic_wall_full.xpos", "12" },
157 { "bd_magic_wall_full.ypos", "10" },
158 { "bd_magic_wall_full.frames", "4" },
159 { "bd_magic_wall_full.anim_mode", "reverse" },
160 { "bd_magic_wall_full.delay", "4" },
161 { "bd_magic_wall_full.global_sync", "true" },
162 { "bd_magic_wall.emptying", "RocksElements.pcx" },
163 { "bd_magic_wall.emptying.xpos", "12" },
164 { "bd_magic_wall.emptying.ypos", "10" },
165 { "bd_magic_wall.emptying.frames", "4" },
166 { "bd_magic_wall.emptying.anim_mode", "reverse" },
167 { "bd_magic_wall.emptying.delay", "4" },
168 { "bd_magic_wall.emptying.global_sync", "true" },
169 { "bd_magic_wall_dead", "RocksElements.pcx" },
170 { "bd_magic_wall_dead.xpos", "12" },
171 { "bd_magic_wall_dead.ypos", "10" },
172 { "bd_magic_wall_dead.frames", "1" },
174 { "bd_amoeba", "RocksElements.pcx" },
175 { "bd_amoeba.xpos", "8" },
176 { "bd_amoeba.ypos", "6" },
177 { "bd_amoeba.frames", "4" },
178 { "bd_amoeba.delay", "1000000" },
179 { "bd_amoeba.anim_mode", "random" },
180 { "bd_amoeba.EDITOR", "RocksElements.pcx" },
181 { "bd_amoeba.EDITOR.xpos", "8" },
182 { "bd_amoeba.EDITOR.ypos", "7" },
184 { "bd_butterfly", "RocksElements.pcx" },
185 { "bd_butterfly.xpos", "4" },
186 { "bd_butterfly.ypos", "12" },
187 { "bd_butterfly.frames", "2" },
188 { "bd_butterfly.anim_mode", "pingpong" },
189 { "bd_butterfly.delay", "4" },
190 { "bd_butterfly.global_sync", "true" },
191 { "bd_butterfly.right", "RocksElements.pcx" },
192 { "bd_butterfly.right.xpos", "4" },
193 { "bd_butterfly.right.ypos", "12" },
194 { "bd_butterfly.right.frames", "2" },
195 { "bd_butterfly.right.anim_mode", "pingpong" },
196 { "bd_butterfly.right.delay", "4" },
197 { "bd_butterfly.right.global_sync", "true" },
198 { "bd_butterfly.right.EDITOR", "RocksElements.pcx" },
199 { "bd_butterfly.right.EDITOR.xpos", "8" },
200 { "bd_butterfly.right.EDITOR.ypos", "12" },
201 { "bd_butterfly.up", "RocksElements.pcx" },
202 { "bd_butterfly.up.xpos", "4" },
203 { "bd_butterfly.up.ypos", "12" },
204 { "bd_butterfly.up.frames", "2" },
205 { "bd_butterfly.up.anim_mode", "pingpong" },
206 { "bd_butterfly.up.delay", "4" },
207 { "bd_butterfly.up.global_sync", "true" },
208 { "bd_butterfly.up.EDITOR", "RocksElements.pcx" },
209 { "bd_butterfly.up.EDITOR.xpos", "9" },
210 { "bd_butterfly.up.EDITOR.ypos", "12" },
211 { "bd_butterfly.left", "RocksElements.pcx" },
212 { "bd_butterfly.left.xpos", "4" },
213 { "bd_butterfly.left.ypos", "12" },
214 { "bd_butterfly.left.frames", "2" },
215 { "bd_butterfly.left.anim_mode", "pingpong" },
216 { "bd_butterfly.left.delay", "4" },
217 { "bd_butterfly.left.global_sync", "true" },
218 { "bd_butterfly.left.EDITOR", "RocksElements.pcx" },
219 { "bd_butterfly.left.EDITOR.xpos", "10" },
220 { "bd_butterfly.left.EDITOR.ypos", "12" },
221 { "bd_butterfly.down", "RocksElements.pcx" },
222 { "bd_butterfly.down.xpos", "4" },
223 { "bd_butterfly.down.ypos", "12" },
224 { "bd_butterfly.down.frames", "2" },
225 { "bd_butterfly.down.anim_mode", "pingpong" },
226 { "bd_butterfly.down.delay", "4" },
227 { "bd_butterfly.down.global_sync", "true" },
228 { "bd_butterfly.down.EDITOR", "RocksElements.pcx" },
229 { "bd_butterfly.down.EDITOR.xpos", "11" },
230 { "bd_butterfly.down.EDITOR.ypos", "12" },
232 { "bd_firefly", "RocksElements.pcx" },
233 { "bd_firefly.xpos", "6" },
234 { "bd_firefly.ypos", "12" },
235 { "bd_firefly.frames", "2" },
236 { "bd_firefly.anim_mode", "pingpong" },
237 { "bd_firefly.delay", "4" },
238 { "bd_firefly.global_sync", "true" },
239 { "bd_firefly.right", "RocksElements.pcx" },
240 { "bd_firefly.right.xpos", "6" },
241 { "bd_firefly.right.ypos", "12" },
242 { "bd_firefly.right.frames", "2" },
243 { "bd_firefly.right.anim_mode", "pingpong" },
244 { "bd_firefly.right.delay", "4" },
245 { "bd_firefly.right.global_sync", "true" },
246 { "bd_firefly.right.EDITOR", "RocksElements.pcx" },
247 { "bd_firefly.right.EDITOR.xpos", "12" },
248 { "bd_firefly.right.EDITOR.ypos", "12" },
249 { "bd_firefly.up", "RocksElements.pcx" },
250 { "bd_firefly.up.xpos", "6" },
251 { "bd_firefly.up.ypos", "12" },
252 { "bd_firefly.up.frames", "2" },
253 { "bd_firefly.up.anim_mode", "pingpong" },
254 { "bd_firefly.up.delay", "4" },
255 { "bd_firefly.up.global_sync", "true" },
256 { "bd_firefly.up.EDITOR", "RocksElements.pcx" },
257 { "bd_firefly.up.EDITOR.xpos", "13" },
258 { "bd_firefly.up.EDITOR.ypos", "12" },
259 { "bd_firefly.left", "RocksElements.pcx" },
260 { "bd_firefly.left.xpos", "6" },
261 { "bd_firefly.left.ypos", "12" },
262 { "bd_firefly.left.frames", "2" },
263 { "bd_firefly.left.anim_mode", "pingpong" },
264 { "bd_firefly.left.delay", "4" },
265 { "bd_firefly.left.global_sync", "true" },
266 { "bd_firefly.left.EDITOR", "RocksElements.pcx" },
267 { "bd_firefly.left.EDITOR.xpos", "14" },
268 { "bd_firefly.left.EDITOR.ypos", "12" },
269 { "bd_firefly.down", "RocksElements.pcx" },
270 { "bd_firefly.down.xpos", "6" },
271 { "bd_firefly.down.ypos", "12" },
272 { "bd_firefly.down.frames", "2" },
273 { "bd_firefly.down.anim_mode", "pingpong" },
274 { "bd_firefly.down.delay", "4" },
275 { "bd_firefly.down.global_sync", "true" },
276 { "bd_firefly.down.EDITOR", "RocksElements.pcx" },
277 { "bd_firefly.down.EDITOR.xpos", "15" },
278 { "bd_firefly.down.EDITOR.ypos", "12" },
280 /* images for Supaplex style elements and actions */
282 { "[sp_default].exploding", "RocksSP.pcx" },
283 { "[sp_default].exploding.xpos", "8" },
284 { "[sp_default].exploding.ypos", "3" },
285 { "[sp_default].exploding.frames", "8" },
286 { "[sp_default].exploding.delay", "4" },
287 { "[sp_default].exploding.anim_mode", "linear" },
289 { "sp_zonk", "RocksSP.pcx" },
290 { "sp_zonk.xpos", "1" },
291 { "sp_zonk.ypos", "0" },
292 { "sp_zonk.frames", "1" },
293 { "sp_zonk.moving.left", "RocksSP.pcx" },
294 { "sp_zonk.moving.left.xpos", "0" },
295 { "sp_zonk.moving.left.ypos", "6" },
296 { "sp_zonk.moving.left.frames", "4" },
297 { "sp_zonk.moving.left.delay", "1" },
298 { "sp_zonk.moving.left.anim_mode", "reverse" },
299 { "sp_zonk.moving.right", "RocksSP.pcx" },
300 { "sp_zonk.moving.right.xpos", "0" },
301 { "sp_zonk.moving.right.ypos", "6" },
302 { "sp_zonk.moving.right.frames", "4" },
303 { "sp_zonk.moving.right.start_frame", "1" },
304 { "sp_zonk.moving.right.delay", "1" },
305 { "sp_zonk.pushing.left", "RocksSP.pcx" },
306 { "sp_zonk.pushing.left.xpos", "0" },
307 { "sp_zonk.pushing.left.ypos", "6" },
308 { "sp_zonk.pushing.left.frames", "4" },
309 { "sp_zonk.pushing.left.delay", "1" },
310 { "sp_zonk.pushing.left.anim_mode", "reverse" },
311 { "sp_zonk.pushing.right", "RocksSP.pcx" },
312 { "sp_zonk.pushing.right.xpos", "0" },
313 { "sp_zonk.pushing.right.ypos", "6" },
314 { "sp_zonk.pushing.right.frames", "4" },
315 { "sp_zonk.pushing.right.start_frame", "1" },
316 { "sp_zonk.pushing.right.delay", "1" },
318 { "sp_base", "RocksSP.pcx" },
319 { "sp_base.xpos", "2" },
320 { "sp_base.ypos", "0" },
321 { "sp_base.frames", "1" },
322 { "sp_base.digging", "RocksSP.pcx" },
323 { "sp_base.digging.xpos", "2" },
324 { "sp_base.digging.ypos", "0" },
325 { "sp_base.digging.frames", "1" },
326 { "sp_base.digging.anim_mode", "opaque_player" },
327 { "sp_base.snapping", "RocksSP.pcx" },
328 { "sp_base.snapping.xpos", "8" },
329 { "sp_base.snapping.ypos", "2" },
330 { "sp_base.snapping.frames", "7" },
331 { "sp_base.snapping.anim_mode", "linear" },
333 { "sp_murphy", "RocksSP.pcx" },
334 { "sp_murphy.xpos", "3" },
335 { "sp_murphy.ypos", "0" },
336 { "sp_murphy.frames", "1" },
337 { "sp_murphy.moving.left", "RocksSP.pcx" },
338 { "sp_murphy.moving.left.xpos", "8" },
339 { "sp_murphy.moving.left.ypos", "0" },
340 { "sp_murphy.moving.left.frames", "3" },
341 { "sp_murphy.moving.left.anim_mode", "pingpong" },
342 { "sp_murphy.moving.left.delay", "2" },
343 { "sp_murphy.moving.left.start_frame", "1" },
344 { "sp_murphy.moving.right", "RocksSP.pcx" },
345 { "sp_murphy.moving.right.xpos", "11" },
346 { "sp_murphy.moving.right.ypos", "0" },
347 { "sp_murphy.moving.right.frames", "3" },
348 { "sp_murphy.moving.right.anim_mode", "pingpong" },
349 { "sp_murphy.moving.right.delay", "2" },
350 { "sp_murphy.moving.right.start_frame", "1" },
351 { "sp_murphy.digging.left", "RocksSP.pcx" },
352 { "sp_murphy.digging.left.xpos", "8" },
353 { "sp_murphy.digging.left.ypos", "0" },
354 { "sp_murphy.digging.left.frames", "3" },
355 { "sp_murphy.digging.left.anim_mode", "pingpong" },
356 { "sp_murphy.digging.left.delay", "2" },
357 { "sp_murphy.digging.left.start_frame", "1" },
358 { "sp_murphy.digging.right", "RocksSP.pcx" },
359 { "sp_murphy.digging.right.xpos", "11" },
360 { "sp_murphy.digging.right.ypos", "0" },
361 { "sp_murphy.digging.right.frames", "3" },
362 { "sp_murphy.digging.right.anim_mode", "pingpong" },
363 { "sp_murphy.digging.right.delay", "2" },
364 { "sp_murphy.digging.right.start_frame", "1" },
365 { "sp_murphy.collecting.left", "RocksSP.pcx" },
366 { "sp_murphy.collecting.left.xpos", "8" },
367 { "sp_murphy.collecting.left.ypos", "0" },
368 { "sp_murphy.collecting.left.frames", "3" },
369 { "sp_murphy.collecting.left.anim_mode", "pingpong" },
370 { "sp_murphy.collecting.left.delay", "2" },
371 { "sp_murphy.collecting.left.start_frame", "1" },
372 { "sp_murphy.collecting.right", "RocksSP.pcx" },
373 { "sp_murphy.collecting.right.xpos", "11" },
374 { "sp_murphy.collecting.right.ypos", "0" },
375 { "sp_murphy.collecting.right.frames", "3" },
376 { "sp_murphy.collecting.right.anim_mode", "pingpong" },
377 { "sp_murphy.collecting.right.delay", "2" },
378 { "sp_murphy.collecting.right.start_frame", "1" },
379 { "sp_murphy.pushing.left", "RocksSP.pcx" },
380 { "sp_murphy.pushing.left.xpos", "11" },
381 { "sp_murphy.pushing.left.ypos", "1" },
382 { "sp_murphy.pushing.left.frames", "1" },
383 { "sp_murphy.pushing.right", "RocksSP.pcx" },
384 { "sp_murphy.pushing.right.xpos", "10" },
385 { "sp_murphy.pushing.right.ypos", "1" },
386 { "sp_murphy.pushing.right.frames", "1" },
387 { "sp_murphy.snapping.left", "RocksSP.pcx" },
388 { "sp_murphy.snapping.left.xpos", "9" },
389 { "sp_murphy.snapping.left.ypos", "1" },
390 { "sp_murphy.snapping.left.frames", "1" },
391 { "sp_murphy.snapping.right", "RocksSP.pcx" },
392 { "sp_murphy.snapping.right.xpos", "8" },
393 { "sp_murphy.snapping.right.ypos", "1" },
394 { "sp_murphy.snapping.right.frames", "1" },
395 { "sp_murphy.snapping.up", "RocksSP.pcx" },
396 { "sp_murphy.snapping.up.xpos", "14" },
397 { "sp_murphy.snapping.up.ypos", "0" },
398 { "sp_murphy.snapping.up.frames", "1" },
399 { "sp_murphy.snapping.down", "RocksSP.pcx" },
400 { "sp_murphy.snapping.down.xpos", "15" },
401 { "sp_murphy.snapping.down.ypos", "0" },
402 { "sp_murphy.snapping.down.frames", "1" },
403 { "sp_murphy.boring", "RocksSP.pcx" },
404 { "sp_murphy.boring.xpos", "11" },
405 { "sp_murphy.boring.ypos", "12" },
406 { "sp_murphy.boring.frames", "1" },
407 { "sp_murphy.boring[1]", "RocksSP.pcx" },
408 { "sp_murphy.boring[1].xpos", "0" },
409 { "sp_murphy.boring[1].ypos", "12" },
410 { "sp_murphy.boring[1].frames", "12" },
411 { "sp_murphy.boring[1].delay", "10" },
412 { "sp_murphy.boring[1].anim_mode", "linear" },
413 { "sp_murphy.boring[1].anim_delay_fixed", "120" },
414 { "sp_murphy.boring[1].anim_delay_random", "0" },
415 { "sp_murphy.boring[1].post_delay_fixed", "500" },
416 { "sp_murphy.boring[1].post_delay_random", "500" },
417 { "sp_murphy.sleeping.left", "RocksSP.pcx" },
418 { "sp_murphy.sleeping.left.xpos", "4" },
419 { "sp_murphy.sleeping.left.ypos", "9" },
420 { "sp_murphy.sleeping.left.frames", "3" },
421 { "sp_murphy.sleeping.left.delay", "100" },
422 { "sp_murphy.sleeping.left.anim_mode", "linear,reverse" },
423 { "sp_murphy.sleeping.right", "RocksSP.pcx" },
424 { "sp_murphy.sleeping.right.xpos", "13" },
425 { "sp_murphy.sleeping.right.ypos", "12" },
426 { "sp_murphy.sleeping.right.frames", "3" },
427 { "sp_murphy.sleeping.right.delay", "100" },
428 { "sp_murphy.sleeping.right.anim_mode", "linear" },
429 { "sp_murphy.dropping", "RocksSP.pcx" },
430 { "sp_murphy.dropping.xpos", "11" },
431 { "sp_murphy.dropping.ypos", "12" },
432 { "sp_murphy.dropping.frames", "1" },
433 { "sp_murphy.shrinking", "RocksSP.pcx" },
434 { "sp_murphy.shrinking.xpos", "8" },
435 { "sp_murphy.shrinking.ypos", "14" },
436 { "sp_murphy.shrinking.frames", "8" },
437 { "sp_murphy.shrinking.delay", "4" },
438 { "sp_murphy.shrinking.anim_mode", "linear" },
440 { "sp_murphy_clone", "RocksSP.pcx" },
441 { "sp_murphy_clone.xpos", "3" },
442 { "sp_murphy_clone.ypos", "0" },
443 { "sp_murphy_clone.frames", "1" },
445 { "sp_infotron", "RocksSP.pcx" },
446 { "sp_infotron.xpos", "4" },
447 { "sp_infotron.ypos", "0" },
448 { "sp_infotron.frames", "1" },
449 { "sp_infotron.EDITOR", "RocksSP.pcx" },
450 { "sp_infotron.EDITOR.xpos", "8" },
451 { "sp_infotron.EDITOR.ypos", "11" },
452 { "sp_infotron.moving.left", "RocksSP.pcx" },
453 { "sp_infotron.moving.left.xpos", "8" },
454 { "sp_infotron.moving.left.ypos", "13" },
455 { "sp_infotron.moving.left.frames", "8" },
456 { "sp_infotron.moving.right", "RocksSP.pcx" },
457 { "sp_infotron.moving.right.xpos", "8" },
458 { "sp_infotron.moving.right.ypos", "13" },
459 { "sp_infotron.moving.right.frames", "8" },
460 { "sp_infotron.moving.right.start_frame", "6" },
461 { "sp_infotron.moving.right.anim_mode", "reverse" },
462 { "sp_infotron.collecting", "RocksSP.pcx" },
463 { "sp_infotron.collecting.xpos", "8" },
464 { "sp_infotron.collecting.ypos", "7" },
465 { "sp_infotron.collecting.frames", "8" },
466 { "sp_infotron.collecting.anim_mode", "linear" },
468 { "sp_chip_single", "RocksSP.pcx" },
469 { "sp_chip_single.xpos", "5" },
470 { "sp_chip_single.ypos", "0" },
471 { "sp_chip_single.frames", "1" },
472 { "sp_chip_left", "RocksSP.pcx" },
473 { "sp_chip_left.xpos", "2" },
474 { "sp_chip_left.ypos", "3" },
475 { "sp_chip_left.frames", "1" },
476 { "sp_chip_right", "RocksSP.pcx" },
477 { "sp_chip_right.xpos", "3" },
478 { "sp_chip_right.ypos", "3" },
479 { "sp_chip_right.frames", "1" },
480 { "sp_chip_top", "RocksSP.pcx" },
481 { "sp_chip_top.xpos", "6" },
482 { "sp_chip_top.ypos", "4" },
483 { "sp_chip_top.frames", "1" },
484 { "sp_chip_bottom", "RocksSP.pcx" },
485 { "sp_chip_bottom.xpos", "7" },
486 { "sp_chip_bottom.ypos", "4" },
487 { "sp_chip_bottom.frames", "1" },
489 { "sp_hardware_gray", "RocksSP.pcx" },
490 { "sp_hardware_gray.xpos", "6" },
491 { "sp_hardware_gray.ypos", "0" },
492 { "sp_hardware_gray.frames", "1" },
493 { "sp_hardware_green", "RocksSP.pcx" },
494 { "sp_hardware_green.xpos", "5" },
495 { "sp_hardware_green.ypos", "3" },
496 { "sp_hardware_green.frames", "1" },
497 { "sp_hardware_blue", "RocksSP.pcx" },
498 { "sp_hardware_blue.xpos", "6" },
499 { "sp_hardware_blue.ypos", "3" },
500 { "sp_hardware_blue.frames", "1" },
501 { "sp_hardware_red", "RocksSP.pcx" },
502 { "sp_hardware_red.xpos", "7" },
503 { "sp_hardware_red.ypos", "3" },
504 { "sp_hardware_red.frames", "1" },
505 { "sp_hardware_yellow", "RocksSP.pcx" },
506 { "sp_hardware_yellow.xpos", "0" },
507 { "sp_hardware_yellow.ypos", "4" },
508 { "sp_hardware_yellow.frames", "1" },
510 { "sp_exit_closed", "RocksSP.pcx" },
511 { "sp_exit_closed.xpos", "7" },
512 { "sp_exit_closed.ypos", "0" },
513 { "sp_exit_closed.frames", "1" },
514 { "sp_exit.opening", "RocksSP.pcx" },
515 { "sp_exit.opening.xpos", "7" },
516 { "sp_exit.opening.ypos", "0" },
517 { "sp_exit.opening.frames", "1" },
518 { "sp_exit_open", "RocksSP.pcx" },
519 { "sp_exit_open.xpos", "7" },
520 { "sp_exit_open.ypos", "0" },
521 { "sp_exit_open.frames", "1" },
522 { "sp_exit.closing", "RocksSP.pcx" },
523 { "sp_exit.closing.xpos", "7" },
524 { "sp_exit.closing.ypos", "0" },
525 { "sp_exit.closing.frames", "1" },
527 { "sp_disk_orange", "RocksSP.pcx" },
528 { "sp_disk_orange.xpos", "0" },
529 { "sp_disk_orange.ypos", "1" },
530 { "sp_disk_orange.frames", "1" },
532 { "sp_disk_yellow", "RocksSP.pcx" },
533 { "sp_disk_yellow.xpos", "2" },
534 { "sp_disk_yellow.ypos", "2" },
535 { "sp_disk_yellow.frames", "1" },
537 { "sp_disk_red", "RocksSP.pcx" },
538 { "sp_disk_red.xpos", "4" },
539 { "sp_disk_red.ypos", "2" },
540 { "sp_disk_red.frames", "1" },
541 { "sp_disk_red.collecting", "RocksSP.pcx" },
542 { "sp_disk_red.collecting.xpos", "9" },
543 { "sp_disk_red.collecting.ypos", "5" },
544 { "sp_disk_red.collecting.frames", "7" },
545 { "sp_disk_red.collecting.anim_mode", "linear" },
546 { "sp_disk_red.active", "RocksSP.pcx" },
547 { "sp_disk_red.active.xpos", "4" },
548 { "sp_disk_red.active.ypos", "2" },
549 { "sp_disk_red.active.frames", "1" },
551 { "sp_port_right", "RocksSP.pcx" },
552 { "sp_port_right.xpos", "1" },
553 { "sp_port_right.ypos", "1" },
554 { "sp_port_right.frames", "1" },
555 { "sp_port_down", "RocksSP.pcx" },
556 { "sp_port_down.xpos", "2" },
557 { "sp_port_down.ypos", "1" },
558 { "sp_port_down.frames", "1" },
559 { "sp_port_left", "RocksSP.pcx" },
560 { "sp_port_left.xpos", "3" },
561 { "sp_port_left.ypos", "1" },
562 { "sp_port_left.frames", "1" },
563 { "sp_port_up", "RocksSP.pcx" },
564 { "sp_port_up.xpos", "4" },
565 { "sp_port_up.ypos", "1" },
566 { "sp_port_up.frames", "1" },
567 { "sp_port_horizontal", "RocksSP.pcx" },
568 { "sp_port_horizontal.xpos", "6" },
569 { "sp_port_horizontal.ypos", "2" },
570 { "sp_port_horizontal.frames", "1" },
571 { "sp_port_vertical", "RocksSP.pcx" },
572 { "sp_port_vertical.xpos", "5" },
573 { "sp_port_vertical.ypos", "2" },
574 { "sp_port_vertical.frames", "1" },
575 { "sp_port_any", "RocksSP.pcx" },
576 { "sp_port_any.xpos", "7" },
577 { "sp_port_any.ypos", "2" },
578 { "sp_port_any.frames", "1" },
579 { "sp_gravity_port_right", "RocksSP.pcx" },
580 { "sp_gravity_port_right.xpos", "1" },
581 { "sp_gravity_port_right.ypos", "1" },
582 { "sp_gravity_port_right.frames", "1" },
583 { "sp_gravity_port_right.EDITOR", "RocksSP.pcx" },
584 { "sp_gravity_port_right.EDITOR.xpos", "0" },
585 { "sp_gravity_port_right.EDITOR.ypos", "14" },
586 { "sp_gravity_port_down", "RocksSP.pcx" },
587 { "sp_gravity_port_down.xpos", "2" },
588 { "sp_gravity_port_down.ypos", "1" },
589 { "sp_gravity_port_down.frames", "1" },
590 { "sp_gravity_port_down.EDITOR", "RocksSP.pcx" },
591 { "sp_gravity_port_down.EDITOR.xpos", "1" },
592 { "sp_gravity_port_down.EDITOR.ypos", "14" },
593 { "sp_gravity_port_left", "RocksSP.pcx" },
594 { "sp_gravity_port_left.xpos", "3" },
595 { "sp_gravity_port_left.ypos", "1" },
596 { "sp_gravity_port_left.frames", "1" },
597 { "sp_gravity_port_left.EDITOR", "RocksSP.pcx" },
598 { "sp_gravity_port_left.EDITOR.xpos", "2" },
599 { "sp_gravity_port_left.EDITOR.ypos", "14" },
600 { "sp_gravity_port_up", "RocksSP.pcx" },
601 { "sp_gravity_port_up.xpos", "4" },
602 { "sp_gravity_port_up.ypos", "1" },
603 { "sp_gravity_port_up.frames", "1" },
604 { "sp_gravity_port_up.EDITOR", "RocksSP.pcx" },
605 { "sp_gravity_port_up.EDITOR.xpos", "3" },
606 { "sp_gravity_port_up.EDITOR.ypos", "14" },
607 { "sp_gravity_on_port_right", "RocksSP.pcx" },
608 { "sp_gravity_on_port_right.xpos", "1" },
609 { "sp_gravity_on_port_right.ypos", "1" },
610 { "sp_gravity_on_port_right.frames", "1" },
611 { "sp_gravity_on_port_right.EDITOR", "RocksSP.pcx" },
612 { "sp_gravity_on_port_right.EDITOR.xpos", "0" },
613 { "sp_gravity_on_port_right.EDITOR.ypos", "13" },
614 { "sp_gravity_on_port_down", "RocksSP.pcx" },
615 { "sp_gravity_on_port_down.xpos", "2" },
616 { "sp_gravity_on_port_down.ypos", "1" },
617 { "sp_gravity_on_port_down.frames", "1" },
618 { "sp_gravity_on_port_down.EDITOR", "RocksSP.pcx" },
619 { "sp_gravity_on_port_down.EDITOR.xpos", "1" },
620 { "sp_gravity_on_port_down.EDITOR.ypos", "13" },
621 { "sp_gravity_on_port_left", "RocksSP.pcx" },
622 { "sp_gravity_on_port_left.xpos", "3" },
623 { "sp_gravity_on_port_left.ypos", "1" },
624 { "sp_gravity_on_port_left.frames", "1" },
625 { "sp_gravity_on_port_left.EDITOR", "RocksSP.pcx" },
626 { "sp_gravity_on_port_left.EDITOR.xpos", "2" },
627 { "sp_gravity_on_port_left.EDITOR.ypos", "13" },
628 { "sp_gravity_on_port_up", "RocksSP.pcx" },
629 { "sp_gravity_on_port_up.xpos", "4" },
630 { "sp_gravity_on_port_up.ypos", "1" },
631 { "sp_gravity_on_port_up.frames", "1" },
632 { "sp_gravity_on_port_up.EDITOR", "RocksSP.pcx" },
633 { "sp_gravity_on_port_up.EDITOR.xpos", "3" },
634 { "sp_gravity_on_port_up.EDITOR.ypos", "13" },
635 { "sp_gravity_off_port_right", "RocksSP.pcx" },
636 { "sp_gravity_off_port_right.xpos", "1" },
637 { "sp_gravity_off_port_right.ypos", "1" },
638 { "sp_gravity_off_port_right.frames", "1" },
639 { "sp_gravity_off_port_right.EDITOR", "RocksSP.pcx" },
640 { "sp_gravity_off_port_right.EDITOR.xpos", "4" },
641 { "sp_gravity_off_port_right.EDITOR.ypos", "13" },
642 { "sp_gravity_off_port_down", "RocksSP.pcx" },
643 { "sp_gravity_off_port_down.xpos", "2" },
644 { "sp_gravity_off_port_down.ypos", "1" },
645 { "sp_gravity_off_port_down.frames", "1" },
646 { "sp_gravity_off_port_down.EDITOR", "RocksSP.pcx" },
647 { "sp_gravity_off_port_down.EDITOR.xpos", "5" },
648 { "sp_gravity_off_port_down.EDITOR.ypos", "13" },
649 { "sp_gravity_off_port_left", "RocksSP.pcx" },
650 { "sp_gravity_off_port_left.xpos", "3" },
651 { "sp_gravity_off_port_left.ypos", "1" },
652 { "sp_gravity_off_port_left.frames", "1" },
653 { "sp_gravity_off_port_left.EDITOR", "RocksSP.pcx" },
654 { "sp_gravity_off_port_left.EDITOR.xpos", "6" },
655 { "sp_gravity_off_port_left.EDITOR.ypos", "13" },
656 { "sp_gravity_off_port_up", "RocksSP.pcx" },
657 { "sp_gravity_off_port_up.xpos", "4" },
658 { "sp_gravity_off_port_up.ypos", "1" },
659 { "sp_gravity_off_port_up.frames", "1" },
660 { "sp_gravity_off_port_up.EDITOR", "RocksSP.pcx" },
661 { "sp_gravity_off_port_up.EDITOR.xpos", "7" },
662 { "sp_gravity_off_port_up.EDITOR.ypos", "13" },
664 { "sp_sniksnak", "RocksSP.pcx" },
665 { "sp_sniksnak.xpos", "1" },
666 { "sp_sniksnak.ypos", "2" },
667 { "sp_sniksnak.frames", "1" },
668 { "sp_sniksnak.left", "RocksSP.pcx" },
669 { "sp_sniksnak.left.xpos", "8" },
670 { "sp_sniksnak.left.ypos", "8" },
671 { "sp_sniksnak.left.frames", "4" },
672 { "sp_sniksnak.left.anim_mode", "pingpong2" },
673 { "sp_sniksnak.right", "RocksSP.pcx" },
674 { "sp_sniksnak.right.xpos", "12" },
675 { "sp_sniksnak.right.ypos", "8" },
676 { "sp_sniksnak.right.frames", "4" },
677 { "sp_sniksnak.right.anim_mode", "pingpong2" },
678 { "sp_sniksnak.up", "RocksSP.pcx" },
679 { "sp_sniksnak.up.xpos", "8" },
680 { "sp_sniksnak.up.ypos", "9" },
681 { "sp_sniksnak.up.frames", "4" },
682 { "sp_sniksnak.up.anim_mode", "pingpong2" },
683 { "sp_sniksnak.down", "RocksSP.pcx" },
684 { "sp_sniksnak.down.xpos", "12" },
685 { "sp_sniksnak.down.ypos", "9" },
686 { "sp_sniksnak.down.frames", "4" },
687 { "sp_sniksnak.down.anim_mode", "pingpong2" },
688 { "sp_sniksnak.turning_from_left.up", "RocksSP.pcx" },
689 { "sp_sniksnak.turning_from_left.up.xpos", "12" },
690 { "sp_sniksnak.turning_from_left.up.ypos", "6" },
691 { "sp_sniksnak.turning_from_left.up.frames", "2" },
692 { "sp_sniksnak.turning_from_left.up.delay", "4" },
693 { "sp_sniksnak.turning_from_left.up.offset", "1408" },
694 { "sp_sniksnak.turning_from_left.up.anim_mode","linear" },
695 { "sp_sniksnak.turning_from_left.down", "RocksSP.pcx" },
696 { "sp_sniksnak.turning_from_left.down.xpos", "13" },
697 { "sp_sniksnak.turning_from_left.down.ypos", "6" },
698 { "sp_sniksnak.turning_from_left.down.frames","2" },
699 { "sp_sniksnak.turning_from_left.down.delay", "4" },
700 { "sp_sniksnak.turning_from_left.down.offset","1504" },
701 { "sp_sniksnak.turning_from_left.down.anim_mode","linear" },
702 { "sp_sniksnak.turning_from_right.up", "RocksSP.pcx" },
703 { "sp_sniksnak.turning_from_right.up.xpos", "15" },
704 { "sp_sniksnak.turning_from_right.up.ypos", "6" },
705 { "sp_sniksnak.turning_from_right.up.frames", "2" },
706 { "sp_sniksnak.turning_from_right.up.delay", "4" },
707 { "sp_sniksnak.turning_from_right.up.offset", "1312" },
708 { "sp_sniksnak.turning_from_right.up.anim_mode","linear" },
709 { "sp_sniksnak.turning_from_right.down", "RocksSP.pcx" },
710 { "sp_sniksnak.turning_from_right.down.xpos", "14" },
711 { "sp_sniksnak.turning_from_right.down.ypos", "6" },
712 { "sp_sniksnak.turning_from_right.down.frames","2" },
713 { "sp_sniksnak.turning_from_right.down.delay","4" },
714 { "sp_sniksnak.turning_from_right.down.offset","1472" },
715 { "sp_sniksnak.turning_from_right.down.anim_mode","linear" },
716 { "sp_sniksnak.turning_from_up.left", "RocksSP.pcx" },
717 { "sp_sniksnak.turning_from_up.left.xpos", "12" },
718 { "sp_sniksnak.turning_from_up.left.ypos", "6" },
719 { "sp_sniksnak.turning_from_up.left.frames", "2" },
720 { "sp_sniksnak.turning_from_up.left.delay", "4" },
721 { "sp_sniksnak.turning_from_up.left.offset", "896" },
722 { "sp_sniksnak.turning_from_up.left.anim_mode","linear" },
723 { "sp_sniksnak.turning_from_up.right", "RocksSP.pcx" },
724 { "sp_sniksnak.turning_from_up.right.xpos", "15" },
725 { "sp_sniksnak.turning_from_up.right.ypos", "6" },
726 { "sp_sniksnak.turning_from_up.right.frames", "2" },
727 { "sp_sniksnak.turning_from_up.right.delay", "4" },
728 { "sp_sniksnak.turning_from_up.right.offset", "928" },
729 { "sp_sniksnak.turning_from_up.right.anim_mode","linear" },
730 { "sp_sniksnak.turning_from_down.left", "RocksSP.pcx" },
731 { "sp_sniksnak.turning_from_down.left.xpos", "13" },
732 { "sp_sniksnak.turning_from_down.left.ypos", "6" },
733 { "sp_sniksnak.turning_from_down.left.frames","2" },
734 { "sp_sniksnak.turning_from_down.left.delay", "4" },
735 { "sp_sniksnak.turning_from_down.left.offset","864" },
736 { "sp_sniksnak.turning_from_down.left.anim_mode","linear" },
737 { "sp_sniksnak.turning_from_down.right", "RocksSP.pcx" },
738 { "sp_sniksnak.turning_from_down.right.xpos", "14" },
739 { "sp_sniksnak.turning_from_down.right.ypos", "6" },
740 { "sp_sniksnak.turning_from_down.right.frames","2" },
741 { "sp_sniksnak.turning_from_down.right.delay","4" },
742 { "sp_sniksnak.turning_from_down.right.offset","960" },
743 { "sp_sniksnak.turning_from_down.right.anim_mode","linear" },
745 { "sp_electron", "RocksSP.pcx" },
746 { "sp_electron.xpos", "8" },
747 { "sp_electron.ypos", "10" },
748 { "sp_electron.frames", "8" },
749 { "sp_electron.delay", "4" },
750 { "sp_electron.global_sync", "true" },
751 { "sp_electron.EDITOR", "RocksSP.pcx" },
752 { "sp_electron.EDITOR.xpos", "10" },
753 { "sp_electron.EDITOR.ypos", "11" },
754 { "sp_electron.exploding", "RocksSP.pcx" },
755 { "sp_electron.exploding.xpos", "8" },
756 { "sp_electron.exploding.ypos", "4" },
757 { "sp_electron.exploding.frames", "8" },
758 { "sp_electron.exploding.delay", "4" },
759 { "sp_electron.exploding.anim_mode", "linear" },
761 { "sp_terminal", "RocksSP.pcx" },
762 { "sp_terminal.xpos", "0" },
763 { "sp_terminal.ypos", "10" },
764 { "sp_terminal.frames", "7" },
765 { "sp_terminal.delay", "12" },
766 { "sp_terminal.EDITOR", "RocksSP.pcx" },
767 { "sp_terminal.EDITOR.xpos", "9" },
768 { "sp_terminal.EDITOR.ypos", "11" },
769 { "sp_terminal.active", "RocksSP.pcx" },
770 { "sp_terminal.active.xpos", "0" },
771 { "sp_terminal.active.ypos", "11" },
772 { "sp_terminal.active.frames", "7" },
773 { "sp_terminal.active.delay", "4" },
775 { "sp_buggy_base", "RocksSP.pcx" },
776 { "sp_buggy_base.xpos", "1" },
777 { "sp_buggy_base.ypos", "3" },
778 { "sp_buggy_base.frames", "1" },
779 { "sp_buggy_base.EDITOR", "RocksSP.pcx" },
780 { "sp_buggy_base.EDITOR.xpos", "9" },
781 { "sp_buggy_base.EDITOR.ypos", "6" },
782 { "sp_buggy_base.activating", "RocksSP.pcx" },
783 { "sp_buggy_base.activating.xpos", "15" },
784 { "sp_buggy_base.activating.ypos", "2" },
785 { "sp_buggy_base.activating.frames", "1" },
786 { "sp_buggy_base.active", "RocksSP.pcx" },
787 { "sp_buggy_base.active.xpos", "8" },
788 { "sp_buggy_base.active.ypos", "6" },
789 { "sp_buggy_base.active.frames", "4" },
790 { "sp_buggy_base.active.delay", "4" },
791 { "sp_buggy_base.active.anim_mode", "pingpong" },
793 { "sp_hardware_base_1", "RocksSP.pcx" },
794 { "sp_hardware_base_1.xpos", "4" },
795 { "sp_hardware_base_1.ypos", "3" },
796 { "sp_hardware_base_1.frames", "1" },
797 { "sp_hardware_base_2", "RocksSP.pcx" },
798 { "sp_hardware_base_2.xpos", "1" },
799 { "sp_hardware_base_2.ypos", "4" },
800 { "sp_hardware_base_2.frames", "1" },
801 { "sp_hardware_base_3", "RocksSP.pcx" },
802 { "sp_hardware_base_3.xpos", "2" },
803 { "sp_hardware_base_3.ypos", "4" },
804 { "sp_hardware_base_3.frames", "1" },
805 { "sp_hardware_base_4", "RocksSP.pcx" },
806 { "sp_hardware_base_4.xpos", "3" },
807 { "sp_hardware_base_4.ypos", "4" },
808 { "sp_hardware_base_4.frames", "1" },
809 { "sp_hardware_base_5", "RocksSP.pcx" },
810 { "sp_hardware_base_5.xpos", "4" },
811 { "sp_hardware_base_5.ypos", "4" },
812 { "sp_hardware_base_5.frames", "1" },
813 { "sp_hardware_base_6", "RocksSP.pcx" },
814 { "sp_hardware_base_6.xpos", "5" },
815 { "sp_hardware_base_6.ypos", "4" },
816 { "sp_hardware_base_6.frames", "1" },
818 /* images for Sokoban style elements and actions */
820 { "sokoban_object", "RocksElements.pcx" },
821 { "sokoban_object.xpos", "9" },
822 { "sokoban_object.ypos", "7" },
823 { "sokoban_object.frames", "1" },
824 { "sokoban_object.EDITOR", "RocksElements.pcx" },
825 { "sokoban_object.EDITOR.xpos", "2" },
826 { "sokoban_object.EDITOR.ypos", "14" },
828 { "sokoban_field_empty", "RocksElements.pcx" },
829 { "sokoban_field_empty.xpos", "10" },
830 { "sokoban_field_empty.ypos", "7" },
831 { "sokoban_field_empty.frames", "1" },
833 { "sokoban_field_full", "RocksElements.pcx" },
834 { "sokoban_field_full.xpos", "11" },
835 { "sokoban_field_full.ypos", "7" },
836 { "sokoban_field_full.frames", "1" },
838 { "sokoban_field_player", "RocksHeroes.pcx" },
839 { "sokoban_field_player.xpos", "0" },
840 { "sokoban_field_player.ypos", "15" },
841 { "sokoban_field_player.frames", "1" },
842 { "sokoban_field_player.EDITOR", "RocksHeroes.pcx" },
843 { "sokoban_field_player.EDITOR.xpos", "1" },
844 { "sokoban_field_player.EDITOR.ypos", "15" },
846 /* images for Emerald Mine style elements and actions */
848 { "empty_space", "RocksSP.pcx" },
849 { "empty_space.xpos", "0" },
850 { "empty_space.ypos", "0" },
851 { "empty_space.frames", "1" },
853 { "sand", "RocksElements.pcx" },
854 { "sand.xpos", "0" },
855 { "sand.ypos", "0" },
856 { "sand.frames", "1" },
857 { "sand.CRUMBLED", "RocksElements.pcx" },
858 { "sand.CRUMBLED.xpos", "1" },
859 { "sand.CRUMBLED.ypos", "0" },
860 { "sand.CRUMBLED.frames", "1" },
861 { "sand.digging.left", "RocksMore.pcx" },
862 { "sand.digging.left.xpos", "6" },
863 { "sand.digging.left.ypos", "3" },
864 { "sand.digging.left.frames", "3" },
865 { "sand.digging.left.delay", "2" },
866 { "sand.digging.left.anim_mode", "linear" },
867 { "sand.digging.right", "RocksMore.pcx" },
868 { "sand.digging.right.xpos", "9" },
869 { "sand.digging.right.ypos", "3" },
870 { "sand.digging.right.frames", "3" },
871 { "sand.digging.right.delay", "2" },
872 { "sand.digging.right.anim_mode", "linear" },
873 { "sand.digging.up", "RocksMore.pcx" },
874 { "sand.digging.up.xpos", "0" },
875 { "sand.digging.up.ypos", "3" },
876 { "sand.digging.up.frames", "3" },
877 { "sand.digging.up.delay", "2" },
878 { "sand.digging.up.anim_mode", "linear" },
879 { "sand.digging.down", "RocksMore.pcx" },
880 { "sand.digging.down.xpos", "3" },
881 { "sand.digging.down.ypos", "3" },
882 { "sand.digging.down.frames", "3" },
883 { "sand.digging.down.delay", "2" },
884 { "sand.digging.down.anim_mode", "linear" },
885 { "sand.digging.left.CRUMBLED", "RocksMore.pcx" },
886 { "sand.digging.left.CRUMBLED.xpos", "6" },
887 { "sand.digging.left.CRUMBLED.ypos", "0" },
888 { "sand.digging.left.CRUMBLED.frames", "3" },
889 { "sand.digging.left.CRUMBLED.delay", "2" },
890 { "sand.digging.left.CRUMBLED.anim_mode", "linear" },
891 { "sand.digging.right.CRUMBLED", "RocksMore.pcx" },
892 { "sand.digging.right.CRUMBLED.xpos", "9" },
893 { "sand.digging.right.CRUMBLED.ypos", "0" },
894 { "sand.digging.right.CRUMBLED.frames", "3" },
895 { "sand.digging.right.CRUMBLED.delay", "2" },
896 { "sand.digging.right.CRUMBLED.anim_mode", "linear" },
897 { "sand.digging.up.CRUMBLED", "RocksMore.pcx" },
898 { "sand.digging.up.CRUMBLED.xpos", "0" },
899 { "sand.digging.up.CRUMBLED.ypos", "0" },
900 { "sand.digging.up.CRUMBLED.frames", "3" },
901 { "sand.digging.up.CRUMBLED.delay", "2" },
902 { "sand.digging.up.CRUMBLED.anim_mode", "linear" },
903 { "sand.digging.down.CRUMBLED", "RocksMore.pcx" },
904 { "sand.digging.down.CRUMBLED.xpos", "3" },
905 { "sand.digging.down.CRUMBLED.ypos", "0" },
906 { "sand.digging.down.CRUMBLED.frames", "3" },
907 { "sand.digging.down.CRUMBLED.delay", "2" },
908 { "sand.digging.down.CRUMBLED.anim_mode", "linear" },
910 { "wall", "RocksElements.pcx" },
911 { "wall.xpos", "5" },
912 { "wall.ypos", "0" },
913 { "wall.frames", "1" },
915 { "wall_slippery", "RocksElements.pcx" },
916 { "wall_slippery.xpos", "6" },
917 { "wall_slippery.ypos", "0" },
918 { "wall_slippery.frames", "1" },
920 { "steelwall", "RocksElements.pcx" },
921 { "steelwall.xpos", "4" },
922 { "steelwall.ypos", "0" },
923 { "steelwall.frames", "1" },
925 { "rock", "RocksElements.pcx" },
926 { "rock.xpos", "12" },
927 { "rock.ypos", "0" },
928 { "rock.frames", "1" },
929 { "rock.moving.left", "RocksElements.pcx" },
930 { "rock.moving.left.xpos", "12" },
931 { "rock.moving.left.ypos", "0" },
932 { "rock.moving.left.frames", "4" },
933 { "rock.moving.left.delay", "2" },
934 { "rock.moving.left.anim_mode", "reverse" },
935 { "rock.moving.right", "RocksElements.pcx" },
936 { "rock.moving.right.xpos", "12" },
937 { "rock.moving.right.ypos", "0" },
938 { "rock.moving.right.frames", "4" },
939 { "rock.moving.right.start_frame", "1" },
940 { "rock.moving.right.delay", "2" },
941 { "rock.pushing.left", "RocksElements.pcx" },
942 { "rock.pushing.left.xpos", "12" },
943 { "rock.pushing.left.ypos", "0" },
944 { "rock.pushing.left.frames", "4" },
945 { "rock.pushing.left.delay", "2" },
946 { "rock.pushing.left.anim_mode", "reverse" },
947 { "rock.pushing.right", "RocksElements.pcx" },
948 { "rock.pushing.right.xpos", "12" },
949 { "rock.pushing.right.ypos", "0" },
950 { "rock.pushing.right.frames", "4" },
951 { "rock.pushing.right.start_frame", "1" },
952 { "rock.pushing.right.delay", "2" },
954 { "emerald", "RocksElements.pcx" },
955 { "emerald.xpos", "8" },
956 { "emerald.ypos", "0" },
957 { "emerald.frames", "1" },
958 { "emerald.moving", "RocksElements.pcx" },
959 { "emerald.moving.xpos", "8" },
960 { "emerald.moving.ypos", "0" },
961 { "emerald.moving.frames", "2" },
962 { "emerald.moving.delay", "4" },
963 { "emerald.falling", "RocksElements.pcx" },
964 { "emerald.falling.xpos", "8" },
965 { "emerald.falling.ypos", "0" },
966 { "emerald.falling.frames", "2" },
967 { "emerald.falling.delay", "4" },
968 { "emerald.collecting", "RocksMore.pcx" },
969 { "emerald.collecting.xpos", "3" },
970 { "emerald.collecting.ypos", "2" },
971 { "emerald.collecting.frames", "3" },
972 { "emerald.collecting.delay", "2" },
973 { "emerald.collecting.anim_mode", "linear" },
975 { "diamond", "RocksElements.pcx" },
976 { "diamond.xpos", "10" },
977 { "diamond.ypos", "0" },
978 { "diamond.frames", "1" },
979 { "diamond.moving", "RocksElements.pcx" },
980 { "diamond.moving.xpos", "10" },
981 { "diamond.moving.ypos", "0" },
982 { "diamond.moving.frames", "2" },
983 { "diamond.moving.delay", "4" },
984 { "diamond.falling", "RocksElements.pcx" },
985 { "diamond.falling.xpos", "10" },
986 { "diamond.falling.ypos", "0" },
987 { "diamond.falling.frames", "2" },
988 { "diamond.falling.delay", "4" },
989 { "diamond.collecting", "RocksMore.pcx" },
990 { "diamond.collecting.xpos", "7" },
991 { "diamond.collecting.ypos", "2" },
992 { "diamond.collecting.frames", "3" },
993 { "diamond.collecting.delay", "2" },
994 { "diamond.collecting.anim_mode", "linear" },
996 { "bomb", "RocksElements.pcx" },
997 { "bomb.xpos", "11" },
998 { "bomb.ypos", "1" },
999 { "bomb.frames", "1" },
1001 { "nut", "RocksElements.pcx" },
1002 { "nut.xpos", "12" },
1003 { "nut.ypos", "1" },
1004 { "nut.frames", "1" },
1005 { "nut.breaking", "RocksElements.pcx" },
1006 { "nut.breaking.xpos", "13" },
1007 { "nut.breaking.ypos", "1" },
1008 { "nut.breaking.frames", "3" },
1009 { "nut.breaking.delay", "2" },
1010 { "nut.breaking.anim_mode", "linear" },
1012 { "dynamite", "RocksElements.pcx" },
1013 { "dynamite.xpos", "0" },
1014 { "dynamite.ypos", "3" },
1015 { "dynamite.frames", "1" },
1016 { "dynamite.EDITOR", "RocksElements.pcx" },
1017 { "dynamite.EDITOR.xpos", "0" },
1018 { "dynamite.EDITOR.ypos", "14" },
1019 { "dynamite.active", "RocksElements.pcx" },
1020 { "dynamite.active.xpos", "1" },
1021 { "dynamite.active.ypos", "3" },
1022 { "dynamite.active.frames", "7" },
1023 { "dynamite.active.delay", "12" },
1024 { "dynamite.active.anim_mode", "linear" },
1025 { "dynamite.active.EDITOR", "RocksElements.pcx" },
1026 { "dynamite.active.EDITOR.xpos", "1" },
1027 { "dynamite.active.EDITOR.ypos", "14" },
1029 { "em_dynamite", "RocksEMC.pcx" },
1030 { "em_dynamite.xpos", "0" },
1031 { "em_dynamite.ypos", "15" },
1032 { "em_dynamite.frames", "1" },
1033 { "em_dynamite.active", "RocksEMC.pcx" },
1034 { "em_dynamite.active.xpos", "1" },
1035 { "em_dynamite.active.ypos", "15" },
1036 { "em_dynamite.active.frames", "4" },
1037 { "em_dynamite.active.delay", "8" },
1038 { "em_dynamite.active.anim_mode", "linear" },
1039 { "em_dynamite.active.EDITOR", "RocksEMC.pcx" },
1040 { "em_dynamite.active.EDITOR.xpos", "2" },
1041 { "em_dynamite.active.EDITOR.ypos", "15" },
1043 { "wall_emerald", "RocksElements.pcx" },
1044 { "wall_emerald.xpos", "4" },
1045 { "wall_emerald.ypos", "8" },
1046 { "wall_emerald.frames", "1" },
1048 { "wall_diamond", "RocksElements.pcx" },
1049 { "wall_diamond.xpos", "5" },
1050 { "wall_diamond.ypos", "8" },
1051 { "wall_diamond.frames", "1" },
1053 { "bug", "RocksElements.pcx" },
1054 { "bug.xpos", "8" },
1055 { "bug.ypos", "4" },
1056 { "bug.frames", "4" },
1057 { "bug.delay", "8" },
1058 { "bug.right", "RocksElements.pcx" },
1059 { "bug.right.xpos", "8" },
1060 { "bug.right.ypos", "4" },
1061 { "bug.right.frames", "1" },
1062 { "bug.up", "RocksElements.pcx" },
1063 { "bug.up.xpos", "9" },
1064 { "bug.up.ypos", "4" },
1065 { "bug.up.frames", "1" },
1066 { "bug.left", "RocksElements.pcx" },
1067 { "bug.left.xpos", "10" },
1068 { "bug.left.ypos", "4" },
1069 { "bug.left.frames", "1" },
1070 { "bug.down", "RocksElements.pcx" },
1071 { "bug.down.xpos", "11" },
1072 { "bug.down.ypos", "4" },
1073 { "bug.down.frames", "1" },
1074 { "bug.moving.right", "RocksElements.pcx" },
1075 { "bug.moving.right.xpos", "8" },
1076 { "bug.moving.right.ypos", "4" },
1077 { "bug.moving.right.frames", "2" },
1078 { "bug.moving.right.delay", "4" },
1079 { "bug.moving.right.offset", "128" },
1080 { "bug.moving.up", "RocksElements.pcx" },
1081 { "bug.moving.up.xpos", "9" },
1082 { "bug.moving.up.ypos", "4" },
1083 { "bug.moving.up.frames", "2" },
1084 { "bug.moving.up.delay", "4" },
1085 { "bug.moving.up.offset", "128" },
1086 { "bug.moving.left", "RocksElements.pcx" },
1087 { "bug.moving.left.xpos", "10" },
1088 { "bug.moving.left.ypos", "4" },
1089 { "bug.moving.left.frames", "2" },
1090 { "bug.moving.left.delay", "4" },
1091 { "bug.moving.left.offset", "128" },
1092 { "bug.moving.down", "RocksElements.pcx" },
1093 { "bug.moving.down.xpos", "11" },
1094 { "bug.moving.down.ypos", "4" },
1095 { "bug.moving.down.frames", "2" },
1096 { "bug.moving.down.delay", "4" },
1097 { "bug.moving.down.offset", "128" },
1098 { "bug.turning_from_right.up", "RocksMore.pcx" },
1099 { "bug.turning_from_right.up.xpos", "0" },
1100 { "bug.turning_from_right.up.ypos", "6" },
1101 { "bug.turning_from_right.up.frames", "4" },
1102 { "bug.turning_from_right.up.delay", "2" },
1103 { "bug.turning_from_right.up.anim_mode", "linear,reverse" },
1104 { "bug.turning_from_up.left", "RocksMore.pcx" },
1105 { "bug.turning_from_up.left.xpos", "12" },
1106 { "bug.turning_from_up.left.ypos", "6" },
1107 { "bug.turning_from_up.left.frames", "4" },
1108 { "bug.turning_from_up.left.delay", "2" },
1109 { "bug.turning_from_up.left.anim_mode", "linear,reverse" },
1110 { "bug.turning_from_left.down", "RocksMore.pcx" },
1111 { "bug.turning_from_left.down.xpos", "8" },
1112 { "bug.turning_from_left.down.ypos", "6" },
1113 { "bug.turning_from_left.down.frames", "4" },
1114 { "bug.turning_from_left.down.delay", "2" },
1115 { "bug.turning_from_left.down.anim_mode", "linear,reverse" },
1116 { "bug.turning_from_down.right", "RocksMore.pcx" },
1117 { "bug.turning_from_down.right.xpos", "4" },
1118 { "bug.turning_from_down.right.ypos", "6" },
1119 { "bug.turning_from_down.right.frames", "4" },
1120 { "bug.turning_from_down.right.delay", "2" },
1121 { "bug.turning_from_down.right.anim_mode", "linear,reverse" },
1122 { "bug.turning_from_right.down", "RocksMore.pcx" },
1123 { "bug.turning_from_right.down.xpos", "5" },
1124 { "bug.turning_from_right.down.ypos", "6" },
1125 { "bug.turning_from_right.down.frames", "4" },
1126 { "bug.turning_from_right.down.delay", "2" },
1127 { "bug.turning_from_right.down.anim_mode", "linear" },
1128 { "bug.turning_from_up.right", "RocksMore.pcx" },
1129 { "bug.turning_from_up.right.xpos", "1" },
1130 { "bug.turning_from_up.right.ypos", "6" },
1131 { "bug.turning_from_up.right.frames", "4" },
1132 { "bug.turning_from_up.right.delay", "2" },
1133 { "bug.turning_from_up.right.anim_mode", "linear" },
1134 { "bug.turning_from_left.up", "RocksMore.pcx" },
1135 { "bug.turning_from_left.up.xpos", "13" },
1136 { "bug.turning_from_left.up.ypos", "6" },
1137 { "bug.turning_from_left.up.frames", "4" },
1138 { "bug.turning_from_left.up.delay", "2" },
1139 { "bug.turning_from_left.up.anim_mode", "linear" },
1140 { "bug.turning_from_down.left", "RocksMore.pcx" },
1141 { "bug.turning_from_down.left.xpos", "9" },
1142 { "bug.turning_from_down.left.ypos", "6" },
1143 { "bug.turning_from_down.left.frames", "4" },
1144 { "bug.turning_from_down.left.delay", "2" },
1145 { "bug.turning_from_down.left.anim_mode", "linear" },
1147 { "spaceship", "RocksElements.pcx" },
1148 { "spaceship.xpos", "8" },
1149 { "spaceship.ypos", "3" },
1150 { "spaceship.frames", "4" },
1151 { "spaceship.delay", "8" },
1152 { "spaceship.right", "RocksElements.pcx" },
1153 { "spaceship.right.xpos", "8" },
1154 { "spaceship.right.ypos", "3" },
1155 { "spaceship.right.frames", "1" },
1156 { "spaceship.up", "RocksElements.pcx" },
1157 { "spaceship.up.xpos", "9" },
1158 { "spaceship.up.ypos", "3" },
1159 { "spaceship.up.frames", "1" },
1160 { "spaceship.left", "RocksElements.pcx" },
1161 { "spaceship.left.xpos", "10" },
1162 { "spaceship.left.ypos", "3" },
1163 { "spaceship.left.frames", "1" },
1164 { "spaceship.down", "RocksElements.pcx" },
1165 { "spaceship.down.xpos", "11" },
1166 { "spaceship.down.ypos", "3" },
1167 { "spaceship.down.frames", "1" },
1168 { "spaceship.moving.right", "RocksElements.pcx" },
1169 { "spaceship.moving.right.xpos", "8" },
1170 { "spaceship.moving.right.ypos", "3" },
1171 { "spaceship.moving.right.frames", "2" },
1172 { "spaceship.moving.right.delay", "4" },
1173 { "spaceship.moving.right.offset", "128" },
1174 { "spaceship.moving.up", "RocksElements.pcx" },
1175 { "spaceship.moving.up.xpos", "9" },
1176 { "spaceship.moving.up.ypos", "3" },
1177 { "spaceship.moving.up.frames", "2" },
1178 { "spaceship.moving.up.delay", "4" },
1179 { "spaceship.moving.up.offset", "128" },
1180 { "spaceship.moving.left", "RocksElements.pcx" },
1181 { "spaceship.moving.left.xpos", "10" },
1182 { "spaceship.moving.left.ypos", "3" },
1183 { "spaceship.moving.left.frames", "2" },
1184 { "spaceship.moving.left.delay", "4" },
1185 { "spaceship.moving.left.offset", "128" },
1186 { "spaceship.moving.down", "RocksElements.pcx" },
1187 { "spaceship.moving.down.xpos", "11" },
1188 { "spaceship.moving.down.ypos", "3" },
1189 { "spaceship.moving.down.frames", "2" },
1190 { "spaceship.moving.down.delay", "4" },
1191 { "spaceship.moving.down.offset", "128" },
1192 { "spaceship.turning_from_right.up", "RocksMore.pcx" },
1193 { "spaceship.turning_from_right.up.xpos", "0" },
1194 { "spaceship.turning_from_right.up.ypos", "5" },
1195 { "spaceship.turning_from_right.up.frames", "4" },
1196 { "spaceship.turning_from_right.up.delay", "2" },
1197 { "spaceship.turning_from_right.up.anim_mode","linear,reverse" },
1198 { "spaceship.turning_from_up.left", "RocksMore.pcx" },
1199 { "spaceship.turning_from_up.left.xpos", "12" },
1200 { "spaceship.turning_from_up.left.ypos", "5" },
1201 { "spaceship.turning_from_up.left.frames", "4" },
1202 { "spaceship.turning_from_up.left.delay", "2" },
1203 { "spaceship.turning_from_up.left.anim_mode", "linear,reverse" },
1204 { "spaceship.turning_from_left.down", "RocksMore.pcx" },
1205 { "spaceship.turning_from_left.down.xpos", "8" },
1206 { "spaceship.turning_from_left.down.ypos", "5" },
1207 { "spaceship.turning_from_left.down.frames", "4" },
1208 { "spaceship.turning_from_left.down.delay", "2" },
1209 { "spaceship.turning_from_left.down.anim_mode","linear,reverse" },
1210 { "spaceship.turning_from_down.right", "RocksMore.pcx" },
1211 { "spaceship.turning_from_down.right.xpos", "4" },
1212 { "spaceship.turning_from_down.right.ypos", "5" },
1213 { "spaceship.turning_from_down.right.frames", "4" },
1214 { "spaceship.turning_from_down.right.delay", "2" },
1215 { "spaceship.turning_from_down.right.anim_mode","linear,reverse" },
1216 { "spaceship.turning_from_right.down", "RocksMore.pcx" },
1217 { "spaceship.turning_from_right.down.xpos", "5" },
1218 { "spaceship.turning_from_right.down.ypos", "5" },
1219 { "spaceship.turning_from_right.down.frames", "4" },
1220 { "spaceship.turning_from_right.down.delay", "2" },
1221 { "spaceship.turning_from_right.down.anim_mode","linear" },
1222 { "spaceship.turning_from_up.right", "RocksMore.pcx" },
1223 { "spaceship.turning_from_up.right.xpos", "1" },
1224 { "spaceship.turning_from_up.right.ypos", "5" },
1225 { "spaceship.turning_from_up.right.frames", "4" },
1226 { "spaceship.turning_from_up.right.delay", "2" },
1227 { "spaceship.turning_from_up.right.anim_mode","linear" },
1228 { "spaceship.turning_from_left.up", "RocksMore.pcx" },
1229 { "spaceship.turning_from_left.up.xpos", "13" },
1230 { "spaceship.turning_from_left.up.ypos", "5" },
1231 { "spaceship.turning_from_left.up.frames", "4" },
1232 { "spaceship.turning_from_left.up.delay", "2" },
1233 { "spaceship.turning_from_left.up.anim_mode", "linear" },
1234 { "spaceship.turning_from_down.left", "RocksMore.pcx" },
1235 { "spaceship.turning_from_down.left.xpos", "9" },
1236 { "spaceship.turning_from_down.left.ypos", "5" },
1237 { "spaceship.turning_from_down.left.frames", "4" },
1238 { "spaceship.turning_from_down.left.delay", "2" },
1239 { "spaceship.turning_from_down.left.anim_mode","linear" },
1241 { "yamyam", "RocksElements.pcx" },
1242 { "yamyam.xpos", "0" },
1243 { "yamyam.ypos", "5" },
1244 { "yamyam.frames", "4" },
1245 { "yamyam.anim_mode", "pingpong2" },
1246 { "yamyam.left", "RocksElements.pcx" },
1247 { "yamyam.left.xpos", "0" },
1248 { "yamyam.left.ypos", "5" },
1249 { "yamyam.left.frames", "4" },
1250 { "yamyam.left.anim_mode", "pingpong2" },
1251 { "yamyam.left.EDITOR", "RocksEMC.pcx" },
1252 { "yamyam.left.EDITOR.xpos", "7" },
1253 { "yamyam.left.EDITOR.ypos", "15" },
1254 { "yamyam.right", "RocksElements.pcx" },
1255 { "yamyam.right.xpos", "0" },
1256 { "yamyam.right.ypos", "5" },
1257 { "yamyam.right.frames", "4" },
1258 { "yamyam.right.anim_mode", "pingpong2" },
1259 { "yamyam.right.EDITOR", "RocksEMC.pcx" },
1260 { "yamyam.right.EDITOR.xpos", "8" },
1261 { "yamyam.right.EDITOR.ypos", "15" },
1262 { "yamyam.up", "RocksElements.pcx" },
1263 { "yamyam.up.xpos", "0" },
1264 { "yamyam.up.ypos", "5" },
1265 { "yamyam.up.frames", "4" },
1266 { "yamyam.up.anim_mode", "pingpong2" },
1267 { "yamyam.up.EDITOR", "RocksEMC.pcx" },
1268 { "yamyam.up.EDITOR.xpos", "5" },
1269 { "yamyam.up.EDITOR.ypos", "15" },
1270 { "yamyam.down", "RocksElements.pcx" },
1271 { "yamyam.down.xpos", "0" },
1272 { "yamyam.down.ypos", "5" },
1273 { "yamyam.down.frames", "4" },
1274 { "yamyam.down.anim_mode", "pingpong2" },
1275 { "yamyam.down.EDITOR", "RocksEMC.pcx" },
1276 { "yamyam.down.EDITOR.xpos", "6" },
1277 { "yamyam.down.EDITOR.ypos", "15" },
1278 { "yamyam.moving", "RocksElements.pcx" },
1279 { "yamyam.moving.xpos", "0" },
1280 { "yamyam.moving.ypos", "5" },
1281 { "yamyam.moving.frames", "1" },
1283 { "robot", "RocksElements.pcx" },
1284 { "robot.xpos", "4" },
1285 { "robot.ypos", "5" },
1286 { "robot.frames", "4" },
1287 { "robot.anim_mode", "pingpong2" },
1288 { "robot.moving", "RocksElements.pcx" },
1289 { "robot.moving.xpos", "4" },
1290 { "robot.moving.ypos", "5" },
1291 { "robot.moving.frames", "1" },
1293 { "robot_wheel", "RocksElements.pcx" },
1294 { "robot_wheel.xpos", "0" },
1295 { "robot_wheel.ypos", "6" },
1296 { "robot_wheel.frames", "1" },
1297 { "robot_wheel.active", "RocksElements.pcx" },
1298 { "robot_wheel.active.xpos", "0" },
1299 { "robot_wheel.active.ypos", "6" },
1300 { "robot_wheel.active.frames", "4" },
1302 { "magic_wall", "RocksElements.pcx" },
1303 { "magic_wall.xpos", "0" },
1304 { "magic_wall.ypos", "8" },
1305 { "magic_wall.frames", "1" },
1306 { "magic_wall.active", "RocksElements.pcx" },
1307 { "magic_wall.active.xpos", "0" },
1308 { "magic_wall.active.ypos", "8" },
1309 { "magic_wall.active.frames", "4" },
1310 { "magic_wall.active.anim_mode", "reverse" },
1311 { "magic_wall.active.delay", "4" },
1312 { "magic_wall.active.global_sync", "true" },
1313 { "magic_wall.filling", "RocksElements.pcx" },
1314 { "magic_wall.filling.xpos", "0" },
1315 { "magic_wall.filling.ypos", "8" },
1316 { "magic_wall.filling.frames", "4" },
1317 { "magic_wall.filling.anim_mode", "reverse" },
1318 { "magic_wall.filling.delay", "4" },
1319 { "magic_wall.filling.global_sync", "true" },
1320 { "magic_wall_full", "RocksElements.pcx" },
1321 { "magic_wall_full.xpos", "0" },
1322 { "magic_wall_full.ypos", "8" },
1323 { "magic_wall_full.frames", "4" },
1324 { "magic_wall_full.anim_mode", "reverse" },
1325 { "magic_wall_full.delay", "4" },
1326 { "magic_wall_full.global_sync", "true" },
1327 { "magic_wall.emptying", "RocksElements.pcx" },
1328 { "magic_wall.emptying.xpos", "0" },
1329 { "magic_wall.emptying.ypos", "8" },
1330 { "magic_wall.emptying.frames", "4" },
1331 { "magic_wall.emptying.anim_mode", "reverse" },
1332 { "magic_wall.emptying.delay", "4" },
1333 { "magic_wall.emptying.global_sync", "true" },
1334 { "magic_wall_dead", "RocksElements.pcx" },
1335 { "magic_wall_dead.xpos", "0" },
1336 { "magic_wall_dead.ypos", "8" },
1337 { "magic_wall_dead.frames", "1" },
1339 { "dc_magic_wall", "RocksDC2.pcx" },
1340 { "dc_magic_wall.xpos", "0" },
1341 { "dc_magic_wall.ypos", "3" },
1342 { "dc_magic_wall.frames", "1" },
1343 { "dc_magic_wall.active", "RocksDC2.pcx" },
1344 { "dc_magic_wall.active.xpos", "0" },
1345 { "dc_magic_wall.active.ypos", "3" },
1346 { "dc_magic_wall.active.frames", "4" },
1347 { "dc_magic_wall.active.anim_mode", "reverse" },
1348 { "dc_magic_wall.active.delay", "4" },
1349 { "dc_magic_wall.active.global_sync", "true" },
1350 { "dc_magic_wall.filling", "RocksDC2.pcx" },
1351 { "dc_magic_wall.filling.xpos", "0" },
1352 { "dc_magic_wall.filling.ypos", "3" },
1353 { "dc_magic_wall.filling.frames", "4" },
1354 { "dc_magic_wall.filling.anim_mode", "reverse" },
1355 { "dc_magic_wall.filling.delay", "4" },
1356 { "dc_magic_wall.filling.global_sync", "true" },
1357 { "dc_magic_wall_full", "RocksDC2.pcx" },
1358 { "dc_magic_wall_full.xpos", "0" },
1359 { "dc_magic_wall_full.ypos", "3" },
1360 { "dc_magic_wall_full.frames", "4" },
1361 { "dc_magic_wall_full.anim_mode", "reverse" },
1362 { "dc_magic_wall_full.delay", "4" },
1363 { "dc_magic_wall_full.global_sync", "true" },
1364 { "dc_magic_wall.emptying", "RocksDC2.pcx" },
1365 { "dc_magic_wall.emptying.xpos", "0" },
1366 { "dc_magic_wall.emptying.ypos", "3" },
1367 { "dc_magic_wall.emptying.frames", "4" },
1368 { "dc_magic_wall.emptying.anim_mode", "reverse" },
1369 { "dc_magic_wall.emptying.delay", "4" },
1370 { "dc_magic_wall.emptying.global_sync", "true" },
1371 { "dc_magic_wall_dead", "RocksDC2.pcx" },
1372 { "dc_magic_wall_dead.xpos", "0" },
1373 { "dc_magic_wall_dead.ypos", "3" },
1374 { "dc_magic_wall_dead.frames", "1" },
1376 { "quicksand_empty", "RocksElements.pcx" },
1377 { "quicksand_empty.xpos", "2" },
1378 { "quicksand_empty.ypos", "0" },
1379 { "quicksand_empty.frames", "1" },
1380 { "quicksand.filling", "RocksElements.pcx" },
1381 { "quicksand.filling.xpos", "3" },
1382 { "quicksand.filling.ypos", "0" },
1383 { "quicksand.filling.frames", "1" },
1384 { "quicksand_full", "RocksElements.pcx" },
1385 { "quicksand_full.xpos", "3" },
1386 { "quicksand_full.ypos", "0" },
1387 { "quicksand_full.frames", "1" },
1388 { "quicksand_full.EDITOR", "RocksElements.pcx" },
1389 { "quicksand_full.EDITOR.xpos", "3" },
1390 { "quicksand_full.EDITOR.ypos", "14" },
1391 { "quicksand.emptying", "RocksElements.pcx" },
1392 { "quicksand.emptying.xpos", "3" },
1393 { "quicksand.emptying.ypos", "0" },
1394 { "quicksand.emptying.frames", "1" },
1396 { "quicksand_fast_empty", "RocksDC2.pcx" },
1397 { "quicksand_fast_empty.xpos", "4" },
1398 { "quicksand_fast_empty.ypos", "3" },
1399 { "quicksand_fast_empty.frames", "1" },
1400 { "quicksand_fast.filling", "RocksDC2.pcx" },
1401 { "quicksand_fast.filling.xpos", "4" },
1402 { "quicksand_fast.filling.ypos", "3" },
1403 { "quicksand_fast.filling.frames", "1" },
1404 { "quicksand_fast_full", "RocksDC2.pcx" },
1405 { "quicksand_fast_full.xpos", "4" },
1406 { "quicksand_fast_full.ypos", "3" },
1407 { "quicksand_fast_full.frames", "1" },
1408 { "quicksand_fast_full.EDITOR", "RocksDC2.pcx" },
1409 { "quicksand_fast_full.EDITOR.xpos", "5" },
1410 { "quicksand_fast_full.EDITOR.ypos", "3" },
1411 { "quicksand_fast.emptying", "RocksDC2.pcx" },
1412 { "quicksand_fast.emptying.xpos", "4" },
1413 { "quicksand_fast.emptying.ypos", "3" },
1414 { "quicksand_fast.emptying.frames", "1" },
1416 { "acid_pool_topleft", "RocksElements.pcx" },
1417 { "acid_pool_topleft.xpos", "0" },
1418 { "acid_pool_topleft.ypos", "1" },
1419 { "acid_pool_topleft.frames", "1" },
1420 { "acid_pool_topright", "RocksElements.pcx" },
1421 { "acid_pool_topright.xpos", "2" },
1422 { "acid_pool_topright.ypos", "1" },
1423 { "acid_pool_topright.frames", "1" },
1424 { "acid_pool_bottomleft", "RocksElements.pcx" },
1425 { "acid_pool_bottomleft.xpos", "0" },
1426 { "acid_pool_bottomleft.ypos", "2" },
1427 { "acid_pool_bottomleft.frames", "1" },
1428 { "acid_pool_bottom", "RocksElements.pcx" },
1429 { "acid_pool_bottom.xpos", "1" },
1430 { "acid_pool_bottom.ypos", "2" },
1431 { "acid_pool_bottom.frames", "1" },
1432 { "acid_pool_bottomright", "RocksElements.pcx" },
1433 { "acid_pool_bottomright.xpos", "2" },
1434 { "acid_pool_bottomright.ypos", "2" },
1435 { "acid_pool_bottomright.frames", "1" },
1437 { "acid", "RocksElements.pcx" },
1438 { "acid.xpos", "12" },
1439 { "acid.ypos", "7" },
1440 { "acid.frames", "4" },
1441 { "acid.delay", "10" },
1442 { "acid.global_sync", "true" },
1444 { "acid_splash_left", "RocksHeroes.pcx" },
1445 { "acid_splash_left.xpos", "8" },
1446 { "acid_splash_left.ypos", "10" },
1447 { "acid_splash_left.frames", "4" },
1448 { "acid_splash_left.delay", "2" },
1449 { "acid_splash_left.anim_mode", "linear" },
1450 { "acid_splash_right", "RocksHeroes.pcx" },
1451 { "acid_splash_right.xpos", "12" },
1452 { "acid_splash_right.ypos", "10" },
1453 { "acid_splash_right.frames", "4" },
1454 { "acid_splash_right.delay", "2" },
1455 { "acid_splash_right.anim_mode", "linear" },
1457 { "amoeba_drop", "RocksElements.pcx" },
1458 { "amoeba_drop.xpos", "5" },
1459 { "amoeba_drop.ypos", "6" },
1460 { "amoeba_drop.frames", "1" },
1461 { "amoeba.growing", "RocksElements.pcx" },
1462 { "amoeba.growing.xpos", "5" },
1463 { "amoeba.growing.ypos", "6" },
1464 { "amoeba.growing.frames", "3" },
1465 { "amoeba.growing.delay", "2" },
1466 { "amoeba.growing.anim_mode", "linear" },
1467 { "amoeba.shrinking", "RocksElements.pcx" },
1468 { "amoeba.shrinking.xpos", "5" },
1469 { "amoeba.shrinking.ypos", "6" },
1470 { "amoeba.shrinking.frames", "3" },
1471 { "amoeba.shrinking.delay", "2" },
1472 { "amoeba.shrinking.anim_mode", "linear,reverse" },
1473 { "amoeba_wet", "RocksElements.pcx" },
1474 { "amoeba_wet.xpos", "8" },
1475 { "amoeba_wet.ypos", "6" },
1476 { "amoeba_wet.frames", "4" },
1477 { "amoeba_wet.delay", "1000000" },
1478 { "amoeba_wet.anim_mode", "random" },
1479 { "amoeba_wet.EDITOR", "RocksElements.pcx" },
1480 { "amoeba_wet.EDITOR.xpos", "4" },
1481 { "amoeba_wet.EDITOR.ypos", "6" },
1482 { "amoeba.dropping", "RocksElements.pcx" },
1483 { "amoeba.dropping.xpos", "8" },
1484 { "amoeba.dropping.ypos", "6" },
1485 { "amoeba.dropping.frames", "4" },
1486 { "amoeba.dropping.delay", "1000000" },
1487 { "amoeba.dropping.anim_mode", "random" },
1488 { "amoeba_dry", "RocksElements.pcx" },
1489 { "amoeba_dry.xpos", "8" },
1490 { "amoeba_dry.ypos", "6" },
1491 { "amoeba_dry.frames", "4" },
1492 { "amoeba_dry.delay", "1000000" },
1493 { "amoeba_dry.anim_mode", "random" },
1494 { "amoeba_full", "RocksElements.pcx" },
1495 { "amoeba_full.xpos", "8" },
1496 { "amoeba_full.ypos", "6" },
1497 { "amoeba_full.frames", "4" },
1498 { "amoeba_full.delay", "1000000" },
1499 { "amoeba_full.anim_mode", "random" },
1500 { "amoeba_full.EDITOR", "RocksElements.pcx" },
1501 { "amoeba_full.EDITOR.xpos", "8" },
1502 { "amoeba_full.EDITOR.ypos", "7" },
1503 { "amoeba_dead", "RocksElements.pcx" },
1504 { "amoeba_dead.xpos", "12" },
1505 { "amoeba_dead.ypos", "6" },
1506 { "amoeba_dead.frames", "4" },
1507 { "amoeba_dead.delay", "1000000" },
1508 { "amoeba_dead.anim_mode", "random" },
1509 { "amoeba_dead.EDITOR", "RocksElements.pcx" },
1510 { "amoeba_dead.EDITOR.xpos", "12" },
1511 { "amoeba_dead.EDITOR.ypos", "6" },
1513 { "em_key_1", "RocksSP.pcx" },
1514 { "em_key_1.xpos", "4" },
1515 { "em_key_1.ypos", "6" },
1516 { "em_key_1.frames", "1" },
1517 { "em_key_2", "RocksSP.pcx" },
1518 { "em_key_2.xpos", "5" },
1519 { "em_key_2.ypos", "6" },
1520 { "em_key_2.frames", "1" },
1521 { "em_key_3", "RocksSP.pcx" },
1522 { "em_key_3.xpos", "6" },
1523 { "em_key_3.ypos", "6" },
1524 { "em_key_3.frames", "1" },
1525 { "em_key_4", "RocksSP.pcx" },
1526 { "em_key_4.xpos", "7" },
1527 { "em_key_4.ypos", "6" },
1528 { "em_key_4.frames", "1" },
1530 { "dc_key_white", "RocksSP.pcx" },
1531 { "dc_key_white.xpos", "13" },
1532 { "dc_key_white.ypos", "1" },
1533 { "dc_key_white.frames", "1" },
1535 { "em_gate_1", "RocksSP.pcx" },
1536 { "em_gate_1.xpos", "0" },
1537 { "em_gate_1.ypos", "7" },
1538 { "em_gate_1.frames", "1" },
1539 { "em_gate_2", "RocksSP.pcx" },
1540 { "em_gate_2.xpos", "1" },
1541 { "em_gate_2.ypos", "7" },
1542 { "em_gate_2.frames", "1" },
1543 { "em_gate_3", "RocksSP.pcx" },
1544 { "em_gate_3.xpos", "2" },
1545 { "em_gate_3.ypos", "7" },
1546 { "em_gate_3.frames", "1" },
1547 { "em_gate_4", "RocksSP.pcx" },
1548 { "em_gate_4.xpos", "3" },
1549 { "em_gate_4.ypos", "7" },
1550 { "em_gate_4.frames", "1" },
1552 { "dc_gate_white", "RocksSP.pcx" },
1553 { "dc_gate_white.xpos", "14" },
1554 { "dc_gate_white.ypos", "1" },
1555 { "dc_gate_white.frames", "1" },
1557 { "em_gate_1_gray", "RocksSP.pcx" },
1558 { "em_gate_1_gray.xpos", "4" },
1559 { "em_gate_1_gray.ypos", "7" },
1560 { "em_gate_1_gray.frames", "1" },
1561 { "em_gate_1_gray.EDITOR", "RocksSP.pcx" },
1562 { "em_gate_1_gray.EDITOR.xpos", "12" },
1563 { "em_gate_1_gray.EDITOR.ypos", "11" },
1564 { "em_gate_1_gray.active", "RocksSP.pcx" },
1565 { "em_gate_1_gray.active.xpos", "0" },
1566 { "em_gate_1_gray.active.ypos", "7" },
1567 { "em_gate_1_gray.active.frames", "1" },
1568 { "em_gate_2_gray", "RocksSP.pcx" },
1569 { "em_gate_2_gray.xpos", "5" },
1570 { "em_gate_2_gray.ypos", "7" },
1571 { "em_gate_2_gray.frames", "1" },
1572 { "em_gate_2_gray.EDITOR", "RocksSP.pcx" },
1573 { "em_gate_2_gray.EDITOR.xpos", "13" },
1574 { "em_gate_2_gray.EDITOR.ypos", "11" },
1575 { "em_gate_2_gray.active", "RocksSP.pcx" },
1576 { "em_gate_2_gray.active.xpos", "1" },
1577 { "em_gate_2_gray.active.ypos", "7" },
1578 { "em_gate_2_gray.active.frames", "1" },
1579 { "em_gate_3_gray", "RocksSP.pcx" },
1580 { "em_gate_3_gray.xpos", "6" },
1581 { "em_gate_3_gray.ypos", "7" },
1582 { "em_gate_3_gray.frames", "1" },
1583 { "em_gate_3_gray.EDITOR", "RocksSP.pcx" },
1584 { "em_gate_3_gray.EDITOR.xpos", "14" },
1585 { "em_gate_3_gray.EDITOR.ypos", "11" },
1586 { "em_gate_3_gray.active", "RocksSP.pcx" },
1587 { "em_gate_3_gray.active.xpos", "2" },
1588 { "em_gate_3_gray.active.ypos", "7" },
1589 { "em_gate_3_gray.active.frames", "1" },
1590 { "em_gate_4_gray", "RocksSP.pcx" },
1591 { "em_gate_4_gray.xpos", "7" },
1592 { "em_gate_4_gray.ypos", "7" },
1593 { "em_gate_4_gray.frames", "1" },
1594 { "em_gate_4_gray.EDITOR", "RocksSP.pcx" },
1595 { "em_gate_4_gray.EDITOR.xpos", "15" },
1596 { "em_gate_4_gray.EDITOR.ypos", "11" },
1597 { "em_gate_4_gray.active", "RocksSP.pcx" },
1598 { "em_gate_4_gray.active.xpos", "3" },
1599 { "em_gate_4_gray.active.ypos", "7" },
1600 { "em_gate_4_gray.active.frames", "1" },
1602 { "dc_gate_white_gray", "RocksSP.pcx" },
1603 { "dc_gate_white_gray.xpos", "7" },
1604 { "dc_gate_white_gray.ypos", "7" },
1605 { "dc_gate_white_gray.frames", "1" },
1606 { "dc_gate_white_gray.EDITOR", "RocksSP.pcx" },
1607 { "dc_gate_white_gray.EDITOR.xpos", "15" },
1608 { "dc_gate_white_gray.EDITOR.ypos", "1" },
1609 { "dc_gate_white_gray.active", "RocksSP.pcx" },
1610 { "dc_gate_white_gray.active.xpos", "14" },
1611 { "dc_gate_white_gray.active.ypos", "1" },
1612 { "dc_gate_white_gray.active.frames", "1" },
1614 { "dc_gate_fake_gray", "RocksSP.pcx" },
1615 { "dc_gate_fake_gray.xpos", "7" },
1616 { "dc_gate_fake_gray.ypos", "7" },
1617 { "dc_gate_fake_gray.frames", "1" },
1619 { "exit_closed", "RocksElements.pcx" },
1620 { "exit_closed.xpos", "0" },
1621 { "exit_closed.ypos", "11" },
1622 { "exit_closed.frames", "1" },
1623 { "exit.opening", "RocksElements.pcx" },
1624 { "exit.opening.xpos", "0" },
1625 { "exit.opening.ypos", "11" },
1626 { "exit.opening.frames", "5" },
1627 { "exit.opening.delay", "6" },
1628 { "exit.opening.anim_mode", "linear" },
1629 { "exit_open", "RocksElements.pcx" },
1630 { "exit_open.xpos", "4" },
1631 { "exit_open.ypos", "11" },
1632 { "exit_open.frames", "4" },
1633 { "exit_open.delay", "4" },
1634 { "exit_open.anim_mode", "pingpong" },
1635 { "exit.closing", "RocksElements.pcx" },
1636 { "exit.closing.xpos", "0" },
1637 { "exit.closing.ypos", "11" },
1638 { "exit.closing.frames", "5" },
1639 { "exit.closing.delay", "6" },
1640 { "exit.closing.anim_mode", "linear,reverse" },
1642 { "steel_exit_closed", "RocksDC2.pcx" },
1643 { "steel_exit_closed.xpos", "8" },
1644 { "steel_exit_closed.ypos", "0" },
1645 { "steel_exit_closed.frames", "1" },
1646 { "steel_exit.opening", "RocksDC2.pcx" },
1647 { "steel_exit.opening.xpos", "8" },
1648 { "steel_exit.opening.ypos", "0" },
1649 { "steel_exit.opening.frames", "5" },
1650 { "steel_exit.opening.delay", "6" },
1651 { "steel_exit.opening.anim_mode", "linear" },
1652 { "steel_exit_open", "RocksDC2.pcx" },
1653 { "steel_exit_open.xpos", "12" },
1654 { "steel_exit_open.ypos", "0" },
1655 { "steel_exit_open.frames", "4" },
1656 { "steel_exit_open.delay", "4" },
1657 { "steel_exit_open.anim_mode", "pingpong" },
1658 { "steel_exit.closing", "RocksDC2.pcx" },
1659 { "steel_exit.closing.xpos", "8" },
1660 { "steel_exit.closing.ypos", "0" },
1661 { "steel_exit.closing.frames", "5" },
1662 { "steel_exit.closing.delay", "6" },
1663 { "steel_exit.closing.anim_mode", "linear,reverse" },
1665 { "em_exit_closed", "RocksDC2.pcx" },
1666 { "em_exit_closed.xpos", "0" },
1667 { "em_exit_closed.ypos", "4" },
1668 { "em_exit_closed.frames", "1" },
1669 { "em_exit.opening", "RocksDC2.pcx" },
1670 { "em_exit.opening.xpos", "0" },
1671 { "em_exit.opening.ypos", "4" },
1672 { "em_exit.opening.frames", "5" },
1673 { "em_exit.opening.delay", "6" },
1674 { "em_exit.opening.anim_mode", "linear" },
1675 { "em_exit_open", "RocksDC2.pcx" },
1676 { "em_exit_open.xpos", "4" },
1677 { "em_exit_open.ypos", "4" },
1678 { "em_exit_open.frames", "4" },
1679 { "em_exit_open.delay", "4" },
1680 { "em_exit_open.anim_mode", "pingpong" },
1681 { "em_exit.closing", "RocksDC2.pcx" },
1682 { "em_exit.closing.xpos", "0" },
1683 { "em_exit.closing.ypos", "6" },
1684 { "em_exit.closing.frames", "5" },
1685 { "em_exit.closing.delay", "6" },
1686 { "em_exit.closing.anim_mode", "linear" },
1688 { "em_steel_exit_closed", "RocksDC2.pcx" },
1689 { "em_steel_exit_closed.xpos", "0" },
1690 { "em_steel_exit_closed.ypos", "5" },
1691 { "em_steel_exit_closed.frames", "1" },
1692 { "em_steel_exit.opening", "RocksDC2.pcx" },
1693 { "em_steel_exit.opening.xpos", "0" },
1694 { "em_steel_exit.opening.ypos", "5" },
1695 { "em_steel_exit.opening.frames", "5" },
1696 { "em_steel_exit.opening.delay", "6" },
1697 { "em_steel_exit.opening.anim_mode", "linear" },
1698 { "em_steel_exit_open", "RocksDC2.pcx" },
1699 { "em_steel_exit_open.xpos", "4" },
1700 { "em_steel_exit_open.ypos", "5" },
1701 { "em_steel_exit_open.frames", "4" },
1702 { "em_steel_exit_open.delay", "4" },
1703 { "em_steel_exit_open.anim_mode", "pingpong" },
1704 { "em_steel_exit.closing", "RocksDC2.pcx" },
1705 { "em_steel_exit.closing.xpos", "0" },
1706 { "em_steel_exit.closing.ypos", "7" },
1707 { "em_steel_exit.closing.frames", "5" },
1708 { "em_steel_exit.closing.delay", "6" },
1709 { "em_steel_exit.closing.anim_mode", "linear" },
1711 /* images for Emerald Mine Club style elements and actions */
1713 { "balloon", "RocksDC.pcx" },
1714 { "balloon.xpos", "12" },
1715 { "balloon.ypos", "7" },
1716 { "balloon.frames", "1" },
1717 { "balloon.moving", "RocksDC.pcx" },
1718 { "balloon.moving.xpos", "12" },
1719 { "balloon.moving.ypos", "7" },
1720 { "balloon.moving.frames", "4" },
1721 { "balloon.moving.anim_mode", "pingpong" },
1722 { "balloon.moving.delay", "2" },
1723 { "balloon.pushing", "RocksDC.pcx" },
1724 { "balloon.pushing.xpos", "12" },
1725 { "balloon.pushing.ypos", "7" },
1726 { "balloon.pushing.frames", "4" },
1727 { "balloon.pushing.anim_mode", "pingpong" },
1728 { "balloon.pushing.delay", "2" },
1729 { "balloon_switch_left", "RocksDC.pcx" },
1730 { "balloon_switch_left.xpos", "8" },
1731 { "balloon_switch_left.ypos", "7" },
1732 { "balloon_switch_left.frames", "1" },
1733 { "balloon_switch_right", "RocksDC.pcx" },
1734 { "balloon_switch_right.xpos", "9" },
1735 { "balloon_switch_right.ypos", "7" },
1736 { "balloon_switch_right.frames", "1" },
1737 { "balloon_switch_up", "RocksDC.pcx" },
1738 { "balloon_switch_up.xpos", "10" },
1739 { "balloon_switch_up.ypos", "7" },
1740 { "balloon_switch_up.frames", "1" },
1741 { "balloon_switch_down", "RocksDC.pcx" },
1742 { "balloon_switch_down.xpos", "11" },
1743 { "balloon_switch_down.ypos", "7" },
1744 { "balloon_switch_down.frames", "1" },
1745 { "balloon_switch_any", "RocksDC.pcx" },
1746 { "balloon_switch_any.xpos", "15" },
1747 { "balloon_switch_any.ypos", "0" },
1748 { "balloon_switch_any.frames", "1" },
1749 { "balloon_switch_none", "RocksDC.pcx" },
1750 { "balloon_switch_none.xpos", "13" },
1751 { "balloon_switch_none.ypos", "5" },
1752 { "balloon_switch_none.frames", "1" },
1754 { "spring", "RocksDC.pcx" },
1755 { "spring.xpos", "8" },
1756 { "spring.ypos", "13" },
1757 { "spring.frames", "1" },
1759 { "emc_steelwall_1", "RocksDC.pcx" },
1760 { "emc_steelwall_1.xpos", "14" },
1761 { "emc_steelwall_1.ypos", "0" },
1762 { "emc_steelwall_1.frames", "1" },
1763 { "emc_steelwall_2", "RocksEMC.pcx" },
1764 { "emc_steelwall_2.xpos", "9" },
1765 { "emc_steelwall_2.ypos", "8" },
1766 { "emc_steelwall_2.frames", "1" },
1767 { "emc_steelwall_3", "RocksEMC.pcx" },
1768 { "emc_steelwall_3.xpos", "9" },
1769 { "emc_steelwall_3.ypos", "9" },
1770 { "emc_steelwall_3.frames", "1" },
1771 { "emc_steelwall_4", "RocksEMC.pcx" },
1772 { "emc_steelwall_4.xpos", "9" },
1773 { "emc_steelwall_4.ypos", "10" },
1774 { "emc_steelwall_4.frames", "1" },
1776 { "emc_wall_1", "RocksDC.pcx" },
1777 { "emc_wall_1.xpos", "13" },
1778 { "emc_wall_1.ypos", "6" },
1779 { "emc_wall_1.frames", "1" },
1780 { "emc_wall_2", "RocksDC.pcx" },
1781 { "emc_wall_2.xpos", "14" },
1782 { "emc_wall_2.ypos", "6" },
1783 { "emc_wall_2.frames", "1" },
1784 { "emc_wall_3", "RocksDC.pcx" },
1785 { "emc_wall_3.xpos", "15" },
1786 { "emc_wall_3.ypos", "6" },
1787 { "emc_wall_3.frames", "1" },
1788 { "emc_wall_4", "RocksDC.pcx" },
1789 { "emc_wall_4.xpos", "14" },
1790 { "emc_wall_4.ypos", "1" },
1791 { "emc_wall_4.frames", "1" },
1792 { "emc_wall_5", "RocksDC.pcx" },
1793 { "emc_wall_5.xpos", "15" },
1794 { "emc_wall_5.ypos", "1" },
1795 { "emc_wall_5.frames", "1" },
1796 { "emc_wall_6", "RocksDC.pcx" },
1797 { "emc_wall_6.xpos", "14" },
1798 { "emc_wall_6.ypos", "2" },
1799 { "emc_wall_6.frames", "1" },
1800 { "emc_wall_7", "RocksDC.pcx" },
1801 { "emc_wall_7.xpos", "15" },
1802 { "emc_wall_7.ypos", "2" },
1803 { "emc_wall_7.frames", "1" },
1804 { "emc_wall_8", "RocksEMC.pcx" },
1805 { "emc_wall_8.xpos", "8" },
1806 { "emc_wall_8.ypos", "7" },
1807 { "emc_wall_8.frames", "1" },
1809 /* images for Diamond Caves style elements and actions */
1811 { "invisible_steelwall", "RocksSP.pcx" },
1812 { "invisible_steelwall.xpos", "3" },
1813 { "invisible_steelwall.ypos", "5" },
1814 { "invisible_steelwall.frames", "1" },
1815 { "invisible_steelwall.EDITOR", "RocksSP.pcx" },
1816 { "invisible_steelwall.EDITOR.xpos", "1" },
1817 { "invisible_steelwall.EDITOR.ypos", "5" },
1818 { "invisible_steelwall.active", "RocksSP.pcx" },
1819 { "invisible_steelwall.active.xpos", "1" },
1820 { "invisible_steelwall.active.ypos", "5" },
1821 { "invisible_steelwall.active.frames", "1" },
1823 { "invisible_wall", "RocksSP.pcx" },
1824 { "invisible_wall.xpos", "7" },
1825 { "invisible_wall.ypos", "5" },
1826 { "invisible_wall.frames", "1" },
1827 { "invisible_wall.EDITOR", "RocksSP.pcx" },
1828 { "invisible_wall.EDITOR.xpos", "5" },
1829 { "invisible_wall.EDITOR.ypos", "5" },
1830 { "invisible_wall.active", "RocksSP.pcx" },
1831 { "invisible_wall.active.xpos", "5" },
1832 { "invisible_wall.active.ypos", "5" },
1833 { "invisible_wall.active.frames", "1" },
1835 { "invisible_sand", "RocksSP.pcx" },
1836 { "invisible_sand.xpos", "0" },
1837 { "invisible_sand.ypos", "0" },
1838 { "invisible_sand.frames", "1" },
1839 { "invisible_sand.EDITOR", "RocksEMC.pcx" },
1840 { "invisible_sand.EDITOR.xpos", "2" },
1841 { "invisible_sand.EDITOR.ypos", "4" },
1842 { "invisible_sand.active", "RocksEMC.pcx" },
1843 { "invisible_sand.active.xpos", "2" },
1844 { "invisible_sand.active.ypos", "4" },
1845 { "invisible_sand.active.frames", "1" },
1846 { "invisible_sand.active.CRUMBLED", "RocksEMC.pcx" },
1847 { "invisible_sand.active.CRUMBLED.xpos", "3" },
1848 { "invisible_sand.active.CRUMBLED.ypos", "4" },
1849 { "invisible_sand.active.CRUMBLED.frames", "1" },
1850 { "invisible_sand.active.digging.left", "RocksEMC.pcx" },
1851 { "invisible_sand.active.digging.left.xpos", "6" },
1852 { "invisible_sand.active.digging.left.ypos", "2" },
1853 { "invisible_sand.active.digging.left.frames","3" },
1854 { "invisible_sand.active.digging.left.delay", "2" },
1855 { "invisible_sand.active.digging.left.anim_mode","linear" },
1856 { "invisible_sand.active.digging.right", "RocksEMC.pcx" },
1857 { "invisible_sand.active.digging.right.xpos", "9" },
1858 { "invisible_sand.active.digging.right.ypos", "2" },
1859 { "invisible_sand.active.digging.right.frames","3" },
1860 { "invisible_sand.active.digging.right.delay","2" },
1861 { "invisible_sand.active.digging.right.anim_mode","linear" },
1862 { "invisible_sand.active.digging.up", "RocksEMC.pcx" },
1863 { "invisible_sand.active.digging.up.xpos", "0" },
1864 { "invisible_sand.active.digging.up.ypos", "2" },
1865 { "invisible_sand.active.digging.up.frames", "3" },
1866 { "invisible_sand.active.digging.up.delay", "2" },
1867 { "invisible_sand.active.digging.up.anim_mode","linear" },
1868 { "invisible_sand.active.digging.down", "RocksEMC.pcx" },
1869 { "invisible_sand.active.digging.down.xpos", "3" },
1870 { "invisible_sand.active.digging.down.ypos", "2" },
1871 { "invisible_sand.active.digging.down.frames","3" },
1872 { "invisible_sand.active.digging.down.delay", "2" },
1873 { "invisible_sand.active.digging.down.anim_mode","linear" },
1874 { "invisible_sand.active.digging.left.CRUMBLED", "RocksEMC.pcx" },
1875 { "invisible_sand.active.digging.left.CRUMBLED.xpos", "6" },
1876 { "invisible_sand.active.digging.left.CRUMBLED.ypos", "3" },
1877 { "invisible_sand.active.digging.left.CRUMBLED.frames","3" },
1878 { "invisible_sand.active.digging.left.CRUMBLED.delay","2" },
1879 { "invisible_sand.active.digging.left.CRUMBLED.anim_mode","linear" },
1880 { "invisible_sand.active.digging.right.CRUMBLED", "RocksEMC.pcx" },
1881 { "invisible_sand.active.digging.right.CRUMBLED.xpos","9" },
1882 { "invisible_sand.active.digging.right.CRUMBLED.ypos","3" },
1883 { "invisible_sand.active.digging.right.CRUMBLED.frames","3" },
1884 { "invisible_sand.active.digging.right.CRUMBLED.delay","2" },
1885 { "invisible_sand.active.digging.right.CRUMBLED.anim_mode","linear" },
1886 { "invisible_sand.active.digging.up.CRUMBLED", "RocksEMC.pcx" },
1887 { "invisible_sand.active.digging.up.CRUMBLED.xpos", "0" },
1888 { "invisible_sand.active.digging.up.CRUMBLED.ypos", "3" },
1889 { "invisible_sand.active.digging.up.CRUMBLED.frames", "3" },
1890 { "invisible_sand.active.digging.up.CRUMBLED.delay", "2" },
1891 { "invisible_sand.active.digging.up.CRUMBLED.anim_mode","linear" },
1892 { "invisible_sand.active.digging.down.CRUMBLED", "RocksEMC.pcx" },
1893 { "invisible_sand.active.digging.down.CRUMBLED.xpos", "3" },
1894 { "invisible_sand.active.digging.down.CRUMBLED.ypos", "3" },
1895 { "invisible_sand.active.digging.down.CRUMBLED.frames","3" },
1896 { "invisible_sand.active.digging.down.CRUMBLED.delay","2" },
1897 { "invisible_sand.active.digging.down.CRUMBLED.anim_mode","linear" },
1899 { "conveyor_belt_1_middle", "RocksDC.pcx" },
1900 { "conveyor_belt_1_middle.xpos", "0" },
1901 { "conveyor_belt_1_middle.ypos", "0" },
1902 { "conveyor_belt_1_middle.frames", "1" },
1903 { "conveyor_belt_1_middle.active", "RocksDC.pcx" },
1904 { "conveyor_belt_1_middle.active.xpos", "0" },
1905 { "conveyor_belt_1_middle.active.ypos", "0" },
1906 { "conveyor_belt_1_middle.active.frames", "8" },
1907 { "conveyor_belt_1_middle.active.delay", "2" },
1908 { "conveyor_belt_1_left", "RocksDC.pcx" },
1909 { "conveyor_belt_1_left.xpos", "0" },
1910 { "conveyor_belt_1_left.ypos", "1" },
1911 { "conveyor_belt_1_left.frames", "1" },
1912 { "conveyor_belt_1_left.active", "RocksDC.pcx" },
1913 { "conveyor_belt_1_left.active.xpos", "0" },
1914 { "conveyor_belt_1_left.active.ypos", "1" },
1915 { "conveyor_belt_1_left.active.frames", "8" },
1916 { "conveyor_belt_1_left.active.delay", "2" },
1917 { "conveyor_belt_1_right", "RocksDC.pcx" },
1918 { "conveyor_belt_1_right.xpos", "0" },
1919 { "conveyor_belt_1_right.ypos", "2" },
1920 { "conveyor_belt_1_right.frames", "1" },
1921 { "conveyor_belt_1_right.active", "RocksDC.pcx" },
1922 { "conveyor_belt_1_right.active.xpos", "0" },
1923 { "conveyor_belt_1_right.active.ypos", "2" },
1924 { "conveyor_belt_1_right.active.frames", "8" },
1925 { "conveyor_belt_1_right.active.delay", "2" },
1926 { "conveyor_belt_1_switch_left", "RocksDC.pcx" },
1927 { "conveyor_belt_1_switch_left.xpos", "0" },
1928 { "conveyor_belt_1_switch_left.ypos", "12" },
1929 { "conveyor_belt_1_switch_left.frames", "1" },
1930 { "conveyor_belt_1_switch_middle", "RocksDC.pcx" },
1931 { "conveyor_belt_1_switch_middle.xpos", "0" },
1932 { "conveyor_belt_1_switch_middle.ypos", "13" },
1933 { "conveyor_belt_1_switch_middle.frames", "1" },
1934 { "conveyor_belt_1_switch_right", "RocksDC.pcx" },
1935 { "conveyor_belt_1_switch_right.xpos", "0" },
1936 { "conveyor_belt_1_switch_right.ypos", "14" },
1937 { "conveyor_belt_1_switch_right.frames", "1" },
1939 { "conveyor_belt_2_middle", "RocksDC.pcx" },
1940 { "conveyor_belt_2_middle.xpos", "0" },
1941 { "conveyor_belt_2_middle.ypos", "3" },
1942 { "conveyor_belt_2_middle.frames", "1" },
1943 { "conveyor_belt_2_middle.active", "RocksDC.pcx" },
1944 { "conveyor_belt_2_middle.active.xpos", "0" },
1945 { "conveyor_belt_2_middle.active.ypos", "3" },
1946 { "conveyor_belt_2_middle.active.frames", "8" },
1947 { "conveyor_belt_2_middle.active.delay", "2" },
1948 { "conveyor_belt_2_left", "RocksDC.pcx" },
1949 { "conveyor_belt_2_left.xpos", "0" },
1950 { "conveyor_belt_2_left.ypos", "4" },
1951 { "conveyor_belt_2_left.frames", "1" },
1952 { "conveyor_belt_2_left.active", "RocksDC.pcx" },
1953 { "conveyor_belt_2_left.active.xpos", "0" },
1954 { "conveyor_belt_2_left.active.ypos", "4" },
1955 { "conveyor_belt_2_left.active.frames", "8" },
1956 { "conveyor_belt_2_left.active.delay", "2" },
1957 { "conveyor_belt_2_right", "RocksDC.pcx" },
1958 { "conveyor_belt_2_right.xpos", "0" },
1959 { "conveyor_belt_2_right.ypos", "5" },
1960 { "conveyor_belt_2_right.frames", "1" },
1961 { "conveyor_belt_2_right.active", "RocksDC.pcx" },
1962 { "conveyor_belt_2_right.active.xpos", "0" },
1963 { "conveyor_belt_2_right.active.ypos", "5" },
1964 { "conveyor_belt_2_right.active.frames", "8" },
1965 { "conveyor_belt_2_right.active.delay", "2" },
1966 { "conveyor_belt_2_switch_left", "RocksDC.pcx" },
1967 { "conveyor_belt_2_switch_left.xpos", "1" },
1968 { "conveyor_belt_2_switch_left.ypos", "12" },
1969 { "conveyor_belt_2_switch_left.frames", "1" },
1970 { "conveyor_belt_2_switch_middle", "RocksDC.pcx" },
1971 { "conveyor_belt_2_switch_middle.xpos", "1" },
1972 { "conveyor_belt_2_switch_middle.ypos", "13" },
1973 { "conveyor_belt_2_switch_middle.frames", "1" },
1974 { "conveyor_belt_2_switch_right", "RocksDC.pcx" },
1975 { "conveyor_belt_2_switch_right.xpos", "1" },
1976 { "conveyor_belt_2_switch_right.ypos", "14" },
1977 { "conveyor_belt_2_switch_right.frames", "1" },
1979 { "conveyor_belt_3_middle", "RocksDC.pcx" },
1980 { "conveyor_belt_3_middle.xpos", "0" },
1981 { "conveyor_belt_3_middle.ypos", "6" },
1982 { "conveyor_belt_3_middle.frames", "1" },
1983 { "conveyor_belt_3_middle.active", "RocksDC.pcx" },
1984 { "conveyor_belt_3_middle.active.xpos", "0" },
1985 { "conveyor_belt_3_middle.active.ypos", "6" },
1986 { "conveyor_belt_3_middle.active.frames", "8" },
1987 { "conveyor_belt_3_middle.active.delay", "2" },
1988 { "conveyor_belt_3_left", "RocksDC.pcx" },
1989 { "conveyor_belt_3_left.xpos", "0" },
1990 { "conveyor_belt_3_left.ypos", "7" },
1991 { "conveyor_belt_3_left.frames", "1" },
1992 { "conveyor_belt_3_left.active", "RocksDC.pcx" },
1993 { "conveyor_belt_3_left.active.xpos", "0" },
1994 { "conveyor_belt_3_left.active.ypos", "7" },
1995 { "conveyor_belt_3_left.active.frames", "8" },
1996 { "conveyor_belt_3_left.active.delay", "2" },
1997 { "conveyor_belt_3_right", "RocksDC.pcx" },
1998 { "conveyor_belt_3_right.xpos", "0" },
1999 { "conveyor_belt_3_right.ypos", "8" },
2000 { "conveyor_belt_3_right.frames", "1" },
2001 { "conveyor_belt_3_right.active", "RocksDC.pcx" },
2002 { "conveyor_belt_3_right.active.xpos", "0" },
2003 { "conveyor_belt_3_right.active.ypos", "8" },
2004 { "conveyor_belt_3_right.active.frames", "8" },
2005 { "conveyor_belt_3_right.active.delay", "2" },
2006 { "conveyor_belt_3_switch_left", "RocksDC.pcx" },
2007 { "conveyor_belt_3_switch_left.xpos", "2" },
2008 { "conveyor_belt_3_switch_left.ypos", "12" },
2009 { "conveyor_belt_3_switch_left.frames", "1" },
2010 { "conveyor_belt_3_switch_middle", "RocksDC.pcx" },
2011 { "conveyor_belt_3_switch_middle.xpos", "2" },
2012 { "conveyor_belt_3_switch_middle.ypos", "13" },
2013 { "conveyor_belt_3_switch_middle.frames", "1" },
2014 { "conveyor_belt_3_switch_right", "RocksDC.pcx" },
2015 { "conveyor_belt_3_switch_right.xpos", "2" },
2016 { "conveyor_belt_3_switch_right.ypos", "14" },
2017 { "conveyor_belt_3_switch_right.frames", "1" },
2019 { "conveyor_belt_4_middle", "RocksDC.pcx" },
2020 { "conveyor_belt_4_middle.xpos", "0" },
2021 { "conveyor_belt_4_middle.ypos", "9" },
2022 { "conveyor_belt_4_middle.frames", "1" },
2023 { "conveyor_belt_4_middle.active", "RocksDC.pcx" },
2024 { "conveyor_belt_4_middle.active.xpos", "0" },
2025 { "conveyor_belt_4_middle.active.ypos", "9" },
2026 { "conveyor_belt_4_middle.active.frames", "8" },
2027 { "conveyor_belt_4_middle.active.delay", "2" },
2028 { "conveyor_belt_4_left", "RocksDC.pcx" },
2029 { "conveyor_belt_4_left.xpos", "0" },
2030 { "conveyor_belt_4_left.ypos", "10" },
2031 { "conveyor_belt_4_left.frames", "1" },
2032 { "conveyor_belt_4_left.active", "RocksDC.pcx" },
2033 { "conveyor_belt_4_left.active.xpos", "0" },
2034 { "conveyor_belt_4_left.active.ypos", "10" },
2035 { "conveyor_belt_4_left.active.frames", "8" },
2036 { "conveyor_belt_4_left.active.delay", "2" },
2037 { "conveyor_belt_4_right", "RocksDC.pcx" },
2038 { "conveyor_belt_4_right.xpos", "0" },
2039 { "conveyor_belt_4_right.ypos", "11" },
2040 { "conveyor_belt_4_right.frames", "1" },
2041 { "conveyor_belt_4_right.active", "RocksDC.pcx" },
2042 { "conveyor_belt_4_right.active.xpos", "0" },
2043 { "conveyor_belt_4_right.active.ypos", "11" },
2044 { "conveyor_belt_4_right.active.frames", "8" },
2045 { "conveyor_belt_4_right.active.delay", "2" },
2046 { "conveyor_belt_4_switch_left", "RocksDC.pcx" },
2047 { "conveyor_belt_4_switch_left.xpos", "3" },
2048 { "conveyor_belt_4_switch_left.ypos", "12" },
2049 { "conveyor_belt_4_switch_left.frames", "1" },
2050 { "conveyor_belt_4_switch_middle", "RocksDC.pcx" },
2051 { "conveyor_belt_4_switch_middle.xpos", "3" },
2052 { "conveyor_belt_4_switch_middle.ypos", "13" },
2053 { "conveyor_belt_4_switch_middle.frames", "1" },
2054 { "conveyor_belt_4_switch_right", "RocksDC.pcx" },
2055 { "conveyor_belt_4_switch_right.xpos", "3" },
2056 { "conveyor_belt_4_switch_right.ypos", "14" },
2057 { "conveyor_belt_4_switch_right.frames", "1" },
2059 { "switchgate_switch_up", "RocksDC.pcx" },
2060 { "switchgate_switch_up.xpos", "4" },
2061 { "switchgate_switch_up.ypos", "12" },
2062 { "switchgate_switch_up.frames", "1" },
2063 { "switchgate_switch_down", "RocksDC.pcx" },
2064 { "switchgate_switch_down.xpos", "5" },
2065 { "switchgate_switch_down.ypos", "12" },
2066 { "switchgate_switch_down.frames", "1" },
2068 { "dc_switchgate_switch_up", "RocksDC2.pcx" },
2069 { "dc_switchgate_switch_up.xpos", "10" },
2070 { "dc_switchgate_switch_up.ypos", "1" },
2071 { "dc_switchgate_switch_up.frames", "1" },
2072 { "dc_switchgate_switch_down", "RocksDC2.pcx" },
2073 { "dc_switchgate_switch_down.xpos", "11" },
2074 { "dc_switchgate_switch_down.ypos", "1" },
2075 { "dc_switchgate_switch_down.frames", "1" },
2077 { "light_switch", "RocksDC.pcx" },
2078 { "light_switch.xpos", "6" },
2079 { "light_switch.ypos", "12" },
2080 { "light_switch.frames", "1" },
2081 { "light_switch.active", "RocksDC.pcx" },
2082 { "light_switch.active.xpos", "7" },
2083 { "light_switch.active.ypos", "12" },
2084 { "light_switch.active.frames", "1" },
2086 { "timegate_switch", "RocksDC.pcx" },
2087 { "timegate_switch.xpos", "0" },
2088 { "timegate_switch.ypos", "15" },
2089 { "timegate_switch.frames", "1" },
2090 { "timegate_switch.active", "RocksDC.pcx" },
2091 { "timegate_switch.active.xpos", "0" },
2092 { "timegate_switch.active.ypos", "15" },
2093 { "timegate_switch.active.frames", "4" },
2095 { "dc_timegate_switch", "RocksDC2.pcx" },
2096 { "dc_timegate_switch.xpos", "12" },
2097 { "dc_timegate_switch.ypos", "1" },
2098 { "dc_timegate_switch.frames", "1" },
2099 { "dc_timegate_switch.active", "RocksDC2.pcx" },
2100 { "dc_timegate_switch.active.xpos", "12" },
2101 { "dc_timegate_switch.active.ypos", "1" },
2102 { "dc_timegate_switch.active.frames", "4" },
2104 { "envelope_1", "RocksMore.pcx" },
2105 { "envelope_1.xpos", "0" },
2106 { "envelope_1.ypos", "4" },
2107 { "envelope_1.frames", "1" },
2108 { "envelope_1.collecting", "RocksMore.pcx" },
2109 { "envelope_1.collecting.xpos", "5" },
2110 { "envelope_1.collecting.ypos", "4" },
2111 { "envelope_1.collecting.frames", "3" },
2112 { "envelope_1.collecting.delay", "2" },
2113 { "envelope_1.collecting.anim_mode", "linear" },
2114 { "envelope_2", "RocksMore.pcx" },
2115 { "envelope_2.xpos", "1" },
2116 { "envelope_2.ypos", "4" },
2117 { "envelope_2.frames", "1" },
2118 { "envelope_2.collecting", "RocksMore.pcx" },
2119 { "envelope_2.collecting.xpos", "5" },
2120 { "envelope_2.collecting.ypos", "4" },
2121 { "envelope_2.collecting.frames", "3" },
2122 { "envelope_2.collecting.delay", "2" },
2123 { "envelope_2.collecting.anim_mode", "linear" },
2124 { "envelope_3", "RocksMore.pcx" },
2125 { "envelope_3.xpos", "2" },
2126 { "envelope_3.ypos", "4" },
2127 { "envelope_3.frames", "1" },
2128 { "envelope_3.collecting", "RocksMore.pcx" },
2129 { "envelope_3.collecting.xpos", "5" },
2130 { "envelope_3.collecting.ypos", "4" },
2131 { "envelope_3.collecting.frames", "3" },
2132 { "envelope_3.collecting.delay", "2" },
2133 { "envelope_3.collecting.anim_mode", "linear" },
2134 { "envelope_4", "RocksMore.pcx" },
2135 { "envelope_4.xpos", "3" },
2136 { "envelope_4.ypos", "4" },
2137 { "envelope_4.frames", "1" },
2138 { "envelope_4.collecting", "RocksMore.pcx" },
2139 { "envelope_4.collecting.xpos", "5" },
2140 { "envelope_4.collecting.ypos", "4" },
2141 { "envelope_4.collecting.frames", "3" },
2142 { "envelope_4.collecting.delay", "2" },
2143 { "envelope_4.collecting.anim_mode", "linear" },
2145 { "sign_radioactivity", "RocksDC.pcx" },
2146 { "sign_radioactivity.xpos", "4" },
2147 { "sign_radioactivity.ypos", "13" },
2148 { "sign_radioactivity.frames", "1" },
2150 { "sign_give_way", "RocksDC.pcx" },
2151 { "sign_give_way.xpos", "5" },
2152 { "sign_give_way.ypos", "13" },
2153 { "sign_give_way.frames", "1" },
2155 { "sign_no_entry", "RocksDC.pcx" },
2156 { "sign_no_entry.xpos", "6" },
2157 { "sign_no_entry.ypos", "13" },
2158 { "sign_no_entry.frames", "1" },
2160 { "sign_emergency_exit", "RocksDC.pcx" },
2161 { "sign_emergency_exit.xpos", "7" },
2162 { "sign_emergency_exit.ypos", "13" },
2163 { "sign_emergency_exit.frames", "1" },
2165 { "sign_yin_yang", "RocksDC.pcx" },
2166 { "sign_yin_yang.xpos", "4" },
2167 { "sign_yin_yang.ypos", "14" },
2168 { "sign_yin_yang.frames", "1" },
2170 { "sign_exclamation", "RocksDC.pcx" },
2171 { "sign_exclamation.xpos", "5" },
2172 { "sign_exclamation.ypos", "14" },
2173 { "sign_exclamation.frames", "1" },
2175 { "sign_stop", "RocksDC.pcx" },
2176 { "sign_stop.xpos", "6" },
2177 { "sign_stop.ypos", "14" },
2178 { "sign_stop.frames", "1" },
2180 { "sign_parking", "RocksDC.pcx" },
2181 { "sign_parking.xpos", "6" },
2182 { "sign_parking.ypos", "15" },
2183 { "sign_parking.frames", "1" },
2185 { "sign_wheelchair", "RocksDC.pcx" },
2186 { "sign_wheelchair.xpos", "7" },
2187 { "sign_wheelchair.ypos", "15" },
2188 { "sign_wheelchair.frames", "1" },
2190 { "sign_entry_forbidden", "RocksDC.pcx" },
2191 { "sign_entry_forbidden.xpos", "12" },
2192 { "sign_entry_forbidden.ypos", "15" },
2193 { "sign_entry_forbidden.frames", "1" },
2195 { "sperms", "RocksDC2.pcx" },
2196 { "sperms.xpos", "11" },
2197 { "sperms.ypos", "3" },
2198 { "sperms.frames", "1" },
2200 { "bullet", "RocksDC2.pcx" },
2201 { "bullet.xpos", "12" },
2202 { "bullet.ypos", "3" },
2203 { "bullet.frames", "1" },
2205 { "heart", "RocksDC2.pcx" },
2206 { "heart.xpos", "13" },
2207 { "heart.ypos", "3" },
2208 { "heart.frames", "1" },
2210 { "cross", "RocksDC2.pcx" },
2211 { "cross.xpos", "14" },
2212 { "cross.ypos", "3" },
2213 { "cross.frames", "1" },
2215 { "frankie", "RocksDC2.pcx" },
2216 { "frankie.xpos", "15" },
2217 { "frankie.ypos", "3" },
2218 { "frankie.frames", "1" },
2220 { "sign_sperms", "RocksDC2.pcx" },
2221 { "sign_sperms.xpos", "11" },
2222 { "sign_sperms.ypos", "2" },
2223 { "sign_sperms.frames", "1" },
2225 { "sign_bullet", "RocksDC2.pcx" },
2226 { "sign_bullet.xpos", "12" },
2227 { "sign_bullet.ypos", "2" },
2228 { "sign_bullet.frames", "1" },
2230 { "sign_heart", "RocksDC2.pcx" },
2231 { "sign_heart.xpos", "13" },
2232 { "sign_heart.ypos", "2" },
2233 { "sign_heart.frames", "1" },
2235 { "sign_cross", "RocksDC2.pcx" },
2236 { "sign_cross.xpos", "14" },
2237 { "sign_cross.ypos", "2" },
2238 { "sign_cross.frames", "1" },
2240 { "sign_frankie", "RocksDC2.pcx" },
2241 { "sign_frankie.xpos", "15" },
2242 { "sign_frankie.ypos", "2" },
2243 { "sign_frankie.frames", "1" },
2245 { "landmine", "RocksDC.pcx" },
2246 { "landmine.xpos", "7" },
2247 { "landmine.ypos", "14" },
2248 { "landmine.frames", "1" },
2249 { "landmine.crumbled_like", "sand" },
2251 { "dc_landmine", "RocksDC.pcx" },
2252 { "dc_landmine.xpos", "14" },
2253 { "dc_landmine.ypos", "5" },
2254 { "dc_landmine.frames", "1" },
2255 { "dc_landmine.crumbled_like", "sand" },
2257 { "steelwall_slippery", "RocksDC.pcx" },
2258 { "steelwall_slippery.xpos", "5" },
2259 { "steelwall_slippery.ypos", "15" },
2260 { "steelwall_slippery.frames", "1" },
2262 { "extra_time", "RocksDC.pcx" },
2263 { "extra_time.xpos", "8" },
2264 { "extra_time.ypos", "0" },
2265 { "extra_time.frames", "6" },
2266 { "extra_time.delay", "4" },
2268 { "shield_normal", "RocksDC.pcx" },
2269 { "shield_normal.xpos", "8" },
2270 { "shield_normal.ypos", "2" },
2271 { "shield_normal.frames", "6" },
2272 { "shield_normal.delay", "4" },
2273 { "shield_normal.active", "RocksHeroes.pcx" },
2274 { "shield_normal.active.xpos", "1" },
2275 { "shield_normal.active.ypos", "13" },
2276 { "shield_normal.active.frames", "3" },
2277 { "shield_normal.active.delay", "8" },
2278 { "shield_normal.active.anim_mode", "pingpong" },
2280 { "shield_deadly", "RocksDC.pcx" },
2281 { "shield_deadly.xpos", "8" },
2282 { "shield_deadly.ypos", "1" },
2283 { "shield_deadly.frames", "6" },
2284 { "shield_deadly.delay", "4" },
2285 { "shield_deadly.active", "RocksHeroes.pcx" },
2286 { "shield_deadly.active.xpos", "5" },
2287 { "shield_deadly.active.ypos", "13" },
2288 { "shield_deadly.active.frames", "3" },
2289 { "shield_deadly.active.delay", "8" },
2290 { "shield_deadly.active.anim_mode", "pingpong" },
2292 { "switchgate_closed", "RocksDC.pcx" },
2293 { "switchgate_closed.xpos", "8" },
2294 { "switchgate_closed.ypos", "5" },
2295 { "switchgate_closed.frames", "1" },
2296 { "switchgate.opening", "RocksDC.pcx" },
2297 { "switchgate.opening.xpos", "8" },
2298 { "switchgate.opening.ypos", "5" },
2299 { "switchgate.opening.frames", "5" },
2300 { "switchgate.opening.delay", "6" },
2301 { "switchgate_open", "RocksDC.pcx" },
2302 { "switchgate_open.xpos", "12" },
2303 { "switchgate_open.ypos", "5" },
2304 { "switchgate_open.frames", "1" },
2305 { "switchgate.closing", "RocksDC.pcx" },
2306 { "switchgate.closing.xpos", "8" },
2307 { "switchgate.closing.ypos", "5" },
2308 { "switchgate.closing.frames", "5" },
2309 { "switchgate.closing.delay", "6" },
2310 { "switchgate.closing.anim_mode", "reverse" },
2312 { "timegate_closed", "RocksDC.pcx" },
2313 { "timegate_closed.xpos", "8" },
2314 { "timegate_closed.ypos", "6" },
2315 { "timegate_closed.frames", "1" },
2316 { "timegate.opening", "RocksDC.pcx" },
2317 { "timegate.opening.xpos", "8" },
2318 { "timegate.opening.ypos", "6" },
2319 { "timegate.opening.frames", "5" },
2320 { "timegate.opening.delay", "6" },
2321 { "timegate_open", "RocksDC.pcx" },
2322 { "timegate_open.xpos", "12" },
2323 { "timegate_open.ypos", "6" },
2324 { "timegate_open.frames", "1" },
2325 { "timegate.closing", "RocksDC.pcx" },
2326 { "timegate.closing.xpos", "8" },
2327 { "timegate.closing.ypos", "6" },
2328 { "timegate.closing.frames", "5" },
2329 { "timegate.closing.delay", "6" },
2330 { "timegate.closing.anim_mode", "reverse" },
2332 { "pearl", "RocksDC.pcx" },
2333 { "pearl.xpos", "8" },
2334 { "pearl.ypos", "11" },
2335 { "pearl.frames", "1" },
2336 { "pearl.breaking", "RocksDC.pcx" },
2337 { "pearl.breaking.xpos", "8" },
2338 { "pearl.breaking.ypos", "12" },
2339 { "pearl.breaking.frames", "4" },
2340 { "pearl.breaking.delay", "2" },
2341 { "pearl.breaking.anim_mode", "linear" },
2343 { "crystal", "RocksDC.pcx" },
2344 { "crystal.xpos", "9" },
2345 { "crystal.ypos", "11" },
2346 { "crystal.frames", "1" },
2348 { "wall_pearl", "RocksDC.pcx" },
2349 { "wall_pearl.xpos", "10" },
2350 { "wall_pearl.ypos", "11" },
2351 { "wall_pearl.frames", "1" },
2353 { "wall_crystal", "RocksDC.pcx" },
2354 { "wall_crystal.xpos", "11" },
2355 { "wall_crystal.ypos", "11" },
2356 { "wall_crystal.frames", "1" },
2358 { "dc_steelwall_1_left", "RocksDC2.pcx" },
2359 { "dc_steelwall_1_left.xpos", "5" },
2360 { "dc_steelwall_1_left.ypos", "1" },
2361 { "dc_steelwall_1_left.frames", "1" },
2362 { "dc_steelwall_1_right", "RocksDC2.pcx" },
2363 { "dc_steelwall_1_right.xpos", "3" },
2364 { "dc_steelwall_1_right.ypos", "1" },
2365 { "dc_steelwall_1_right.frames", "1" },
2366 { "dc_steelwall_1_top", "RocksDC2.pcx" },
2367 { "dc_steelwall_1_top.xpos", "4" },
2368 { "dc_steelwall_1_top.ypos", "2" },
2369 { "dc_steelwall_1_top.frames", "1" },
2370 { "dc_steelwall_1_bottom", "RocksDC2.pcx" },
2371 { "dc_steelwall_1_bottom.xpos", "4" },
2372 { "dc_steelwall_1_bottom.ypos", "0" },
2373 { "dc_steelwall_1_bottom.frames", "1" },
2374 { "dc_steelwall_1_horizontal", "RocksDC2.pcx" },
2375 { "dc_steelwall_1_horizontal.xpos", "1" },
2376 { "dc_steelwall_1_horizontal.ypos", "0" },
2377 { "dc_steelwall_1_horizontal.frames", "1" },
2378 { "dc_steelwall_1_vertical", "RocksDC2.pcx" },
2379 { "dc_steelwall_1_vertical.xpos", "0" },
2380 { "dc_steelwall_1_vertical.ypos", "1" },
2381 { "dc_steelwall_1_vertical.frames", "1" },
2382 { "dc_steelwall_1_topleft", "RocksDC2.pcx" },
2383 { "dc_steelwall_1_topleft.xpos", "0" },
2384 { "dc_steelwall_1_topleft.ypos", "0" },
2385 { "dc_steelwall_1_topleft.frames", "1" },
2386 { "dc_steelwall_1_topright", "RocksDC2.pcx" },
2387 { "dc_steelwall_1_topright.xpos", "2" },
2388 { "dc_steelwall_1_topright.ypos", "0" },
2389 { "dc_steelwall_1_topright.frames", "1" },
2390 { "dc_steelwall_1_bottomleft", "RocksDC2.pcx" },
2391 { "dc_steelwall_1_bottomleft.xpos", "0" },
2392 { "dc_steelwall_1_bottomleft.ypos", "2" },
2393 { "dc_steelwall_1_bottomleft.frames", "1" },
2394 { "dc_steelwall_1_bottomright", "RocksDC2.pcx" },
2395 { "dc_steelwall_1_bottomright.xpos", "2" },
2396 { "dc_steelwall_1_bottomright.ypos", "2" },
2397 { "dc_steelwall_1_bottomright.frames", "1" },
2398 { "dc_steelwall_1_topleft_2", "RocksDC2.pcx" },
2399 { "dc_steelwall_1_topleft_2.xpos", "5" },
2400 { "dc_steelwall_1_topleft_2.ypos", "2" },
2401 { "dc_steelwall_1_topleft_2.frames", "1" },
2402 { "dc_steelwall_1_topright_2", "RocksDC2.pcx" },
2403 { "dc_steelwall_1_topright_2.xpos", "3" },
2404 { "dc_steelwall_1_topright_2.ypos", "2" },
2405 { "dc_steelwall_1_topright_2.frames", "1" },
2406 { "dc_steelwall_1_bottomleft_2", "RocksDC2.pcx" },
2407 { "dc_steelwall_1_bottomleft_2.xpos", "5" },
2408 { "dc_steelwall_1_bottomleft_2.ypos", "0" },
2409 { "dc_steelwall_1_bottomleft_2.frames", "1" },
2410 { "dc_steelwall_1_bottomright_2", "RocksDC2.pcx" },
2411 { "dc_steelwall_1_bottomright_2.xpos", "3" },
2412 { "dc_steelwall_1_bottomright_2.ypos", "0" },
2413 { "dc_steelwall_1_bottomright_2.frames", "1" },
2415 { "dc_steelwall_2_left", "RocksDC2.pcx" },
2416 { "dc_steelwall_2_left.xpos", "6" },
2417 { "dc_steelwall_2_left.ypos", "1" },
2418 { "dc_steelwall_2_left.frames", "1" },
2419 { "dc_steelwall_2_right", "RocksDC2.pcx" },
2420 { "dc_steelwall_2_right.xpos", "9" },
2421 { "dc_steelwall_2_right.ypos", "1" },
2422 { "dc_steelwall_2_right.frames", "1" },
2423 { "dc_steelwall_2_top", "RocksDC2.pcx" },
2424 { "dc_steelwall_2_top.xpos", "7" },
2425 { "dc_steelwall_2_top.ypos", "0" },
2426 { "dc_steelwall_2_top.frames", "1" },
2427 { "dc_steelwall_2_bottom", "RocksDC2.pcx" },
2428 { "dc_steelwall_2_bottom.xpos", "7" },
2429 { "dc_steelwall_2_bottom.ypos", "3" },
2430 { "dc_steelwall_2_bottom.frames", "1" },
2431 { "dc_steelwall_2_horizontal", "RocksDC2.pcx" },
2432 { "dc_steelwall_2_horizontal.xpos", "8" },
2433 { "dc_steelwall_2_horizontal.ypos", "1" },
2434 { "dc_steelwall_2_horizontal.frames", "1" },
2435 { "dc_steelwall_2_vertical", "RocksDC2.pcx" },
2436 { "dc_steelwall_2_vertical.xpos", "7" },
2437 { "dc_steelwall_2_vertical.ypos", "2" },
2438 { "dc_steelwall_2_vertical.frames", "1" },
2439 { "dc_steelwall_2_middle", "RocksDC2.pcx" },
2440 { "dc_steelwall_2_middle.xpos", "7" },
2441 { "dc_steelwall_2_middle.ypos", "1" },
2442 { "dc_steelwall_2_middle.frames", "1" },
2443 { "dc_steelwall_2_single", "RocksDC2.pcx" },
2444 { "dc_steelwall_2_single.xpos", "6" },
2445 { "dc_steelwall_2_single.ypos", "0" },
2446 { "dc_steelwall_2_single.frames", "1" },
2448 /* images for DX Boulderdash style elements and actions */
2450 { "tube_right_down", "RocksDC.pcx" },
2451 { "tube_right_down.xpos", "9" },
2452 { "tube_right_down.ypos", "13" },
2453 { "tube_right_down.frames", "1" },
2455 { "tube_horizontal_down", "RocksDC.pcx" },
2456 { "tube_horizontal_down.xpos", "10" },
2457 { "tube_horizontal_down.ypos", "13" },
2458 { "tube_horizontal_down.frames", "1" },
2460 { "tube_left_down", "RocksDC.pcx" },
2461 { "tube_left_down.xpos", "11" },
2462 { "tube_left_down.ypos", "13" },
2463 { "tube_left_down.frames", "1" },
2465 { "tube_horizontal", "RocksDC.pcx" },
2466 { "tube_horizontal.xpos", "8" },
2467 { "tube_horizontal.ypos", "14" },
2468 { "tube_horizontal.frames", "1" },
2470 { "tube_vertical_right", "RocksDC.pcx" },
2471 { "tube_vertical_right.xpos", "9" },
2472 { "tube_vertical_right.ypos", "14" },
2473 { "tube_vertical_right.frames", "1" },
2475 { "tube_any", "RocksDC.pcx" },
2476 { "tube_any.xpos", "10" },
2477 { "tube_any.ypos", "14" },
2478 { "tube_any.frames", "1" },
2480 { "tube_vertical_left", "RocksDC.pcx" },
2481 { "tube_vertical_left.xpos", "11" },
2482 { "tube_vertical_left.ypos", "14" },
2483 { "tube_vertical_left.frames", "1" },
2485 { "tube_vertical", "RocksDC.pcx" },
2486 { "tube_vertical.xpos", "8" },
2487 { "tube_vertical.ypos", "15" },
2488 { "tube_vertical.frames", "1" },
2490 { "tube_right_up", "RocksDC.pcx" },
2491 { "tube_right_up.xpos", "9" },
2492 { "tube_right_up.ypos", "15" },
2493 { "tube_right_up.frames", "1" },
2495 { "tube_horizontal_up", "RocksDC.pcx" },
2496 { "tube_horizontal_up.xpos", "10" },
2497 { "tube_horizontal_up.ypos", "15" },
2498 { "tube_horizontal_up.frames", "1" },
2500 { "tube_left_up", "RocksDC.pcx" },
2501 { "tube_left_up.xpos", "11" },
2502 { "tube_left_up.ypos", "15" },
2503 { "tube_left_up.frames", "1" },
2505 { "trap", "RocksDC.pcx" },
2506 { "trap.xpos", "12" },
2507 { "trap.ypos", "8" },
2508 { "trap.frames", "1" },
2509 { "trap.crumbled_like", "sand" },
2510 { "trap.diggable_like", "sand" },
2511 { "trap.active", "RocksDC.pcx" },
2512 { "trap.active.xpos", "12" },
2513 { "trap.active.ypos", "8" },
2514 { "trap.active.frames", "4" },
2515 { "trap.active.delay", "4" },
2516 { "trap.active.anim_mode", "pingpong2" },
2517 { "trap.active.crumbled_like", "sand" },
2519 { "dx_supabomb", "RocksDC.pcx" },
2520 { "dx_supabomb.xpos", "15" },
2521 { "dx_supabomb.ypos", "9" },
2522 { "dx_supabomb.frames", "1" },
2524 /* images for Rocks'n'Diamonds style elements and actions */
2526 { "key_1", "RocksElements.pcx" },
2527 { "key_1.xpos", "4" },
2528 { "key_1.ypos", "1" },
2529 { "key_1.frames", "1" },
2530 { "key_1.EDITOR", "RocksElements.pcx" },
2531 { "key_1.EDITOR.xpos", "4" },
2532 { "key_1.EDITOR.ypos", "14" },
2533 { "key_2", "RocksElements.pcx" },
2534 { "key_2.xpos", "5" },
2535 { "key_2.ypos", "1" },
2536 { "key_2.frames", "1" },
2537 { "key_2.EDITOR", "RocksElements.pcx" },
2538 { "key_2.EDITOR.xpos", "5" },
2539 { "key_2.EDITOR.ypos", "14" },
2540 { "key_3", "RocksElements.pcx" },
2541 { "key_3.xpos", "6" },
2542 { "key_3.ypos", "1" },
2543 { "key_3.frames", "1" },
2544 { "key_3.EDITOR", "RocksElements.pcx" },
2545 { "key_3.EDITOR.xpos", "6" },
2546 { "key_3.EDITOR.ypos", "14" },
2547 { "key_4", "RocksElements.pcx" },
2548 { "key_4.xpos", "7" },
2549 { "key_4.ypos", "1" },
2550 { "key_4.frames", "1" },
2551 { "key_4.EDITOR", "RocksElements.pcx" },
2552 { "key_4.EDITOR.xpos", "7" },
2553 { "key_4.EDITOR.ypos", "14" },
2555 { "gate_1", "RocksElements.pcx" },
2556 { "gate_1.xpos", "4" },
2557 { "gate_1.ypos", "2" },
2558 { "gate_1.frames", "1" },
2559 { "gate_2", "RocksElements.pcx" },
2560 { "gate_2.xpos", "5" },
2561 { "gate_2.ypos", "2" },
2562 { "gate_2.frames", "1" },
2563 { "gate_3", "RocksElements.pcx" },
2564 { "gate_3.xpos", "6" },
2565 { "gate_3.ypos", "2" },
2566 { "gate_3.frames", "1" },
2567 { "gate_4", "RocksElements.pcx" },
2568 { "gate_4.xpos", "7" },
2569 { "gate_4.ypos", "2" },
2570 { "gate_4.frames", "1" },
2571 { "gate_1_gray", "RocksElements.pcx" },
2572 { "gate_1_gray.xpos", "8" },
2573 { "gate_1_gray.ypos", "2" },
2574 { "gate_1_gray.frames", "1" },
2575 { "gate_1_gray.EDITOR", "RocksElements.pcx" },
2576 { "gate_1_gray.EDITOR.xpos", "8" },
2577 { "gate_1_gray.EDITOR.ypos", "14" },
2578 { "gate_1_gray.active", "RocksElements.pcx" },
2579 { "gate_1_gray.active.xpos", "4" },
2580 { "gate_1_gray.active.ypos", "2" },
2581 { "gate_1_gray.active.frames", "1" },
2582 { "gate_2_gray", "RocksElements.pcx" },
2583 { "gate_2_gray.xpos", "9" },
2584 { "gate_2_gray.ypos", "2" },
2585 { "gate_2_gray.frames", "1" },
2586 { "gate_2_gray.EDITOR", "RocksElements.pcx" },
2587 { "gate_2_gray.EDITOR.xpos", "9" },
2588 { "gate_2_gray.EDITOR.ypos", "14" },
2589 { "gate_2_gray.active", "RocksElements.pcx" },
2590 { "gate_2_gray.active.xpos", "5" },
2591 { "gate_2_gray.active.ypos", "2" },
2592 { "gate_2_gray.active.frames", "1" },
2593 { "gate_3_gray", "RocksElements.pcx" },
2594 { "gate_3_gray.xpos", "10" },
2595 { "gate_3_gray.ypos", "2" },
2596 { "gate_3_gray.frames", "1" },
2597 { "gate_3_gray.EDITOR", "RocksElements.pcx" },
2598 { "gate_3_gray.EDITOR.xpos", "10" },
2599 { "gate_3_gray.EDITOR.ypos", "14" },
2600 { "gate_3_gray.active", "RocksElements.pcx" },
2601 { "gate_3_gray.active.xpos", "6" },
2602 { "gate_3_gray.active.ypos", "2" },
2603 { "gate_3_gray.active.frames", "1" },
2604 { "gate_4_gray", "RocksElements.pcx" },
2605 { "gate_4_gray.xpos", "11" },
2606 { "gate_4_gray.ypos", "2" },
2607 { "gate_4_gray.frames", "1" },
2608 { "gate_4_gray.EDITOR", "RocksElements.pcx" },
2609 { "gate_4_gray.EDITOR.xpos", "11" },
2610 { "gate_4_gray.EDITOR.ypos", "14" },
2611 { "gate_4_gray.active", "RocksElements.pcx" },
2612 { "gate_4_gray.active.xpos", "7" },
2613 { "gate_4_gray.active.ypos", "2" },
2614 { "gate_4_gray.active.frames", "1" },
2616 { "game_of_life", "RocksElements.pcx" },
2617 { "game_of_life.xpos", "8" },
2618 { "game_of_life.ypos", "1" },
2619 { "game_of_life.frames", "1" },
2621 { "biomaze", "RocksElements.pcx" },
2622 { "biomaze.xpos", "9" },
2623 { "biomaze.ypos", "1" },
2624 { "biomaze.frames", "1" },
2626 { "pacman", "RocksElements.pcx" },
2627 { "pacman.xpos", "8" },
2628 { "pacman.ypos", "5" },
2629 { "pacman.frames", "1" },
2630 { "pacman.right", "RocksElements.pcx" },
2631 { "pacman.right.xpos", "8" },
2632 { "pacman.right.ypos", "5" },
2633 { "pacman.right.frames", "2" },
2634 { "pacman.right.delay", "4" },
2635 { "pacman.right.offset", "128" },
2636 { "pacman.up", "RocksElements.pcx" },
2637 { "pacman.up.xpos", "9" },
2638 { "pacman.up.ypos", "5" },
2639 { "pacman.up.frames", "2" },
2640 { "pacman.up.delay", "4" },
2641 { "pacman.up.offset", "128" },
2642 { "pacman.left", "RocksElements.pcx" },
2643 { "pacman.left.xpos", "10" },
2644 { "pacman.left.ypos", "5" },
2645 { "pacman.left.frames", "2" },
2646 { "pacman.left.delay", "4" },
2647 { "pacman.left.offset", "128" },
2648 { "pacman.down", "RocksElements.pcx" },
2649 { "pacman.down.xpos", "11" },
2650 { "pacman.down.ypos", "5" },
2651 { "pacman.down.frames", "2" },
2652 { "pacman.down.delay", "4" },
2653 { "pacman.down.offset", "128" },
2654 { "pacman.turning_from_right", "RocksElements.pcx" },
2655 { "pacman.turning_from_right.xpos", "12" },
2656 { "pacman.turning_from_right.ypos", "5" },
2657 { "pacman.turning_from_right.frames", "1" },
2658 { "pacman.turning_from_up", "RocksElements.pcx" },
2659 { "pacman.turning_from_up.xpos", "13" },
2660 { "pacman.turning_from_up.ypos", "5" },
2661 { "pacman.turning_from_up.frames", "1" },
2662 { "pacman.turning_from_left", "RocksElements.pcx" },
2663 { "pacman.turning_from_left.xpos", "14" },
2664 { "pacman.turning_from_left.ypos", "5" },
2665 { "pacman.turning_from_left.frames", "1" },
2666 { "pacman.turning_from_down", "RocksElements.pcx" },
2667 { "pacman.turning_from_down.xpos", "15" },
2668 { "pacman.turning_from_down.ypos", "5" },
2669 { "pacman.turning_from_down.frames", "1" },
2671 { "lamp", "RocksElements.pcx" },
2672 { "lamp.xpos", "0" },
2673 { "lamp.ypos", "7" },
2674 { "lamp.frames", "1" },
2675 { "lamp.EDITOR", "RocksElements.pcx" },
2676 { "lamp.EDITOR.xpos", "2" },
2677 { "lamp.EDITOR.ypos", "14" },
2678 { "lamp.active", "RocksElements.pcx" },
2679 { "lamp.active.xpos", "1" },
2680 { "lamp.active.ypos", "7" },
2681 { "lamp.active.frames", "1" },
2683 { "time_orb_full", "RocksElements.pcx" },
2684 { "time_orb_full.xpos", "2" },
2685 { "time_orb_full.ypos", "7" },
2686 { "time_orb_full.frames", "1" },
2687 { "time_orb_empty", "RocksElements.pcx" },
2688 { "time_orb_empty.xpos", "3" },
2689 { "time_orb_empty.ypos", "7" },
2690 { "time_orb_empty.frames", "1" },
2692 { "emerald_yellow", "RocksElements.pcx" },
2693 { "emerald_yellow.xpos", "10" },
2694 { "emerald_yellow.ypos", "8" },
2695 { "emerald_yellow.frames", "1" },
2696 { "emerald_yellow.moving", "RocksElements.pcx" },
2697 { "emerald_yellow.moving.xpos", "10" },
2698 { "emerald_yellow.moving.ypos", "8" },
2699 { "emerald_yellow.moving.frames", "2" },
2700 { "emerald_yellow.moving.delay", "4" },
2701 { "emerald_yellow.falling", "RocksElements.pcx" },
2702 { "emerald_yellow.falling.xpos", "10" },
2703 { "emerald_yellow.falling.ypos", "8" },
2704 { "emerald_yellow.falling.frames", "2" },
2705 { "emerald_yellow.falling.delay", "4" },
2706 { "emerald_red", "RocksElements.pcx" },
2707 { "emerald_red.xpos", "8" },
2708 { "emerald_red.ypos", "9" },
2709 { "emerald_red.frames", "1" },
2710 { "emerald_red.moving", "RocksElements.pcx" },
2711 { "emerald_red.moving.xpos", "8" },
2712 { "emerald_red.moving.ypos", "9" },
2713 { "emerald_red.moving.frames", "2" },
2714 { "emerald_red.moving.delay", "4" },
2715 { "emerald_red.falling", "RocksElements.pcx" },
2716 { "emerald_red.falling.xpos", "8" },
2717 { "emerald_red.falling.ypos", "9" },
2718 { "emerald_red.falling.frames", "2" },
2719 { "emerald_red.falling.delay", "4" },
2720 { "emerald_purple", "RocksElements.pcx" },
2721 { "emerald_purple.xpos", "10" },
2722 { "emerald_purple.ypos", "9" },
2723 { "emerald_purple.frames", "1" },
2724 { "emerald_purple.moving", "RocksElements.pcx" },
2725 { "emerald_purple.moving.xpos", "10" },
2726 { "emerald_purple.moving.ypos", "9" },
2727 { "emerald_purple.moving.frames", "2" },
2728 { "emerald_purple.moving.delay", "4" },
2729 { "emerald_purple.falling", "RocksElements.pcx" },
2730 { "emerald_purple.falling.xpos", "10" },
2731 { "emerald_purple.falling.ypos", "9" },
2732 { "emerald_purple.falling.frames", "2" },
2733 { "emerald_purple.falling.delay", "4" },
2735 { "wall_emerald_yellow", "RocksElements.pcx" },
2736 { "wall_emerald_yellow.xpos", "8" },
2737 { "wall_emerald_yellow.ypos", "8" },
2738 { "wall_emerald_yellow.frames", "1" },
2739 { "wall_emerald_red", "RocksElements.pcx" },
2740 { "wall_emerald_red.xpos", "6" },
2741 { "wall_emerald_red.ypos", "8" },
2742 { "wall_emerald_red.frames", "1" },
2743 { "wall_emerald_purple", "RocksElements.pcx" },
2744 { "wall_emerald_purple.xpos", "7" },
2745 { "wall_emerald_purple.ypos", "8" },
2746 { "wall_emerald_purple.frames", "1" },
2747 { "wall_bd_diamond", "RocksElements.pcx" },
2748 { "wall_bd_diamond.xpos", "9" },
2749 { "wall_bd_diamond.ypos", "8" },
2750 { "wall_bd_diamond.frames", "1" },
2752 { "expandable_wall", "RocksElements.pcx" },
2753 { "expandable_wall.xpos", "11" },
2754 { "expandable_wall.ypos", "10" },
2755 { "expandable_wall.frames", "1" },
2756 { "expandable_wall_horizontal", "RocksElements.pcx" },
2757 { "expandable_wall_horizontal.xpos", "5" },
2758 { "expandable_wall_horizontal.ypos", "9" },
2759 { "expandable_wall_horizontal.frames", "1" },
2760 { "expandable_wall_horizontal.EDITOR", "RocksElements.pcx" },
2761 { "expandable_wall_horizontal.EDITOR.xpos", "13" },
2762 { "expandable_wall_horizontal.EDITOR.ypos", "13" },
2763 { "expandable_wall_vertical", "RocksElements.pcx" },
2764 { "expandable_wall_vertical.xpos", "6" },
2765 { "expandable_wall_vertical.ypos", "9" },
2766 { "expandable_wall_vertical.frames", "1" },
2767 { "expandable_wall_vertical.EDITOR", "RocksElements.pcx" },
2768 { "expandable_wall_vertical.EDITOR.xpos", "14" },
2769 { "expandable_wall_vertical.EDITOR.ypos", "13" },
2770 { "expandable_wall_any", "RocksElements.pcx" },
2771 { "expandable_wall_any.xpos", "4" },
2772 { "expandable_wall_any.ypos", "9" },
2773 { "expandable_wall_any.frames", "1" },
2774 { "expandable_wall_any.EDITOR", "RocksElements.pcx" },
2775 { "expandable_wall_any.EDITOR.xpos", "12" },
2776 { "expandable_wall_any.EDITOR.ypos", "13" },
2778 { "expandable_steelwall_horizontal", "RocksDC2.pcx" },
2779 { "expandable_steelwall_horizontal.xpos", "6" },
2780 { "expandable_steelwall_horizontal.ypos", "2" },
2781 { "expandable_steelwall_horizontal.frames", "1" },
2782 { "expandable_steelwall_horizontal.EDITOR", "RocksDC2.pcx" },
2783 { "expandable_steelwall_horizontal.EDITOR.xpos","9" },
2784 { "expandable_steelwall_horizontal.EDITOR.ypos","2" },
2785 { "expandable_steelwall_vertical", "RocksDC2.pcx" },
2786 { "expandable_steelwall_vertical.xpos", "6" },
2787 { "expandable_steelwall_vertical.ypos", "2" },
2788 { "expandable_steelwall_vertical.frames", "1" },
2789 { "expandable_steelwall_vertical.EDITOR", "RocksDC2.pcx" },
2790 { "expandable_steelwall_vertical.EDITOR.xpos","10" },
2791 { "expandable_steelwall_vertical.EDITOR.ypos","2" },
2792 { "expandable_steelwall_any", "RocksDC2.pcx" },
2793 { "expandable_steelwall_any.xpos", "6" },
2794 { "expandable_steelwall_any.ypos", "2" },
2795 { "expandable_steelwall_any.frames", "1" },
2796 { "expandable_steelwall_any.EDITOR", "RocksDC2.pcx" },
2797 { "expandable_steelwall_any.EDITOR.xpos", "8" },
2798 { "expandable_steelwall_any.EDITOR.ypos", "2" },
2800 { "bd_expandable_wall", "RocksElements.pcx" },
2801 { "bd_expandable_wall.xpos", "5" },
2802 { "bd_expandable_wall.ypos", "9" },
2803 { "bd_expandable_wall.frames", "1" },
2804 { "bd_expandable_wall.EDITOR", "RocksDC.pcx" },
2805 { "bd_expandable_wall.EDITOR.xpos", "15" },
2806 { "bd_expandable_wall.EDITOR.ypos", "15" },
2808 { "expandable_wall.growing.left", "RocksElements.pcx" },
2809 { "expandable_wall.growing.left.xpos", "8" },
2810 { "expandable_wall.growing.left.ypos", "10" },
2811 { "expandable_wall.growing.left.frames", "3" },
2812 { "expandable_wall.growing.left.delay", "6" },
2813 { "expandable_wall.growing.left.anim_mode", "linear" },
2814 { "expandable_wall.growing.right", "RocksElements.pcx" },
2815 { "expandable_wall.growing.right.xpos", "5" },
2816 { "expandable_wall.growing.right.ypos", "10" },
2817 { "expandable_wall.growing.right.frames", "3" },
2818 { "expandable_wall.growing.right.delay", "6" },
2819 { "expandable_wall.growing.right.anim_mode", "linear" },
2820 { "expandable_wall.growing.up", "RocksHeroes.pcx" },
2821 { "expandable_wall.growing.up.xpos", "3" },
2822 { "expandable_wall.growing.up.ypos", "12" },
2823 { "expandable_wall.growing.up.frames", "3" },
2824 { "expandable_wall.growing.up.delay", "6" },
2825 { "expandable_wall.growing.up.anim_mode", "linear" },
2826 { "expandable_wall.growing.down", "RocksHeroes.pcx" },
2827 { "expandable_wall.growing.down.xpos", "0" },
2828 { "expandable_wall.growing.down.ypos", "12" },
2829 { "expandable_wall.growing.down.frames", "3" },
2830 { "expandable_wall.growing.down.delay", "6" },
2831 { "expandable_wall.growing.down.anim_mode", "linear" },
2833 { "expandable_steelwall.growing.left", "RocksDC2.pcx" },
2834 { "expandable_steelwall.growing.left.xpos", "8" },
2835 { "expandable_steelwall.growing.left.ypos", "4" },
2836 { "expandable_steelwall.growing.left.frames", "4" },
2837 { "expandable_steelwall.growing.left.delay", "4" },
2838 { "expandable_steelwall.growing.left.anim_mode","linear" },
2839 { "expandable_steelwall.growing.right", "RocksDC2.pcx" },
2840 { "expandable_steelwall.growing.right.xpos", "12" },
2841 { "expandable_steelwall.growing.right.ypos", "4" },
2842 { "expandable_steelwall.growing.right.frames","4" },
2843 { "expandable_steelwall.growing.right.delay", "4" },
2844 { "expandable_steelwall.growing.right.anim_mode","linear" },
2845 { "expandable_steelwall.growing.up", "RocksDC2.pcx" },
2846 { "expandable_steelwall.growing.up.xpos", "8" },
2847 { "expandable_steelwall.growing.up.ypos", "5" },
2848 { "expandable_steelwall.growing.up.frames", "4" },
2849 { "expandable_steelwall.growing.up.delay", "4" },
2850 { "expandable_steelwall.growing.up.anim_mode","linear" },
2851 { "expandable_steelwall.growing.down", "RocksDC2.pcx" },
2852 { "expandable_steelwall.growing.down.xpos", "12" },
2853 { "expandable_steelwall.growing.down.ypos", "5" },
2854 { "expandable_steelwall.growing.down.frames", "4" },
2855 { "expandable_steelwall.growing.down.delay", "4" },
2856 { "expandable_steelwall.growing.down.anim_mode","linear" },
2858 { "black_orb", "RocksElements.pcx" },
2859 { "black_orb.xpos", "13" },
2860 { "black_orb.ypos", "9" },
2861 { "black_orb.frames", "1" },
2863 { "speed_pill", "RocksElements.pcx" },
2864 { "speed_pill.xpos", "14" },
2865 { "speed_pill.ypos", "9" },
2866 { "speed_pill.frames", "1" },
2868 { "dark_yamyam", "RocksElements.pcx" },
2869 { "dark_yamyam.xpos", "8" },
2870 { "dark_yamyam.ypos", "11" },
2871 { "dark_yamyam.frames", "4" },
2872 { "dark_yamyam.anim_mode", "pingpong2" },
2874 { "dynabomb", "RocksElements.pcx" },
2875 { "dynabomb.xpos", "12" },
2876 { "dynabomb.ypos", "11" },
2877 { "dynabomb.frames", "1" },
2878 { "dynabomb.active", "RocksElements.pcx" },
2879 { "dynabomb.active.xpos", "12" },
2880 { "dynabomb.active.ypos", "11" },
2881 { "dynabomb.active.frames", "4" },
2882 { "dynabomb.active.delay", "6" },
2883 { "dynabomb.active.anim_mode", "pingpong" },
2884 { "dynabomb_player_1", "RocksElements.pcx" },
2885 { "dynabomb_player_1.xpos", "12" },
2886 { "dynabomb_player_1.ypos", "11" },
2887 { "dynabomb_player_1.frames", "1" },
2888 { "dynabomb_player_1.active", "RocksElements.pcx" },
2889 { "dynabomb_player_1.active.xpos", "12" },
2890 { "dynabomb_player_1.active.ypos", "11" },
2891 { "dynabomb_player_1.active.frames", "4" },
2892 { "dynabomb_player_1.active.delay", "6" },
2893 { "dynabomb_player_1.active.anim_mode", "pingpong" },
2894 { "dynabomb_player_2", "RocksElements.pcx" },
2895 { "dynabomb_player_2.xpos", "12" },
2896 { "dynabomb_player_2.ypos", "11" },
2897 { "dynabomb_player_2.frames", "1" },
2898 { "dynabomb_player_2.active", "RocksElements.pcx" },
2899 { "dynabomb_player_2.active.xpos", "12" },
2900 { "dynabomb_player_2.active.ypos", "11" },
2901 { "dynabomb_player_2.active.frames", "4" },
2902 { "dynabomb_player_2.active.delay", "6" },
2903 { "dynabomb_player_2.active.anim_mode", "pingpong" },
2904 { "dynabomb_player_3", "RocksElements.pcx" },
2905 { "dynabomb_player_3.xpos", "12" },
2906 { "dynabomb_player_3.ypos", "11" },
2907 { "dynabomb_player_3.frames", "1" },
2908 { "dynabomb_player_3.active", "RocksElements.pcx" },
2909 { "dynabomb_player_3.active.xpos", "12" },
2910 { "dynabomb_player_3.active.ypos", "11" },
2911 { "dynabomb_player_3.active.frames", "4" },
2912 { "dynabomb_player_3.active.delay", "6" },
2913 { "dynabomb_player_3.active.anim_mode", "pingpong" },
2914 { "dynabomb_player_4", "RocksElements.pcx" },
2915 { "dynabomb_player_4.xpos", "12" },
2916 { "dynabomb_player_4.ypos", "11" },
2917 { "dynabomb_player_4.frames", "1" },
2918 { "dynabomb_player_4.active", "RocksElements.pcx" },
2919 { "dynabomb_player_4.active.xpos", "12" },
2920 { "dynabomb_player_4.active.ypos", "11" },
2921 { "dynabomb_player_4.active.frames", "4" },
2922 { "dynabomb_player_4.active.delay", "6" },
2923 { "dynabomb_player_4.active.anim_mode", "pingpong" },
2924 { "dynabomb_increase_number", "RocksElements.pcx" },
2925 { "dynabomb_increase_number.xpos", "12" },
2926 { "dynabomb_increase_number.ypos", "11" },
2927 { "dynabomb_increase_number.frames", "1" },
2928 { "dynabomb_increase_size", "RocksElements.pcx" },
2929 { "dynabomb_increase_size.xpos", "15" },
2930 { "dynabomb_increase_size.ypos", "11" },
2931 { "dynabomb_increase_size.frames", "1" },
2932 { "dynabomb_increase_power", "RocksElements.pcx" },
2933 { "dynabomb_increase_power.xpos", "12" },
2934 { "dynabomb_increase_power.ypos", "9" },
2935 { "dynabomb_increase_power.frames", "1" },
2937 { "pig", "RocksHeroes.pcx" },
2938 { "pig.xpos", "8" },
2939 { "pig.ypos", "0" },
2940 { "pig.frames", "1" },
2941 { "pig.down", "RocksHeroes.pcx" },
2942 { "pig.down.xpos", "8" },
2943 { "pig.down.ypos", "0" },
2944 { "pig.down.frames", "1" },
2945 { "pig.up", "RocksHeroes.pcx" },
2946 { "pig.up.xpos", "12" },
2947 { "pig.up.ypos", "0" },
2948 { "pig.up.frames", "1" },
2949 { "pig.left", "RocksHeroes.pcx" },
2950 { "pig.left.xpos", "8" },
2951 { "pig.left.ypos", "1" },
2952 { "pig.left.frames", "1" },
2953 { "pig.right", "RocksHeroes.pcx" },
2954 { "pig.right.xpos", "12" },
2955 { "pig.right.ypos", "1" },
2956 { "pig.right.frames", "1" },
2957 { "pig.moving.down", "RocksHeroes.pcx" },
2958 { "pig.moving.down.xpos", "8" },
2959 { "pig.moving.down.ypos", "0" },
2960 { "pig.moving.down.frames", "4" },
2961 { "pig.moving.down.delay", "2" },
2962 { "pig.moving.up", "RocksHeroes.pcx" },
2963 { "pig.moving.up.xpos", "12" },
2964 { "pig.moving.up.ypos", "0" },
2965 { "pig.moving.up.frames", "4" },
2966 { "pig.moving.up.delay", "2" },
2967 { "pig.moving.left", "RocksHeroes.pcx" },
2968 { "pig.moving.left.xpos", "8" },
2969 { "pig.moving.left.ypos", "1" },
2970 { "pig.moving.left.frames", "4" },
2971 { "pig.moving.left.delay", "2" },
2972 { "pig.moving.right", "RocksHeroes.pcx" },
2973 { "pig.moving.right.xpos", "12" },
2974 { "pig.moving.right.ypos", "1" },
2975 { "pig.moving.right.frames", "4" },
2976 { "pig.moving.right.delay", "2" },
2977 { "pig.digging.down", "RocksHeroes.pcx" },
2978 { "pig.digging.down.xpos", "8" },
2979 { "pig.digging.down.ypos", "0" },
2980 { "pig.digging.down.frames", "4" },
2981 { "pig.digging.down.delay", "2" },
2982 { "pig.digging.up", "RocksHeroes.pcx" },
2983 { "pig.digging.up.xpos", "12" },
2984 { "pig.digging.up.ypos", "0" },
2985 { "pig.digging.up.frames", "4" },
2986 { "pig.digging.up.delay", "2" },
2987 { "pig.digging.left", "RocksHeroes.pcx" },
2988 { "pig.digging.left.xpos", "8" },
2989 { "pig.digging.left.ypos", "1" },
2990 { "pig.digging.left.frames", "4" },
2991 { "pig.digging.left.delay", "2" },
2992 { "pig.digging.right", "RocksHeroes.pcx" },
2993 { "pig.digging.right.xpos", "12" },
2994 { "pig.digging.right.ypos", "1" },
2995 { "pig.digging.right.frames", "4" },
2996 { "pig.digging.right.delay", "2" },
2998 { "dragon", "RocksHeroes.pcx" },
2999 { "dragon.xpos", "8" },
3000 { "dragon.ypos", "2" },
3001 { "dragon.frames", "1" },
3002 { "dragon.down", "RocksHeroes.pcx" },
3003 { "dragon.down.xpos", "8" },
3004 { "dragon.down.ypos", "2" },
3005 { "dragon.down.frames", "1" },
3006 { "dragon.up", "RocksHeroes.pcx" },
3007 { "dragon.up.xpos", "12" },
3008 { "dragon.up.ypos", "2" },
3009 { "dragon.up.frames", "1" },
3010 { "dragon.left", "RocksHeroes.pcx" },
3011 { "dragon.left.xpos", "8" },
3012 { "dragon.left.ypos", "3" },
3013 { "dragon.left.frames", "1" },
3014 { "dragon.right", "RocksHeroes.pcx" },
3015 { "dragon.right.xpos", "12" },
3016 { "dragon.right.ypos", "3" },
3017 { "dragon.right.frames", "1" },
3018 { "dragon.moving.down", "RocksHeroes.pcx" },
3019 { "dragon.moving.down.xpos", "8" },
3020 { "dragon.moving.down.ypos", "2" },
3021 { "dragon.moving.down.frames", "4" },
3022 { "dragon.moving.down.delay", "2" },
3023 { "dragon.moving.up", "RocksHeroes.pcx" },
3024 { "dragon.moving.up.xpos", "12" },
3025 { "dragon.moving.up.ypos", "2" },
3026 { "dragon.moving.up.frames", "4" },
3027 { "dragon.moving.up.delay", "2" },
3028 { "dragon.moving.left", "RocksHeroes.pcx" },
3029 { "dragon.moving.left.xpos", "8" },
3030 { "dragon.moving.left.ypos", "3" },
3031 { "dragon.moving.left.frames", "4" },
3032 { "dragon.moving.left.delay", "2" },
3033 { "dragon.moving.right", "RocksHeroes.pcx" },
3034 { "dragon.moving.right.xpos", "12" },
3035 { "dragon.moving.right.ypos", "3" },
3036 { "dragon.moving.right.frames", "4" },
3037 { "dragon.moving.right.delay", "2" },
3038 { "dragon.attacking.down", "RocksHeroes.pcx" },
3039 { "dragon.attacking.down.xpos", "8" },
3040 { "dragon.attacking.down.ypos", "2" },
3041 { "dragon.attacking.down.frames", "1" },
3042 { "dragon.attacking.up", "RocksHeroes.pcx" },
3043 { "dragon.attacking.up.xpos", "12" },
3044 { "dragon.attacking.up.ypos", "2" },
3045 { "dragon.attacking.up.frames", "1" },
3046 { "dragon.attacking.left", "RocksHeroes.pcx" },
3047 { "dragon.attacking.left.xpos", "8" },
3048 { "dragon.attacking.left.ypos", "3" },
3049 { "dragon.attacking.left.frames", "1" },
3050 { "dragon.attacking.right", "RocksHeroes.pcx" },
3051 { "dragon.attacking.right.xpos", "12" },
3052 { "dragon.attacking.right.ypos", "3" },
3053 { "dragon.attacking.right.frames", "1" },
3055 { "mole", "RocksHeroes.pcx" },
3056 { "mole.xpos", "8" },
3057 { "mole.ypos", "4" },
3058 { "mole.frames", "1" },
3059 { "mole.down", "RocksHeroes.pcx" },
3060 { "mole.down.xpos", "8" },
3061 { "mole.down.ypos", "4" },
3062 { "mole.down.frames", "1" },
3063 { "mole.up", "RocksHeroes.pcx" },
3064 { "mole.up.xpos", "12" },
3065 { "mole.up.ypos", "4" },
3066 { "mole.up.frames", "1" },
3067 { "mole.left", "RocksHeroes.pcx" },
3068 { "mole.left.xpos", "8" },
3069 { "mole.left.ypos", "5" },
3070 { "mole.left.frames", "1" },
3071 { "mole.right", "RocksHeroes.pcx" },
3072 { "mole.right.xpos", "12" },
3073 { "mole.right.ypos", "5" },
3074 { "mole.right.frames", "1" },
3075 { "mole.moving.down", "RocksHeroes.pcx" },
3076 { "mole.moving.down.xpos", "8" },
3077 { "mole.moving.down.ypos", "4" },
3078 { "mole.moving.down.frames", "4" },
3079 { "mole.moving.down.delay", "2" },
3080 { "mole.moving.up", "RocksHeroes.pcx" },
3081 { "mole.moving.up.xpos", "12" },
3082 { "mole.moving.up.ypos", "4" },
3083 { "mole.moving.up.frames", "4" },
3084 { "mole.moving.up.delay", "2" },
3085 { "mole.moving.left", "RocksHeroes.pcx" },
3086 { "mole.moving.left.xpos", "8" },
3087 { "mole.moving.left.ypos", "5" },
3088 { "mole.moving.left.frames", "4" },
3089 { "mole.moving.left.delay", "2" },
3090 { "mole.moving.right", "RocksHeroes.pcx" },
3091 { "mole.moving.right.xpos", "12" },
3092 { "mole.moving.right.ypos", "5" },
3093 { "mole.moving.right.frames", "4" },
3094 { "mole.moving.right.delay", "2" },
3095 { "mole.digging.down", "RocksHeroes.pcx" },
3096 { "mole.digging.down.xpos", "8" },
3097 { "mole.digging.down.ypos", "4" },
3098 { "mole.digging.down.frames", "4" },
3099 { "mole.digging.down.delay", "2" },
3100 { "mole.digging.up", "RocksHeroes.pcx" },
3101 { "mole.digging.up.xpos", "12" },
3102 { "mole.digging.up.ypos", "4" },
3103 { "mole.digging.up.frames", "4" },
3104 { "mole.digging.up.delay", "2" },
3105 { "mole.digging.left", "RocksHeroes.pcx" },
3106 { "mole.digging.left.xpos", "8" },
3107 { "mole.digging.left.ypos", "5" },
3108 { "mole.digging.left.frames", "4" },
3109 { "mole.digging.left.delay", "2" },
3110 { "mole.digging.right", "RocksHeroes.pcx" },
3111 { "mole.digging.right.xpos", "12" },
3112 { "mole.digging.right.ypos", "5" },
3113 { "mole.digging.right.frames", "4" },
3114 { "mole.digging.right.delay", "2" },
3116 { "penguin", "RocksHeroes.pcx" },
3117 { "penguin.xpos", "8" },
3118 { "penguin.ypos", "6" },
3119 { "penguin.frames", "1" },
3120 { "penguin.EDITOR", "RocksElements.pcx" },
3121 { "penguin.EDITOR.xpos", "12" },
3122 { "penguin.EDITOR.ypos", "14" },
3123 { "penguin.down", "RocksHeroes.pcx" },
3124 { "penguin.down.xpos", "8" },
3125 { "penguin.down.ypos", "6" },
3126 { "penguin.down.frames", "1" },
3127 { "penguin.up", "RocksHeroes.pcx" },
3128 { "penguin.up.xpos", "12" },
3129 { "penguin.up.ypos", "6" },
3130 { "penguin.up.frames", "1" },
3131 { "penguin.left", "RocksHeroes.pcx" },
3132 { "penguin.left.xpos", "8" },
3133 { "penguin.left.ypos", "7" },
3134 { "penguin.left.frames", "1" },
3135 { "penguin.right", "RocksHeroes.pcx" },
3136 { "penguin.right.xpos", "12" },
3137 { "penguin.right.ypos", "7" },
3138 { "penguin.right.frames", "1" },
3139 { "penguin.moving.down", "RocksHeroes.pcx" },
3140 { "penguin.moving.down.xpos", "8" },
3141 { "penguin.moving.down.ypos", "6" },
3142 { "penguin.moving.down.frames", "4" },
3143 { "penguin.moving.down.delay", "2" },
3144 { "penguin.moving.up", "RocksHeroes.pcx" },
3145 { "penguin.moving.up.xpos", "12" },
3146 { "penguin.moving.up.ypos", "6" },
3147 { "penguin.moving.up.frames", "4" },
3148 { "penguin.moving.up.delay", "2" },
3149 { "penguin.moving.left", "RocksHeroes.pcx" },
3150 { "penguin.moving.left.xpos", "8" },
3151 { "penguin.moving.left.ypos", "7" },
3152 { "penguin.moving.left.frames", "4" },
3153 { "penguin.moving.left.delay", "2" },
3154 { "penguin.moving.right", "RocksHeroes.pcx" },
3155 { "penguin.moving.right.xpos", "12" },
3156 { "penguin.moving.right.ypos", "7" },
3157 { "penguin.moving.right.frames", "4" },
3158 { "penguin.moving.right.delay", "2" },
3160 { "satellite", "RocksHeroes.pcx" },
3161 { "satellite.xpos", "8" },
3162 { "satellite.ypos", "9" },
3163 { "satellite.frames", "8" },
3164 { "satellite.delay", "2" },
3165 { "satellite.global_sync", "true" },
3167 { "flames_1_left", "RocksHeroes.pcx" },
3168 { "flames_1_left.xpos", "8" },
3169 { "flames_1_left.ypos", "12" },
3170 { "flames_1_left.frames", "2" },
3171 { "flames_1_left.offset", "96" },
3172 { "flames_2_left", "RocksHeroes.pcx" },
3173 { "flames_2_left.xpos", "9" },
3174 { "flames_2_left.ypos", "12" },
3175 { "flames_2_left.frames", "2" },
3176 { "flames_2_left.offset", "96" },
3177 { "flames_3_left", "RocksHeroes.pcx" },
3178 { "flames_3_left.xpos", "10" },
3179 { "flames_3_left.ypos", "12" },
3180 { "flames_3_left.frames", "2" },
3181 { "flames_3_left.offset", "96" },
3183 { "flames_1_right", "RocksHeroes.pcx" },
3184 { "flames_1_right.xpos", "8" },
3185 { "flames_1_right.ypos", "13" },
3186 { "flames_1_right.frames", "2" },
3187 { "flames_1_right.offset", "96" },
3188 { "flames_2_right", "RocksHeroes.pcx" },
3189 { "flames_2_right.xpos", "9" },
3190 { "flames_2_right.ypos", "13" },
3191 { "flames_2_right.frames", "2" },
3192 { "flames_2_right.offset", "96" },
3193 { "flames_3_right", "RocksHeroes.pcx" },
3194 { "flames_3_right.xpos", "10" },
3195 { "flames_3_right.ypos", "13" },
3196 { "flames_3_right.frames", "2" },
3197 { "flames_3_right.offset", "96" },
3199 { "flames_1_up", "RocksHeroes.pcx" },
3200 { "flames_1_up.xpos", "8" },
3201 { "flames_1_up.ypos", "14" },
3202 { "flames_1_up.frames", "2" },
3203 { "flames_1_up.offset", "96" },
3204 { "flames_2_up", "RocksHeroes.pcx" },
3205 { "flames_2_up.xpos", "9" },
3206 { "flames_2_up.ypos", "14" },
3207 { "flames_2_up.frames", "2" },
3208 { "flames_2_up.offset", "96" },
3209 { "flames_3_up", "RocksHeroes.pcx" },
3210 { "flames_3_up.xpos", "10" },
3211 { "flames_3_up.ypos", "14" },
3212 { "flames_3_up.frames", "2" },
3213 { "flames_3_up.offset", "96" },
3215 { "flames_1_down", "RocksHeroes.pcx" },
3216 { "flames_1_down.xpos", "8" },
3217 { "flames_1_down.ypos", "15" },
3218 { "flames_1_down.frames", "2" },
3219 { "flames_1_down.offset", "96" },
3220 { "flames_2_down", "RocksHeroes.pcx" },
3221 { "flames_2_down.xpos", "9" },
3222 { "flames_2_down.ypos", "15" },
3223 { "flames_2_down.frames", "2" },
3224 { "flames_2_down.offset", "96" },
3225 { "flames_3_down", "RocksHeroes.pcx" },
3226 { "flames_3_down.xpos", "10" },
3227 { "flames_3_down.ypos", "15" },
3228 { "flames_3_down.frames", "2" },
3229 { "flames_3_down.offset", "96" },
3231 { "stoneblock", "RocksElements.pcx" },
3232 { "stoneblock.xpos", "10" },
3233 { "stoneblock.ypos", "1" },
3234 { "stoneblock.frames", "1" },
3236 /* images for other elements and actions */
3238 { "player_1", "RocksHeroes.pcx" },
3239 { "player_1.xpos", "0" },
3240 { "player_1.ypos", "0" },
3241 { "player_1.frames", "1" },
3242 { "player_1.EDITOR", "RocksElements.pcx" },
3243 { "player_1.EDITOR.xpos", "4" },
3244 { "player_1.EDITOR.ypos", "7" },
3245 { "player_1.down", "RocksHeroes.pcx" },
3246 { "player_1.down.xpos", "0" },
3247 { "player_1.down.ypos", "0" },
3248 { "player_1.down.frames", "1" },
3249 { "player_1.up", "RocksHeroes.pcx" },
3250 { "player_1.up.xpos", "4" },
3251 { "player_1.up.ypos", "0" },
3252 { "player_1.up.frames", "1" },
3253 { "player_1.left", "RocksHeroes.pcx" },
3254 { "player_1.left.xpos", "0" },
3255 { "player_1.left.ypos", "1" },
3256 { "player_1.left.frames", "1" },
3257 { "player_1.right", "RocksHeroes.pcx" },
3258 { "player_1.right.xpos", "4" },
3259 { "player_1.right.ypos", "1" },
3260 { "player_1.right.frames", "1" },
3261 { "player_1.moving.down", "RocksHeroes.pcx" },
3262 { "player_1.moving.down.xpos", "0" },
3263 { "player_1.moving.down.ypos", "0" },
3264 { "player_1.moving.down.frames", "4" },
3265 { "player_1.moving.down.start_frame", "1" },
3266 { "player_1.moving.down.delay", "4" },
3267 { "player_1.moving.up", "RocksHeroes.pcx" },
3268 { "player_1.moving.up.xpos", "4" },
3269 { "player_1.moving.up.ypos", "0" },
3270 { "player_1.moving.up.frames", "4" },
3271 { "player_1.moving.up.start_frame", "1" },
3272 { "player_1.moving.up.delay", "4" },
3273 { "player_1.moving.left", "RocksHeroes.pcx" },
3274 { "player_1.moving.left.xpos", "0" },
3275 { "player_1.moving.left.ypos", "1" },
3276 { "player_1.moving.left.frames", "4" },
3277 { "player_1.moving.left.start_frame", "1" },
3278 { "player_1.moving.left.delay", "4" },
3279 { "player_1.moving.right", "RocksHeroes.pcx" },
3280 { "player_1.moving.right.xpos", "4" },
3281 { "player_1.moving.right.ypos", "1" },
3282 { "player_1.moving.right.frames", "4" },
3283 { "player_1.moving.right.start_frame", "1" },
3284 { "player_1.moving.right.delay", "4" },
3285 { "player_1.digging.down", "RocksHeroes.pcx" },
3286 { "player_1.digging.down.xpos", "0" },
3287 { "player_1.digging.down.ypos", "0" },
3288 { "player_1.digging.down.frames", "4" },
3289 { "player_1.digging.down.start_frame", "1" },
3290 { "player_1.digging.down.delay", "4" },
3291 { "player_1.digging.up", "RocksHeroes.pcx" },
3292 { "player_1.digging.up.xpos", "4" },
3293 { "player_1.digging.up.ypos", "0" },
3294 { "player_1.digging.up.frames", "4" },
3295 { "player_1.digging.up.start_frame", "1" },
3296 { "player_1.digging.up.delay", "4" },
3297 { "player_1.digging.left", "RocksHeroes.pcx" },
3298 { "player_1.digging.left.xpos", "0" },
3299 { "player_1.digging.left.ypos", "1" },
3300 { "player_1.digging.left.frames", "4" },
3301 { "player_1.digging.left.start_frame", "1" },
3302 { "player_1.digging.left.delay", "4" },
3303 { "player_1.digging.right", "RocksHeroes.pcx" },
3304 { "player_1.digging.right.xpos", "4" },
3305 { "player_1.digging.right.ypos", "1" },
3306 { "player_1.digging.right.frames", "4" },
3307 { "player_1.digging.right.start_frame", "1" },
3308 { "player_1.digging.right.delay", "4" },
3309 { "player_1.collecting.down", "RocksHeroes.pcx" },
3310 { "player_1.collecting.down.xpos", "0" },
3311 { "player_1.collecting.down.ypos", "0" },
3312 { "player_1.collecting.down.frames", "4" },
3313 { "player_1.collecting.down.start_frame", "1" },
3314 { "player_1.collecting.down.delay", "4" },
3315 { "player_1.collecting.up", "RocksHeroes.pcx" },
3316 { "player_1.collecting.up.xpos", "4" },
3317 { "player_1.collecting.up.ypos", "0" },
3318 { "player_1.collecting.up.frames", "4" },
3319 { "player_1.collecting.up.start_frame", "1" },
3320 { "player_1.collecting.up.delay", "4" },
3321 { "player_1.collecting.left", "RocksHeroes.pcx" },
3322 { "player_1.collecting.left.xpos", "0" },
3323 { "player_1.collecting.left.ypos", "1" },
3324 { "player_1.collecting.left.frames", "4" },
3325 { "player_1.collecting.left.start_frame", "1" },
3326 { "player_1.collecting.left.delay", "4" },
3327 { "player_1.collecting.right", "RocksHeroes.pcx" },
3328 { "player_1.collecting.right.xpos", "4" },
3329 { "player_1.collecting.right.ypos", "1" },
3330 { "player_1.collecting.right.frames", "4" },
3331 { "player_1.collecting.right.start_frame", "1" },
3332 { "player_1.collecting.right.delay", "4" },
3333 { "player_1.pushing.down", "RocksHeroes.pcx" },
3334 { "player_1.pushing.down.xpos", "0" },
3335 { "player_1.pushing.down.ypos", "0" },
3336 { "player_1.pushing.down.frames", "4" },
3337 { "player_1.pushing.down.delay", "4" },
3338 { "player_1.pushing.up", "RocksHeroes.pcx" },
3339 { "player_1.pushing.up.xpos", "4" },
3340 { "player_1.pushing.up.ypos", "0" },
3341 { "player_1.pushing.up.frames", "4" },
3342 { "player_1.pushing.up.delay", "4" },
3343 { "player_1.pushing.left", "RocksHeroes.pcx" },
3344 { "player_1.pushing.left.xpos", "4" },
3345 { "player_1.pushing.left.ypos", "2" },
3346 { "player_1.pushing.left.frames", "4" },
3347 { "player_1.pushing.left.delay", "4" },
3348 { "player_1.pushing.right", "RocksHeroes.pcx" },
3349 { "player_1.pushing.right.xpos", "0" },
3350 { "player_1.pushing.right.ypos", "2" },
3351 { "player_1.pushing.right.frames", "4" },
3352 { "player_1.pushing.right.delay", "4" },
3353 { "player_1.snapping.down", "RocksHeroes.pcx" },
3354 { "player_1.snapping.down.xpos", "0" },
3355 { "player_1.snapping.down.ypos", "0" },
3356 { "player_1.snapping.down.frames", "1" },
3357 { "player_1.snapping.up", "RocksHeroes.pcx" },
3358 { "player_1.snapping.up.xpos", "4" },
3359 { "player_1.snapping.up.ypos", "0" },
3360 { "player_1.snapping.up.frames", "1" },
3361 { "player_1.snapping.left", "RocksHeroes.pcx" },
3362 { "player_1.snapping.left.xpos", "0" },
3363 { "player_1.snapping.left.ypos", "1" },
3364 { "player_1.snapping.left.frames", "1" },
3365 { "player_1.snapping.right", "RocksHeroes.pcx" },
3366 { "player_1.snapping.right.xpos", "4" },
3367 { "player_1.snapping.right.ypos", "1" },
3368 { "player_1.snapping.right.frames", "1" },
3370 { "player_2", "RocksHeroes.pcx" },
3371 { "player_2.xpos", "0" },
3372 { "player_2.ypos", "3" },
3373 { "player_2.frames", "1" },
3374 { "player_2.EDITOR", "RocksElements.pcx" },
3375 { "player_2.EDITOR.xpos", "5" },
3376 { "player_2.EDITOR.ypos", "7" },
3377 { "player_2.down", "RocksHeroes.pcx" },
3378 { "player_2.down.xpos", "0" },
3379 { "player_2.down.ypos", "3" },
3380 { "player_2.down.frames", "1" },
3381 { "player_2.up", "RocksHeroes.pcx" },
3382 { "player_2.up.xpos", "4" },
3383 { "player_2.up.ypos", "3" },
3384 { "player_2.up.frames", "1" },
3385 { "player_2.left", "RocksHeroes.pcx" },
3386 { "player_2.left.xpos", "0" },
3387 { "player_2.left.ypos", "4" },
3388 { "player_2.left.frames", "1" },
3389 { "player_2.right", "RocksHeroes.pcx" },
3390 { "player_2.right.xpos", "4" },
3391 { "player_2.right.ypos", "4" },
3392 { "player_2.right.frames", "1" },
3393 { "player_2.moving.down", "RocksHeroes.pcx" },
3394 { "player_2.moving.down.xpos", "0" },
3395 { "player_2.moving.down.ypos", "3" },
3396 { "player_2.moving.down.frames", "4" },
3397 { "player_2.moving.down.start_frame", "1" },
3398 { "player_2.moving.down.delay", "4" },
3399 { "player_2.moving.up", "RocksHeroes.pcx" },
3400 { "player_2.moving.up.xpos", "4" },
3401 { "player_2.moving.up.ypos", "3" },
3402 { "player_2.moving.up.frames", "4" },
3403 { "player_2.moving.up.start_frame", "1" },
3404 { "player_2.moving.up.delay", "4" },
3405 { "player_2.moving.left", "RocksHeroes.pcx" },
3406 { "player_2.moving.left.xpos", "0" },
3407 { "player_2.moving.left.ypos", "4" },
3408 { "player_2.moving.left.frames", "4" },
3409 { "player_2.moving.left.start_frame", "1" },
3410 { "player_2.moving.left.delay", "4" },
3411 { "player_2.moving.right", "RocksHeroes.pcx" },
3412 { "player_2.moving.right.xpos", "4" },
3413 { "player_2.moving.right.ypos", "4" },
3414 { "player_2.moving.right.frames", "4" },
3415 { "player_2.moving.right.start_frame", "1" },
3416 { "player_2.moving.right.delay", "4" },
3417 { "player_2.digging.down", "RocksHeroes.pcx" },
3418 { "player_2.digging.down.xpos", "0" },
3419 { "player_2.digging.down.ypos", "3" },
3420 { "player_2.digging.down.frames", "4" },
3421 { "player_2.digging.down.start_frame", "1" },
3422 { "player_2.digging.down.delay", "4" },
3423 { "player_2.digging.up", "RocksHeroes.pcx" },
3424 { "player_2.digging.up.xpos", "4" },
3425 { "player_2.digging.up.ypos", "3" },
3426 { "player_2.digging.up.frames", "4" },
3427 { "player_2.digging.up.start_frame", "1" },
3428 { "player_2.digging.up.delay", "4" },
3429 { "player_2.digging.left", "RocksHeroes.pcx" },
3430 { "player_2.digging.left.xpos", "0" },
3431 { "player_2.digging.left.ypos", "4" },
3432 { "player_2.digging.left.frames", "4" },
3433 { "player_2.digging.left.start_frame", "1" },
3434 { "player_2.digging.left.delay", "4" },
3435 { "player_2.digging.right", "RocksHeroes.pcx" },
3436 { "player_2.digging.right.xpos", "4" },
3437 { "player_2.digging.right.ypos", "4" },
3438 { "player_2.digging.right.frames", "4" },
3439 { "player_2.digging.right.start_frame", "1" },
3440 { "player_2.digging.right.delay", "4" },
3441 { "player_2.collecting.down", "RocksHeroes.pcx" },
3442 { "player_2.collecting.down.xpos", "0" },
3443 { "player_2.collecting.down.ypos", "3" },
3444 { "player_2.collecting.down.frames", "4" },
3445 { "player_2.collecting.down.start_frame", "1" },
3446 { "player_2.collecting.down.delay", "4" },
3447 { "player_2.collecting.up", "RocksHeroes.pcx" },
3448 { "player_2.collecting.up.xpos", "4" },
3449 { "player_2.collecting.up.ypos", "3" },
3450 { "player_2.collecting.up.frames", "4" },
3451 { "player_2.collecting.up.start_frame", "1" },
3452 { "player_2.collecting.up.delay", "4" },
3453 { "player_2.collecting.left", "RocksHeroes.pcx" },
3454 { "player_2.collecting.left.xpos", "0" },
3455 { "player_2.collecting.left.ypos", "4" },
3456 { "player_2.collecting.left.frames", "4" },
3457 { "player_2.collecting.left.start_frame", "1" },
3458 { "player_2.collecting.left.delay", "4" },
3459 { "player_2.collecting.right", "RocksHeroes.pcx" },
3460 { "player_2.collecting.right.xpos", "4" },
3461 { "player_2.collecting.right.ypos", "4" },
3462 { "player_2.collecting.right.frames", "4" },
3463 { "player_2.collecting.right.start_frame", "1" },
3464 { "player_2.collecting.right.delay", "4" },
3465 { "player_2.pushing.down", "RocksHeroes.pcx" },
3466 { "player_2.pushing.down.xpos", "0" },
3467 { "player_2.pushing.down.ypos", "3" },
3468 { "player_2.pushing.down.frames", "4" },
3469 { "player_2.pushing.down.delay", "4" },
3470 { "player_2.pushing.up", "RocksHeroes.pcx" },
3471 { "player_2.pushing.up.xpos", "4" },
3472 { "player_2.pushing.up.ypos", "3" },
3473 { "player_2.pushing.up.frames", "4" },
3474 { "player_2.pushing.up.delay", "4" },
3475 { "player_2.pushing.left", "RocksHeroes.pcx" },
3476 { "player_2.pushing.left.xpos", "4" },
3477 { "player_2.pushing.left.ypos", "5" },
3478 { "player_2.pushing.left.frames", "4" },
3479 { "player_2.pushing.left.delay", "4" },
3480 { "player_2.pushing.right", "RocksHeroes.pcx" },
3481 { "player_2.pushing.right.xpos", "0" },
3482 { "player_2.pushing.right.ypos", "5" },
3483 { "player_2.pushing.right.frames", "4" },
3484 { "player_2.pushing.right.delay", "4" },
3485 { "player_2.snapping.down", "RocksHeroes.pcx" },
3486 { "player_2.snapping.down.xpos", "0" },
3487 { "player_2.snapping.down.ypos", "3" },
3488 { "player_2.snapping.down.frames", "1" },
3489 { "player_2.snapping.up", "RocksHeroes.pcx" },
3490 { "player_2.snapping.up.xpos", "4" },
3491 { "player_2.snapping.up.ypos", "3" },
3492 { "player_2.snapping.up.frames", "1" },
3493 { "player_2.snapping.left", "RocksHeroes.pcx" },
3494 { "player_2.snapping.left.xpos", "0" },
3495 { "player_2.snapping.left.ypos", "4" },
3496 { "player_2.snapping.left.frames", "1" },
3497 { "player_2.snapping.right", "RocksHeroes.pcx" },
3498 { "player_2.snapping.right.xpos", "4" },
3499 { "player_2.snapping.right.ypos", "4" },
3500 { "player_2.snapping.right.frames", "1" },
3502 { "player_3", "RocksHeroes.pcx" },
3503 { "player_3.xpos", "0" },
3504 { "player_3.ypos", "6" },
3505 { "player_3.frames", "1" },
3506 { "player_3.EDITOR", "RocksElements.pcx" },
3507 { "player_3.EDITOR.xpos", "6" },
3508 { "player_3.EDITOR.ypos", "7" },
3509 { "player_3.down", "RocksHeroes.pcx" },
3510 { "player_3.down.xpos", "0" },
3511 { "player_3.down.ypos", "6" },
3512 { "player_3.down.frames", "1" },
3513 { "player_3.up", "RocksHeroes.pcx" },
3514 { "player_3.up.xpos", "4" },
3515 { "player_3.up.ypos", "6" },
3516 { "player_3.up.frames", "1" },
3517 { "player_3.left", "RocksHeroes.pcx" },
3518 { "player_3.left.xpos", "0" },
3519 { "player_3.left.ypos", "7" },
3520 { "player_3.left.frames", "1" },
3521 { "player_3.right", "RocksHeroes.pcx" },
3522 { "player_3.right.xpos", "4" },
3523 { "player_3.right.ypos", "7" },
3524 { "player_3.right.frames", "1" },
3525 { "player_3.moving.down", "RocksHeroes.pcx" },
3526 { "player_3.moving.down.xpos", "0" },
3527 { "player_3.moving.down.ypos", "6" },
3528 { "player_3.moving.down.frames", "4" },
3529 { "player_3.moving.down.start_frame", "1" },
3530 { "player_3.moving.down.delay", "4" },
3531 { "player_3.moving.up", "RocksHeroes.pcx" },
3532 { "player_3.moving.up.xpos", "4" },
3533 { "player_3.moving.up.ypos", "6" },
3534 { "player_3.moving.up.frames", "4" },
3535 { "player_3.moving.up.start_frame", "1" },
3536 { "player_3.moving.up.delay", "4" },
3537 { "player_3.moving.left", "RocksHeroes.pcx" },
3538 { "player_3.moving.left.xpos", "0" },
3539 { "player_3.moving.left.ypos", "7" },
3540 { "player_3.moving.left.frames", "4" },
3541 { "player_3.moving.left.start_frame", "1" },
3542 { "player_3.moving.left.delay", "4" },
3543 { "player_3.moving.right", "RocksHeroes.pcx" },
3544 { "player_3.moving.right.xpos", "4" },
3545 { "player_3.moving.right.ypos", "7" },
3546 { "player_3.moving.right.frames", "4" },
3547 { "player_3.moving.right.start_frame", "1" },
3548 { "player_3.moving.right.delay", "4" },
3549 { "player_3.digging.down", "RocksHeroes.pcx" },
3550 { "player_3.digging.down.xpos", "0" },
3551 { "player_3.digging.down.ypos", "6" },
3552 { "player_3.digging.down.frames", "4" },
3553 { "player_3.digging.down.start_frame", "1" },
3554 { "player_3.digging.down.delay", "4" },
3555 { "player_3.digging.up", "RocksHeroes.pcx" },
3556 { "player_3.digging.up.xpos", "4" },
3557 { "player_3.digging.up.ypos", "6" },
3558 { "player_3.digging.up.frames", "4" },
3559 { "player_3.digging.up.start_frame", "1" },
3560 { "player_3.digging.up.delay", "4" },
3561 { "player_3.digging.left", "RocksHeroes.pcx" },
3562 { "player_3.digging.left.xpos", "0" },
3563 { "player_3.digging.left.ypos", "7" },
3564 { "player_3.digging.left.frames", "4" },
3565 { "player_3.digging.left.start_frame", "1" },
3566 { "player_3.digging.left.delay", "4" },
3567 { "player_3.digging.right", "RocksHeroes.pcx" },
3568 { "player_3.digging.right.xpos", "4" },
3569 { "player_3.digging.right.ypos", "7" },
3570 { "player_3.digging.right.frames", "4" },
3571 { "player_3.digging.right.start_frame", "1" },
3572 { "player_3.digging.right.delay", "4" },
3573 { "player_3.collecting.down", "RocksHeroes.pcx" },
3574 { "player_3.collecting.down.xpos", "0" },
3575 { "player_3.collecting.down.ypos", "6" },
3576 { "player_3.collecting.down.frames", "4" },
3577 { "player_3.collecting.down.start_frame", "1" },
3578 { "player_3.collecting.down.delay", "4" },
3579 { "player_3.collecting.up", "RocksHeroes.pcx" },
3580 { "player_3.collecting.up.xpos", "4" },
3581 { "player_3.collecting.up.ypos", "6" },
3582 { "player_3.collecting.up.frames", "4" },
3583 { "player_3.collecting.up.start_frame", "1" },
3584 { "player_3.collecting.up.delay", "4" },
3585 { "player_3.collecting.left", "RocksHeroes.pcx" },
3586 { "player_3.collecting.left.xpos", "0" },
3587 { "player_3.collecting.left.ypos", "7" },
3588 { "player_3.collecting.left.frames", "4" },
3589 { "player_3.collecting.left.start_frame", "1" },
3590 { "player_3.collecting.left.delay", "4" },
3591 { "player_3.collecting.right", "RocksHeroes.pcx" },
3592 { "player_3.collecting.right.xpos", "4" },
3593 { "player_3.collecting.right.ypos", "7" },
3594 { "player_3.collecting.right.frames", "4" },
3595 { "player_3.collecting.right.start_frame", "1" },
3596 { "player_3.collecting.right.delay", "4" },
3597 { "player_3.pushing.down", "RocksHeroes.pcx" },
3598 { "player_3.pushing.down.xpos", "0" },
3599 { "player_3.pushing.down.ypos", "6" },
3600 { "player_3.pushing.down.frames", "4" },
3601 { "player_3.pushing.down.delay", "4" },
3602 { "player_3.pushing.up", "RocksHeroes.pcx" },
3603 { "player_3.pushing.up.xpos", "4" },
3604 { "player_3.pushing.up.ypos", "6" },
3605 { "player_3.pushing.up.frames", "4" },
3606 { "player_3.pushing.up.delay", "4" },
3607 { "player_3.pushing.left", "RocksHeroes.pcx" },
3608 { "player_3.pushing.left.xpos", "4" },
3609 { "player_3.pushing.left.ypos", "8" },
3610 { "player_3.pushing.left.frames", "4" },
3611 { "player_3.pushing.left.delay", "4" },
3612 { "player_3.pushing.right", "RocksHeroes.pcx" },
3613 { "player_3.pushing.right.xpos", "0" },
3614 { "player_3.pushing.right.ypos", "8" },
3615 { "player_3.pushing.right.frames", "4" },
3616 { "player_3.pushing.right.delay", "4" },
3617 { "player_3.snapping.down", "RocksHeroes.pcx" },
3618 { "player_3.snapping.down.xpos", "0" },
3619 { "player_3.snapping.down.ypos", "6" },
3620 { "player_3.snapping.down.frames", "1" },
3621 { "player_3.snapping.up", "RocksHeroes.pcx" },
3622 { "player_3.snapping.up.xpos", "4" },
3623 { "player_3.snapping.up.ypos", "6" },
3624 { "player_3.snapping.up.frames", "1" },
3625 { "player_3.snapping.left", "RocksHeroes.pcx" },
3626 { "player_3.snapping.left.xpos", "0" },
3627 { "player_3.snapping.left.ypos", "7" },
3628 { "player_3.snapping.left.frames", "1" },
3629 { "player_3.snapping.right", "RocksHeroes.pcx" },
3630 { "player_3.snapping.right.xpos", "4" },
3631 { "player_3.snapping.right.ypos", "7" },
3632 { "player_3.snapping.right.frames", "1" },
3634 { "player_4", "RocksHeroes.pcx" },
3635 { "player_4.xpos", "0" },
3636 { "player_4.ypos", "9" },
3637 { "player_4.frames", "1" },
3638 { "player_4.EDITOR", "RocksElements.pcx" },
3639 { "player_4.EDITOR.xpos", "7" },
3640 { "player_4.EDITOR.ypos", "7" },
3641 { "player_4.down", "RocksHeroes.pcx" },
3642 { "player_4.down.xpos", "0" },
3643 { "player_4.down.ypos", "9" },
3644 { "player_4.down.frames", "1" },
3645 { "player_4.up", "RocksHeroes.pcx" },
3646 { "player_4.up.xpos", "4" },
3647 { "player_4.up.ypos", "9" },
3648 { "player_4.up.frames", "1" },
3649 { "player_4.left", "RocksHeroes.pcx" },
3650 { "player_4.left.xpos", "0" },
3651 { "player_4.left.ypos", "10" },
3652 { "player_4.left.frames", "1" },
3653 { "player_4.right", "RocksHeroes.pcx" },
3654 { "player_4.right.xpos", "4" },
3655 { "player_4.right.ypos", "10" },
3656 { "player_4.right.frames", "1" },
3657 { "player_4.moving.down", "RocksHeroes.pcx" },
3658 { "player_4.moving.down.xpos", "0" },
3659 { "player_4.moving.down.ypos", "9" },
3660 { "player_4.moving.down.frames", "4" },
3661 { "player_4.moving.down.start_frame", "1" },
3662 { "player_4.moving.down.delay", "4" },
3663 { "player_4.moving.up", "RocksHeroes.pcx" },
3664 { "player_4.moving.up.xpos", "4" },
3665 { "player_4.moving.up.ypos", "9" },
3666 { "player_4.moving.up.frames", "4" },
3667 { "player_4.moving.up.start_frame", "1" },
3668 { "player_4.moving.up.delay", "4" },
3669 { "player_4.moving.left", "RocksHeroes.pcx" },
3670 { "player_4.moving.left.xpos", "0" },
3671 { "player_4.moving.left.ypos", "10" },
3672 { "player_4.moving.left.frames", "4" },
3673 { "player_4.moving.left.start_frame", "1" },
3674 { "player_4.moving.left.delay", "4" },
3675 { "player_4.moving.right", "RocksHeroes.pcx" },
3676 { "player_4.moving.right.xpos", "4" },
3677 { "player_4.moving.right.ypos", "10" },
3678 { "player_4.moving.right.frames", "4" },
3679 { "player_4.moving.right.start_frame", "1" },
3680 { "player_4.moving.right.delay", "4" },
3681 { "player_4.digging.down", "RocksHeroes.pcx" },
3682 { "player_4.digging.down.xpos", "0" },
3683 { "player_4.digging.down.ypos", "9" },
3684 { "player_4.digging.down.frames", "4" },
3685 { "player_4.digging.down.start_frame", "1" },
3686 { "player_4.digging.down.delay", "4" },
3687 { "player_4.digging.up", "RocksHeroes.pcx" },
3688 { "player_4.digging.up.xpos", "4" },
3689 { "player_4.digging.up.ypos", "9" },
3690 { "player_4.digging.up.frames", "4" },
3691 { "player_4.digging.up.start_frame", "1" },
3692 { "player_4.digging.up.delay", "4" },
3693 { "player_4.digging.left", "RocksHeroes.pcx" },
3694 { "player_4.digging.left.xpos", "0" },
3695 { "player_4.digging.left.ypos", "10" },
3696 { "player_4.digging.left.frames", "4" },
3697 { "player_4.digging.left.start_frame", "1" },
3698 { "player_4.digging.left.delay", "4" },
3699 { "player_4.digging.right", "RocksHeroes.pcx" },
3700 { "player_4.digging.right.xpos", "4" },
3701 { "player_4.digging.right.ypos", "10" },
3702 { "player_4.digging.right.frames", "4" },
3703 { "player_4.digging.right.start_frame", "1" },
3704 { "player_4.digging.right.delay", "4" },
3705 { "player_4.collecting.down", "RocksHeroes.pcx" },
3706 { "player_4.collecting.down.xpos", "0" },
3707 { "player_4.collecting.down.ypos", "9" },
3708 { "player_4.collecting.down.frames", "4" },
3709 { "player_4.collecting.down.start_frame", "1" },
3710 { "player_4.collecting.down.delay", "4" },
3711 { "player_4.collecting.up", "RocksHeroes.pcx" },
3712 { "player_4.collecting.up.xpos", "4" },
3713 { "player_4.collecting.up.ypos", "9" },
3714 { "player_4.collecting.up.frames", "4" },
3715 { "player_4.collecting.up.start_frame", "1" },
3716 { "player_4.collecting.up.delay", "4" },
3717 { "player_4.collecting.left", "RocksHeroes.pcx" },
3718 { "player_4.collecting.left.xpos", "0" },
3719 { "player_4.collecting.left.ypos", "10" },
3720 { "player_4.collecting.left.frames", "4" },
3721 { "player_4.collecting.left.start_frame", "1" },
3722 { "player_4.collecting.left.delay", "4" },
3723 { "player_4.collecting.right", "RocksHeroes.pcx" },
3724 { "player_4.collecting.right.xpos", "4" },
3725 { "player_4.collecting.right.ypos", "10" },
3726 { "player_4.collecting.right.frames", "4" },
3727 { "player_4.collecting.right.start_frame", "1" },
3728 { "player_4.collecting.right.delay", "4" },
3729 { "player_4.pushing.down", "RocksHeroes.pcx" },
3730 { "player_4.pushing.down.xpos", "0" },
3731 { "player_4.pushing.down.ypos", "9" },
3732 { "player_4.pushing.down.frames", "4" },
3733 { "player_4.pushing.down.delay", "4" },
3734 { "player_4.pushing.up", "RocksHeroes.pcx" },
3735 { "player_4.pushing.up.xpos", "4" },
3736 { "player_4.pushing.up.ypos", "9" },
3737 { "player_4.pushing.up.frames", "4" },
3738 { "player_4.pushing.up.delay", "4" },
3739 { "player_4.pushing.left", "RocksHeroes.pcx" },
3740 { "player_4.pushing.left.xpos", "4" },
3741 { "player_4.pushing.left.ypos", "11" },
3742 { "player_4.pushing.left.frames", "4" },
3743 { "player_4.pushing.left.delay", "4" },
3744 { "player_4.pushing.right", "RocksHeroes.pcx" },
3745 { "player_4.pushing.right.xpos", "0" },
3746 { "player_4.pushing.right.ypos", "11" },
3747 { "player_4.pushing.right.frames", "4" },
3748 { "player_4.pushing.right.delay", "4" },
3749 { "player_4.snapping.down", "RocksHeroes.pcx" },
3750 { "player_4.snapping.down.xpos", "0" },
3751 { "player_4.snapping.down.ypos", "9" },
3752 { "player_4.snapping.down.frames", "1" },
3753 { "player_4.snapping.up", "RocksHeroes.pcx" },
3754 { "player_4.snapping.up.xpos", "4" },
3755 { "player_4.snapping.up.ypos", "9" },
3756 { "player_4.snapping.up.frames", "1" },
3757 { "player_4.snapping.left", "RocksHeroes.pcx" },
3758 { "player_4.snapping.left.xpos", "0" },
3759 { "player_4.snapping.left.ypos", "10" },
3760 { "player_4.snapping.left.frames", "1" },
3761 { "player_4.snapping.right", "RocksHeroes.pcx" },
3762 { "player_4.snapping.right.xpos", "4" },
3763 { "player_4.snapping.right.ypos", "10" },
3764 { "player_4.snapping.right.frames", "1" },
3766 { "[default].exploding", "RocksElements.pcx" },
3767 { "[default].exploding.xpos", "0" },
3768 { "[default].exploding.ypos", "4" },
3769 { "[default].exploding.frames", "8" },
3770 { "[default].exploding.delay", "2" },
3771 { "[default].exploding.anim_mode", "linear" },
3773 { "twinkle_blue", "RocksHeroes.pcx" },
3774 { "twinkle_blue.xpos", "9" },
3775 { "twinkle_blue.ypos", "11" },
3776 { "twinkle_blue.frames", "3" },
3777 { "twinkle_blue.delay", "2" },
3778 { "twinkle_blue.anim_mode", "pingpong" },
3779 { "twinkle_blue.global_sync", "false" },
3780 { "twinkle_white", "RocksHeroes.pcx" },
3781 { "twinkle_white.xpos", "13" },
3782 { "twinkle_white.ypos", "11" },
3783 { "twinkle_white.frames", "3" },
3784 { "twinkle_white.delay", "2" },
3785 { "twinkle_white.anim_mode", "pingpong" },
3786 { "twinkle_white.global_sync", "false" },
3788 { "steelwall_topleft", "RocksElements.pcx" },
3789 { "steelwall_topleft.xpos", "4" },
3790 { "steelwall_topleft.ypos", "0" },
3791 { "steelwall_topleft.frames", "1" },
3792 { "steelwall_topright", "RocksElements.pcx" },
3793 { "steelwall_topright.xpos", "4" },
3794 { "steelwall_topright.ypos", "0" },
3795 { "steelwall_topright.frames", "1" },
3796 { "steelwall_bottomleft", "RocksElements.pcx" },
3797 { "steelwall_bottomleft.xpos", "4" },
3798 { "steelwall_bottomleft.ypos", "0" },
3799 { "steelwall_bottomleft.frames", "1" },
3800 { "steelwall_bottomright", "RocksElements.pcx" },
3801 { "steelwall_bottomright.xpos", "4" },
3802 { "steelwall_bottomright.ypos", "0" },
3803 { "steelwall_bottomright.frames", "1" },
3804 { "steelwall_horizontal", "RocksElements.pcx" },
3805 { "steelwall_horizontal.xpos", "4" },
3806 { "steelwall_horizontal.ypos", "0" },
3807 { "steelwall_horizontal.frames", "1" },
3808 { "steelwall_vertical", "RocksElements.pcx" },
3809 { "steelwall_vertical.xpos", "4" },
3810 { "steelwall_vertical.ypos", "0" },
3811 { "steelwall_vertical.frames", "1" },
3813 { "steelwall_topleft.EDITOR", "RocksElements.pcx" },
3814 { "steelwall_topleft.EDITOR.xpos", "0" },
3815 { "steelwall_topleft.EDITOR.ypos", "13" },
3816 { "steelwall_topright.EDITOR", "RocksElements.pcx" },
3817 { "steelwall_topright.EDITOR.xpos", "1" },
3818 { "steelwall_topright.EDITOR.ypos", "13" },
3819 { "steelwall_bottomleft.EDITOR", "RocksElements.pcx" },
3820 { "steelwall_bottomleft.EDITOR.xpos", "2" },
3821 { "steelwall_bottomleft.EDITOR.ypos", "13" },
3822 { "steelwall_bottomright.EDITOR", "RocksElements.pcx" },
3823 { "steelwall_bottomright.EDITOR.xpos", "3" },
3824 { "steelwall_bottomright.EDITOR.ypos", "13" },
3825 { "steelwall_horizontal.EDITOR", "RocksElements.pcx" },
3826 { "steelwall_horizontal.EDITOR.xpos", "4" },
3827 { "steelwall_horizontal.EDITOR.ypos", "13" },
3828 { "steelwall_vertical.EDITOR", "RocksElements.pcx" },
3829 { "steelwall_vertical.EDITOR.xpos", "5" },
3830 { "steelwall_vertical.EDITOR.ypos", "13" },
3832 { "invisible_steelwall_topleft", "RocksSP.pcx" },
3833 { "invisible_steelwall_topleft.xpos", "0" },
3834 { "invisible_steelwall_topleft.ypos", "0" },
3835 { "invisible_steelwall_topleft.frames", "1" },
3836 { "invisible_steelwall_topright", "RocksSP.pcx" },
3837 { "invisible_steelwall_topright.xpos", "0" },
3838 { "invisible_steelwall_topright.ypos", "0" },
3839 { "invisible_steelwall_topright.frames", "1" },
3840 { "invisible_steelwall_bottomleft", "RocksSP.pcx" },
3841 { "invisible_steelwall_bottomleft.xpos", "0" },
3842 { "invisible_steelwall_bottomleft.ypos", "0" },
3843 { "invisible_steelwall_bottomleft.frames", "1" },
3844 { "invisible_steelwall_bottomright", "RocksSP.pcx" },
3845 { "invisible_steelwall_bottomright.xpos", "0" },
3846 { "invisible_steelwall_bottomright.ypos", "0" },
3847 { "invisible_steelwall_bottomright.frames", "1" },
3848 { "invisible_steelwall_horizontal", "RocksSP.pcx" },
3849 { "invisible_steelwall_horizontal.xpos", "0" },
3850 { "invisible_steelwall_horizontal.ypos", "0" },
3851 { "invisible_steelwall_horizontal.frames", "1" },
3852 { "invisible_steelwall_vertical", "RocksSP.pcx" },
3853 { "invisible_steelwall_vertical.xpos", "0" },
3854 { "invisible_steelwall_vertical.ypos", "0" },
3855 { "invisible_steelwall_vertical.frames", "1" },
3857 { "invisible_steelwall_topleft.EDITOR", "RocksElements.pcx" },
3858 { "invisible_steelwall_topleft.EDITOR.xpos", "6" },
3859 { "invisible_steelwall_topleft.EDITOR.ypos", "13" },
3860 { "invisible_steelwall_topright.EDITOR", "RocksElements.pcx" },
3861 { "invisible_steelwall_topright.EDITOR.xpos", "7" },
3862 { "invisible_steelwall_topright.EDITOR.ypos", "13" },
3863 { "invisible_steelwall_bottomleft.EDITOR", "RocksElements.pcx" },
3864 { "invisible_steelwall_bottomleft.EDITOR.xpos","8" },
3865 { "invisible_steelwall_bottomleft.EDITOR.ypos","13" },
3866 { "invisible_steelwall_bottomright.EDITOR", "RocksElements.pcx" },
3867 { "invisible_steelwall_bottomright.EDITOR.xpos","9" },
3868 { "invisible_steelwall_bottomright.EDITOR.ypos","13" },
3869 { "invisible_steelwall_horizontal.EDITOR", "RocksElements.pcx" },
3870 { "invisible_steelwall_horizontal.EDITOR.xpos","10" },
3871 { "invisible_steelwall_horizontal.EDITOR.ypos","13" },
3872 { "invisible_steelwall_vertical.EDITOR", "RocksElements.pcx" },
3873 { "invisible_steelwall_vertical.EDITOR.xpos", "11" },
3874 { "invisible_steelwall_vertical.EDITOR.ypos", "13" },
3876 { "arrow_left", "RocksDC.pcx" },
3877 { "arrow_left.xpos", "8" },
3878 { "arrow_left.ypos", "8" },
3879 { "arrow_left.frames", "1" },
3880 { "arrow_right", "RocksDC.pcx" },
3881 { "arrow_right.xpos", "9" },
3882 { "arrow_right.ypos", "8" },
3883 { "arrow_right.frames", "1" },
3884 { "arrow_up", "RocksDC.pcx" },
3885 { "arrow_up.xpos", "10" },
3886 { "arrow_up.ypos", "8" },
3887 { "arrow_up.frames", "1" },
3888 { "arrow_down", "RocksDC.pcx" },
3889 { "arrow_down.xpos", "11" },
3890 { "arrow_down.ypos", "8" },
3891 { "arrow_down.frames", "1" },
3893 { "unknown", "RocksFontEM.pcx" },
3894 { "unknown.xpos", "15" },
3895 { "unknown.ypos", "1" },
3896 { "unknown.frames", "1" },
3898 { "trigger_element", "RocksDC.pcx" },
3899 { "trigger_element.xpos", "15" },
3900 { "trigger_element.ypos", "14" },
3901 { "trigger_element.frames", "1" },
3903 { "trigger_player", "RocksDC.pcx" },
3904 { "trigger_player.xpos", "15" },
3905 { "trigger_player.ypos", "13" },
3906 { "trigger_player.frames", "1" },
3908 { "trigger_ce_value", "RocksDC.pcx" },
3909 { "trigger_ce_value.xpos", "15" },
3910 { "trigger_ce_value.ypos", "11" },
3911 { "trigger_ce_value.frames", "1" },
3913 { "trigger_ce_score", "RocksDC.pcx" },
3914 { "trigger_ce_score.xpos", "15" },
3915 { "trigger_ce_score.ypos", "12" },
3916 { "trigger_ce_score.frames", "1" },
3918 { "current_ce_value", "RocksDC.pcx" },
3919 { "current_ce_value.xpos", "14" },
3920 { "current_ce_value.ypos", "11" },
3921 { "current_ce_value.frames", "1" },
3923 { "current_ce_score", "RocksDC.pcx" },
3924 { "current_ce_score.xpos", "14" },
3925 { "current_ce_score.ypos", "12" },
3926 { "current_ce_score.frames", "1" },
3928 { "prev_ce_1", "RocksMore.pcx" },
3929 { "prev_ce_1.xpos", "0" },
3930 { "prev_ce_1.ypos", "7" },
3931 { "prev_ce_1.frames", "1" },
3933 { "prev_ce_2", "RocksMore.pcx" },
3934 { "prev_ce_2.xpos", "1" },
3935 { "prev_ce_2.ypos", "7" },
3936 { "prev_ce_2.frames", "1" },
3938 { "prev_ce_3", "RocksMore.pcx" },
3939 { "prev_ce_3.xpos", "2" },
3940 { "prev_ce_3.ypos", "7" },
3941 { "prev_ce_3.frames", "1" },
3943 { "prev_ce_4", "RocksMore.pcx" },
3944 { "prev_ce_4.xpos", "3" },
3945 { "prev_ce_4.ypos", "7" },
3946 { "prev_ce_4.frames", "1" },
3948 { "prev_ce_5", "RocksMore.pcx" },
3949 { "prev_ce_5.xpos", "4" },
3950 { "prev_ce_5.ypos", "7" },
3951 { "prev_ce_5.frames", "1" },
3953 { "prev_ce_6", "RocksMore.pcx" },
3954 { "prev_ce_6.xpos", "5" },
3955 { "prev_ce_6.ypos", "7" },
3956 { "prev_ce_6.frames", "1" },
3958 { "prev_ce_7", "RocksMore.pcx" },
3959 { "prev_ce_7.xpos", "6" },
3960 { "prev_ce_7.ypos", "7" },
3961 { "prev_ce_7.frames", "1" },
3963 { "prev_ce_8", "RocksMore.pcx" },
3964 { "prev_ce_8.xpos", "7" },
3965 { "prev_ce_8.ypos", "7" },
3966 { "prev_ce_8.frames", "1" },
3968 { "next_ce_1", "RocksMore.pcx" },
3969 { "next_ce_1.xpos", "0" },
3970 { "next_ce_1.ypos", "8" },
3971 { "next_ce_1.frames", "1" },
3973 { "next_ce_2", "RocksMore.pcx" },
3974 { "next_ce_2.xpos", "1" },
3975 { "next_ce_2.ypos", "8" },
3976 { "next_ce_2.frames", "1" },
3978 { "next_ce_3", "RocksMore.pcx" },
3979 { "next_ce_3.xpos", "2" },
3980 { "next_ce_3.ypos", "8" },
3981 { "next_ce_3.frames", "1" },
3983 { "next_ce_4", "RocksMore.pcx" },
3984 { "next_ce_4.xpos", "3" },
3985 { "next_ce_4.ypos", "8" },
3986 { "next_ce_4.frames", "1" },
3988 { "next_ce_5", "RocksMore.pcx" },
3989 { "next_ce_5.xpos", "4" },
3990 { "next_ce_5.ypos", "8" },
3991 { "next_ce_5.frames", "1" },
3993 { "next_ce_6", "RocksMore.pcx" },
3994 { "next_ce_6.xpos", "5" },
3995 { "next_ce_6.ypos", "8" },
3996 { "next_ce_6.frames", "1" },
3998 { "next_ce_7", "RocksMore.pcx" },
3999 { "next_ce_7.xpos", "6" },
4000 { "next_ce_7.ypos", "8" },
4001 { "next_ce_7.frames", "1" },
4003 { "next_ce_8", "RocksMore.pcx" },
4004 { "next_ce_8.xpos", "7" },
4005 { "next_ce_8.ypos", "8" },
4006 { "next_ce_8.frames", "1" },
4008 { "self", "RocksMore.pcx" },
4009 { "self.xpos", "8" },
4010 { "self.ypos", "7" },
4011 { "self.frames", "1" },
4013 { "any_element", "RocksMore.pcx" },
4014 { "any_element.xpos", "9" },
4015 { "any_element.ypos", "7" },
4016 { "any_element.frames", "1" },
4018 { "emc_key_5", "RocksEMC.pcx" },
4019 { "emc_key_5.xpos", "0" },
4020 { "emc_key_5.ypos", "5" },
4021 { "emc_key_5.frames", "1" },
4022 { "emc_key_6", "RocksEMC.pcx" },
4023 { "emc_key_6.xpos", "1" },
4024 { "emc_key_6.ypos", "5" },
4025 { "emc_key_6.frames", "1" },
4026 { "emc_key_7", "RocksEMC.pcx" },
4027 { "emc_key_7.xpos", "2" },
4028 { "emc_key_7.ypos", "5" },
4029 { "emc_key_7.frames", "1" },
4030 { "emc_key_8", "RocksEMC.pcx" },
4031 { "emc_key_8.xpos", "3" },
4032 { "emc_key_8.ypos", "5" },
4033 { "emc_key_8.frames", "1" },
4035 { "emc_gate_5", "RocksEMC.pcx" },
4036 { "emc_gate_5.xpos", "0" },
4037 { "emc_gate_5.ypos", "6" },
4038 { "emc_gate_5.frames", "1" },
4039 { "emc_gate_6", "RocksEMC.pcx" },
4040 { "emc_gate_6.xpos", "1" },
4041 { "emc_gate_6.ypos", "6" },
4042 { "emc_gate_6.frames", "1" },
4043 { "emc_gate_7", "RocksEMC.pcx" },
4044 { "emc_gate_7.xpos", "2" },
4045 { "emc_gate_7.ypos", "6" },
4046 { "emc_gate_7.frames", "1" },
4047 { "emc_gate_8", "RocksEMC.pcx" },
4048 { "emc_gate_8.xpos", "3" },
4049 { "emc_gate_8.ypos", "6" },
4050 { "emc_gate_8.frames", "1" },
4051 { "emc_gate_5_gray", "RocksEMC.pcx" },
4052 { "emc_gate_5_gray.xpos", "4" },
4053 { "emc_gate_5_gray.ypos", "7" },
4054 { "emc_gate_5_gray.frames", "1" },
4055 { "emc_gate_5_gray.EDITOR", "RocksEMC.pcx" },
4056 { "emc_gate_5_gray.EDITOR.xpos", "0" },
4057 { "emc_gate_5_gray.EDITOR.ypos", "7" },
4058 { "emc_gate_5_gray.active", "RocksEMC.pcx" },
4059 { "emc_gate_5_gray.active.xpos", "0" },
4060 { "emc_gate_5_gray.active.ypos", "6" },
4061 { "emc_gate_5_gray.active.frames", "1" },
4062 { "emc_gate_6_gray", "RocksEMC.pcx" },
4063 { "emc_gate_6_gray.xpos", "4" },
4064 { "emc_gate_6_gray.ypos", "7" },
4065 { "emc_gate_6_gray.frames", "1" },
4066 { "emc_gate_6_gray.EDITOR", "RocksEMC.pcx" },
4067 { "emc_gate_6_gray.EDITOR.xpos", "1" },
4068 { "emc_gate_6_gray.EDITOR.ypos", "7" },
4069 { "emc_gate_6_gray.active", "RocksEMC.pcx" },
4070 { "emc_gate_6_gray.active.xpos", "1" },
4071 { "emc_gate_6_gray.active.ypos", "6" },
4072 { "emc_gate_6_gray.active.frames", "1" },
4073 { "emc_gate_7_gray", "RocksEMC.pcx" },
4074 { "emc_gate_7_gray.xpos", "4" },
4075 { "emc_gate_7_gray.ypos", "7" },
4076 { "emc_gate_7_gray.frames", "1" },
4077 { "emc_gate_7_gray.EDITOR", "RocksEMC.pcx" },
4078 { "emc_gate_7_gray.EDITOR.xpos", "2" },
4079 { "emc_gate_7_gray.EDITOR.ypos", "7" },
4080 { "emc_gate_7_gray.active", "RocksEMC.pcx" },
4081 { "emc_gate_7_gray.active.xpos", "2" },
4082 { "emc_gate_7_gray.active.ypos", "6" },
4083 { "emc_gate_7_gray.active.frames", "1" },
4084 { "emc_gate_8_gray", "RocksEMC.pcx" },
4085 { "emc_gate_8_gray.xpos", "4" },
4086 { "emc_gate_8_gray.ypos", "7" },
4087 { "emc_gate_8_gray.frames", "1" },
4088 { "emc_gate_8_gray.EDITOR", "RocksEMC.pcx" },
4089 { "emc_gate_8_gray.EDITOR.xpos", "3" },
4090 { "emc_gate_8_gray.EDITOR.ypos", "7" },
4091 { "emc_gate_8_gray.active", "RocksEMC.pcx" },
4092 { "emc_gate_8_gray.active.xpos", "3" },
4093 { "emc_gate_8_gray.active.ypos", "6" },
4094 { "emc_gate_8_gray.active.frames", "1" },
4096 { "emc_android", "RocksEMC.pcx" },
4097 { "emc_android.xpos", "0" },
4098 { "emc_android.ypos", "8" },
4099 { "emc_android.frames", "8" },
4100 { "emc_android.delay", "2" },
4102 { "emc_android.shrinking.upleft", "RocksEMC.pcx" },
4103 { "emc_android.shrinking.upleft.xpos", "1" },
4104 { "emc_android.shrinking.upleft.ypos", "11" },
4105 { "emc_android.shrinking.upleft.frames", "8" },
4106 { "emc_android.shrinking.upleft.anim_mode", "linear" },
4108 { "emc_android.growing.downright", "RocksEMC.pcx" },
4109 { "emc_android.growing.downright.xpos", "0" },
4110 { "emc_android.growing.downright.ypos", "11" },
4111 { "emc_android.growing.downright.frames", "8" },
4112 { "emc_android.growing.downright.anim_mode", "linear,reverse" },
4114 { "emc_android.shrinking.downleft", "RocksEMC.pcx" },
4115 { "emc_android.shrinking.downleft.xpos", "1" },
4116 { "emc_android.shrinking.downleft.ypos", "12" },
4117 { "emc_android.shrinking.downleft.frames", "8" },
4118 { "emc_android.shrinking.downleft.anim_mode", "linear" },
4120 { "emc_android.growing.upright", "RocksEMC.pcx" },
4121 { "emc_android.growing.upright.xpos", "0" },
4122 { "emc_android.growing.upright.ypos", "12" },
4123 { "emc_android.growing.upright.frames", "8" },
4124 { "emc_android.growing.upright.anim_mode", "linear,reverse" },
4126 { "emc_android.shrinking.upright", "RocksEMC.pcx" },
4127 { "emc_android.shrinking.upright.xpos", "1" },
4128 { "emc_android.shrinking.upright.ypos", "13" },
4129 { "emc_android.shrinking.upright.frames", "8" },
4130 { "emc_android.shrinking.upright.anim_mode", "linear" },
4132 { "emc_android.growing.downleft", "RocksEMC.pcx" },
4133 { "emc_android.growing.downleft.xpos", "0" },
4134 { "emc_android.growing.downleft.ypos", "13" },
4135 { "emc_android.growing.downleft.frames", "8" },
4136 { "emc_android.growing.downleft.anim_mode", "linear,reverse" },
4138 { "emc_android.shrinking.downright", "RocksEMC.pcx" },
4139 { "emc_android.shrinking.downright.xpos", "1" },
4140 { "emc_android.shrinking.downright.ypos", "14" },
4141 { "emc_android.shrinking.downright.frames", "8" },
4142 { "emc_android.shrinking.downright.anim_mode","linear" },
4144 { "emc_android.growing.upleft", "RocksEMC.pcx" },
4145 { "emc_android.growing.upleft.xpos", "0" },
4146 { "emc_android.growing.upleft.ypos", "14" },
4147 { "emc_android.growing.upleft.frames", "8" },
4148 { "emc_android.growing.upleft.anim_mode", "linear,reverse" },
4150 { "emc_grass", "RocksEMC.pcx" },
4151 { "emc_grass.xpos", "0" },
4152 { "emc_grass.ypos", "4" },
4153 { "emc_grass.frames", "1" },
4154 { "emc_grass.CRUMBLED", "RocksEMC.pcx" },
4155 { "emc_grass.CRUMBLED.xpos", "1" },
4156 { "emc_grass.CRUMBLED.ypos", "4" },
4157 { "emc_grass.CRUMBLED.frames", "1" },
4158 { "emc_grass.digging.left", "RocksEMC.pcx" },
4159 { "emc_grass.digging.left.xpos", "6" },
4160 { "emc_grass.digging.left.ypos", "0" },
4161 { "emc_grass.digging.left.frames", "3" },
4162 { "emc_grass.digging.left.delay", "2" },
4163 { "emc_grass.digging.left.anim_mode", "linear" },
4164 { "emc_grass.digging.right", "RocksEMC.pcx" },
4165 { "emc_grass.digging.right.xpos", "9" },
4166 { "emc_grass.digging.right.ypos", "0" },
4167 { "emc_grass.digging.right.frames", "3" },
4168 { "emc_grass.digging.right.delay", "2" },
4169 { "emc_grass.digging.right.anim_mode", "linear" },
4170 { "emc_grass.digging.up", "RocksEMC.pcx" },
4171 { "emc_grass.digging.up.xpos", "0" },
4172 { "emc_grass.digging.up.ypos", "0" },
4173 { "emc_grass.digging.up.frames", "3" },
4174 { "emc_grass.digging.up.delay", "2" },
4175 { "emc_grass.digging.up.anim_mode", "linear" },
4176 { "emc_grass.digging.down", "RocksEMC.pcx" },
4177 { "emc_grass.digging.down.xpos", "3" },
4178 { "emc_grass.digging.down.ypos", "0" },
4179 { "emc_grass.digging.down.frames", "3" },
4180 { "emc_grass.digging.down.delay", "2" },
4181 { "emc_grass.digging.down.anim_mode", "linear" },
4182 { "emc_grass.digging.left.CRUMBLED", "RocksEMC.pcx" },
4183 { "emc_grass.digging.left.CRUMBLED.xpos", "6" },
4184 { "emc_grass.digging.left.CRUMBLED.ypos", "1" },
4185 { "emc_grass.digging.left.CRUMBLED.frames", "3" },
4186 { "emc_grass.digging.left.CRUMBLED.delay", "2" },
4187 { "emc_grass.digging.left.CRUMBLED.anim_mode","linear" },
4188 { "emc_grass.digging.right.CRUMBLED", "RocksEMC.pcx" },
4189 { "emc_grass.digging.right.CRUMBLED.xpos", "9" },
4190 { "emc_grass.digging.right.CRUMBLED.ypos", "1" },
4191 { "emc_grass.digging.right.CRUMBLED.frames", "3" },
4192 { "emc_grass.digging.right.CRUMBLED.delay", "2" },
4193 { "emc_grass.digging.right.CRUMBLED.anim_mode","linear" },
4194 { "emc_grass.digging.up.CRUMBLED", "RocksEMC.pcx" },
4195 { "emc_grass.digging.up.CRUMBLED.xpos", "0" },
4196 { "emc_grass.digging.up.CRUMBLED.ypos", "1" },
4197 { "emc_grass.digging.up.CRUMBLED.frames", "3" },
4198 { "emc_grass.digging.up.CRUMBLED.delay", "2" },
4199 { "emc_grass.digging.up.CRUMBLED.anim_mode", "linear" },
4200 { "emc_grass.digging.down.CRUMBLED", "RocksEMC.pcx" },
4201 { "emc_grass.digging.down.CRUMBLED.xpos", "3" },
4202 { "emc_grass.digging.down.CRUMBLED.ypos", "1" },
4203 { "emc_grass.digging.down.CRUMBLED.frames", "3" },
4204 { "emc_grass.digging.down.CRUMBLED.delay", "2" },
4205 { "emc_grass.digging.down.CRUMBLED.anim_mode","linear" },
4207 { "emc_magic_ball", "RocksEMC.pcx" },
4208 { "emc_magic_ball.xpos", "0" },
4209 { "emc_magic_ball.ypos", "9" },
4210 { "emc_magic_ball.frames", "1" },
4211 { "emc_magic_ball.active", "RocksEMC.pcx" },
4212 { "emc_magic_ball.active.xpos", "0" },
4213 { "emc_magic_ball.active.ypos", "9" },
4214 { "emc_magic_ball.active.frames", "16" },
4215 { "emc_magic_ball.active.frames_per_line", "8" },
4216 { "emc_magic_ball.dropping", "RocksElements.pcx" },
4217 { "emc_magic_ball.dropping.xpos", "0" },
4218 { "emc_magic_ball.dropping.ypos", "4" },
4219 { "emc_magic_ball.dropping.frames", "8" },
4220 { "emc_magic_ball.dropping.anim_mode", "linear" },
4222 { "emc_magic_ball_switch", "RocksEMC.pcx" },
4223 { "emc_magic_ball_switch.xpos", "8" },
4224 { "emc_magic_ball_switch.ypos", "10" },
4225 { "emc_magic_ball_switch.frames", "1" },
4226 { "emc_magic_ball_switch.active", "RocksEMC.pcx" },
4227 { "emc_magic_ball_switch.active.xpos", "8" },
4228 { "emc_magic_ball_switch.active.ypos", "9" },
4229 { "emc_magic_ball_switch.active.frames", "1" },
4231 { "emc_spring_bumper", "RocksEMC.pcx" },
4232 { "emc_spring_bumper.xpos", "8" },
4233 { "emc_spring_bumper.ypos", "4" },
4234 { "emc_spring_bumper.frames", "1" },
4236 { "emc_spring_bumper.active", "RocksEMC.pcx" },
4237 { "emc_spring_bumper.active.xpos", "8" },
4238 { "emc_spring_bumper.active.ypos", "4" },
4239 { "emc_spring_bumper.active.frames", "4" },
4240 { "emc_spring_bumper.active.anim_mode", "pingpong2" },
4242 { "emc_plant", "RocksEMC.pcx" },
4243 { "emc_plant.xpos", "4" },
4244 { "emc_plant.ypos", "4" },
4245 { "emc_plant.frames", "1" },
4246 { "emc_plant.CRUMBLED", "RocksEMC.pcx" },
4247 { "emc_plant.CRUMBLED.xpos", "5" },
4248 { "emc_plant.CRUMBLED.ypos", "4" },
4249 { "emc_plant.CRUMBLED.frames", "1" },
4251 { "emc_lenses", "RocksEMC.pcx" },
4252 { "emc_lenses.xpos", "6" },
4253 { "emc_lenses.ypos", "4" },
4254 { "emc_lenses.frames", "1" },
4256 { "emc_magnifier", "RocksEMC.pcx" },
4257 { "emc_magnifier.xpos", "7" },
4258 { "emc_magnifier.ypos", "4" },
4259 { "emc_magnifier.frames", "1" },
4261 { "emc_wall_9", "RocksEMC.pcx" },
4262 { "emc_wall_9.xpos", "10" },
4263 { "emc_wall_9.ypos", "5" },
4264 { "emc_wall_9.frames", "1" },
4265 { "emc_wall_10", "RocksEMC.pcx" },
4266 { "emc_wall_10.xpos", "10" },
4267 { "emc_wall_10.ypos", "6" },
4268 { "emc_wall_10.frames", "1" },
4269 { "emc_wall_11", "RocksEMC.pcx" },
4270 { "emc_wall_11.xpos", "11" },
4271 { "emc_wall_11.ypos", "5" },
4272 { "emc_wall_11.frames", "1" },
4273 { "emc_wall_12", "RocksEMC.pcx" },
4274 { "emc_wall_12.xpos", "11" },
4275 { "emc_wall_12.ypos", "6" },
4276 { "emc_wall_12.frames", "1" },
4277 { "emc_wall_13", "RocksEMC.pcx" },
4278 { "emc_wall_13.xpos", "10" },
4279 { "emc_wall_13.ypos", "7" },
4280 { "emc_wall_13.frames", "1" },
4281 { "emc_wall_14", "RocksEMC.pcx" },
4282 { "emc_wall_14.xpos", "10" },
4283 { "emc_wall_14.ypos", "8" },
4284 { "emc_wall_14.frames", "1" },
4285 { "emc_wall_15", "RocksEMC.pcx" },
4286 { "emc_wall_15.xpos", "10" },
4287 { "emc_wall_15.ypos", "9" },
4288 { "emc_wall_15.frames", "1" },
4289 { "emc_wall_16", "RocksEMC.pcx" },
4290 { "emc_wall_16.xpos", "10" },
4291 { "emc_wall_16.ypos", "10" },
4292 { "emc_wall_16.frames", "1" },
4294 { "emc_wall_slippery_1", "RocksEMC.pcx" },
4295 { "emc_wall_slippery_1.xpos", "11" },
4296 { "emc_wall_slippery_1.ypos", "7" },
4297 { "emc_wall_slippery_1.frames", "1" },
4298 { "emc_wall_slippery_2", "RocksEMC.pcx" },
4299 { "emc_wall_slippery_2.xpos", "11" },
4300 { "emc_wall_slippery_2.ypos", "8" },
4301 { "emc_wall_slippery_2.frames", "1" },
4302 { "emc_wall_slippery_3", "RocksEMC.pcx" },
4303 { "emc_wall_slippery_3.xpos", "11" },
4304 { "emc_wall_slippery_3.ypos", "9" },
4305 { "emc_wall_slippery_3.frames", "1" },
4306 { "emc_wall_slippery_4", "RocksEMC.pcx" },
4307 { "emc_wall_slippery_4.xpos", "11" },
4308 { "emc_wall_slippery_4.ypos", "10" },
4309 { "emc_wall_slippery_4.frames", "1" },
4311 { "emc_fake_grass", "RocksEMC.pcx" },
4312 { "emc_fake_grass.xpos", "0" },
4313 { "emc_fake_grass.ypos", "4" },
4314 { "emc_fake_grass.frames", "1" },
4315 { "emc_fake_grass.CRUMBLED", "RocksEMC.pcx" },
4316 { "emc_fake_grass.CRUMBLED.xpos", "1" },
4317 { "emc_fake_grass.CRUMBLED.ypos", "4" },
4318 { "emc_fake_grass.CRUMBLED.frames", "1" },
4319 { "emc_fake_grass.active", "RocksEMC.pcx" },
4320 { "emc_fake_grass.active.xpos", "2" },
4321 { "emc_fake_grass.active.ypos", "4" },
4322 { "emc_fake_grass.active.frames", "1" },
4323 { "emc_fake_grass.active.CRUMBLED", "RocksEMC.pcx" },
4324 { "emc_fake_grass.active.CRUMBLED.xpos", "3" },
4325 { "emc_fake_grass.active.CRUMBLED.ypos", "4" },
4326 { "emc_fake_grass.active.CRUMBLED.frames", "1" },
4327 { "emc_fake_grass.EDITOR", "RocksEMC.pcx" },
4328 { "emc_fake_grass.EDITOR.xpos", "2" },
4329 { "emc_fake_grass.EDITOR.ypos", "4" },
4330 { "emc_fake_grass.EDITOR.frames", "1" },
4332 { "emc_fake_acid", "RocksElements.pcx" },
4333 { "emc_fake_acid.xpos", "12" },
4334 { "emc_fake_acid.ypos", "7" },
4335 { "emc_fake_acid.frames", "4" },
4336 { "emc_fake_acid.delay", "10" },
4337 { "emc_fake_acid.global_sync", "true" },
4339 { "emc_dripper", "RocksSP.pcx" },
4340 { "emc_dripper.xpos", "0" },
4341 { "emc_dripper.ypos", "0" },
4342 { "emc_dripper.frames", "1" },
4343 { "emc_dripper.EDITOR", "RocksEMC.pcx" },
4344 { "emc_dripper.EDITOR.xpos", "8" },
4345 { "emc_dripper.EDITOR.ypos", "8" },
4346 { "emc_dripper.active", "RocksEMC.pcx" },
4347 { "emc_dripper.active.xpos", "8" },
4348 { "emc_dripper.active.ypos", "8" },
4349 { "emc_dripper.active.frames", "1" },
4351 /* (these are only defined as elements to support ".PANEL" definitions) */
4352 { "graphic_1", UNDEFINED_FILENAME },
4353 { "graphic_2", UNDEFINED_FILENAME },
4354 { "graphic_3", UNDEFINED_FILENAME },
4355 { "graphic_4", UNDEFINED_FILENAME },
4356 { "graphic_5", UNDEFINED_FILENAME },
4357 { "graphic_6", UNDEFINED_FILENAME },
4358 { "graphic_7", UNDEFINED_FILENAME },
4359 { "graphic_8", UNDEFINED_FILENAME },
4361 #include "conf_chr.c" /* include auto-generated data structure definitions */
4362 #include "conf_cus.c" /* include auto-generated data structure definitions */
4363 #include "conf_grp.c" /* include auto-generated data structure definitions */
4365 /* images not associated to game elements (used for menu screens etc.) */
4366 /* keyword to stop parser: "NO_MORE_ELEMENT_IMAGES" <-- do not change! */
4369 /* !!! TEMPORARILY STORED HERE -- PROBABLY TO BE CHANGED !!! */
4371 /* (for testing, change filename back to "emc_objects dot pcx") */
4372 { "emc_object", "RocksEMC.pcx" },
4374 { "emc_object.scale_up_factor", "2" },
4377 /* (for testing, change filename back to "emc_players dot pcx") */
4378 { "emc_sprite", "RocksEMC.pcx" },
4380 { "emc_sprite.scale_up_factor", "2" },
4384 { "sp_frame_horizontal", "RocksSP.pcx" },
4385 { "sp_frame_horizontal.xpos", "7" },
4386 { "sp_frame_horizontal.ypos", "14" },
4387 { "sp_frame_vertical", "RocksSP.pcx" },
4388 { "sp_frame_vertical.xpos", "6" },
4389 { "sp_frame_vertical.ypos", "14" },
4390 { "sp_frame_corner", "RocksSP.pcx" },
4391 { "sp_frame_corner.xpos", "5" },
4392 { "sp_frame_corner.ypos", "14" },
4394 { "toon_1", "RocksToons.pcx" },
4395 { "toon_1.x", "2" },
4396 { "toon_1.y", "72" },
4397 { "toon_1.width", "40" },
4398 { "toon_1.height", "48" },
4399 { "toon_1.frames", "8" },
4400 { "toon_1.delay", "1" },
4401 { "toon_1.step_offset", "4" },
4402 { "toon_1.step_delay", "5" },
4403 { "toon_1.direction", "right" },
4404 { "toon_1.position", "bottom" },
4406 { "toon_2", "RocksToons.pcx" },
4407 { "toon_2.x", "2" },
4408 { "toon_2.y", "186" },
4409 { "toon_2.width", "40" },
4410 { "toon_2.height", "48" },
4411 { "toon_2.frames", "8" },
4412 { "toon_2.delay", "1" },
4413 { "toon_2.step_offset", "4" },
4414 { "toon_2.step_delay", "5" },
4415 { "toon_2.direction", "left" },
4416 { "toon_2.position", "bottom" },
4418 { "toon_3", "RocksToons.pcx" },
4419 { "toon_3.x", "2" },
4420 { "toon_3.y", "125" },
4421 { "toon_3.width", "48" },
4422 { "toon_3.height", "56" },
4423 { "toon_3.frames", "8" },
4424 { "toon_3.delay", "1" },
4425 { "toon_3.step_offset", "4" },
4426 { "toon_3.step_delay", "5" },
4427 { "toon_3.direction", "right" },
4428 { "toon_3.position", "bottom" },
4430 { "toon_4", "RocksToons.pcx" },
4431 { "toon_4.x", "327" },
4432 { "toon_4.y", "10" },
4433 { "toon_4.width", "80" },
4434 { "toon_4.height", "110" },
4435 { "toon_4.frames", "1" },
4436 { "toon_4.delay", "1" },
4437 { "toon_4.step_offset", "1" },
4438 { "toon_4.step_delay", "1" },
4439 { "toon_4.direction", "up" },
4440 { "toon_4.position", "any" },
4442 { "toon_5", "RocksToons.pcx" },
4443 { "toon_5.x", "2" },
4444 { "toon_5.y", "2" },
4445 { "toon_5.width", "32" },
4446 { "toon_5.height", "30" },
4447 { "toon_5.frames", "8" },
4448 { "toon_5.delay", "2" },
4449 { "toon_5.anim_mode", "pingpong2" },
4450 { "toon_5.step_offset", "2" },
4451 { "toon_5.step_delay", "1" },
4452 { "toon_5.direction", "right" },
4453 { "toon_5.position", "upper" },
4455 { "toon_6", "RocksToons.pcx" },
4456 { "toon_6.x", "2" },
4457 { "toon_6.y", "37" },
4458 { "toon_6.width", "32" },
4459 { "toon_6.height", "30" },
4460 { "toon_6.frames", "8" },
4461 { "toon_6.delay", "2" },
4462 { "toon_6.anim_mode", "pingpong2" },
4463 { "toon_6.step_offset", "2" },
4464 { "toon_6.step_delay", "1" },
4465 { "toon_6.direction", "left" },
4466 { "toon_6.position", "upper" },
4468 { "toon_7", "RocksMore.pcx" },
4469 { "toon_7.xpos", "0" },
4470 { "toon_7.ypos", "6" },
4471 { "toon_7.frames", "16" },
4472 { "toon_7.delay", "2" },
4473 { "toon_7.direction", "down" },
4474 { "toon_7.position", "any" },
4476 { "toon_8", "RocksHeroes.pcx" },
4477 { "toon_8.xpos", "4" },
4478 { "toon_8.ypos", "1" },
4479 { "toon_8.frames", "4" },
4480 { "toon_8.delay", "4" },
4481 { "toon_8.direction", "right" },
4482 { "toon_8.position", "bottom" },
4484 { "toon_9", "RocksHeroes.pcx" },
4485 { "toon_9.xpos", "8" },
4486 { "toon_9.ypos", "7" },
4487 { "toon_9.frames", "4" },
4488 { "toon_9.delay", "2" },
4489 { "toon_9.direction", "left" },
4490 { "toon_9.position", "bottom" },
4492 { "toon_10", "RocksHeroes.pcx" },
4493 { "toon_10.xpos", "12" },
4494 { "toon_10.ypos", "7" },
4495 { "toon_10.frames", "4" },
4496 { "toon_10.delay", "2" },
4497 { "toon_10.direction", "right" },
4498 { "toon_10.position", "bottom" },
4500 { "toon_11", "RocksHeroes.pcx" },
4501 { "toon_11.xpos", "8" },
4502 { "toon_11.ypos", "5" },
4503 { "toon_11.frames", "4" },
4504 { "toon_11.delay", "2" },
4505 { "toon_11.direction", "left" },
4506 { "toon_11.position", "bottom" },
4508 { "toon_12", "RocksHeroes.pcx" },
4509 { "toon_12.xpos", "12" },
4510 { "toon_12.ypos", "5" },
4511 { "toon_12.frames", "4" },
4512 { "toon_12.delay", "2" },
4513 { "toon_12.direction", "right" },
4514 { "toon_12.position", "bottom" },
4516 { "toon_13", "RocksHeroes.pcx" },
4517 { "toon_13.xpos", "8" },
4518 { "toon_13.ypos", "1" },
4519 { "toon_13.frames", "4" },
4520 { "toon_13.delay", "2" },
4521 { "toon_13.direction", "left" },
4522 { "toon_13.position", "bottom" },
4524 { "toon_14", "RocksHeroes.pcx" },
4525 { "toon_14.xpos", "12" },
4526 { "toon_14.ypos", "1" },
4527 { "toon_14.frames", "4" },
4528 { "toon_14.delay", "2" },
4529 { "toon_14.direction", "right" },
4530 { "toon_14.position", "bottom" },
4532 { "toon_15", "RocksHeroes.pcx" },
4533 { "toon_15.xpos", "8" },
4534 { "toon_15.ypos", "3" },
4535 { "toon_15.frames", "4" },
4536 { "toon_15.delay", "2" },
4537 { "toon_15.direction", "left" },
4538 { "toon_15.position", "bottom" },
4540 { "toon_16", "RocksHeroes.pcx" },
4541 { "toon_16.xpos", "12" },
4542 { "toon_16.ypos", "3" },
4543 { "toon_16.frames", "4" },
4544 { "toon_16.delay", "2" },
4545 { "toon_16.direction", "right" },
4546 { "toon_16.position", "bottom" },
4548 { "toon_17", "RocksHeroes.pcx" },
4549 { "toon_17.xpos", "8" },
4550 { "toon_17.ypos", "9" },
4551 { "toon_17.frames", "8" },
4552 { "toon_17.delay", "2" },
4553 { "toon_17.direction", "left" },
4554 { "toon_17.position", "any" },
4556 { "toon_18", "RocksHeroes.pcx" },
4557 { "toon_18.xpos", "8" },
4558 { "toon_18.ypos", "9" },
4559 { "toon_18.frames", "8" },
4560 { "toon_18.delay", "2" },
4561 { "toon_18.direction", "right" },
4562 { "toon_18.position", "any" },
4564 { "toon_19", "RocksElements.pcx" },
4565 { "toon_19.xpos", "8" },
4566 { "toon_19.ypos", "0" },
4567 { "toon_19.frames", "2" },
4568 { "toon_19.delay", "4" },
4569 { "toon_19.direction", "down" },
4570 { "toon_19.position", "any" },
4572 { "toon_20", "RocksElements.pcx" },
4573 { "toon_20.xpos", "10" },
4574 { "toon_20.ypos", "0" },
4575 { "toon_20.frames", "2" },
4576 { "toon_20.delay", "4" },
4577 { "toon_20.direction", "down" },
4578 { "toon_20.position", "any" },
4580 { "menu.calibrate_red", "RocksElements.pcx" },
4581 { "menu.calibrate_red.xpos", "12" },
4582 { "menu.calibrate_red.ypos", "8" },
4583 { "menu.calibrate_red.frames", "1" },
4584 { "menu.calibrate_blue", "RocksElements.pcx" },
4585 { "menu.calibrate_blue.xpos", "13" },
4586 { "menu.calibrate_blue.ypos", "8" },
4587 { "menu.calibrate_blue.frames", "1" },
4588 { "menu.calibrate_yellow", "RocksElements.pcx" },
4589 { "menu.calibrate_yellow.xpos", "14" },
4590 { "menu.calibrate_yellow.ypos", "8" },
4591 { "menu.calibrate_yellow.frames", "1" },
4593 { "menu.button", "RocksElements.pcx" },
4594 { "menu.button.xpos", "13" },
4595 { "menu.button.ypos", "8" },
4596 { "menu.button.frames", "1" },
4597 { "menu.button.active", "RocksElements.pcx" },
4598 { "menu.button.active.xpos", "12" },
4599 { "menu.button.active.ypos", "8" },
4600 { "menu.button.active.frames", "1" },
4602 { "menu.button_left", "RocksDC.pcx" },
4603 { "menu.button_left.xpos", "8" },
4604 { "menu.button_left.ypos", "8" },
4605 { "menu.button_left.frames", "1" },
4606 { "menu.button_left.active", "RocksDC.pcx" },
4607 { "menu.button_left.active.xpos", "8" },
4608 { "menu.button_left.active.ypos", "9" },
4609 { "menu.button_left.active.frames", "1" },
4610 { "menu.button_right", "RocksDC.pcx" },
4611 { "menu.button_right.xpos", "9" },
4612 { "menu.button_right.ypos", "8" },
4613 { "menu.button_right.frames", "1" },
4614 { "menu.button_right.active", "RocksDC.pcx" },
4615 { "menu.button_right.active.xpos", "9" },
4616 { "menu.button_right.active.ypos", "9" },
4617 { "menu.button_right.active.frames", "1" },
4618 { "menu.button_up", "RocksDC.pcx" },
4619 { "menu.button_up.xpos", "10" },
4620 { "menu.button_up.ypos", "8" },
4621 { "menu.button_up.frames", "1" },
4622 { "menu.button_up.active", "RocksDC.pcx" },
4623 { "menu.button_up.active.xpos", "10" },
4624 { "menu.button_up.active.ypos", "9" },
4625 { "menu.button_up.active.frames", "1" },
4626 { "menu.button_down", "RocksDC.pcx" },
4627 { "menu.button_down.xpos", "11" },
4628 { "menu.button_down.ypos", "8" },
4629 { "menu.button_down.frames", "1" },
4630 { "menu.button_down.active", "RocksDC.pcx" },
4631 { "menu.button_down.active.xpos", "11" },
4632 { "menu.button_down.active.ypos", "9" },
4633 { "menu.button_down.active.frames", "1" },
4635 { "menu.button_enter_menu", UNDEFINED_FILENAME },
4636 { "menu.button_enter_menu.clone_from", "menu.button_right" },
4637 { "menu.button_enter_menu.active", UNDEFINED_FILENAME },
4638 { "menu.button_enter_menu.active.clone_from", "menu.button_right.active" },
4639 { "menu.button_leave_menu", UNDEFINED_FILENAME },
4640 { "menu.button_leave_menu.clone_from", "menu.button_left" },
4641 { "menu.button_leave_menu.active", UNDEFINED_FILENAME },
4642 { "menu.button_leave_menu.active.clone_from", "menu.button_left.active" },
4644 { "menu.button_next_level", UNDEFINED_FILENAME },
4645 { "menu.button_next_level.clone_from", "menu.button_right" },
4646 { "menu.button_next_level.active", UNDEFINED_FILENAME },
4647 { "menu.button_next_level.active.clone_from", "menu.button_right.active" },
4648 { "menu.button_prev_level", UNDEFINED_FILENAME },
4649 { "menu.button_prev_level.clone_from", "menu.button_left" },
4650 { "menu.button_prev_level.active", UNDEFINED_FILENAME },
4651 { "menu.button_prev_level.active.clone_from", "menu.button_left.active" },
4653 { "menu.button_name", UNDEFINED_FILENAME },
4654 { "menu.button_name.clone_from", "menu.button" },
4655 { "menu.button_name.active", UNDEFINED_FILENAME },
4656 { "menu.button_name.active.clone_from", "menu.button.active" },
4657 { "menu.button_levels", UNDEFINED_FILENAME },
4658 { "menu.button_levels.clone_from", "menu.button_right" },
4659 { "menu.button_levels.active", UNDEFINED_FILENAME },
4660 { "menu.button_levels.active.clone_from", "menu.button_right.active" },
4661 { "menu.button_scores", UNDEFINED_FILENAME },
4662 { "menu.button_scores.clone_from", "menu.button" },
4663 { "menu.button_scores.active", UNDEFINED_FILENAME },
4664 { "menu.button_scores.active.clone_from", "menu.button.active" },
4665 { "menu.button_editor", UNDEFINED_FILENAME },
4666 { "menu.button_editor.clone_from", "menu.button" },
4667 { "menu.button_editor.active", UNDEFINED_FILENAME },
4668 { "menu.button_editor.active.clone_from", "menu.button.active" },
4669 { "menu.button_info", UNDEFINED_FILENAME },
4670 { "menu.button_info.clone_from", "menu.button_right" },
4671 { "menu.button_info.active", UNDEFINED_FILENAME },
4672 { "menu.button_info.active.clone_from", "menu.button_right.active" },
4673 { "menu.button_game", UNDEFINED_FILENAME },
4674 { "menu.button_game.clone_from", "menu.button" },
4675 { "menu.button_game.active", UNDEFINED_FILENAME },
4676 { "menu.button_game.active.clone_from", "menu.button.active" },
4677 { "menu.button_setup", UNDEFINED_FILENAME },
4678 { "menu.button_setup.clone_from", "menu.button_right" },
4679 { "menu.button_setup.active", UNDEFINED_FILENAME },
4680 { "menu.button_setup.active.clone_from", "menu.button_right.active" },
4681 { "menu.button_quit", UNDEFINED_FILENAME },
4682 { "menu.button_quit.clone_from", "menu.button" },
4683 { "menu.button_quit.active", UNDEFINED_FILENAME },
4684 { "menu.button_quit.active.clone_from", "menu.button.active" },
4686 { "menu.scrollbar", "RocksDC.pcx" },
4687 { "menu.scrollbar.xpos", "8" },
4688 { "menu.scrollbar.ypos", "10" },
4689 { "menu.scrollbar.frames", "1" },
4690 { "menu.scrollbar.active", "RocksDC.pcx" },
4691 { "menu.scrollbar.active.xpos", "9" },
4692 { "menu.scrollbar.active.ypos", "10" },
4693 { "menu.scrollbar.active.frames", "1" },
4695 { "font.initial_1", "RocksFontSmall.pcx" },
4696 { "font.initial_1.x", "0" },
4697 { "font.initial_1.y", "0" },
4698 { "font.initial_1.width", "14" },
4699 { "font.initial_1.height", "14" },
4700 { "font.initial_2", "RocksFontSmall.pcx" },
4701 { "font.initial_2.x", "0" },
4702 { "font.initial_2.y", "70" },
4703 { "font.initial_2.width", "14" },
4704 { "font.initial_2.height", "14" },
4705 { "font.initial_3", "RocksFontSmall.pcx" },
4706 { "font.initial_3.x", "0" },
4707 { "font.initial_3.y", "140" },
4708 { "font.initial_3.width", "14" },
4709 { "font.initial_3.height", "14" },
4710 { "font.initial_4", "RocksFontSmall.pcx" },
4711 { "font.initial_4.x", "0" },
4712 { "font.initial_4.y", "210" },
4713 { "font.initial_4.width", "14" },
4714 { "font.initial_4.height", "14" },
4716 { "font.title_1", "RocksFontBig.pcx" },
4717 { "font.title_1.x", "0" },
4718 { "font.title_1.y", "480" },
4719 { "font.title_1.width", "32" },
4720 { "font.title_1.height", "32" },
4721 { "font.title_2", "RocksFontSmall.pcx" },
4722 { "font.title_2.x", "0" },
4723 { "font.title_2.y", "0" },
4724 { "font.title_2.width", "14" },
4725 { "font.title_2.height", "14" },
4726 { "font.title_2.SETUP", UNDEFINED_FILENAME },
4727 { "font.title_2.SETUP.clone_from", "font.text_4" },
4729 { "font.menu_1", "RocksFontBig.pcx" },
4730 { "font.menu_1.x", "0" },
4731 { "font.menu_1.y", "320" },
4732 { "font.menu_1.width", "32" },
4733 { "font.menu_1.height", "32" },
4734 { "font.menu_1.active", "RocksFontBig.pcx" },
4735 { "font.menu_1.active.x", "0" },
4736 { "font.menu_1.active.y", "480" },
4737 { "font.menu_1.active.width", "32" },
4738 { "font.menu_1.active.height", "32" },
4739 { "font.menu_2", "RocksFontMedium.pcx" },
4740 { "font.menu_2.x", "0" },
4741 { "font.menu_2.y", "320" },
4742 { "font.menu_2.width", "16" },
4743 { "font.menu_2.height", "32" },
4744 { "font.menu_2.active", "RocksFontMedium.pcx" },
4745 { "font.menu_2.active.x", "0" },
4746 { "font.menu_2.active.y", "480" },
4747 { "font.menu_2.active.width", "16" },
4748 { "font.menu_2.active.height", "32" },
4750 { "font.text_1", "RocksFontSmall.pcx" },
4751 { "font.text_1.x", "0" },
4752 { "font.text_1.y", "140" },
4753 { "font.text_1.width", "14" },
4754 { "font.text_1.height", "14" },
4755 { "font.text_1.MAIN", UNDEFINED_FILENAME },
4756 { "font.text_1.MAIN.clone_from", "font.text_1.PREVIEW" },
4757 { "font.text_1.LEVELS", "RocksFontMedium.pcx" },
4758 { "font.text_1.LEVELS.x", "0" },
4759 { "font.text_1.LEVELS.y", "0" },
4760 { "font.text_1.LEVELS.width", "16" },
4761 { "font.text_1.LEVELS.height", "32" },
4762 { "font.text_1.SETUP", UNDEFINED_FILENAME },
4763 { "font.text_1.SETUP.clone_from", "font.text_1.LEVELS" },
4764 { "font.text_1.PREVIEW", "RocksFontEM.pcx" },
4765 { "font.text_1.PREVIEW.x", "0" },
4766 { "font.text_1.PREVIEW.y", "160" },
4767 { "font.text_1.PREVIEW.width", "16" },
4768 { "font.text_1.PREVIEW.height", "16" },
4769 { "font.text_1.SCORES", "RocksFontMedium.pcx" },
4770 { "font.text_1.SCORES.x", "0" },
4771 { "font.text_1.SCORES.y", "480" },
4772 { "font.text_1.SCORES.width", "16" },
4773 { "font.text_1.SCORES.height", "32" },
4774 { "font.text_1.active.SCORES", "RocksFontMedium.pcx" },
4775 { "font.text_1.active.SCORES.x", "0" },
4776 { "font.text_1.active.SCORES.y", "0" },
4777 { "font.text_1.active.SCORES.width", "16" },
4778 { "font.text_1.active.SCORES.height", "32" },
4779 { "font.text_1.PANEL", UNDEFINED_FILENAME },
4780 { "font.text_1.PANEL.clone_from", "font.level_number" },
4781 { "font.text_1.DOOR", UNDEFINED_FILENAME },
4782 { "font.text_1.DOOR.clone_from", "font.level_number" },
4783 { "font.text_2", "RocksFontSmall.pcx" },
4784 { "font.text_2.x", "0" },
4785 { "font.text_2.y", "210" },
4786 { "font.text_2.width", "14" },
4787 { "font.text_2.height", "14" },
4788 { "font.text_2.MAIN", UNDEFINED_FILENAME },
4789 { "font.text_2.MAIN.clone_from", "font.text_2.PREVIEW" },
4790 { "font.text_2.LEVELS", "RocksFontMedium.pcx" },
4791 { "font.text_2.LEVELS.x", "0" },
4792 { "font.text_2.LEVELS.y", "160" },
4793 { "font.text_2.LEVELS.width", "16" },
4794 { "font.text_2.LEVELS.height", "32" },
4795 { "font.text_2.SETUP", UNDEFINED_FILENAME },
4796 { "font.text_2.SETUP.clone_from", "font.text_2.LEVELS" },
4797 { "font.text_2.PREVIEW", "RocksFontEM.pcx" },
4798 { "font.text_2.PREVIEW.x", "0" },
4799 { "font.text_2.PREVIEW.y", "160" },
4800 { "font.text_2.PREVIEW.width", "16" },
4801 { "font.text_2.PREVIEW.height", "16" },
4802 { "font.text_2.SCORES", "RocksFontBig.pcx" },
4803 { "font.text_2.SCORES.x", "0" },
4804 { "font.text_2.SCORES.y", "320" },
4805 { "font.text_2.SCORES.width", "32" },
4806 { "font.text_2.SCORES.height", "32" },
4807 { "font.text_2.active.SCORES", "RocksFontBig.pcx" },
4808 { "font.text_2.active.SCORES.x", "0" },
4809 { "font.text_2.active.SCORES.y", "0" },
4810 { "font.text_2.active.SCORES.width", "32" },
4811 { "font.text_2.active.SCORES.height", "32" },
4812 { "font.text_3", "RocksFontSmall.pcx" },
4813 { "font.text_3.x", "0" },
4814 { "font.text_3.y", "0" },
4815 { "font.text_3.width", "14" },
4816 { "font.text_3.height", "14" },
4817 { "font.text_3.LEVELS", "RocksFontMedium.pcx" },
4818 { "font.text_3.LEVELS.x", "0" },
4819 { "font.text_3.LEVELS.y", "320" },
4820 { "font.text_3.LEVELS.width", "16" },
4821 { "font.text_3.LEVELS.height", "32" },
4822 { "font.text_3.SETUP", UNDEFINED_FILENAME },
4823 { "font.text_3.SETUP.clone_from", "font.text_3.LEVELS" },
4824 { "font.text_3.PREVIEW", "RocksFontEM.pcx" },
4825 { "font.text_3.PREVIEW.x", "0" },
4826 { "font.text_3.PREVIEW.y", "160" },
4827 { "font.text_3.PREVIEW.width", "16" },
4828 { "font.text_3.PREVIEW.height", "16" },
4829 { "font.text_3.SCORES", "RocksFontMedium.pcx" },
4830 { "font.text_3.SCORES.x", "0" },
4831 { "font.text_3.SCORES.y", "480" },
4832 { "font.text_3.SCORES.width", "16" },
4833 { "font.text_3.SCORES.height", "32" },
4834 { "font.text_3.active.SCORES", "RocksFontMedium.pcx" },
4835 { "font.text_3.active.SCORES.x", "0" },
4836 { "font.text_3.active.SCORES.y", "0" },
4837 { "font.text_3.active.SCORES.width", "16" },
4838 { "font.text_3.active.SCORES.height", "32" },
4839 { "font.text_4", "RocksFontSmall.pcx" },
4840 { "font.text_4.x", "0" },
4841 { "font.text_4.y", "70" },
4842 { "font.text_4.width", "14" },
4843 { "font.text_4.height", "14" },
4844 { "font.text_4.MAIN", UNDEFINED_FILENAME },
4845 { "font.text_4.MAIN.clone_from", "font.text_3.PREVIEW" },
4846 { "font.text_4.LEVELS", "RocksFontMedium.pcx" },
4847 { "font.text_4.LEVELS.x", "0" },
4848 { "font.text_4.LEVELS.y", "480" },
4849 { "font.text_4.LEVELS.width", "16" },
4850 { "font.text_4.LEVELS.height", "32" },
4851 { "font.text_4.SETUP", UNDEFINED_FILENAME },
4852 { "font.text_4.SETUP.clone_from", "font.text_4.LEVELS" },
4853 { "font.text_4.SCORES", "RocksFontMedium.pcx" },
4854 { "font.text_4.SCORES.x", "0" },
4855 { "font.text_4.SCORES.y", "480" },
4856 { "font.text_4.SCORES.width", "16" },
4857 { "font.text_4.SCORES.height", "32" },
4858 { "font.text_4.active.SCORES", "RocksFontMedium.pcx" },
4859 { "font.text_4.active.SCORES.x", "0" },
4860 { "font.text_4.active.SCORES.y", "0" },
4861 { "font.text_4.active.SCORES.width", "16" },
4862 { "font.text_4.active.SCORES.height", "32" },
4864 { "font.envelope_1", "RocksFontEM.pcx" },
4865 { "font.envelope_1.x", "0" },
4866 { "font.envelope_1.y", "160" },
4867 { "font.envelope_1.width", "16" },
4868 { "font.envelope_1.height", "16" },
4869 { "font.envelope_2", "RocksFontEM.pcx" },
4870 { "font.envelope_2.x", "0" },
4871 { "font.envelope_2.y", "160" },
4872 { "font.envelope_2.width", "16" },
4873 { "font.envelope_2.height", "16" },
4874 { "font.envelope_3", "RocksFontEM.pcx" },
4875 { "font.envelope_3.x", "0" },
4876 { "font.envelope_3.y", "160" },
4877 { "font.envelope_3.width", "16" },
4878 { "font.envelope_3.height", "16" },
4879 { "font.envelope_4", "RocksFontEM.pcx" },
4880 { "font.envelope_4.x", "0" },
4881 { "font.envelope_4.y", "160" },
4882 { "font.envelope_4.width", "16" },
4883 { "font.envelope_4.height", "16" },
4885 { "font.input_1", "RocksFontSmall.pcx" },
4886 { "font.input_1.x", "0" },
4887 { "font.input_1.y", "210" },
4888 { "font.input_1.width", "14" },
4889 { "font.input_1.height", "14" },
4890 { "font.input_1.MAIN", "RocksFontBig.pcx" },
4891 { "font.input_1.MAIN.x", "0" },
4892 { "font.input_1.MAIN.y", "0" },
4893 { "font.input_1.MAIN.width", "32" },
4894 { "font.input_1.MAIN.height", "32" },
4895 { "font.input_1.active", "RocksFontSmall.pcx" },
4896 { "font.input_1.active.x", "0" },
4897 { "font.input_1.active.y", "210" },
4898 { "font.input_1.active.width", "14" },
4899 { "font.input_1.active.height", "14" },
4900 { "font.input_1.active.MAIN", "RocksFontBig.pcx" },
4901 { "font.input_1.active.MAIN.x", "0" },
4902 { "font.input_1.active.MAIN.y", "480" },
4903 { "font.input_1.active.MAIN.width", "32" },
4904 { "font.input_1.active.MAIN.height", "32" },
4905 { "font.input_1.active.SETUP", "RocksFontBig.pcx" },
4906 { "font.input_1.active.SETUP.x", "0" },
4907 { "font.input_1.active.SETUP.y", "0" },
4908 { "font.input_1.active.SETUP.width", "32" },
4909 { "font.input_1.active.SETUP.height", "32" },
4910 { "font.input_2", "RocksFontSmall.pcx" },
4911 { "font.input_2.x", "0" },
4912 { "font.input_2.y", "210" },
4913 { "font.input_2.width", "14" },
4914 { "font.input_2.height", "14" },
4915 { "font.input_2.active", "RocksFontSmall.pcx" },
4916 { "font.input_2.active.x", "0" },
4917 { "font.input_2.active.y", "210" },
4918 { "font.input_2.active.width", "14" },
4919 { "font.input_2.active.height", "14" },
4921 { "font.option_off", "RocksFontBig.pcx" },
4922 { "font.option_off.x", "0" },
4923 { "font.option_off.y", "160" },
4924 { "font.option_off.width", "32" },
4925 { "font.option_off.height", "32" },
4926 { "font.option_on", "RocksFontBig.pcx" },
4927 { "font.option_on.x", "0" },
4928 { "font.option_on.y", "480" },
4929 { "font.option_on.width", "32" },
4930 { "font.option_on.height", "32" },
4932 { "font.value_1", "RocksFontBig.pcx" },
4933 { "font.value_1.x", "0" },
4934 { "font.value_1.y", "480" },
4935 { "font.value_1.width", "32" },
4936 { "font.value_1.height", "32" },
4937 { "font.value_2", "RocksFontMedium.pcx" },
4938 { "font.value_2.x", "0" },
4939 { "font.value_2.y", "480" },
4940 { "font.value_2.width", "16" },
4941 { "font.value_2.height", "32" },
4942 { "font.value_old", "RocksFontBig.pcx" },
4943 { "font.value_old.x", "0" },
4944 { "font.value_old.y", "160" },
4945 { "font.value_old.width", "32" },
4946 { "font.value_old.height", "32" },
4948 { "font.level_number", "RocksFontSmall.pcx" },
4949 { "font.level_number.x", "0" },
4950 { "font.level_number.y", "350" },
4951 { "font.level_number.width", "10" },
4952 { "font.level_number.height", "14" },
4953 { "font.level_number.active", UNDEFINED_FILENAME },
4954 { "font.level_number.active.clone_from", "font.level_number" },
4956 { "font.tape_recorder", "RocksFontSmall.pcx" },
4957 { "font.tape_recorder.x", "0" },
4958 { "font.tape_recorder.y", "280" },
4959 { "font.tape_recorder.width", "11" },
4960 { "font.tape_recorder.height", "14" },
4962 { "font.game_info", "RocksFontEM.pcx" },
4963 { "font.game_info.xpos", "0" },
4964 { "font.game_info.ypos", "0" },
4965 { "font.game_info.delay", "10" },
4967 { "font.info.elements", UNDEFINED_FILENAME },
4968 { "font.info.elements.clone_from", "font.level_number" },
4970 { "font.info.levelset", UNDEFINED_FILENAME },
4971 { "font.info.levelset.clone_from", "font.level_number" },
4973 { "global.border", "RocksScreen.pcx" },
4974 { "global.door", "RocksDoor.pcx" },
4976 { "global.busy", "RocksBusy.pcx" },
4977 { "global.busy.x", "0" },
4978 { "global.busy.y", "0" },
4979 { "global.busy.width", "32" },
4980 { "global.busy.height", "32" },
4981 { "global.busy.frames", "28" },
4982 { "global.busy.frames_per_line", "7" },
4983 { "global.busy.delay", "2" },
4985 { "editor.element_border", "RocksElements.pcx" },
4986 { "editor.element_border.x", "0" },
4987 { "editor.element_border.y", "0" },
4989 { "editor.element_border_input", "RocksDoor.pcx" },
4990 { "editor.element_border_input.x", "740" },
4991 { "editor.element_border_input.y", "48" },
4993 { "editor.cascade_list", "RocksDoor.pcx" },
4994 { "editor.cascade_list.x", "708" },
4995 { "editor.cascade_list.y", "80" },
4996 { "editor.cascade_list.frames", "1" },
4997 { "editor.cascade_list.active", "RocksDoor.pcx" },
4998 { "editor.cascade_list.active.x", "740" },
4999 { "editor.cascade_list.active.y", "80" },
5000 { "editor.cascade_list.active.frames", "1" },
5002 { "background", UNDEFINED_FILENAME },
5003 { "background.TITLE_INITIAL", UNDEFINED_FILENAME },
5004 { "background.TITLE", UNDEFINED_FILENAME },
5005 { "background.MAIN", UNDEFINED_FILENAME },
5006 { "background.LEVELS", UNDEFINED_FILENAME },
5007 { "background.SCORES", UNDEFINED_FILENAME },
5008 { "background.EDITOR", UNDEFINED_FILENAME },
5009 { "background.INFO", UNDEFINED_FILENAME },
5010 { "background.INFO[ELEMENTS]", UNDEFINED_FILENAME },
5011 { "background.INFO[MUSIC]", UNDEFINED_FILENAME },
5012 { "background.INFO[CREDITS]", UNDEFINED_FILENAME },
5013 { "background.INFO[PROGRAM]", UNDEFINED_FILENAME },
5014 { "background.INFO[VERSION]", UNDEFINED_FILENAME },
5015 { "background.INFO[LEVELSET]", UNDEFINED_FILENAME },
5016 { "background.SETUP", UNDEFINED_FILENAME },
5017 { "background.PLAYING", UNDEFINED_FILENAME },
5018 { "background.DOOR", UNDEFINED_FILENAME },
5020 { "background.titlescreen_initial_1", UNDEFINED_FILENAME },
5021 { "background.titlescreen_initial_2", UNDEFINED_FILENAME },
5022 { "background.titlescreen_initial_3", UNDEFINED_FILENAME },
5023 { "background.titlescreen_initial_4", UNDEFINED_FILENAME },
5024 { "background.titlescreen_initial_5", UNDEFINED_FILENAME },
5025 { "background.titlescreen_1", UNDEFINED_FILENAME },
5026 { "background.titlescreen_2", UNDEFINED_FILENAME },
5027 { "background.titlescreen_3", UNDEFINED_FILENAME },
5028 { "background.titlescreen_4", UNDEFINED_FILENAME },
5029 { "background.titlescreen_5", UNDEFINED_FILENAME },
5030 { "background.titlemessage_initial_1", UNDEFINED_FILENAME },
5031 { "background.titlemessage_initial_2", UNDEFINED_FILENAME },
5032 { "background.titlemessage_initial_3", UNDEFINED_FILENAME },
5033 { "background.titlemessage_initial_4", UNDEFINED_FILENAME },
5034 { "background.titlemessage_initial_5", UNDEFINED_FILENAME },
5035 { "background.titlemessage_1", UNDEFINED_FILENAME },
5036 { "background.titlemessage_2", UNDEFINED_FILENAME },
5037 { "background.titlemessage_3", UNDEFINED_FILENAME },
5038 { "background.titlemessage_4", UNDEFINED_FILENAME },
5039 { "background.titlemessage_5", UNDEFINED_FILENAME },
5041 { "background.envelope_1", "RocksScreen.pcx" },
5042 { "background.envelope_1.x", "0" },
5043 { "background.envelope_1.y", "0" },
5044 { "background.envelope_1.width", "560" },
5045 { "background.envelope_1.height", "560" },
5046 { "background.envelope_1.anim_mode", "default" },
5047 { "background.envelope_1.draw_masked", "false" },
5048 { "background.envelope_2", "RocksScreen.pcx" },
5049 { "background.envelope_2.x", "0" },
5050 { "background.envelope_2.y", "0" },
5051 { "background.envelope_2.width", "560" },
5052 { "background.envelope_2.height", "560" },
5053 { "background.envelope_2.anim_mode", "default" },
5054 { "background.envelope_2.draw_masked", "false" },
5055 { "background.envelope_3", "RocksScreen.pcx" },
5056 { "background.envelope_3.x", "0" },
5057 { "background.envelope_3.y", "0" },
5058 { "background.envelope_3.width", "560" },
5059 { "background.envelope_3.height", "560" },
5060 { "background.envelope_3.anim_mode", "default" },
5061 { "background.envelope_3.draw_masked", "false" },
5062 { "background.envelope_4", "RocksScreen.pcx" },
5063 { "background.envelope_4.x", "0" },
5064 { "background.envelope_4.y", "0" },
5065 { "background.envelope_4.width", "560" },
5066 { "background.envelope_4.height", "560" },
5067 { "background.envelope_4.anim_mode", "default" },
5068 { "background.envelope_4.draw_masked", "false" },
5070 { "titlescreen_initial_1", UNDEFINED_FILENAME },
5071 { "titlescreen_initial_2", UNDEFINED_FILENAME },
5072 { "titlescreen_initial_3", UNDEFINED_FILENAME },
5073 { "titlescreen_initial_4", UNDEFINED_FILENAME },
5074 { "titlescreen_initial_5", UNDEFINED_FILENAME },
5075 { "titlescreen_1", UNDEFINED_FILENAME },
5076 { "titlescreen_2", UNDEFINED_FILENAME },
5077 { "titlescreen_3", UNDEFINED_FILENAME },
5078 { "titlescreen_4", UNDEFINED_FILENAME },
5079 { "titlescreen_5", UNDEFINED_FILENAME },
5081 /* the following directives are not associated with an image, but
5082 probably make sense to be defined in "graphicsinfo.conf", too */
5084 /* keyword to start parser: "CONFIG_VARS_START" <-- do not change! */
5086 { "[title_initial].fade_mode", "fade" },
5087 { "[title_initial].fade_delay", "500" },
5088 { "[title_initial].post_delay", "250" },
5089 { "[title_initial].auto_delay", "-1" },
5090 { "[title].fade_mode", "fade" },
5091 { "[title].fade_delay", "500" },
5092 { "[title].post_delay", "250" },
5093 { "[title].auto_delay", "-1" },
5095 { "[titlemessage_initial].x", "336" },
5096 { "[titlemessage_initial].y", "280" },
5097 { "[titlemessage_initial].width", "640" },
5098 { "[titlemessage_initial].height", "512" },
5099 { "[titlemessage_initial].chars", "-1" },
5100 { "[titlemessage_initial].lines", "-1" },
5101 { "[titlemessage_initial].align", "center" },
5102 { "[titlemessage_initial].valign", "middle" },
5103 { "[titlemessage_initial].font", "font.text_1" },
5104 { "[titlemessage_initial].autowrap", "false" },
5105 { "[titlemessage_initial].centered", "false" },
5106 { "[titlemessage_initial].parse_comments", "false" },
5107 { "[titlemessage_initial].sort_priority", "0" },
5108 { "[titlemessage_initial].fade_mode", ARG_DEFAULT },
5109 { "[titlemessage_initial].fade_delay", ARG_DEFAULT },
5110 { "[titlemessage_initial].post_delay", ARG_DEFAULT },
5111 { "[titlemessage_initial].auto_delay", ARG_DEFAULT },
5112 { "[titlemessage].x", "336" },
5113 { "[titlemessage].y", "280" },
5114 { "[titlemessage].width", "640" },
5115 { "[titlemessage].height", "512" },
5116 { "[titlemessage].chars", "-1" },
5117 { "[titlemessage].lines", "-1" },
5118 { "[titlemessage].align", "center" },
5119 { "[titlemessage].valign", "middle" },
5120 { "[titlemessage].font", "font.text_1" },
5121 { "[titlemessage].autowrap", "false" },
5122 { "[titlemessage].centered", "false" },
5123 { "[titlemessage].parse_comments", "false" },
5124 { "[titlemessage].sort_priority", "0" },
5125 { "[titlemessage].fade_mode", ARG_DEFAULT },
5126 { "[titlemessage].fade_delay", ARG_DEFAULT },
5127 { "[titlemessage].post_delay", ARG_DEFAULT },
5128 { "[titlemessage].auto_delay", ARG_DEFAULT },
5130 { "titlemessage_initial_1.x", ARG_DEFAULT },
5131 { "titlemessage_initial_1.y", ARG_DEFAULT },
5132 { "titlemessage_initial_1.width", ARG_DEFAULT },
5133 { "titlemessage_initial_1.height", ARG_DEFAULT },
5134 { "titlemessage_initial_1.chars", ARG_DEFAULT },
5135 { "titlemessage_initial_1.lines", ARG_DEFAULT },
5136 { "titlemessage_initial_1.align", ARG_DEFAULT },
5137 { "titlemessage_initial_1.valign", ARG_DEFAULT },
5138 { "titlemessage_initial_1.font", ARG_DEFAULT },
5139 { "titlemessage_initial_1.autowrap", ARG_DEFAULT },
5140 { "titlemessage_initial_1.centered", ARG_DEFAULT },
5141 { "titlemessage_initial_1.parse_comments", ARG_DEFAULT },
5142 { "titlemessage_initial_1.sort_priority", ARG_DEFAULT },
5143 { "titlemessage_initial_1.fade_mode", ARG_DEFAULT },
5144 { "titlemessage_initial_1.fade_delay", ARG_DEFAULT },
5145 { "titlemessage_initial_1.post_delay", ARG_DEFAULT },
5146 { "titlemessage_initial_1.auto_delay", ARG_DEFAULT },
5147 { "titlemessage_initial_2.x", ARG_DEFAULT },
5148 { "titlemessage_initial_2.y", ARG_DEFAULT },
5149 { "titlemessage_initial_2.width", ARG_DEFAULT },
5150 { "titlemessage_initial_2.height", ARG_DEFAULT },
5151 { "titlemessage_initial_2.chars", ARG_DEFAULT },
5152 { "titlemessage_initial_2.lines", ARG_DEFAULT },
5153 { "titlemessage_initial_2.align", ARG_DEFAULT },
5154 { "titlemessage_initial_2.valign", ARG_DEFAULT },
5155 { "titlemessage_initial_2.font", ARG_DEFAULT },
5156 { "titlemessage_initial_2.autowrap", ARG_DEFAULT },
5157 { "titlemessage_initial_2.centered", ARG_DEFAULT },
5158 { "titlemessage_initial_2.parse_comments", ARG_DEFAULT },
5159 { "titlemessage_initial_2.sort_priority", ARG_DEFAULT },
5160 { "titlemessage_initial_2.fade_mode", ARG_DEFAULT },
5161 { "titlemessage_initial_2.fade_delay", ARG_DEFAULT },
5162 { "titlemessage_initial_2.post_delay", ARG_DEFAULT },
5163 { "titlemessage_initial_2.auto_delay", ARG_DEFAULT },
5164 { "titlemessage_initial_3.x", ARG_DEFAULT },
5165 { "titlemessage_initial_3.y", ARG_DEFAULT },
5166 { "titlemessage_initial_3.width", ARG_DEFAULT },
5167 { "titlemessage_initial_3.height", ARG_DEFAULT },
5168 { "titlemessage_initial_3.chars", ARG_DEFAULT },
5169 { "titlemessage_initial_3.lines", ARG_DEFAULT },
5170 { "titlemessage_initial_3.align", ARG_DEFAULT },
5171 { "titlemessage_initial_3.valign", ARG_DEFAULT },
5172 { "titlemessage_initial_3.font", ARG_DEFAULT },
5173 { "titlemessage_initial_3.autowrap", ARG_DEFAULT },
5174 { "titlemessage_initial_3.centered", ARG_DEFAULT },
5175 { "titlemessage_initial_3.parse_comments", ARG_DEFAULT },
5176 { "titlemessage_initial_3.sort_priority", ARG_DEFAULT },
5177 { "titlemessage_initial_3.fade_mode", ARG_DEFAULT },
5178 { "titlemessage_initial_3.fade_delay", ARG_DEFAULT },
5179 { "titlemessage_initial_3.post_delay", ARG_DEFAULT },
5180 { "titlemessage_initial_3.auto_delay", ARG_DEFAULT },
5181 { "titlemessage_initial_4.x", ARG_DEFAULT },
5182 { "titlemessage_initial_4.y", ARG_DEFAULT },
5183 { "titlemessage_initial_4.width", ARG_DEFAULT },
5184 { "titlemessage_initial_4.height", ARG_DEFAULT },
5185 { "titlemessage_initial_4.chars", ARG_DEFAULT },
5186 { "titlemessage_initial_4.lines", ARG_DEFAULT },
5187 { "titlemessage_initial_4.align", ARG_DEFAULT },
5188 { "titlemessage_initial_4.valign", ARG_DEFAULT },
5189 { "titlemessage_initial_4.font", ARG_DEFAULT },
5190 { "titlemessage_initial_4.autowrap", ARG_DEFAULT },
5191 { "titlemessage_initial_4.centered", ARG_DEFAULT },
5192 { "titlemessage_initial_4.parse_comments", ARG_DEFAULT },
5193 { "titlemessage_initial_4.sort_priority", ARG_DEFAULT },
5194 { "titlemessage_initial_4.fade_mode", ARG_DEFAULT },
5195 { "titlemessage_initial_4.fade_delay", ARG_DEFAULT },
5196 { "titlemessage_initial_4.post_delay", ARG_DEFAULT },
5197 { "titlemessage_initial_4.auto_delay", ARG_DEFAULT },
5198 { "titlemessage_initial_5.x", ARG_DEFAULT },
5199 { "titlemessage_initial_5.y", ARG_DEFAULT },
5200 { "titlemessage_initial_5.width", ARG_DEFAULT },
5201 { "titlemessage_initial_5.height", ARG_DEFAULT },
5202 { "titlemessage_initial_5.chars", ARG_DEFAULT },
5203 { "titlemessage_initial_5.lines", ARG_DEFAULT },
5204 { "titlemessage_initial_5.align", ARG_DEFAULT },
5205 { "titlemessage_initial_5.valign", ARG_DEFAULT },
5206 { "titlemessage_initial_5.font", ARG_DEFAULT },
5207 { "titlemessage_initial_5.autowrap", ARG_DEFAULT },
5208 { "titlemessage_initial_5.centered", ARG_DEFAULT },
5209 { "titlemessage_initial_5.parse_comments", ARG_DEFAULT },
5210 { "titlemessage_initial_5.sort_priority", ARG_DEFAULT },
5211 { "titlemessage_initial_5.fade_mode", ARG_DEFAULT },
5212 { "titlemessage_initial_5.fade_delay", ARG_DEFAULT },
5213 { "titlemessage_initial_5.post_delay", ARG_DEFAULT },
5214 { "titlemessage_initial_5.auto_delay", ARG_DEFAULT },
5215 { "titlemessage_1.x", ARG_DEFAULT },
5216 { "titlemessage_1.y", ARG_DEFAULT },
5217 { "titlemessage_1.width", ARG_DEFAULT },
5218 { "titlemessage_1.height", ARG_DEFAULT },
5219 { "titlemessage_1.chars", ARG_DEFAULT },
5220 { "titlemessage_1.lines", ARG_DEFAULT },
5221 { "titlemessage_1.align", ARG_DEFAULT },
5222 { "titlemessage_1.valign", ARG_DEFAULT },
5223 { "titlemessage_1.font", ARG_DEFAULT },
5224 { "titlemessage_1.autowrap", ARG_DEFAULT },
5225 { "titlemessage_1.centered", ARG_DEFAULT },
5226 { "titlemessage_1.parse_comments", ARG_DEFAULT },
5227 { "titlemessage_1.sort_priority", ARG_DEFAULT },
5228 { "titlemessage_1.fade_mode", ARG_DEFAULT },
5229 { "titlemessage_1.fade_delay", ARG_DEFAULT },
5230 { "titlemessage_1.post_delay", ARG_DEFAULT },
5231 { "titlemessage_1.auto_delay", ARG_DEFAULT },
5232 { "titlemessage_2.x", ARG_DEFAULT },
5233 { "titlemessage_2.y", ARG_DEFAULT },
5234 { "titlemessage_2.width", ARG_DEFAULT },
5235 { "titlemessage_2.height", ARG_DEFAULT },
5236 { "titlemessage_2.chars", ARG_DEFAULT },
5237 { "titlemessage_2.lines", ARG_DEFAULT },
5238 { "titlemessage_2.align", ARG_DEFAULT },
5239 { "titlemessage_2.valign", ARG_DEFAULT },
5240 { "titlemessage_2.font", ARG_DEFAULT },
5241 { "titlemessage_2.autowrap", ARG_DEFAULT },
5242 { "titlemessage_2.centered", ARG_DEFAULT },
5243 { "titlemessage_2.parse_comments", ARG_DEFAULT },
5244 { "titlemessage_2.sort_priority", ARG_DEFAULT },
5245 { "titlemessage_2.fade_mode", ARG_DEFAULT },
5246 { "titlemessage_2.fade_delay", ARG_DEFAULT },
5247 { "titlemessage_2.post_delay", ARG_DEFAULT },
5248 { "titlemessage_2.auto_delay", ARG_DEFAULT },
5249 { "titlemessage_3.x", ARG_DEFAULT },
5250 { "titlemessage_3.y", ARG_DEFAULT },
5251 { "titlemessage_3.width", ARG_DEFAULT },
5252 { "titlemessage_3.height", ARG_DEFAULT },
5253 { "titlemessage_3.chars", ARG_DEFAULT },
5254 { "titlemessage_3.lines", ARG_DEFAULT },
5255 { "titlemessage_3.align", ARG_DEFAULT },
5256 { "titlemessage_3.valign", ARG_DEFAULT },
5257 { "titlemessage_3.font", ARG_DEFAULT },
5258 { "titlemessage_3.autowrap", ARG_DEFAULT },
5259 { "titlemessage_3.centered", ARG_DEFAULT },
5260 { "titlemessage_3.parse_comments", ARG_DEFAULT },
5261 { "titlemessage_3.sort_priority", ARG_DEFAULT },
5262 { "titlemessage_3.fade_mode", ARG_DEFAULT },
5263 { "titlemessage_3.fade_delay", ARG_DEFAULT },
5264 { "titlemessage_3.post_delay", ARG_DEFAULT },
5265 { "titlemessage_3.auto_delay", ARG_DEFAULT },
5266 { "titlemessage_4.x", ARG_DEFAULT },
5267 { "titlemessage_4.y", ARG_DEFAULT },
5268 { "titlemessage_4.width", ARG_DEFAULT },
5269 { "titlemessage_4.height", ARG_DEFAULT },
5270 { "titlemessage_4.chars", ARG_DEFAULT },
5271 { "titlemessage_4.lines", ARG_DEFAULT },
5272 { "titlemessage_4.align", ARG_DEFAULT },
5273 { "titlemessage_4.valign", ARG_DEFAULT },
5274 { "titlemessage_4.font", ARG_DEFAULT },
5275 { "titlemessage_4.autowrap", ARG_DEFAULT },
5276 { "titlemessage_4.centered", ARG_DEFAULT },
5277 { "titlemessage_4.parse_comments", ARG_DEFAULT },
5278 { "titlemessage_4.sort_priority", ARG_DEFAULT },
5279 { "titlemessage_4.fade_mode", ARG_DEFAULT },
5280 { "titlemessage_4.fade_delay", ARG_DEFAULT },
5281 { "titlemessage_4.post_delay", ARG_DEFAULT },
5282 { "titlemessage_4.auto_delay", ARG_DEFAULT },
5283 { "titlemessage_5.x", ARG_DEFAULT },
5284 { "titlemessage_5.y", ARG_DEFAULT },
5285 { "titlemessage_5.width", ARG_DEFAULT },
5286 { "titlemessage_5.height", ARG_DEFAULT },
5287 { "titlemessage_5.chars", ARG_DEFAULT },
5288 { "titlemessage_5.lines", ARG_DEFAULT },
5289 { "titlemessage_5.align", ARG_DEFAULT },
5290 { "titlemessage_5.valign", ARG_DEFAULT },
5291 { "titlemessage_5.font", ARG_DEFAULT },
5292 { "titlemessage_5.autowrap", ARG_DEFAULT },
5293 { "titlemessage_5.centered", ARG_DEFAULT },
5294 { "titlemessage_5.parse_comments", ARG_DEFAULT },
5295 { "titlemessage_5.sort_priority", ARG_DEFAULT },
5296 { "titlemessage_5.fade_mode", ARG_DEFAULT },
5297 { "titlemessage_5.fade_delay", ARG_DEFAULT },
5298 { "titlemessage_5.post_delay", ARG_DEFAULT },
5299 { "titlemessage_5.auto_delay", ARG_DEFAULT },
5301 { "readme.x", "272" },
5302 { "readme.y", "150" },
5303 { "readme.width", "480" },
5304 { "readme.height", "364" },
5305 { "readme.chars", "-1" },
5306 { "readme.lines", "-1" },
5307 { "readme.align", "center" },
5308 { "readme.valign", "top" },
5309 { "readme.font", "font.info.levelset" },
5310 { "readme.autowrap", "true" },
5311 { "readme.centered", "false" },
5312 { "readme.parse_comments", "true" },
5313 { "readme.sort_priority", "0" },
5315 { "global.num_toons", "20" },
5317 { "border.draw_masked.TITLE", "false" },
5318 { "border.draw_masked.MAIN", "false" },
5319 { "border.draw_masked.LEVELS", "false" },
5320 { "border.draw_masked.SCORES", "false" },
5321 { "border.draw_masked.EDITOR", "false" },
5322 { "border.draw_masked.INFO", "false" },
5323 { "border.draw_masked.SETUP", "false" },
5324 { "border.draw_masked.PLAYING", "false" },
5325 { "border.draw_masked.DOOR", "false" },
5327 { "border.draw_masked_when_fading", "true" },
5329 { "init.busy.x", "336" },
5330 { "init.busy.y", "280" },
5331 { "init.busy.align", "center" },
5332 { "init.busy.valign", "middle" },
5334 { "menu.enter_menu.fade_mode", "none" },
5335 { "menu.enter_menu.fade_delay", "250" },
5336 { "menu.enter_menu.post_delay", "125" },
5337 { "menu.leave_menu.fade_mode", "none" },
5338 { "menu.leave_menu.fade_delay", "250" },
5339 { "menu.leave_menu.post_delay", "125" },
5340 { "menu.enter_screen.fade_mode", "fade" },
5341 { "menu.enter_screen.fade_delay", "250" },
5342 { "menu.enter_screen.post_delay", "125" },
5343 { "menu.next_screen.fade_mode", "crossfade" },
5344 { "menu.next_screen.fade_delay", "250" },
5345 { "menu.next_screen.post_delay", "125" },
5346 { "menu.leave_screen.fade_mode", "fade" },
5347 { "menu.leave_screen.fade_delay", "250" },
5348 { "menu.leave_screen.post_delay", "125" },
5349 { "menu.enter_screen.SCORES.fade_mode", ARG_DEFAULT },
5350 { "menu.enter_screen.SCORES.fade_delay", ARG_DEFAULT },
5351 { "menu.enter_screen.SCORES.post_delay", ARG_DEFAULT },
5352 { "menu.enter_screen.EDITOR.fade_mode", ARG_DEFAULT },
5353 { "menu.enter_screen.EDITOR.fade_delay", ARG_DEFAULT },
5354 { "menu.enter_screen.EDITOR.post_delay", ARG_DEFAULT },
5355 { "menu.enter_screen.INFO.fade_mode", ARG_DEFAULT },
5356 { "menu.enter_screen.INFO.fade_delay", ARG_DEFAULT },
5357 { "menu.enter_screen.INFO.post_delay", ARG_DEFAULT },
5358 { "menu.enter_screen.PLAYING.fade_mode", ARG_DEFAULT },
5359 { "menu.enter_screen.PLAYING.fade_delay", ARG_DEFAULT },
5360 { "menu.enter_screen.PLAYING.post_delay", ARG_DEFAULT },
5361 { "menu.leave_screen.SCORES.fade_mode", ARG_DEFAULT },
5362 { "menu.leave_screen.SCORES.fade_delay", ARG_DEFAULT },
5363 { "menu.leave_screen.SCORES.post_delay", ARG_DEFAULT },
5364 { "menu.leave_screen.EDITOR.fade_mode", ARG_DEFAULT },
5365 { "menu.leave_screen.EDITOR.fade_delay", ARG_DEFAULT },
5366 { "menu.leave_screen.EDITOR.post_delay", ARG_DEFAULT },
5367 { "menu.leave_screen.INFO.fade_mode", ARG_DEFAULT },
5368 { "menu.leave_screen.INFO.fade_delay", ARG_DEFAULT },
5369 { "menu.leave_screen.INFO.post_delay", ARG_DEFAULT },
5370 { "menu.leave_screen.PLAYING.fade_mode", ARG_DEFAULT },
5371 { "menu.leave_screen.PLAYING.fade_delay", ARG_DEFAULT },
5372 { "menu.leave_screen.PLAYING.post_delay", ARG_DEFAULT },
5374 { "menu.draw_xoffset", "0" },
5375 { "menu.draw_yoffset", "0" },
5376 { "menu.draw_xoffset.MAIN", "0" },
5377 { "menu.draw_yoffset.MAIN", "0" },
5378 { "menu.draw_xoffset.LEVELS", "0" },
5379 { "menu.draw_yoffset.LEVELS", "0" },
5380 { "menu.draw_xoffset.SCORES", "0" },
5381 { "menu.draw_yoffset.SCORES", "0" },
5382 { "menu.draw_xoffset.EDITOR", "0" },
5383 { "menu.draw_yoffset.EDITOR", "0" },
5384 { "menu.draw_xoffset.INFO", "0" },
5385 { "menu.draw_yoffset.INFO", "0" },
5386 { "menu.draw_xoffset.INFO[ELEMENTS]", "0" },
5387 { "menu.draw_yoffset.INFO[ELEMENTS]", "0" },
5388 { "menu.draw_xoffset.INFO[MUSIC]", "0" },
5389 { "menu.draw_yoffset.INFO[MUSIC]", "0" },
5390 { "menu.draw_xoffset.INFO[CREDITS]", "0" },
5391 { "menu.draw_yoffset.INFO[CREDITS]", "0" },
5392 { "menu.draw_xoffset.INFO[PROGRAM]", "0" },
5393 { "menu.draw_yoffset.INFO[PROGRAM]", "0" },
5394 { "menu.draw_xoffset.INFO[VERSION]", "0" },
5395 { "menu.draw_yoffset.INFO[VERSION]", "0" },
5396 { "menu.draw_xoffset.INFO[LEVELSET]", "0" },
5397 { "menu.draw_yoffset.INFO[LEVELSET]", "0" },
5398 { "menu.draw_xoffset.SETUP", "0" },
5399 { "menu.draw_yoffset.SETUP", "0" },
5400 { "menu.draw_xoffset.SETUP[GAME]", "0" },
5401 { "menu.draw_yoffset.SETUP[GAME]", "0" },
5402 { "menu.draw_xoffset.SETUP[EDITOR]", "0" },
5403 { "menu.draw_yoffset.SETUP[EDITOR]", "0" },
5404 { "menu.draw_xoffset.SETUP[GRAPHICS]", "0" },
5405 { "menu.draw_yoffset.SETUP[GRAPHICS]", "0" },
5406 { "menu.draw_xoffset.SETUP[SOUND]", "0" },
5407 { "menu.draw_yoffset.SETUP[SOUND]", "0" },
5408 { "menu.draw_xoffset.SETUP[ARTWORK]", "0" },
5409 { "menu.draw_yoffset.SETUP[ARTWORK]", "0" },
5410 { "menu.draw_xoffset.SETUP[INPUT]", "0" },
5411 { "menu.draw_yoffset.SETUP[INPUT]", "0" },
5412 { "menu.draw_xoffset.SETUP[SHORTCUTS]", "0" },
5413 { "menu.draw_yoffset.SETUP[SHORTCUTS]", "0" },
5414 { "menu.draw_xoffset.SETUP[SHORTCUTS_1]", "0" },
5415 { "menu.draw_yoffset.SETUP[SHORTCUTS_1]", "0" },
5416 { "menu.draw_xoffset.SETUP[SHORTCUTS_2]", "0" },
5417 { "menu.draw_yoffset.SETUP[SHORTCUTS_2]", "0" },
5418 { "menu.draw_xoffset.SETUP[SHORTCUTS_3]", "0" },
5419 { "menu.draw_yoffset.SETUP[SHORTCUTS_3]", "0" },
5420 { "menu.draw_xoffset.SETUP[SHORTCUTS_4]", "0" },
5421 { "menu.draw_yoffset.SETUP[SHORTCUTS_4]", "0" },
5422 { "menu.draw_xoffset.SETUP[CHOOSE_ARTWORK]", "0" },
5423 { "menu.draw_yoffset.SETUP[CHOOSE_ARTWORK]", "0" },
5424 { "menu.draw_xoffset.SETUP[CHOOSE_OTHER]", "0" },
5425 { "menu.draw_yoffset.SETUP[CHOOSE_OTHER]", "0" },
5427 { "menu.scrollbar_xoffset", "0" },
5429 { "menu.list_size", "-1" },
5430 { "menu.list_size.LEVELS", "-1" },
5431 { "menu.list_size.SCORES", "-1" },
5432 { "menu.list_size.INFO", "-1" },
5433 { "menu.list_size.SETUP", "-1" },
5435 { "main.button.name.x", "0" },
5436 { "main.button.name.y", "64" },
5437 { "main.button.levels.x", "0" },
5438 { "main.button.levels.y", "96" },
5439 { "main.button.scores.x", "0" },
5440 { "main.button.scores.y", "128" },
5441 { "main.button.editor.x", "0" },
5442 { "main.button.editor.y", "160" },
5443 { "main.button.info.x", "0" },
5444 { "main.button.info.y", "192" },
5445 { "main.button.game.x", "0" },
5446 { "main.button.game.y", "224" },
5447 { "main.button.setup.x", "0" },
5448 { "main.button.setup.y", "256" },
5449 { "main.button.quit.x", "0" },
5450 { "main.button.quit.y", "288" },
5452 { "main.button.prev_level.x", "320" },
5453 { "main.button.prev_level.y", "96" },
5454 { "main.button.next_level.x", "448" },
5455 { "main.button.next_level.y", "96" },
5457 { "main.text.name.x", "-1" },
5458 { "main.text.name.y", "-1" },
5459 { "main.text.name.width", "-1" },
5460 { "main.text.name.height", "-1" },
5461 { "main.text.name.align", "left" },
5462 { "main.text.name.valign", "top" },
5463 { "main.text.name.font", "font.menu_1" },
5464 { "main.text.levels.x", "-1" },
5465 { "main.text.levels.y", "-1" },
5466 { "main.text.levels.width", "-1" },
5467 { "main.text.levels.height", "-1" },
5468 { "main.text.levels.align", "left" },
5469 { "main.text.levels.valign", "top" },
5470 { "main.text.levels.font", "font.menu_1" },
5471 { "main.text.scores.x", "-1" },
5472 { "main.text.scores.y", "-1" },
5473 { "main.text.scores.width", "-1" },
5474 { "main.text.scores.height", "-1" },
5475 { "main.text.scores.align", "left" },
5476 { "main.text.scores.valign", "top" },
5477 { "main.text.scores.font", "font.menu_1" },
5478 { "main.text.editor.x", "-1" },
5479 { "main.text.editor.y", "-1" },
5480 { "main.text.editor.width", "-1" },
5481 { "main.text.editor.height", "-1" },
5482 { "main.text.editor.align", "left" },
5483 { "main.text.editor.valign", "top" },
5484 { "main.text.editor.font", "font.menu_1" },
5485 { "main.text.info.x", "-1" },
5486 { "main.text.info.y", "-1" },
5487 { "main.text.info.width", "-1" },
5488 { "main.text.info.height", "-1" },
5489 { "main.text.info.align", "left" },
5490 { "main.text.info.valign", "top" },
5491 { "main.text.info.font", "font.menu_1" },
5492 { "main.text.game.x", "-1" },
5493 { "main.text.game.y", "-1" },
5494 { "main.text.game.width", "-1" },
5495 { "main.text.game.height", "-1" },
5496 { "main.text.game.align", "left" },
5497 { "main.text.game.valign", "top" },
5498 { "main.text.game.font", "font.menu_1" },
5499 { "main.text.setup.x", "-1" },
5500 { "main.text.setup.y", "-1" },
5501 { "main.text.setup.width", "-1" },
5502 { "main.text.setup.height", "-1" },
5503 { "main.text.setup.align", "left" },
5504 { "main.text.setup.valign", "top" },
5505 { "main.text.setup.font", "font.menu_1" },
5506 { "main.text.quit.x", "-1" },
5507 { "main.text.quit.y", "-1" },
5508 { "main.text.quit.width", "-1" },
5509 { "main.text.quit.height", "-1" },
5510 { "main.text.quit.align", "left" },
5511 { "main.text.quit.valign", "top" },
5512 { "main.text.quit.font", "font.menu_1" },
5514 { "main.text.first_level.x", "488" },
5515 { "main.text.first_level.y", "98" },
5516 { "main.text.first_level.align", "left" },
5517 { "main.text.first_level.valign", "top" },
5518 { "main.text.first_level.digits", "3" },
5519 { "main.text.first_level.font", "font.text_3" },
5520 { "main.text.last_level.x", "488" },
5521 { "main.text.last_level.y", "112" },
5522 { "main.text.last_level.align", "left" },
5523 { "main.text.last_level.valign", "top" },
5524 { "main.text.last_level.digits", "3" },
5525 { "main.text.last_level.font", "font.text_3" },
5526 { "main.text.level_number.x", "352" },
5527 { "main.text.level_number.y", "96" },
5528 { "main.text.level_number.align", "left" },
5529 { "main.text.level_number.valign", "top" },
5530 { "main.text.level_number.digits", "3" },
5531 { "main.text.level_number.font", "font.value_1" },
5532 { "main.text.level_info_1.x", "272" },
5533 { "main.text.level_info_1.y", "352" },
5534 { "main.text.level_info_1.align", "center" },
5535 { "main.text.level_info_1.valign", "top" },
5536 { "main.text.level_info_1.chars", "-1" },
5537 { "main.text.level_info_1.font", "font.text_1" },
5538 { "main.text.level_info_2.x", "272" },
5539 { "main.text.level_info_2.y", "523" },
5540 { "main.text.level_info_2.align", "center" },
5541 { "main.text.level_info_2.valign", "top" },
5542 { "main.text.level_info_2.chars", "-1" },
5543 { "main.text.level_info_2.font", "font.text_2" },
5544 { "main.text.level_info_2.font_header", "font.text_4" },
5545 { "main.text.level_name.x", "-1" },
5546 { "main.text.level_name.y", "-1" },
5547 { "main.text.level_name.align", "left" },
5548 { "main.text.level_name.valign", "top" },
5549 { "main.text.level_name.chars", "-1" },
5550 { "main.text.level_name.font", "font.text_2" },
5551 { "main.text.level_author.x", "-1" },
5552 { "main.text.level_author.y", "-1" },
5553 { "main.text.level_author.align", "left" },
5554 { "main.text.level_author.valign", "top" },
5555 { "main.text.level_author.chars", "-1" },
5556 { "main.text.level_author.font", "font.text_2" },
5557 { "main.text.level_year.x", "-1" },
5558 { "main.text.level_year.y", "-1" },
5559 { "main.text.level_year.align", "left" },
5560 { "main.text.level_year.valign", "top" },
5561 { "main.text.level_year.digits", "-1" },
5562 { "main.text.level_year.font", "font.text_2" },
5563 { "main.text.level_imported_from.x", "-1" },
5564 { "main.text.level_imported_from.y", "-1" },
5565 { "main.text.level_imported_from.align", "left" },
5566 { "main.text.level_imported_from.valign", "top" },
5567 { "main.text.level_imported_from.chars", "-1" },
5568 { "main.text.level_imported_from.font", "font.text_2" },
5569 { "main.text.level_imported_by.x", "-1" },
5570 { "main.text.level_imported_by.y", "-1" },
5571 { "main.text.level_imported_by.align", "left" },
5572 { "main.text.level_imported_by.valign", "top" },
5573 { "main.text.level_imported_by.chars", "-1" },
5574 { "main.text.level_imported_by.font", "font.text_2" },
5575 { "main.text.level_tested_by.x", "-1" },
5576 { "main.text.level_tested_by.y", "-1" },
5577 { "main.text.level_tested_by.align", "left" },
5578 { "main.text.level_tested_by.valign", "top" },
5579 { "main.text.level_tested_by.chars", "-1" },
5580 { "main.text.level_tested_by.font", "font.text_2" },
5581 { "main.text.title_1.x", "272" },
5582 { "main.text.title_1.y", "8" },
5583 { "main.text.title_1.align", "center" },
5584 { "main.text.title_1.valign", "top" },
5585 { "main.text.title_1.font", "font.title_1" },
5586 { "main.text.title_2.x", "272" },
5587 { "main.text.title_2.y", "46" },
5588 { "main.text.title_2.align", "center" },
5589 { "main.text.title_2.valign", "top" },
5590 { "main.text.title_2.font", "font.title_2" },
5591 { "main.text.title_3.x", "272" },
5592 { "main.text.title_3.y", "326" },
5593 { "main.text.title_3.align", "center" },
5594 { "main.text.title_3.valign", "top" },
5595 { "main.text.title_3.font", "font.title_2" },
5597 { "main.input.name.x", "-1" },
5598 { "main.input.name.y", "-1" },
5599 { "main.input.name.align", "left" },
5600 { "main.input.name.valign", "top" },
5601 { "main.input.name.font", "font.input_1" },
5603 { "preview.x", "272" },
5604 { "preview.y", "380" },
5605 { "preview.align", "center" },
5606 { "preview.valign", "top" },
5607 { "preview.xsize", "66" },
5608 { "preview.ysize", "34" },
5609 { "preview.xoffset", "0" },
5610 { "preview.yoffset", "0" },
5611 { "preview.tile_size", "4" },
5612 { "preview.step_offset", "1" },
5613 { "preview.step_delay", "50" },
5614 { "preview.anim_mode", "default" },
5616 { "door_1.width", "-1" },
5617 { "door_1.height", "-1" },
5618 { "door_1.step_offset", "2" },
5619 { "door_1.step_delay", "10" },
5620 { "door_1.anim_mode", "default" },
5622 { "door_2.width", "-1" },
5623 { "door_2.height", "-1" },
5624 { "door_2.step_offset", "2" },
5625 { "door_2.step_delay", "10" },
5626 { "door_2.anim_mode", "default" },
5628 { "game.panel.level_number.x", "51" },
5629 { "game.panel.level_number.y", "20" },
5630 { "game.panel.level_number.align", "center" },
5631 { "game.panel.level_number.valign", "top" },
5632 { "game.panel.level_number.digits", "-1" },
5633 { "game.panel.level_number.font", "font.text_2" },
5634 { "game.panel.level_number.font_narrow", "font.text_1" },
5635 { "game.panel.level_number.draw_masked", "true" },
5636 { "game.panel.level_number.draw_order", "0" },
5638 { "game.panel.gems.x", "50" },
5639 { "game.panel.gems.y", "54" },
5640 { "game.panel.gems.align", "center" },
5641 { "game.panel.gems.valign", "top" },
5642 { "game.panel.gems.digits", "3" },
5643 { "game.panel.gems.font", "font.text_2" },
5644 { "game.panel.gems.draw_masked", "true" },
5645 { "game.panel.gems.draw_order", "0" },
5647 { "game.panel.inventory_count.x", "50" },
5648 { "game.panel.inventory_count.y", "89" },
5649 { "game.panel.inventory_count.align", "center" },
5650 { "game.panel.inventory_count.valign", "top" },
5651 { "game.panel.inventory_count.digits", "3" },
5652 { "game.panel.inventory_count.font", "font.text_2" },
5653 { "game.panel.inventory_count.draw_masked", "true" },
5654 { "game.panel.inventory_count.draw_order", "0" },
5656 { "game.panel.inventory_first_1.x", "-1" },
5657 { "game.panel.inventory_first_1.y", "-1" },
5658 { "game.panel.inventory_first_1.tile_size", "16" },
5659 { "game.panel.inventory_first_1.draw_masked", "false" },
5660 { "game.panel.inventory_first_1.draw_order", "0" },
5661 { "game.panel.inventory_first_2.x", "-1" },
5662 { "game.panel.inventory_first_2.y", "-1" },
5663 { "game.panel.inventory_first_2.tile_size", "16" },
5664 { "game.panel.inventory_first_2.draw_masked", "false" },
5665 { "game.panel.inventory_first_2.draw_order", "0" },
5666 { "game.panel.inventory_first_3.x", "-1" },
5667 { "game.panel.inventory_first_3.y", "-1" },
5668 { "game.panel.inventory_first_3.tile_size", "16" },
5669 { "game.panel.inventory_first_3.draw_masked", "false" },
5670 { "game.panel.inventory_first_3.draw_order", "0" },
5671 { "game.panel.inventory_first_4.x", "-1" },
5672 { "game.panel.inventory_first_4.y", "-1" },
5673 { "game.panel.inventory_first_4.tile_size", "16" },
5674 { "game.panel.inventory_first_4.draw_masked", "false" },
5675 { "game.panel.inventory_first_4.draw_order", "0" },
5676 { "game.panel.inventory_first_5.x", "-1" },
5677 { "game.panel.inventory_first_5.y", "-1" },
5678 { "game.panel.inventory_first_5.tile_size", "16" },
5679 { "game.panel.inventory_first_5.draw_masked", "false" },
5680 { "game.panel.inventory_first_5.draw_order", "0" },
5681 { "game.panel.inventory_first_6.x", "-1" },
5682 { "game.panel.inventory_first_6.y", "-1" },
5683 { "game.panel.inventory_first_6.tile_size", "16" },
5684 { "game.panel.inventory_first_6.draw_masked", "false" },
5685 { "game.panel.inventory_first_6.draw_order", "0" },
5686 { "game.panel.inventory_first_7.x", "-1" },
5687 { "game.panel.inventory_first_7.y", "-1" },
5688 { "game.panel.inventory_first_7.tile_size", "16" },
5689 { "game.panel.inventory_first_7.draw_masked", "false" },
5690 { "game.panel.inventory_first_7.draw_order", "0" },
5691 { "game.panel.inventory_first_8.x", "-1" },
5692 { "game.panel.inventory_first_8.y", "-1" },
5693 { "game.panel.inventory_first_8.tile_size", "16" },
5694 { "game.panel.inventory_first_8.draw_masked", "false" },
5695 { "game.panel.inventory_first_8.draw_order", "0" },
5697 { "game.panel.inventory_last_1.x", "-1" },
5698 { "game.panel.inventory_last_1.y", "-1" },
5699 { "game.panel.inventory_last_1.tile_size", "16" },
5700 { "game.panel.inventory_last_1.draw_masked", "false" },
5701 { "game.panel.inventory_last_1.draw_order", "0" },
5702 { "game.panel.inventory_last_2.x", "-1" },
5703 { "game.panel.inventory_last_2.y", "-1" },
5704 { "game.panel.inventory_last_2.tile_size", "16" },
5705 { "game.panel.inventory_last_2.draw_masked", "false" },
5706 { "game.panel.inventory_last_2.draw_order", "0" },
5707 { "game.panel.inventory_last_3.x", "-1" },
5708 { "game.panel.inventory_last_3.y", "-1" },
5709 { "game.panel.inventory_last_3.tile_size", "16" },
5710 { "game.panel.inventory_last_3.draw_masked", "false" },
5711 { "game.panel.inventory_last_3.draw_order", "0" },
5712 { "game.panel.inventory_last_4.x", "-1" },
5713 { "game.panel.inventory_last_4.y", "-1" },
5714 { "game.panel.inventory_last_4.tile_size", "16" },
5715 { "game.panel.inventory_last_4.draw_masked", "false" },
5716 { "game.panel.inventory_last_4.draw_order", "0" },
5717 { "game.panel.inventory_last_5.x", "-1" },
5718 { "game.panel.inventory_last_5.y", "-1" },
5719 { "game.panel.inventory_last_5.tile_size", "16" },
5720 { "game.panel.inventory_last_5.draw_masked", "false" },
5721 { "game.panel.inventory_last_5.draw_order", "0" },
5722 { "game.panel.inventory_last_6.x", "-1" },
5723 { "game.panel.inventory_last_6.y", "-1" },
5724 { "game.panel.inventory_last_6.tile_size", "16" },
5725 { "game.panel.inventory_last_6.draw_masked", "false" },
5726 { "game.panel.inventory_last_6.draw_order", "0" },
5727 { "game.panel.inventory_last_7.x", "-1" },
5728 { "game.panel.inventory_last_7.y", "-1" },
5729 { "game.panel.inventory_last_7.tile_size", "16" },
5730 { "game.panel.inventory_last_7.draw_masked", "false" },
5731 { "game.panel.inventory_last_7.draw_order", "0" },
5732 { "game.panel.inventory_last_8.x", "-1" },
5733 { "game.panel.inventory_last_8.y", "-1" },
5734 { "game.panel.inventory_last_8.tile_size", "16" },
5735 { "game.panel.inventory_last_8.draw_masked", "false" },
5736 { "game.panel.inventory_last_8.draw_order", "0" },
5738 { "game.panel.key_1.x", "18" },
5739 { "game.panel.key_1.y", "123" },
5740 { "game.panel.key_1.tile_size", "16" },
5741 { "game.panel.key_1.draw_masked", "false" },
5742 { "game.panel.key_1.draw_order", "0" },
5743 { "game.panel.key_2.x", "34" },
5744 { "game.panel.key_2.y", "123" },
5745 { "game.panel.key_2.tile_size", "16" },
5746 { "game.panel.key_2.draw_masked", "false" },
5747 { "game.panel.key_2.draw_order", "0" },
5748 { "game.panel.key_3.x", "50" },
5749 { "game.panel.key_3.y", "123" },
5750 { "game.panel.key_3.tile_size", "16" },
5751 { "game.panel.key_3.draw_masked", "false" },
5752 { "game.panel.key_3.draw_order", "0" },
5753 { "game.panel.key_4.x", "66" },
5754 { "game.panel.key_4.y", "123" },
5755 { "game.panel.key_4.tile_size", "16" },
5756 { "game.panel.key_4.draw_masked", "false" },
5757 { "game.panel.key_4.draw_order", "0" },
5758 { "game.panel.key_5.x", "-1" },
5759 { "game.panel.key_5.y", "-1" },
5760 { "game.panel.key_5.tile_size", "16" },
5761 { "game.panel.key_5.draw_masked", "false" },
5762 { "game.panel.key_5.draw_order", "0" },
5763 { "game.panel.key_6.x", "-1" },
5764 { "game.panel.key_6.y", "-1" },
5765 { "game.panel.key_6.tile_size", "16" },
5766 { "game.panel.key_6.draw_masked", "false" },
5767 { "game.panel.key_6.draw_order", "0" },
5768 { "game.panel.key_7.x", "-1" },
5769 { "game.panel.key_7.y", "-1" },
5770 { "game.panel.key_7.tile_size", "16" },
5771 { "game.panel.key_7.draw_masked", "false" },
5772 { "game.panel.key_7.draw_order", "0" },
5773 { "game.panel.key_8.x", "-1" },
5774 { "game.panel.key_8.y", "-1" },
5775 { "game.panel.key_8.tile_size", "16" },
5776 { "game.panel.key_8.draw_masked", "false" },
5777 { "game.panel.key_8.draw_order", "0" },
5778 { "game.panel.key_white.x", "-1" },
5779 { "game.panel.key_white.y", "-1" },
5780 { "game.panel.key_white.tile_size", "16" },
5781 { "game.panel.key_white.draw_masked", "false" },
5782 { "game.panel.key_white.draw_order", "0" },
5783 { "game.panel.key_white_count.x", "-1" },
5784 { "game.panel.key_white_count.y", "-1" },
5785 { "game.panel.key_white_count.align", "left" },
5786 { "game.panel.key_white_count.valign", "top" },
5787 { "game.panel.key_white_count.digits", "-1" },
5788 { "game.panel.key_white_count.font", "font.text_2" },
5789 { "game.panel.key_white_count.draw_masked", "true" },
5790 { "game.panel.key_white_count.draw_order", "0" },
5792 { "game.panel.score.x", "50" },
5793 { "game.panel.score.y", "159" },
5794 { "game.panel.score.align", "center" },
5795 { "game.panel.score.valign", "top" },
5796 { "game.panel.score.digits", "5" },
5797 { "game.panel.score.font", "font.text_2" },
5798 { "game.panel.score.draw_masked", "true" },
5799 { "game.panel.score.draw_order", "0" },
5801 { "game.panel.highscore.x", "-1" },
5802 { "game.panel.highscore.y", "-1" },
5803 { "game.panel.highscore.align", "left" },
5804 { "game.panel.highscore.valign", "top" },
5805 { "game.panel.highscore.digits", "5" },
5806 { "game.panel.highscore.font", "font.text_2" },
5807 { "game.panel.highscore.draw_masked", "true" },
5808 { "game.panel.highscore.draw_order", "0" },
5810 { "game.panel.time.x", "50" },
5811 { "game.panel.time.y", "194" },
5812 { "game.panel.time.align", "center" },
5813 { "game.panel.time.valign", "top" },
5814 { "game.panel.time.digits", "-1" },
5815 { "game.panel.time.font", "font.text_2" },
5816 { "game.panel.time.font_narrow", "font.text_1" },
5817 { "game.panel.time.draw_masked", "true" },
5818 { "game.panel.time.draw_order", "0" },
5820 { "game.panel.time_hh.x", "-1" },
5821 { "game.panel.time_hh.y", "-1" },
5822 { "game.panel.time_hh.align", "left" },
5823 { "game.panel.time_hh.valign", "top" },
5824 { "game.panel.time_hh.digits", "2" },
5825 { "game.panel.time_hh.font", "font.text_2" },
5826 { "game.panel.time_hh.draw_masked", "true" },
5827 { "game.panel.time_hh.draw_order", "0" },
5828 { "game.panel.time_mm.x", "-1" },
5829 { "game.panel.time_mm.y", "-1" },
5830 { "game.panel.time_mm.align", "left" },
5831 { "game.panel.time_mm.valign", "top" },
5832 { "game.panel.time_mm.digits", "2" },
5833 { "game.panel.time_mm.font", "font.text_2" },
5834 { "game.panel.time_mm.draw_masked", "true" },
5835 { "game.panel.time_mm.draw_order", "0" },
5836 { "game.panel.time_ss.x", "-1" },
5837 { "game.panel.time_ss.y", "-1" },
5838 { "game.panel.time_ss.align", "left" },
5839 { "game.panel.time_ss.valign", "top" },
5840 { "game.panel.time_ss.digits", "2" },
5841 { "game.panel.time_ss.font", "font.text_2" },
5842 { "game.panel.time_ss.draw_masked", "true" },
5843 { "game.panel.time_ss.draw_order", "0" },
5845 { "game.panel.frame.x", "-1" },
5846 { "game.panel.frame.y", "-1" },
5847 { "game.panel.frame.align", "left" },
5848 { "game.panel.frame.valign", "top" },
5849 { "game.panel.frame.digits", "-1" },
5850 { "game.panel.frame.font", "font.text_2" },
5851 { "game.panel.frame.draw_masked", "true" },
5852 { "game.panel.frame.draw_order", "0" },
5854 { "game.panel.shield_normal.x", "-1" },
5855 { "game.panel.shield_normal.y", "-1" },
5856 { "game.panel.shield_normal.tile_size", "16" },
5857 { "game.panel.shield_normal.draw_masked", "false" },
5858 { "game.panel.shield_normal.draw_order", "0" },
5859 { "game.panel.shield_normal_time.x", "-1" },
5860 { "game.panel.shield_normal_time.y", "-1" },
5861 { "game.panel.shield_normal_time.align", "left" },
5862 { "game.panel.shield_normal_time.valign", "top" },
5863 { "game.panel.shield_normal_time.digits", "-1" },
5864 { "game.panel.shield_normal_time.font", "font.text_2" },
5865 { "game.panel.shield_normal_time.draw_masked", "true" },
5866 { "game.panel.shield_normal_time.draw_order", "0" },
5867 { "game.panel.shield_deadly.x", "-1" },
5868 { "game.panel.shield_deadly.y", "-1" },
5869 { "game.panel.shield_deadly.tile_size", "16" },
5870 { "game.panel.shield_deadly.draw_masked", "false" },
5871 { "game.panel.shield_deadly.draw_order", "0" },
5872 { "game.panel.shield_deadly_time.x", "-1" },
5873 { "game.panel.shield_deadly_time.y", "-1" },
5874 { "game.panel.shield_deadly_time.align", "left" },
5875 { "game.panel.shield_deadly_time.valign", "top" },
5876 { "game.panel.shield_deadly_time.digits", "-1" },
5877 { "game.panel.shield_deadly_time.font", "font.text_2" },
5878 { "game.panel.shield_deadly_time.draw_masked","true" },
5879 { "game.panel.shield_deadly_time.draw_order", "0" },
5881 { "game.panel.exit.x", "-1" },
5882 { "game.panel.exit.y", "-1" },
5883 { "game.panel.exit.tile_size", "16" },
5884 { "game.panel.exit.draw_masked", "false" },
5885 { "game.panel.exit.draw_order", "0" },
5887 { "game.panel.emc_magic_ball.x", "-1" },
5888 { "game.panel.emc_magic_ball.y", "-1" },
5889 { "game.panel.emc_magic_ball.tile_size", "16" },
5890 { "game.panel.emc_magic_ball.draw_masked", "false" },
5891 { "game.panel.emc_magic_ball.draw_order", "0" },
5892 { "game.panel.emc_magic_ball_switch.x", "-1" },
5893 { "game.panel.emc_magic_ball_switch.y", "-1" },
5894 { "game.panel.emc_magic_ball_switch.tile_size", "16" },
5895 { "game.panel.emc_magic_ball_switch.draw_masked", "true" },
5896 { "game.panel.emc_magic_ball_switch.draw_order", "0" },
5898 { "game.panel.light_switch.x", "-1" },
5899 { "game.panel.light_switch.y", "-1" },
5900 { "game.panel.light_switch.tile_size", "16" },
5901 { "game.panel.light_switch.draw_masked", "false" },
5902 { "game.panel.light_switch.draw_order", "0" },
5903 { "game.panel.light_switch_time.x", "-1" },
5904 { "game.panel.light_switch_time.y", "-1" },
5905 { "game.panel.light_switch_time.align", "left" },
5906 { "game.panel.light_switch_time.valign", "top" },
5907 { "game.panel.light_switch_time.digits", "-1" },
5908 { "game.panel.light_switch_time.font", "font.text_2" },
5909 { "game.panel.light_switch_time.draw_masked", "true" },
5910 { "game.panel.light_switch_time.draw_order", "0" },
5912 { "game.panel.timegate_switch.x", "-1" },
5913 { "game.panel.timegate_switch.y", "-1" },
5914 { "game.panel.timegate_switch.tile_size", "16" },
5915 { "game.panel.timegate_switch.draw_masked", "false" },
5916 { "game.panel.timegate_switch.draw_order", "0" },
5917 { "game.panel.timegate_switch_time.x", "-1" },
5918 { "game.panel.timegate_switch_time.y", "-1" },
5919 { "game.panel.timegate_switch_time.align", "left" },
5920 { "game.panel.timegate_switch_time.valign", "top" },
5921 { "game.panel.timegate_switch_time.digits", "-1" },
5922 { "game.panel.timegate_switch_time.font", "font.text_2" },
5923 { "game.panel.timegate_switch_time.draw_masked", "true" },
5924 { "game.panel.timegate_switch_time.draw_order", "0" },
5926 { "game.panel.switchgate_switch.x", "-1" },
5927 { "game.panel.switchgate_switch.y", "-1" },
5928 { "game.panel.switchgate_switch.tile_size", "16" },
5929 { "game.panel.switchgate_switch.draw_masked", "false" },
5930 { "game.panel.switchgate_switch.draw_order", "0" },
5932 { "game.panel.emc_lenses.x", "-1" },
5933 { "game.panel.emc_lenses.y", "-1" },
5934 { "game.panel.emc_lenses.tile_size", "16" },
5935 { "game.panel.emc_lenses.draw_masked", "false" },
5936 { "game.panel.emc_lenses.draw_order", "0" },
5937 { "game.panel.emc_lenses_time.x", "-1" },
5938 { "game.panel.emc_lenses_time.y", "-1" },
5939 { "game.panel.emc_lenses_time.align", "left" },
5940 { "game.panel.emc_lenses_time.valign", "top" },
5941 { "game.panel.emc_lenses_time.digits", "-1" },
5942 { "game.panel.emc_lenses_time.font", "font.text_2" },
5943 { "game.panel.emc_lenses_time.draw_masked", "true" },
5944 { "game.panel.emc_lenses_time.draw_order", "0" },
5946 { "game.panel.emc_magnifier.x", "-1" },
5947 { "game.panel.emc_magnifier.y", "-1" },
5948 { "game.panel.emc_magnifier.tile_size", "16" },
5949 { "game.panel.emc_magnifier.draw_masked", "false" },
5950 { "game.panel.emc_magnifier.draw_order", "0" },
5951 { "game.panel.emc_magnifier_time.x", "-1" },
5952 { "game.panel.emc_magnifier_time.y", "-1" },
5953 { "game.panel.emc_magnifier_time.align", "left" },
5954 { "game.panel.emc_magnifier_time.valign", "top" },
5955 { "game.panel.emc_magnifier_time.digits", "-1" },
5956 { "game.panel.emc_magnifier_time.font", "font.text_2" },
5957 { "game.panel.emc_magnifier_time.draw_masked","true" },
5958 { "game.panel.emc_magnifier_time.draw_order", "0" },
5960 { "game.panel.balloon_switch.x", "-1" },
5961 { "game.panel.balloon_switch.y", "-1" },
5962 { "game.panel.balloon_switch.tile_size", "16" },
5963 { "game.panel.balloon_switch.draw_masked", "false" },
5964 { "game.panel.balloon_switch.draw_order", "0" },
5966 { "game.panel.dynabomb_number.x", "-1" },
5967 { "game.panel.dynabomb_number.y", "-1" },
5968 { "game.panel.dynabomb_number.align", "left" },
5969 { "game.panel.dynabomb_number.valign", "top" },
5970 { "game.panel.dynabomb_number.digits", "-1" },
5971 { "game.panel.dynabomb_number.font", "font.text_2" },
5972 { "game.panel.dynabomb_number.draw_masked", "true" },
5973 { "game.panel.dynabomb_number.draw_order", "0" },
5974 { "game.panel.dynabomb_size.x", "-1" },
5975 { "game.panel.dynabomb_size.y", "-1" },
5976 { "game.panel.dynabomb_size.align", "left" },
5977 { "game.panel.dynabomb_size.valign", "top" },
5978 { "game.panel.dynabomb_size.digits", "-1" },
5979 { "game.panel.dynabomb_size.font", "font.text_2" },
5980 { "game.panel.dynabomb_size.draw_masked", "true" },
5981 { "game.panel.dynabomb_size.draw_order", "0" },
5982 { "game.panel.dynabomb_power.x", "-1" },
5983 { "game.panel.dynabomb_power.y", "-1" },
5984 { "game.panel.dynabomb_power.tile_size", "16" },
5985 { "game.panel.dynabomb_power.draw_masked", "false" },
5986 { "game.panel.dynabomb_power.draw_order", "0" },
5988 { "game.panel.penguins.x", "-1" },
5989 { "game.panel.penguins.y", "-1" },
5990 { "game.panel.penguins.align", "left" },
5991 { "game.panel.penguins.valign", "top" },
5992 { "game.panel.penguins.digits", "-1" },
5993 { "game.panel.penguins.font", "font.text_2" },
5994 { "game.panel.penguins.draw_masked", "true" },
5995 { "game.panel.penguins.draw_order", "0" },
5997 { "game.panel.sokoban_objects.x", "-1" },
5998 { "game.panel.sokoban_objects.y", "-1" },
5999 { "game.panel.sokoban_objects.align", "left" },
6000 { "game.panel.sokoban_objects.valign", "top" },
6001 { "game.panel.sokoban_objects.digits", "-1" },
6002 { "game.panel.sokoban_objects.font", "font.text_2" },
6003 { "game.panel.sokoban_objects.draw_masked", "true" },
6004 { "game.panel.sokoban_objects.draw_order", "0" },
6005 { "game.panel.sokoban_fields.x", "-1" },
6006 { "game.panel.sokoban_fields.y", "-1" },
6007 { "game.panel.sokoban_fields.align", "left" },
6008 { "game.panel.sokoban_fields.valign", "top" },
6009 { "game.panel.sokoban_fields.digits", "-1" },
6010 { "game.panel.sokoban_fields.font", "font.text_2" },
6011 { "game.panel.sokoban_fields.draw_masked", "true" },
6012 { "game.panel.sokoban_fields.draw_order", "0" },
6014 { "game.panel.robot_wheel.x", "-1" },
6015 { "game.panel.robot_wheel.y", "-1" },
6016 { "game.panel.robot_wheel.tile_size", "16" },
6017 { "game.panel.robot_wheel.draw_masked", "false" },
6018 { "game.panel.robot_wheel.draw_order", "0" },
6020 { "game.panel.conveyor_belt_1.x", "-1" },
6021 { "game.panel.conveyor_belt_1.y", "-1" },
6022 { "game.panel.conveyor_belt_1.tile_size", "16" },
6023 { "game.panel.conveyor_belt_1.draw_masked", "false" },
6024 { "game.panel.conveyor_belt_1.draw_order", "0" },
6025 { "game.panel.conveyor_belt_1_switch.x", "-1" },
6026 { "game.panel.conveyor_belt_1_switch.y", "-1" },
6027 { "game.panel.conveyor_belt_1_switch.tile_size", "16" },
6028 { "game.panel.conveyor_belt_1_switch.draw_masked", "false" },
6029 { "game.panel.conveyor_belt_1_switch.draw_order", "0" },
6030 { "game.panel.conveyor_belt_2.x", "-1" },
6031 { "game.panel.conveyor_belt_2.y", "-1" },
6032 { "game.panel.conveyor_belt_2.tile_size", "16" },
6033 { "game.panel.conveyor_belt_2.draw_masked", "false" },
6034 { "game.panel.conveyor_belt_2.draw_order", "0" },
6035 { "game.panel.conveyor_belt_2_switch.x", "-1" },
6036 { "game.panel.conveyor_belt_2_switch.y", "-1" },
6037 { "game.panel.conveyor_belt_2_switch.tile_size", "16" },
6038 { "game.panel.conveyor_belt_2_switch.draw_masked", "false" },
6039 { "game.panel.conveyor_belt_2_switch.draw_order", "0" },
6040 { "game.panel.conveyor_belt_3.x", "-1" },
6041 { "game.panel.conveyor_belt_3.y", "-1" },
6042 { "game.panel.conveyor_belt_3.tile_size", "16" },
6043 { "game.panel.conveyor_belt_3.draw_masked", "false" },
6044 { "game.panel.conveyor_belt_3.draw_order", "0" },
6045 { "game.panel.conveyor_belt_3_switch.x", "-1" },
6046 { "game.panel.conveyor_belt_3_switch.y", "-1" },
6047 { "game.panel.conveyor_belt_3_switch.tile_size", "16" },
6048 { "game.panel.conveyor_belt_3_switch.draw_masked", "false" },
6049 { "game.panel.conveyor_belt_3_switch.draw_order", "0" },
6050 { "game.panel.conveyor_belt_4.x", "-1" },
6051 { "game.panel.conveyor_belt_4.y", "-1" },
6052 { "game.panel.conveyor_belt_4.tile_size", "16" },
6053 { "game.panel.conveyor_belt_4.draw_masked", "false" },
6054 { "game.panel.conveyor_belt_4.draw_order", "0" },
6055 { "game.panel.conveyor_belt_4_switch.x", "-1" },
6056 { "game.panel.conveyor_belt_4_switch.y", "-1" },
6057 { "game.panel.conveyor_belt_4_switch.tile_size", "16" },
6058 { "game.panel.conveyor_belt_4_switch.draw_masked", "false" },
6059 { "game.panel.conveyor_belt_4_switch.draw_order", "0" },
6061 { "game.panel.magic_wall.x", "-1" },
6062 { "game.panel.magic_wall.y", "-1" },
6063 { "game.panel.magic_wall.tile_size", "16" },
6064 { "game.panel.magic_wall.draw_masked", "false" },
6065 { "game.panel.magic_wall.draw_order", "0" },
6066 { "game.panel.magic_wall_time.x", "-1" },
6067 { "game.panel.magic_wall_time.y", "-1" },
6068 { "game.panel.magic_wall_time.align", "left" },
6069 { "game.panel.magic_wall_time.valign", "top" },
6070 { "game.panel.magic_wall_time.digits", "-1" },
6071 { "game.panel.magic_wall_time.font", "font.text_2" },
6072 { "game.panel.magic_wall_time.draw_masked", "true" },
6073 { "game.panel.magic_wall_time.draw_order", "0" },
6075 { "game.panel.gravity_state.x", "-1" },
6076 { "game.panel.gravity_state.y", "-1" },
6077 { "game.panel.gravity_state.align", "left" },
6078 { "game.panel.gravity_state.valign", "top" },
6079 { "game.panel.gravity_state.chars", "-1" },
6080 { "game.panel.gravity_state.font", "font.text_1" },
6081 { "game.panel.gravity_state.font_active", "font.text_2" },
6082 { "game.panel.gravity_state.draw_masked", "true" },
6083 { "game.panel.gravity_state.draw_order", "0" },
6085 { "game.panel.graphic_1.x", "-1" },
6086 { "game.panel.graphic_1.y", "-1" },
6087 { "game.panel.graphic_1.draw_masked", "true" },
6088 { "game.panel.graphic_1.draw_order", "0" },
6089 { "game.panel.graphic_2.x", "-1" },
6090 { "game.panel.graphic_2.y", "-1" },
6091 { "game.panel.graphic_2.draw_masked", "true" },
6092 { "game.panel.graphic_2.draw_order", "0" },
6093 { "game.panel.graphic_3.x", "-1" },
6094 { "game.panel.graphic_3.y", "-1" },
6095 { "game.panel.graphic_3.draw_masked", "true" },
6096 { "game.panel.graphic_3.draw_order", "0" },
6097 { "game.panel.graphic_4.x", "-1" },
6098 { "game.panel.graphic_4.y", "-1" },
6099 { "game.panel.graphic_4.draw_masked", "true" },
6100 { "game.panel.graphic_4.draw_order", "0" },
6101 { "game.panel.graphic_5.x", "-1" },
6102 { "game.panel.graphic_5.y", "-1" },
6103 { "game.panel.graphic_5.draw_masked", "true" },
6104 { "game.panel.graphic_5.draw_order", "0" },
6105 { "game.panel.graphic_6.x", "-1" },
6106 { "game.panel.graphic_6.y", "-1" },
6107 { "game.panel.graphic_6.draw_masked", "true" },
6108 { "game.panel.graphic_6.draw_order", "0" },
6109 { "game.panel.graphic_7.x", "-1" },
6110 { "game.panel.graphic_7.y", "-1" },
6111 { "game.panel.graphic_7.draw_masked", "true" },
6112 { "game.panel.graphic_7.draw_order", "0" },
6113 { "game.panel.graphic_8.x", "-1" },
6114 { "game.panel.graphic_8.y", "-1" },
6115 { "game.panel.graphic_8.draw_masked", "true" },
6116 { "game.panel.graphic_8.draw_order", "0" },
6118 { "game.panel.element_1.x", "-1" },
6119 { "game.panel.element_1.y", "-1" },
6120 { "game.panel.element_1.tile_size", "16" },
6121 { "game.panel.element_1.element", "empty_space" },
6122 { "game.panel.element_1.draw_masked", "false" },
6123 { "game.panel.element_1.draw_order", "0" },
6124 { "game.panel.element_1_count.x", "-1" },
6125 { "game.panel.element_1_count.y", "-1" },
6126 { "game.panel.element_1_count.align", "left" },
6127 { "game.panel.element_1_count.valign", "top" },
6128 { "game.panel.element_1_count.digits", "-1" },
6129 { "game.panel.element_1_count.font", "font.text_2" },
6130 { "game.panel.element_1_count.element", "empty_space" },
6131 { "game.panel.element_1_count.draw_masked", "true" },
6132 { "game.panel.element_1_count.draw_order", "0" },
6133 { "game.panel.element_2.x", "-1" },
6134 { "game.panel.element_2.y", "-1" },
6135 { "game.panel.element_2.tile_size", "16" },
6136 { "game.panel.element_2.element", "empty_space" },
6137 { "game.panel.element_2.draw_masked", "false" },
6138 { "game.panel.element_2.draw_order", "0" },
6139 { "game.panel.element_2_count.x", "-1" },
6140 { "game.panel.element_2_count.y", "-1" },
6141 { "game.panel.element_2_count.align", "left" },
6142 { "game.panel.element_2_count.valign", "top" },
6143 { "game.panel.element_2_count.digits", "-1" },
6144 { "game.panel.element_2_count.font", "font.text_2" },
6145 { "game.panel.element_2_count.element", "empty_space" },
6146 { "game.panel.element_2_count.draw_masked", "true" },
6147 { "game.panel.element_2_count.draw_order", "0" },
6148 { "game.panel.element_3.x", "-1" },
6149 { "game.panel.element_3.y", "-1" },
6150 { "game.panel.element_3.tile_size", "16" },
6151 { "game.panel.element_3.element", "empty_space" },
6152 { "game.panel.element_3.draw_masked", "false" },
6153 { "game.panel.element_3.draw_order", "0" },
6154 { "game.panel.element_3_count.x", "-1" },
6155 { "game.panel.element_3_count.y", "-1" },
6156 { "game.panel.element_3_count.align", "left" },
6157 { "game.panel.element_3_count.valign", "top" },
6158 { "game.panel.element_3_count.digits", "-1" },
6159 { "game.panel.element_3_count.font", "font.text_2" },
6160 { "game.panel.element_3_count.element", "empty_space" },
6161 { "game.panel.element_3_count.draw_masked", "true" },
6162 { "game.panel.element_3_count.draw_order", "0" },
6163 { "game.panel.element_4.x", "-1" },
6164 { "game.panel.element_4.y", "-1" },
6165 { "game.panel.element_4.tile_size", "16" },
6166 { "game.panel.element_4.element", "empty_space" },
6167 { "game.panel.element_4.draw_masked", "false" },
6168 { "game.panel.element_4.draw_order", "0" },
6169 { "game.panel.element_4_count.x", "-1" },
6170 { "game.panel.element_4_count.y", "-1" },
6171 { "game.panel.element_4_count.align", "left" },
6172 { "game.panel.element_4_count.valign", "top" },
6173 { "game.panel.element_4_count.digits", "-1" },
6174 { "game.panel.element_4_count.font", "font.text_2" },
6175 { "game.panel.element_4_count.element", "empty_space" },
6176 { "game.panel.element_4_count.draw_masked", "true" },
6177 { "game.panel.element_4_count.draw_order", "0" },
6178 { "game.panel.element_5.x", "-1" },
6179 { "game.panel.element_5.y", "-1" },
6180 { "game.panel.element_5.tile_size", "16" },
6181 { "game.panel.element_5.element", "empty_space" },
6182 { "game.panel.element_5.draw_masked", "false" },
6183 { "game.panel.element_5.draw_order", "0" },
6184 { "game.panel.element_5_count.x", "-1" },
6185 { "game.panel.element_5_count.y", "-1" },
6186 { "game.panel.element_5_count.align", "left" },
6187 { "game.panel.element_5_count.valign", "top" },
6188 { "game.panel.element_5_count.digits", "-1" },
6189 { "game.panel.element_5_count.font", "font.text_2" },
6190 { "game.panel.element_5_count.element", "empty_space" },
6191 { "game.panel.element_5_count.draw_masked", "true" },
6192 { "game.panel.element_5_count.draw_order", "0" },
6193 { "game.panel.element_6.x", "-1" },
6194 { "game.panel.element_6.y", "-1" },
6195 { "game.panel.element_6.tile_size", "16" },
6196 { "game.panel.element_6.element", "empty_space" },
6197 { "game.panel.element_6.draw_masked", "false" },
6198 { "game.panel.element_6.draw_order", "0" },
6199 { "game.panel.element_6_count.x", "-1" },
6200 { "game.panel.element_6_count.y", "-1" },
6201 { "game.panel.element_6_count.align", "left" },
6202 { "game.panel.element_6_count.valign", "top" },
6203 { "game.panel.element_6_count.digits", "-1" },
6204 { "game.panel.element_6_count.font", "font.text_2" },
6205 { "game.panel.element_6_count.element", "empty_space" },
6206 { "game.panel.element_6_count.draw_masked", "true" },
6207 { "game.panel.element_6_count.draw_order", "0" },
6208 { "game.panel.element_7.x", "-1" },
6209 { "game.panel.element_7.y", "-1" },
6210 { "game.panel.element_7.tile_size", "16" },
6211 { "game.panel.element_7.element", "empty_space" },
6212 { "game.panel.element_7.draw_masked", "false" },
6213 { "game.panel.element_7.draw_order", "0" },
6214 { "game.panel.element_7_count.x", "-1" },
6215 { "game.panel.element_7_count.y", "-1" },
6216 { "game.panel.element_7_count.align", "left" },
6217 { "game.panel.element_7_count.valign", "top" },
6218 { "game.panel.element_7_count.digits", "-1" },
6219 { "game.panel.element_7_count.font", "font.text_2" },
6220 { "game.panel.element_7_count.element", "empty_space" },
6221 { "game.panel.element_7_count.draw_masked", "true" },
6222 { "game.panel.element_7_count.draw_order", "0" },
6223 { "game.panel.element_8.x", "-1" },
6224 { "game.panel.element_8.y", "-1" },
6225 { "game.panel.element_8.tile_size", "16" },
6226 { "game.panel.element_8.element", "empty_space" },
6227 { "game.panel.element_8.draw_masked", "false" },
6228 { "game.panel.element_8.draw_order", "0" },
6229 { "game.panel.element_8_count.x", "-1" },
6230 { "game.panel.element_8_count.y", "-1" },
6231 { "game.panel.element_8_count.align", "left" },
6232 { "game.panel.element_8_count.valign", "top" },
6233 { "game.panel.element_8_count.digits", "-1" },
6234 { "game.panel.element_8_count.font", "font.text_2" },
6235 { "game.panel.element_8_count.element", "empty_space" },
6236 { "game.panel.element_8_count.draw_masked", "true" },
6237 { "game.panel.element_8_count.draw_order", "0" },
6239 { "game.panel.ce_score_1.x", "-1" },
6240 { "game.panel.ce_score_1.y", "-1" },
6241 { "game.panel.ce_score_1.align", "left" },
6242 { "game.panel.ce_score_1.valign", "top" },
6243 { "game.panel.ce_score_1.digits", "-1" },
6244 { "game.panel.ce_score_1.font", "font.text_2" },
6245 { "game.panel.ce_score_1.element", "empty_space" },
6246 { "game.panel.ce_score_1.draw_masked", "true" },
6247 { "game.panel.ce_score_1.draw_order", "0" },
6248 { "game.panel.ce_score_1_element.x", "-1" },
6249 { "game.panel.ce_score_1_element.y", "-1" },
6250 { "game.panel.ce_score_1_element.tile_size", "16" },
6251 { "game.panel.ce_score_1_element.element", "empty_space" },
6252 { "game.panel.ce_score_1_element.draw_masked","false" },
6253 { "game.panel.ce_score_1_element.draw_order", "0" },
6254 { "game.panel.ce_score_2.x", "-1" },
6255 { "game.panel.ce_score_2.y", "-1" },
6256 { "game.panel.ce_score_2.align", "left" },
6257 { "game.panel.ce_score_2.valign", "top" },
6258 { "game.panel.ce_score_2.digits", "-1" },
6259 { "game.panel.ce_score_2.font", "font.text_2" },
6260 { "game.panel.ce_score_2.element", "empty_space" },
6261 { "game.panel.ce_score_2.draw_masked", "true" },
6262 { "game.panel.ce_score_2.draw_order", "0" },
6263 { "game.panel.ce_score_2_element.x", "-1" },
6264 { "game.panel.ce_score_2_element.y", "-1" },
6265 { "game.panel.ce_score_2_element.tile_size", "16" },
6266 { "game.panel.ce_score_2_element.element", "empty_space" },
6267 { "game.panel.ce_score_2_element.draw_masked","false" },
6268 { "game.panel.ce_score_2_element.draw_order", "0" },
6269 { "game.panel.ce_score_3.x", "-1" },
6270 { "game.panel.ce_score_3.y", "-1" },
6271 { "game.panel.ce_score_3.align", "left" },
6272 { "game.panel.ce_score_3.valign", "top" },
6273 { "game.panel.ce_score_3.digits", "-1" },
6274 { "game.panel.ce_score_3.font", "font.text_2" },
6275 { "game.panel.ce_score_3.element", "empty_space" },
6276 { "game.panel.ce_score_3.draw_masked", "true" },
6277 { "game.panel.ce_score_3.draw_order", "0" },
6278 { "game.panel.ce_score_3_element.x", "-1" },
6279 { "game.panel.ce_score_3_element.y", "-1" },
6280 { "game.panel.ce_score_3_element.tile_size", "16" },
6281 { "game.panel.ce_score_3_element.element", "empty_space" },
6282 { "game.panel.ce_score_3_element.draw_masked","false" },
6283 { "game.panel.ce_score_3_element.draw_order", "0" },
6284 { "game.panel.ce_score_4.x", "-1" },
6285 { "game.panel.ce_score_4.y", "-1" },
6286 { "game.panel.ce_score_4.align", "left" },
6287 { "game.panel.ce_score_4.valign", "top" },
6288 { "game.panel.ce_score_4.digits", "-1" },
6289 { "game.panel.ce_score_4.font", "font.text_2" },
6290 { "game.panel.ce_score_4.element", "empty_space" },
6291 { "game.panel.ce_score_4.draw_masked", "true" },
6292 { "game.panel.ce_score_4.draw_order", "0" },
6293 { "game.panel.ce_score_4_element.x", "-1" },
6294 { "game.panel.ce_score_4_element.y", "-1" },
6295 { "game.panel.ce_score_4_element.tile_size", "16" },
6296 { "game.panel.ce_score_4_element.element", "empty_space" },
6297 { "game.panel.ce_score_4_element.draw_masked","false" },
6298 { "game.panel.ce_score_4_element.draw_order", "0" },
6299 { "game.panel.ce_score_5.x", "-1" },
6300 { "game.panel.ce_score_5.y", "-1" },
6301 { "game.panel.ce_score_5.align", "left" },
6302 { "game.panel.ce_score_5.valign", "top" },
6303 { "game.panel.ce_score_5.digits", "-1" },
6304 { "game.panel.ce_score_5.font", "font.text_2" },
6305 { "game.panel.ce_score_5.element", "empty_space" },
6306 { "game.panel.ce_score_5.draw_masked", "true" },
6307 { "game.panel.ce_score_5.draw_order", "0" },
6308 { "game.panel.ce_score_5_element.x", "-1" },
6309 { "game.panel.ce_score_5_element.y", "-1" },
6310 { "game.panel.ce_score_5_element.tile_size", "16" },
6311 { "game.panel.ce_score_5_element.element", "empty_space" },
6312 { "game.panel.ce_score_5_element.draw_masked","false" },
6313 { "game.panel.ce_score_5_element.draw_order", "0" },
6314 { "game.panel.ce_score_6.x", "-1" },
6315 { "game.panel.ce_score_6.y", "-1" },
6316 { "game.panel.ce_score_6.align", "left" },
6317 { "game.panel.ce_score_6.valign", "top" },
6318 { "game.panel.ce_score_6.digits", "-1" },
6319 { "game.panel.ce_score_6.font", "font.text_2" },
6320 { "game.panel.ce_score_6.element", "empty_space" },
6321 { "game.panel.ce_score_6.draw_masked", "true" },
6322 { "game.panel.ce_score_6.draw_order", "0" },
6323 { "game.panel.ce_score_6_element.x", "-1" },
6324 { "game.panel.ce_score_6_element.y", "-1" },
6325 { "game.panel.ce_score_6_element.tile_size", "16" },
6326 { "game.panel.ce_score_6_element.element", "empty_space" },
6327 { "game.panel.ce_score_6_element.draw_masked","false" },
6328 { "game.panel.ce_score_6_element.draw_order", "0" },
6329 { "game.panel.ce_score_7.x", "-1" },
6330 { "game.panel.ce_score_7.y", "-1" },
6331 { "game.panel.ce_score_7.align", "left" },
6332 { "game.panel.ce_score_7.valign", "top" },
6333 { "game.panel.ce_score_7.digits", "-1" },
6334 { "game.panel.ce_score_7.font", "font.text_2" },
6335 { "game.panel.ce_score_7.element", "empty_space" },
6336 { "game.panel.ce_score_7.draw_masked", "true" },
6337 { "game.panel.ce_score_7.draw_order", "0" },
6338 { "game.panel.ce_score_7_element.x", "-1" },
6339 { "game.panel.ce_score_7_element.y", "-1" },
6340 { "game.panel.ce_score_7_element.tile_size", "16" },
6341 { "game.panel.ce_score_7_element.element", "empty_space" },
6342 { "game.panel.ce_score_7_element.draw_masked","false" },
6343 { "game.panel.ce_score_7_element.draw_order", "0" },
6344 { "game.panel.ce_score_8.x", "-1" },
6345 { "game.panel.ce_score_8.y", "-1" },
6346 { "game.panel.ce_score_8.align", "left" },
6347 { "game.panel.ce_score_8.valign", "top" },
6348 { "game.panel.ce_score_8.digits", "-1" },
6349 { "game.panel.ce_score_8.font", "font.text_2" },
6350 { "game.panel.ce_score_8.element", "empty_space" },
6351 { "game.panel.ce_score_8.draw_masked", "true" },
6352 { "game.panel.ce_score_8.draw_order", "0" },
6353 { "game.panel.ce_score_8_element.x", "-1" },
6354 { "game.panel.ce_score_8_element.y", "-1" },
6355 { "game.panel.ce_score_8_element.tile_size", "16" },
6356 { "game.panel.ce_score_8_element.element", "empty_space" },
6357 { "game.panel.ce_score_8_element.draw_masked","false" },
6358 { "game.panel.ce_score_8_element.draw_order", "0" },
6360 { "game.panel.player_name.x", "-1" },
6361 { "game.panel.player_name.y", "-1" },
6362 { "game.panel.player_name.align", "left" },
6363 { "game.panel.player_name.valign", "top" },
6364 { "game.panel.player_name.chars", "-1" },
6365 { "game.panel.player_name.font", "font.text_2" },
6366 { "game.panel.player_name.draw_masked", "true" },
6367 { "game.panel.player_name.draw_order", "0" },
6369 { "game.panel.level_name.x", "-1" },
6370 { "game.panel.level_name.y", "-1" },
6371 { "game.panel.level_name.align", "left" },
6372 { "game.panel.level_name.valign", "top" },
6373 { "game.panel.level_name.chars", "-1" },
6374 { "game.panel.level_name.font", "font.text_2" },
6375 { "game.panel.level_name.draw_masked", "true" },
6376 { "game.panel.level_name.draw_order", "0" },
6377 { "game.panel.level_author.x", "-1" },
6378 { "game.panel.level_author.y", "-1" },
6379 { "game.panel.level_author.align", "left" },
6380 { "game.panel.level_author.valign", "top" },
6381 { "game.panel.level_author.chars", "-1" },
6382 { "game.panel.level_author.font", "font.text_2" },
6383 { "game.panel.level_author.draw_masked", "true" },
6384 { "game.panel.level_author.draw_order", "0" },
6386 { "game.button.stop.x", "5" },
6387 { "game.button.stop.y", "215" },
6388 { "game.button.pause.x", "35" },
6389 { "game.button.pause.y", "215" },
6390 { "game.button.play.x", "65" },
6391 { "game.button.play.y", "215" },
6392 { "game.button.sound_music.x", "5" },
6393 { "game.button.sound_music.y", "245" },
6394 { "game.button.sound_loops.x", "35" },
6395 { "game.button.sound_loops.y", "245" },
6396 { "game.button.sound_simple.x", "65" },
6397 { "game.button.sound_simple.y", "245" },
6399 { "game.forced_scroll_delay_value", "-1" },
6400 { "game.use_native_emc_graphics_engine", "false" },
6401 { "game.use_native_sp_graphics_engine", "true" },
6402 { "game.use_masked_pushing", "false" },
6404 { "[player].boring_delay_fixed", "1000" },
6405 { "[player].boring_delay_random", "1000" },
6406 { "[player].sleeping_delay_fixed", "2000" },
6407 { "[player].sleeping_delay_random", "2000" },
6409 { "viewport.window.width", "672" },
6410 { "viewport.window.height", "560" },
6411 { "viewport.playfield.x", "6" },
6412 { "viewport.playfield.y", "6" },
6413 { "viewport.playfield.width", "548" },
6414 { "viewport.playfield.height", "548" },
6415 { "viewport.playfield.border_size", "2" },
6416 { "viewport.playfield.MAIN.x", ARG_DEFAULT },
6417 { "viewport.playfield.MAIN.y", ARG_DEFAULT },
6418 { "viewport.playfield.MAIN.width", ARG_DEFAULT },
6419 { "viewport.playfield.MAIN.height", ARG_DEFAULT },
6420 { "viewport.playfield.MAIN.border_size", ARG_DEFAULT },
6421 { "viewport.playfield.PLAYING.x", ARG_DEFAULT },
6422 { "viewport.playfield.PLAYING.y", ARG_DEFAULT },
6423 { "viewport.playfield.PLAYING.width", ARG_DEFAULT },
6424 { "viewport.playfield.PLAYING.height", ARG_DEFAULT },
6425 { "viewport.playfield.PLAYING.border_size", ARG_DEFAULT },
6426 { "viewport.playfield.EDITOR.x", ARG_DEFAULT },
6427 { "viewport.playfield.EDITOR.y", ARG_DEFAULT },
6428 { "viewport.playfield.EDITOR.width", ARG_DEFAULT },
6429 { "viewport.playfield.EDITOR.height", ARG_DEFAULT },
6430 { "viewport.playfield.EDITOR.border_size", ARG_DEFAULT },
6431 { "viewport.door_1.x", "566" },
6432 { "viewport.door_1.y", "60" },
6433 { "viewport.door_1.MAIN.x", ARG_DEFAULT },
6434 { "viewport.door_1.MAIN.y", ARG_DEFAULT },
6435 { "viewport.door_1.PLAYING.x", ARG_DEFAULT },
6436 { "viewport.door_1.PLAYING.y", ARG_DEFAULT },
6437 { "viewport.door_1.EDITOR.x", ARG_DEFAULT },
6438 { "viewport.door_1.EDITOR.y", ARG_DEFAULT },
6439 { "viewport.door_2.x", "566" },
6440 { "viewport.door_2.y", "400" },
6441 { "viewport.door_2.MAIN.x", ARG_DEFAULT },
6442 { "viewport.door_2.MAIN.y", ARG_DEFAULT },
6443 { "viewport.door_2.PLAYING.x", ARG_DEFAULT },
6444 { "viewport.door_2.PLAYING.y", ARG_DEFAULT },
6445 { "viewport.door_2.EDITOR.x", "566" },
6446 { "viewport.door_2.EDITOR.y", "356" },