1 // ============================================================================
2 // Rocks'n'Diamonds - McDuffin Strikes Back!
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2014 by Artsoft Entertainment
7 // http://www.artsoft.org/
8 // ----------------------------------------------------------------------------
10 // ============================================================================
12 #include "libgame/libgame.h"
16 // List values that are not defined in the configuration file are set to
17 // reliable default values. If that value is GFX_ARG_UNDEFINED, it will
18 // be dynamically determined, using some of the other list values.
20 struct ConfigTypeInfo image_config_suffix[] =
22 { ".x", ARG_UNDEFINED, TYPE_INTEGER },
23 { ".y", ARG_UNDEFINED, TYPE_INTEGER },
24 { ".xpos", ARG_UNDEFINED, TYPE_INTEGER },
25 { ".ypos", ARG_UNDEFINED, TYPE_INTEGER },
26 { ".width", ARG_UNDEFINED, TYPE_INTEGER },
27 { ".height", ARG_UNDEFINED, TYPE_INTEGER },
28 { ".vertical", "false", TYPE_BOOLEAN },
29 { ".offset", ARG_UNDEFINED, TYPE_INTEGER },
30 { ".xoffset", ARG_UNDEFINED, TYPE_INTEGER },
31 { ".yoffset", ARG_UNDEFINED, TYPE_INTEGER },
32 { ".2nd_movement_tile", "false", TYPE_BOOLEAN },
33 { ".2nd_vertical", ARG_UNDEFINED, TYPE_BOOLEAN },
34 { ".2nd_offset", ARG_UNDEFINED, TYPE_INTEGER },
35 { ".2nd_xoffset", ARG_UNDEFINED, TYPE_INTEGER },
36 { ".2nd_yoffset", ARG_UNDEFINED, TYPE_INTEGER },
37 { ".2nd_swap_tiles", ARG_UNDEFINED, TYPE_BOOLEAN },
38 { ".frames", ARG_UNDEFINED, TYPE_INTEGER },
39 { ".frames_per_line", ARG_UNDEFINED, TYPE_INTEGER },
40 { ".start_frame", ARG_UNDEFINED, TYPE_INTEGER },
41 { ".delay", "1", TYPE_INTEGER },
42 { ".anim_mode", ARG_UNDEFINED, TYPE_STRING },
43 { ".global_sync", "false", TYPE_BOOLEAN },
44 { ".crumbled_like", ARG_UNDEFINED, TYPE_ELEMENT },
45 { ".diggable_like", ARG_UNDEFINED, TYPE_ELEMENT },
46 { ".border_size", ARG_UNDEFINED, TYPE_INTEGER },
47 { ".step_offset", "4", TYPE_INTEGER },
48 { ".step_xoffset", ARG_UNDEFINED, TYPE_INTEGER },
49 { ".step_yoffset", ARG_UNDEFINED, 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", ARG_UNDEFINED, TYPE_BOOLEAN },
56 { ".draw_order", ARG_UNDEFINED, TYPE_INTEGER },
57 { ".init_delay_fixed", ARG_UNDEFINED, TYPE_INTEGER },
58 { ".init_delay_random", ARG_UNDEFINED, TYPE_INTEGER },
59 { ".anim_delay_fixed", ARG_UNDEFINED, TYPE_INTEGER },
60 { ".anim_delay_random", ARG_UNDEFINED, TYPE_INTEGER },
61 { ".post_delay_fixed", ARG_UNDEFINED, TYPE_INTEGER },
62 { ".post_delay_random", ARG_UNDEFINED, TYPE_INTEGER },
63 { ".init_event", ARG_UNDEFINED, TYPE_STRING },
64 { ".init_event_action", ARG_UNDEFINED, TYPE_STRING },
65 { ".anim_event", ARG_UNDEFINED, TYPE_STRING },
66 { ".anim_event_action", ARG_UNDEFINED, TYPE_STRING },
67 { ".name", ARG_UNDEFINED, TYPE_STRING },
68 { ".scale_up_factor", ARG_UNDEFINED, TYPE_INTEGER },
69 { ".tile_size", ARG_UNDEFINED, TYPE_INTEGER },
70 { ".clone_from", ARG_UNDEFINED, TYPE_GRAPHIC },
71 { ".fade_mode", ARG_UNDEFINED, TYPE_INTEGER },
72 { ".fade_delay", ARG_UNDEFINED, TYPE_INTEGER },
73 { ".post_delay", ARG_UNDEFINED, TYPE_INTEGER },
74 { ".auto_delay", ARG_UNDEFINED, TYPE_INTEGER },
75 { ".align", ARG_UNDEFINED, TYPE_INTEGER },
76 { ".valign", ARG_UNDEFINED, TYPE_INTEGER },
77 { ".sort_priority", ARG_UNDEFINED, TYPE_INTEGER },
78 { ".class", ARG_UNDEFINED, TYPE_STRING },
79 { ".style", ARG_UNDEFINED, TYPE_STRING },
80 { ".active_xoffset", "0", TYPE_INTEGER },
81 { ".active_yoffset", "0", TYPE_INTEGER },
82 { ".pressed_xoffset", "0", TYPE_INTEGER },
83 { ".pressed_yoffset", "0", TYPE_INTEGER },
88 struct ConfigInfo image_config[] =
90 // ==========================================================================
91 // image definitions for game elements (for in-game and editor graphics)
92 // ==========================================================================
94 // images for Boulder Dash style elements and actions
96 { "bd_wall", "RocksDC.png" },
97 { "bd_wall.xpos", "12" },
98 { "bd_wall.ypos", "9" },
99 { "bd_wall.frames", "1" },
100 { "bd_wall.EDITOR", "RocksDC.png" },
101 { "bd_wall.EDITOR.xpos", "14" },
102 { "bd_wall.EDITOR.ypos", "13" },
104 { "bd_rock", "RocksDC.png" },
105 { "bd_rock.xpos", "12" },
106 { "bd_rock.ypos", "10" },
107 { "bd_rock.frames", "1" },
108 { "bd_rock.EDITOR", "RocksDC.png" },
109 { "bd_rock.EDITOR.xpos", "14" },
110 { "bd_rock.EDITOR.ypos", "14" },
111 { "bd_rock.moving.left", "RocksDC.png" },
112 { "bd_rock.moving.left.xpos", "12" },
113 { "bd_rock.moving.left.ypos", "10" },
114 { "bd_rock.moving.left.frames", "4" },
115 { "bd_rock.moving.left.delay", "2" },
116 { "bd_rock.moving.left.anim_mode", "reverse" },
117 { "bd_rock.moving.right", "RocksDC.png" },
118 { "bd_rock.moving.right.xpos", "12" },
119 { "bd_rock.moving.right.ypos", "10" },
120 { "bd_rock.moving.right.frames", "4" },
121 { "bd_rock.moving.right.start_frame", "1" },
122 { "bd_rock.moving.right.delay", "2" },
123 { "bd_rock.pushing.left", "RocksDC.png" },
124 { "bd_rock.pushing.left.xpos", "12" },
125 { "bd_rock.pushing.left.ypos", "10" },
126 { "bd_rock.pushing.left.frames", "4" },
127 { "bd_rock.pushing.left.delay", "2" },
128 { "bd_rock.pushing.left.anim_mode", "reverse" },
129 { "bd_rock.pushing.right", "RocksDC.png" },
130 { "bd_rock.pushing.right.xpos", "12" },
131 { "bd_rock.pushing.right.ypos", "10" },
132 { "bd_rock.pushing.right.frames", "4" },
133 { "bd_rock.pushing.right.start_frame", "1" },
134 { "bd_rock.pushing.right.delay", "2" },
136 { "bd_diamond", "RocksElements.png" },
137 { "bd_diamond.xpos", "0" },
138 { "bd_diamond.ypos", "10" },
139 { "bd_diamond.frames", "4" },
140 { "bd_diamond.delay", "4" },
141 { "bd_diamond.anim_mode", "reverse" },
142 { "bd_diamond.moving", "RocksElements.png" },
143 { "bd_diamond.moving.xpos", "3" },
144 { "bd_diamond.moving.ypos", "10" },
145 { "bd_diamond.moving.frames", "2" },
146 { "bd_diamond.moving.delay", "4" },
147 { "bd_diamond.falling", "RocksElements.png" },
148 { "bd_diamond.falling.xpos", "3" },
149 { "bd_diamond.falling.ypos", "10" },
150 { "bd_diamond.falling.frames", "2" },
151 { "bd_diamond.falling.delay", "4" },
153 { "bd_magic_wall", "RocksElements.png" },
154 { "bd_magic_wall.xpos", "12" },
155 { "bd_magic_wall.ypos", "10" },
156 { "bd_magic_wall.frames", "1" },
157 { "bd_magic_wall.active", "RocksElements.png" },
158 { "bd_magic_wall.active.xpos", "12" },
159 { "bd_magic_wall.active.ypos", "10" },
160 { "bd_magic_wall.active.frames", "4" },
161 { "bd_magic_wall.active.anim_mode", "reverse" },
162 { "bd_magic_wall.active.delay", "4" },
163 { "bd_magic_wall.active.global_sync", "true" },
164 { "bd_magic_wall.filling", "RocksElements.png" },
165 { "bd_magic_wall.filling.xpos", "12" },
166 { "bd_magic_wall.filling.ypos", "10" },
167 { "bd_magic_wall.filling.frames", "4" },
168 { "bd_magic_wall.filling.anim_mode", "reverse" },
169 { "bd_magic_wall.filling.delay", "4" },
170 { "bd_magic_wall.filling.global_sync", "true" },
171 { "bd_magic_wall_full", "RocksElements.png" },
172 { "bd_magic_wall_full.xpos", "12" },
173 { "bd_magic_wall_full.ypos", "10" },
174 { "bd_magic_wall_full.frames", "4" },
175 { "bd_magic_wall_full.anim_mode", "reverse" },
176 { "bd_magic_wall_full.delay", "4" },
177 { "bd_magic_wall_full.global_sync", "true" },
178 { "bd_magic_wall.emptying", "RocksElements.png" },
179 { "bd_magic_wall.emptying.xpos", "12" },
180 { "bd_magic_wall.emptying.ypos", "10" },
181 { "bd_magic_wall.emptying.frames", "4" },
182 { "bd_magic_wall.emptying.anim_mode", "reverse" },
183 { "bd_magic_wall.emptying.delay", "4" },
184 { "bd_magic_wall.emptying.global_sync", "true" },
185 { "bd_magic_wall_dead", "RocksElements.png" },
186 { "bd_magic_wall_dead.xpos", "12" },
187 { "bd_magic_wall_dead.ypos", "10" },
188 { "bd_magic_wall_dead.frames", "1" },
190 { "bd_amoeba", "RocksElements.png" },
191 { "bd_amoeba.xpos", "8" },
192 { "bd_amoeba.ypos", "6" },
193 { "bd_amoeba.frames", "4" },
194 { "bd_amoeba.delay", "1000000" },
195 { "bd_amoeba.anim_mode", "random" },
196 { "bd_amoeba.EDITOR", "RocksElements.png" },
197 { "bd_amoeba.EDITOR.xpos", "8" },
198 { "bd_amoeba.EDITOR.ypos", "7" },
200 { "bd_butterfly", "RocksElements.png" },
201 { "bd_butterfly.xpos", "4" },
202 { "bd_butterfly.ypos", "12" },
203 { "bd_butterfly.frames", "2" },
204 { "bd_butterfly.anim_mode", "pingpong" },
205 { "bd_butterfly.delay", "4" },
206 { "bd_butterfly.global_sync", "true" },
207 { "bd_butterfly.right", "RocksElements.png" },
208 { "bd_butterfly.right.xpos", "4" },
209 { "bd_butterfly.right.ypos", "12" },
210 { "bd_butterfly.right.frames", "2" },
211 { "bd_butterfly.right.anim_mode", "pingpong" },
212 { "bd_butterfly.right.delay", "4" },
213 { "bd_butterfly.right.global_sync", "true" },
214 { "bd_butterfly.right.EDITOR", "RocksElements.png" },
215 { "bd_butterfly.right.EDITOR.xpos", "8" },
216 { "bd_butterfly.right.EDITOR.ypos", "12" },
217 { "bd_butterfly.up", "RocksElements.png" },
218 { "bd_butterfly.up.xpos", "4" },
219 { "bd_butterfly.up.ypos", "12" },
220 { "bd_butterfly.up.frames", "2" },
221 { "bd_butterfly.up.anim_mode", "pingpong" },
222 { "bd_butterfly.up.delay", "4" },
223 { "bd_butterfly.up.global_sync", "true" },
224 { "bd_butterfly.up.EDITOR", "RocksElements.png" },
225 { "bd_butterfly.up.EDITOR.xpos", "9" },
226 { "bd_butterfly.up.EDITOR.ypos", "12" },
227 { "bd_butterfly.left", "RocksElements.png" },
228 { "bd_butterfly.left.xpos", "4" },
229 { "bd_butterfly.left.ypos", "12" },
230 { "bd_butterfly.left.frames", "2" },
231 { "bd_butterfly.left.anim_mode", "pingpong" },
232 { "bd_butterfly.left.delay", "4" },
233 { "bd_butterfly.left.global_sync", "true" },
234 { "bd_butterfly.left.EDITOR", "RocksElements.png" },
235 { "bd_butterfly.left.EDITOR.xpos", "10" },
236 { "bd_butterfly.left.EDITOR.ypos", "12" },
237 { "bd_butterfly.down", "RocksElements.png" },
238 { "bd_butterfly.down.xpos", "4" },
239 { "bd_butterfly.down.ypos", "12" },
240 { "bd_butterfly.down.frames", "2" },
241 { "bd_butterfly.down.anim_mode", "pingpong" },
242 { "bd_butterfly.down.delay", "4" },
243 { "bd_butterfly.down.global_sync", "true" },
244 { "bd_butterfly.down.EDITOR", "RocksElements.png" },
245 { "bd_butterfly.down.EDITOR.xpos", "11" },
246 { "bd_butterfly.down.EDITOR.ypos", "12" },
248 { "bd_firefly", "RocksElements.png" },
249 { "bd_firefly.xpos", "6" },
250 { "bd_firefly.ypos", "12" },
251 { "bd_firefly.frames", "2" },
252 { "bd_firefly.anim_mode", "pingpong" },
253 { "bd_firefly.delay", "4" },
254 { "bd_firefly.global_sync", "true" },
255 { "bd_firefly.right", "RocksElements.png" },
256 { "bd_firefly.right.xpos", "6" },
257 { "bd_firefly.right.ypos", "12" },
258 { "bd_firefly.right.frames", "2" },
259 { "bd_firefly.right.anim_mode", "pingpong" },
260 { "bd_firefly.right.delay", "4" },
261 { "bd_firefly.right.global_sync", "true" },
262 { "bd_firefly.right.EDITOR", "RocksElements.png" },
263 { "bd_firefly.right.EDITOR.xpos", "12" },
264 { "bd_firefly.right.EDITOR.ypos", "12" },
265 { "bd_firefly.up", "RocksElements.png" },
266 { "bd_firefly.up.xpos", "6" },
267 { "bd_firefly.up.ypos", "12" },
268 { "bd_firefly.up.frames", "2" },
269 { "bd_firefly.up.anim_mode", "pingpong" },
270 { "bd_firefly.up.delay", "4" },
271 { "bd_firefly.up.global_sync", "true" },
272 { "bd_firefly.up.EDITOR", "RocksElements.png" },
273 { "bd_firefly.up.EDITOR.xpos", "13" },
274 { "bd_firefly.up.EDITOR.ypos", "12" },
275 { "bd_firefly.left", "RocksElements.png" },
276 { "bd_firefly.left.xpos", "6" },
277 { "bd_firefly.left.ypos", "12" },
278 { "bd_firefly.left.frames", "2" },
279 { "bd_firefly.left.anim_mode", "pingpong" },
280 { "bd_firefly.left.delay", "4" },
281 { "bd_firefly.left.global_sync", "true" },
282 { "bd_firefly.left.EDITOR", "RocksElements.png" },
283 { "bd_firefly.left.EDITOR.xpos", "14" },
284 { "bd_firefly.left.EDITOR.ypos", "12" },
285 { "bd_firefly.down", "RocksElements.png" },
286 { "bd_firefly.down.xpos", "6" },
287 { "bd_firefly.down.ypos", "12" },
288 { "bd_firefly.down.frames", "2" },
289 { "bd_firefly.down.anim_mode", "pingpong" },
290 { "bd_firefly.down.delay", "4" },
291 { "bd_firefly.down.global_sync", "true" },
292 { "bd_firefly.down.EDITOR", "RocksElements.png" },
293 { "bd_firefly.down.EDITOR.xpos", "15" },
294 { "bd_firefly.down.EDITOR.ypos", "12" },
296 // images for Supaplex style elements and actions
298 { "[sp_default].exploding", "RocksSP.png" },
299 { "[sp_default].exploding.xpos", "8" },
300 { "[sp_default].exploding.ypos", "3" },
301 { "[sp_default].exploding.frames", "8" },
302 { "[sp_default].exploding.delay", "4" },
303 { "[sp_default].exploding.anim_mode", "linear" },
305 { "sp_zonk", "RocksSP.png" },
306 { "sp_zonk.xpos", "1" },
307 { "sp_zonk.ypos", "0" },
308 { "sp_zonk.frames", "1" },
309 { "sp_zonk.moving.left", "RocksSP.png" },
310 { "sp_zonk.moving.left.xpos", "0" },
311 { "sp_zonk.moving.left.ypos", "6" },
312 { "sp_zonk.moving.left.frames", "4" },
313 { "sp_zonk.moving.left.delay", "1" },
314 { "sp_zonk.moving.left.anim_mode", "reverse" },
315 { "sp_zonk.moving.right", "RocksSP.png" },
316 { "sp_zonk.moving.right.xpos", "0" },
317 { "sp_zonk.moving.right.ypos", "6" },
318 { "sp_zonk.moving.right.frames", "4" },
319 { "sp_zonk.moving.right.start_frame", "1" },
320 { "sp_zonk.moving.right.delay", "1" },
321 { "sp_zonk.pushing.left", "RocksSP.png" },
322 { "sp_zonk.pushing.left.xpos", "0" },
323 { "sp_zonk.pushing.left.ypos", "6" },
324 { "sp_zonk.pushing.left.frames", "4" },
325 { "sp_zonk.pushing.left.delay", "1" },
326 { "sp_zonk.pushing.left.anim_mode", "reverse" },
327 { "sp_zonk.pushing.right", "RocksSP.png" },
328 { "sp_zonk.pushing.right.xpos", "0" },
329 { "sp_zonk.pushing.right.ypos", "6" },
330 { "sp_zonk.pushing.right.frames", "4" },
331 { "sp_zonk.pushing.right.start_frame", "1" },
332 { "sp_zonk.pushing.right.delay", "1" },
334 { "sp_base", "RocksSP.png" },
335 { "sp_base.xpos", "2" },
336 { "sp_base.ypos", "0" },
337 { "sp_base.frames", "1" },
338 { "sp_base.digging", "RocksSP.png" },
339 { "sp_base.digging.xpos", "2" },
340 { "sp_base.digging.ypos", "0" },
341 { "sp_base.digging.frames", "1" },
342 { "sp_base.digging.anim_mode", "opaque_player" },
343 { "sp_base.snapping", "RocksSP.png" },
344 { "sp_base.snapping.xpos", "8" },
345 { "sp_base.snapping.ypos", "2" },
346 { "sp_base.snapping.frames", "7" },
347 { "sp_base.snapping.anim_mode", "linear" },
349 { "sp_murphy", "RocksSP.png" },
350 { "sp_murphy.xpos", "3" },
351 { "sp_murphy.ypos", "0" },
352 { "sp_murphy.frames", "1" },
353 { "sp_murphy.moving.left", "RocksSP.png" },
354 { "sp_murphy.moving.left.xpos", "8" },
355 { "sp_murphy.moving.left.ypos", "0" },
356 { "sp_murphy.moving.left.frames", "3" },
357 { "sp_murphy.moving.left.anim_mode", "pingpong" },
358 { "sp_murphy.moving.left.delay", "2" },
359 { "sp_murphy.moving.left.start_frame", "1" },
360 { "sp_murphy.moving.right", "RocksSP.png" },
361 { "sp_murphy.moving.right.xpos", "11" },
362 { "sp_murphy.moving.right.ypos", "0" },
363 { "sp_murphy.moving.right.frames", "3" },
364 { "sp_murphy.moving.right.anim_mode", "pingpong" },
365 { "sp_murphy.moving.right.delay", "2" },
366 { "sp_murphy.moving.right.start_frame", "1" },
367 { "sp_murphy.digging.left", "RocksSP.png" },
368 { "sp_murphy.digging.left.xpos", "8" },
369 { "sp_murphy.digging.left.ypos", "0" },
370 { "sp_murphy.digging.left.frames", "3" },
371 { "sp_murphy.digging.left.anim_mode", "pingpong" },
372 { "sp_murphy.digging.left.delay", "2" },
373 { "sp_murphy.digging.left.start_frame", "1" },
374 { "sp_murphy.digging.right", "RocksSP.png" },
375 { "sp_murphy.digging.right.xpos", "11" },
376 { "sp_murphy.digging.right.ypos", "0" },
377 { "sp_murphy.digging.right.frames", "3" },
378 { "sp_murphy.digging.right.anim_mode", "pingpong" },
379 { "sp_murphy.digging.right.delay", "2" },
380 { "sp_murphy.digging.right.start_frame", "1" },
381 { "sp_murphy.collecting.left", "RocksSP.png" },
382 { "sp_murphy.collecting.left.xpos", "8" },
383 { "sp_murphy.collecting.left.ypos", "0" },
384 { "sp_murphy.collecting.left.frames", "3" },
385 { "sp_murphy.collecting.left.anim_mode", "pingpong" },
386 { "sp_murphy.collecting.left.delay", "2" },
387 { "sp_murphy.collecting.left.start_frame", "1" },
388 { "sp_murphy.collecting.right", "RocksSP.png" },
389 { "sp_murphy.collecting.right.xpos", "11" },
390 { "sp_murphy.collecting.right.ypos", "0" },
391 { "sp_murphy.collecting.right.frames", "3" },
392 { "sp_murphy.collecting.right.anim_mode", "pingpong" },
393 { "sp_murphy.collecting.right.delay", "2" },
394 { "sp_murphy.collecting.right.start_frame", "1" },
395 { "sp_murphy.pushing.left", "RocksSP.png" },
396 { "sp_murphy.pushing.left.xpos", "11" },
397 { "sp_murphy.pushing.left.ypos", "1" },
398 { "sp_murphy.pushing.left.frames", "1" },
399 { "sp_murphy.pushing.right", "RocksSP.png" },
400 { "sp_murphy.pushing.right.xpos", "10" },
401 { "sp_murphy.pushing.right.ypos", "1" },
402 { "sp_murphy.pushing.right.frames", "1" },
403 { "sp_murphy.snapping.left", "RocksSP.png" },
404 { "sp_murphy.snapping.left.xpos", "9" },
405 { "sp_murphy.snapping.left.ypos", "1" },
406 { "sp_murphy.snapping.left.frames", "1" },
407 { "sp_murphy.snapping.right", "RocksSP.png" },
408 { "sp_murphy.snapping.right.xpos", "8" },
409 { "sp_murphy.snapping.right.ypos", "1" },
410 { "sp_murphy.snapping.right.frames", "1" },
411 { "sp_murphy.snapping.up", "RocksSP.png" },
412 { "sp_murphy.snapping.up.xpos", "14" },
413 { "sp_murphy.snapping.up.ypos", "0" },
414 { "sp_murphy.snapping.up.frames", "1" },
415 { "sp_murphy.snapping.down", "RocksSP.png" },
416 { "sp_murphy.snapping.down.xpos", "15" },
417 { "sp_murphy.snapping.down.ypos", "0" },
418 { "sp_murphy.snapping.down.frames", "1" },
419 { "sp_murphy.boring", "RocksSP.png" },
420 { "sp_murphy.boring.xpos", "11" },
421 { "sp_murphy.boring.ypos", "12" },
422 { "sp_murphy.boring.frames", "1" },
423 { "sp_murphy.boring[1]", "RocksSP.png" },
424 { "sp_murphy.boring[1].xpos", "0" },
425 { "sp_murphy.boring[1].ypos", "12" },
426 { "sp_murphy.boring[1].frames", "12" },
427 { "sp_murphy.boring[1].delay", "10" },
428 { "sp_murphy.boring[1].anim_mode", "linear" },
429 { "sp_murphy.boring[1].anim_delay_fixed", "120" },
430 { "sp_murphy.boring[1].anim_delay_random", "0" },
431 { "sp_murphy.boring[1].post_delay_fixed", "500" },
432 { "sp_murphy.boring[1].post_delay_random", "500" },
433 { "sp_murphy.sleeping.left", "RocksSP.png" },
434 { "sp_murphy.sleeping.left.xpos", "4" },
435 { "sp_murphy.sleeping.left.ypos", "9" },
436 { "sp_murphy.sleeping.left.frames", "3" },
437 { "sp_murphy.sleeping.left.delay", "100" },
438 { "sp_murphy.sleeping.left.anim_mode", "linear,reverse" },
439 { "sp_murphy.sleeping.right", "RocksSP.png" },
440 { "sp_murphy.sleeping.right.xpos", "13" },
441 { "sp_murphy.sleeping.right.ypos", "12" },
442 { "sp_murphy.sleeping.right.frames", "3" },
443 { "sp_murphy.sleeping.right.delay", "100" },
444 { "sp_murphy.sleeping.right.anim_mode", "linear" },
445 { "sp_murphy.dropping", "RocksSP.png" },
446 { "sp_murphy.dropping.xpos", "11" },
447 { "sp_murphy.dropping.ypos", "12" },
448 { "sp_murphy.dropping.frames", "1" },
449 { "sp_murphy.shrinking", "RocksSP.png" },
450 { "sp_murphy.shrinking.xpos", "8" },
451 { "sp_murphy.shrinking.ypos", "14" },
452 { "sp_murphy.shrinking.frames", "8" },
453 { "sp_murphy.shrinking.delay", "4" },
454 { "sp_murphy.shrinking.anim_mode", "linear" },
456 { "sp_murphy_clone", "RocksSP.png" },
457 { "sp_murphy_clone.xpos", "3" },
458 { "sp_murphy_clone.ypos", "0" },
459 { "sp_murphy_clone.frames", "1" },
461 { "sp_infotron", "RocksSP.png" },
462 { "sp_infotron.xpos", "4" },
463 { "sp_infotron.ypos", "0" },
464 { "sp_infotron.frames", "1" },
465 { "sp_infotron.EDITOR", "RocksSP.png" },
466 { "sp_infotron.EDITOR.xpos", "8" },
467 { "sp_infotron.EDITOR.ypos", "11" },
468 { "sp_infotron.moving.left", "RocksSP.png" },
469 { "sp_infotron.moving.left.xpos", "8" },
470 { "sp_infotron.moving.left.ypos", "13" },
471 { "sp_infotron.moving.left.frames", "8" },
472 { "sp_infotron.moving.right", "RocksSP.png" },
473 { "sp_infotron.moving.right.xpos", "8" },
474 { "sp_infotron.moving.right.ypos", "13" },
475 { "sp_infotron.moving.right.frames", "8" },
476 { "sp_infotron.moving.right.start_frame", "6" },
477 { "sp_infotron.moving.right.anim_mode", "reverse" },
478 { "sp_infotron.collecting", "RocksSP.png" },
479 { "sp_infotron.collecting.xpos", "8" },
480 { "sp_infotron.collecting.ypos", "7" },
481 { "sp_infotron.collecting.frames", "8" },
482 { "sp_infotron.collecting.anim_mode", "linear" },
484 { "sp_chip_single", "RocksSP.png" },
485 { "sp_chip_single.xpos", "5" },
486 { "sp_chip_single.ypos", "0" },
487 { "sp_chip_single.frames", "1" },
488 { "sp_chip_left", "RocksSP.png" },
489 { "sp_chip_left.xpos", "2" },
490 { "sp_chip_left.ypos", "3" },
491 { "sp_chip_left.frames", "1" },
492 { "sp_chip_right", "RocksSP.png" },
493 { "sp_chip_right.xpos", "3" },
494 { "sp_chip_right.ypos", "3" },
495 { "sp_chip_right.frames", "1" },
496 { "sp_chip_top", "RocksSP.png" },
497 { "sp_chip_top.xpos", "6" },
498 { "sp_chip_top.ypos", "4" },
499 { "sp_chip_top.frames", "1" },
500 { "sp_chip_bottom", "RocksSP.png" },
501 { "sp_chip_bottom.xpos", "7" },
502 { "sp_chip_bottom.ypos", "4" },
503 { "sp_chip_bottom.frames", "1" },
505 { "sp_hardware_gray", "RocksSP.png" },
506 { "sp_hardware_gray.xpos", "6" },
507 { "sp_hardware_gray.ypos", "0" },
508 { "sp_hardware_gray.frames", "1" },
509 { "sp_hardware_green", "RocksSP.png" },
510 { "sp_hardware_green.xpos", "5" },
511 { "sp_hardware_green.ypos", "3" },
512 { "sp_hardware_green.frames", "1" },
513 { "sp_hardware_blue", "RocksSP.png" },
514 { "sp_hardware_blue.xpos", "6" },
515 { "sp_hardware_blue.ypos", "3" },
516 { "sp_hardware_blue.frames", "1" },
517 { "sp_hardware_red", "RocksSP.png" },
518 { "sp_hardware_red.xpos", "7" },
519 { "sp_hardware_red.ypos", "3" },
520 { "sp_hardware_red.frames", "1" },
521 { "sp_hardware_yellow", "RocksSP.png" },
522 { "sp_hardware_yellow.xpos", "0" },
523 { "sp_hardware_yellow.ypos", "4" },
524 { "sp_hardware_yellow.frames", "1" },
526 { "sp_exit_closed", "RocksSP.png" },
527 { "sp_exit_closed.xpos", "7" },
528 { "sp_exit_closed.ypos", "0" },
529 { "sp_exit_closed.frames", "1" },
530 { "sp_exit.opening", "RocksSP.png" },
531 { "sp_exit.opening.xpos", "7" },
532 { "sp_exit.opening.ypos", "0" },
533 { "sp_exit.opening.frames", "1" },
534 { "sp_exit_open", "RocksSP.png" },
535 { "sp_exit_open.xpos", "7" },
536 { "sp_exit_open.ypos", "0" },
537 { "sp_exit_open.frames", "1" },
538 { "sp_exit.closing", "RocksSP.png" },
539 { "sp_exit.closing.xpos", "7" },
540 { "sp_exit.closing.ypos", "0" },
541 { "sp_exit.closing.frames", "1" },
543 { "sp_disk_orange", "RocksSP.png" },
544 { "sp_disk_orange.xpos", "0" },
545 { "sp_disk_orange.ypos", "1" },
546 { "sp_disk_orange.frames", "1" },
548 { "sp_disk_yellow", "RocksSP.png" },
549 { "sp_disk_yellow.xpos", "2" },
550 { "sp_disk_yellow.ypos", "2" },
551 { "sp_disk_yellow.frames", "1" },
553 { "sp_disk_red", "RocksSP.png" },
554 { "sp_disk_red.xpos", "4" },
555 { "sp_disk_red.ypos", "2" },
556 { "sp_disk_red.frames", "1" },
557 { "sp_disk_red.collecting", "RocksSP.png" },
558 { "sp_disk_red.collecting.xpos", "9" },
559 { "sp_disk_red.collecting.ypos", "5" },
560 { "sp_disk_red.collecting.frames", "7" },
561 { "sp_disk_red.collecting.anim_mode", "linear" },
562 { "sp_disk_red.active", "RocksSP.png" },
563 { "sp_disk_red.active.xpos", "4" },
564 { "sp_disk_red.active.ypos", "2" },
565 { "sp_disk_red.active.frames", "1" },
567 { "sp_port_right", "RocksSP.png" },
568 { "sp_port_right.xpos", "1" },
569 { "sp_port_right.ypos", "1" },
570 { "sp_port_right.frames", "1" },
571 { "sp_port_down", "RocksSP.png" },
572 { "sp_port_down.xpos", "2" },
573 { "sp_port_down.ypos", "1" },
574 { "sp_port_down.frames", "1" },
575 { "sp_port_left", "RocksSP.png" },
576 { "sp_port_left.xpos", "3" },
577 { "sp_port_left.ypos", "1" },
578 { "sp_port_left.frames", "1" },
579 { "sp_port_up", "RocksSP.png" },
580 { "sp_port_up.xpos", "4" },
581 { "sp_port_up.ypos", "1" },
582 { "sp_port_up.frames", "1" },
583 { "sp_port_horizontal", "RocksSP.png" },
584 { "sp_port_horizontal.xpos", "6" },
585 { "sp_port_horizontal.ypos", "2" },
586 { "sp_port_horizontal.frames", "1" },
587 { "sp_port_vertical", "RocksSP.png" },
588 { "sp_port_vertical.xpos", "5" },
589 { "sp_port_vertical.ypos", "2" },
590 { "sp_port_vertical.frames", "1" },
591 { "sp_port_any", "RocksSP.png" },
592 { "sp_port_any.xpos", "7" },
593 { "sp_port_any.ypos", "2" },
594 { "sp_port_any.frames", "1" },
595 { "sp_gravity_port_right", "RocksSP.png" },
596 { "sp_gravity_port_right.xpos", "1" },
597 { "sp_gravity_port_right.ypos", "1" },
598 { "sp_gravity_port_right.frames", "1" },
599 { "sp_gravity_port_right.EDITOR", "RocksSP.png" },
600 { "sp_gravity_port_right.EDITOR.xpos", "0" },
601 { "sp_gravity_port_right.EDITOR.ypos", "14" },
602 { "sp_gravity_port_down", "RocksSP.png" },
603 { "sp_gravity_port_down.xpos", "2" },
604 { "sp_gravity_port_down.ypos", "1" },
605 { "sp_gravity_port_down.frames", "1" },
606 { "sp_gravity_port_down.EDITOR", "RocksSP.png" },
607 { "sp_gravity_port_down.EDITOR.xpos", "1" },
608 { "sp_gravity_port_down.EDITOR.ypos", "14" },
609 { "sp_gravity_port_left", "RocksSP.png" },
610 { "sp_gravity_port_left.xpos", "3" },
611 { "sp_gravity_port_left.ypos", "1" },
612 { "sp_gravity_port_left.frames", "1" },
613 { "sp_gravity_port_left.EDITOR", "RocksSP.png" },
614 { "sp_gravity_port_left.EDITOR.xpos", "2" },
615 { "sp_gravity_port_left.EDITOR.ypos", "14" },
616 { "sp_gravity_port_up", "RocksSP.png" },
617 { "sp_gravity_port_up.xpos", "4" },
618 { "sp_gravity_port_up.ypos", "1" },
619 { "sp_gravity_port_up.frames", "1" },
620 { "sp_gravity_port_up.EDITOR", "RocksSP.png" },
621 { "sp_gravity_port_up.EDITOR.xpos", "3" },
622 { "sp_gravity_port_up.EDITOR.ypos", "14" },
623 { "sp_gravity_on_port_right", "RocksSP.png" },
624 { "sp_gravity_on_port_right.xpos", "1" },
625 { "sp_gravity_on_port_right.ypos", "1" },
626 { "sp_gravity_on_port_right.frames", "1" },
627 { "sp_gravity_on_port_right.EDITOR", "RocksSP.png" },
628 { "sp_gravity_on_port_right.EDITOR.xpos", "0" },
629 { "sp_gravity_on_port_right.EDITOR.ypos", "13" },
630 { "sp_gravity_on_port_down", "RocksSP.png" },
631 { "sp_gravity_on_port_down.xpos", "2" },
632 { "sp_gravity_on_port_down.ypos", "1" },
633 { "sp_gravity_on_port_down.frames", "1" },
634 { "sp_gravity_on_port_down.EDITOR", "RocksSP.png" },
635 { "sp_gravity_on_port_down.EDITOR.xpos", "1" },
636 { "sp_gravity_on_port_down.EDITOR.ypos", "13" },
637 { "sp_gravity_on_port_left", "RocksSP.png" },
638 { "sp_gravity_on_port_left.xpos", "3" },
639 { "sp_gravity_on_port_left.ypos", "1" },
640 { "sp_gravity_on_port_left.frames", "1" },
641 { "sp_gravity_on_port_left.EDITOR", "RocksSP.png" },
642 { "sp_gravity_on_port_left.EDITOR.xpos", "2" },
643 { "sp_gravity_on_port_left.EDITOR.ypos", "13" },
644 { "sp_gravity_on_port_up", "RocksSP.png" },
645 { "sp_gravity_on_port_up.xpos", "4" },
646 { "sp_gravity_on_port_up.ypos", "1" },
647 { "sp_gravity_on_port_up.frames", "1" },
648 { "sp_gravity_on_port_up.EDITOR", "RocksSP.png" },
649 { "sp_gravity_on_port_up.EDITOR.xpos", "3" },
650 { "sp_gravity_on_port_up.EDITOR.ypos", "13" },
651 { "sp_gravity_off_port_right", "RocksSP.png" },
652 { "sp_gravity_off_port_right.xpos", "1" },
653 { "sp_gravity_off_port_right.ypos", "1" },
654 { "sp_gravity_off_port_right.frames", "1" },
655 { "sp_gravity_off_port_right.EDITOR", "RocksSP.png" },
656 { "sp_gravity_off_port_right.EDITOR.xpos", "4" },
657 { "sp_gravity_off_port_right.EDITOR.ypos", "13" },
658 { "sp_gravity_off_port_down", "RocksSP.png" },
659 { "sp_gravity_off_port_down.xpos", "2" },
660 { "sp_gravity_off_port_down.ypos", "1" },
661 { "sp_gravity_off_port_down.frames", "1" },
662 { "sp_gravity_off_port_down.EDITOR", "RocksSP.png" },
663 { "sp_gravity_off_port_down.EDITOR.xpos", "5" },
664 { "sp_gravity_off_port_down.EDITOR.ypos", "13" },
665 { "sp_gravity_off_port_left", "RocksSP.png" },
666 { "sp_gravity_off_port_left.xpos", "3" },
667 { "sp_gravity_off_port_left.ypos", "1" },
668 { "sp_gravity_off_port_left.frames", "1" },
669 { "sp_gravity_off_port_left.EDITOR", "RocksSP.png" },
670 { "sp_gravity_off_port_left.EDITOR.xpos", "6" },
671 { "sp_gravity_off_port_left.EDITOR.ypos", "13" },
672 { "sp_gravity_off_port_up", "RocksSP.png" },
673 { "sp_gravity_off_port_up.xpos", "4" },
674 { "sp_gravity_off_port_up.ypos", "1" },
675 { "sp_gravity_off_port_up.frames", "1" },
676 { "sp_gravity_off_port_up.EDITOR", "RocksSP.png" },
677 { "sp_gravity_off_port_up.EDITOR.xpos", "7" },
678 { "sp_gravity_off_port_up.EDITOR.ypos", "13" },
680 { "sp_sniksnak", "RocksSP.png" },
681 { "sp_sniksnak.xpos", "1" },
682 { "sp_sniksnak.ypos", "2" },
683 { "sp_sniksnak.frames", "1" },
684 { "sp_sniksnak.left", "RocksSP.png" },
685 { "sp_sniksnak.left.xpos", "8" },
686 { "sp_sniksnak.left.ypos", "8" },
687 { "sp_sniksnak.left.frames", "4" },
688 { "sp_sniksnak.left.anim_mode", "pingpong2" },
689 { "sp_sniksnak.right", "RocksSP.png" },
690 { "sp_sniksnak.right.xpos", "12" },
691 { "sp_sniksnak.right.ypos", "8" },
692 { "sp_sniksnak.right.frames", "4" },
693 { "sp_sniksnak.right.anim_mode", "pingpong2" },
694 { "sp_sniksnak.up", "RocksSP.png" },
695 { "sp_sniksnak.up.xpos", "8" },
696 { "sp_sniksnak.up.ypos", "9" },
697 { "sp_sniksnak.up.frames", "4" },
698 { "sp_sniksnak.up.anim_mode", "pingpong2" },
699 { "sp_sniksnak.down", "RocksSP.png" },
700 { "sp_sniksnak.down.xpos", "12" },
701 { "sp_sniksnak.down.ypos", "9" },
702 { "sp_sniksnak.down.frames", "4" },
703 { "sp_sniksnak.down.anim_mode", "pingpong2" },
704 { "sp_sniksnak.turning_from_left.up", "RocksSP.png" },
705 { "sp_sniksnak.turning_from_left.up.xpos", "12" },
706 { "sp_sniksnak.turning_from_left.up.ypos", "6" },
707 { "sp_sniksnak.turning_from_left.up.frames", "2" },
708 { "sp_sniksnak.turning_from_left.up.delay", "4" },
709 { "sp_sniksnak.turning_from_left.up.offset", "1408" },
710 { "sp_sniksnak.turning_from_left.up.anim_mode","linear" },
711 { "sp_sniksnak.turning_from_left.down", "RocksSP.png" },
712 { "sp_sniksnak.turning_from_left.down.xpos", "13" },
713 { "sp_sniksnak.turning_from_left.down.ypos", "6" },
714 { "sp_sniksnak.turning_from_left.down.frames","2" },
715 { "sp_sniksnak.turning_from_left.down.delay", "4" },
716 { "sp_sniksnak.turning_from_left.down.offset","1504" },
717 { "sp_sniksnak.turning_from_left.down.anim_mode","linear" },
718 { "sp_sniksnak.turning_from_right.up", "RocksSP.png" },
719 { "sp_sniksnak.turning_from_right.up.xpos", "15" },
720 { "sp_sniksnak.turning_from_right.up.ypos", "6" },
721 { "sp_sniksnak.turning_from_right.up.frames", "2" },
722 { "sp_sniksnak.turning_from_right.up.delay", "4" },
723 { "sp_sniksnak.turning_from_right.up.offset", "1312" },
724 { "sp_sniksnak.turning_from_right.up.anim_mode","linear" },
725 { "sp_sniksnak.turning_from_right.down", "RocksSP.png" },
726 { "sp_sniksnak.turning_from_right.down.xpos", "14" },
727 { "sp_sniksnak.turning_from_right.down.ypos", "6" },
728 { "sp_sniksnak.turning_from_right.down.frames","2" },
729 { "sp_sniksnak.turning_from_right.down.delay","4" },
730 { "sp_sniksnak.turning_from_right.down.offset","1472" },
731 { "sp_sniksnak.turning_from_right.down.anim_mode","linear" },
732 { "sp_sniksnak.turning_from_up.left", "RocksSP.png" },
733 { "sp_sniksnak.turning_from_up.left.xpos", "12" },
734 { "sp_sniksnak.turning_from_up.left.ypos", "6" },
735 { "sp_sniksnak.turning_from_up.left.frames", "2" },
736 { "sp_sniksnak.turning_from_up.left.delay", "4" },
737 { "sp_sniksnak.turning_from_up.left.offset", "896" },
738 { "sp_sniksnak.turning_from_up.left.anim_mode","linear" },
739 { "sp_sniksnak.turning_from_up.right", "RocksSP.png" },
740 { "sp_sniksnak.turning_from_up.right.xpos", "15" },
741 { "sp_sniksnak.turning_from_up.right.ypos", "6" },
742 { "sp_sniksnak.turning_from_up.right.frames", "2" },
743 { "sp_sniksnak.turning_from_up.right.delay", "4" },
744 { "sp_sniksnak.turning_from_up.right.offset", "928" },
745 { "sp_sniksnak.turning_from_up.right.anim_mode","linear" },
746 { "sp_sniksnak.turning_from_down.left", "RocksSP.png" },
747 { "sp_sniksnak.turning_from_down.left.xpos", "13" },
748 { "sp_sniksnak.turning_from_down.left.ypos", "6" },
749 { "sp_sniksnak.turning_from_down.left.frames","2" },
750 { "sp_sniksnak.turning_from_down.left.delay", "4" },
751 { "sp_sniksnak.turning_from_down.left.offset","864" },
752 { "sp_sniksnak.turning_from_down.left.anim_mode","linear" },
753 { "sp_sniksnak.turning_from_down.right", "RocksSP.png" },
754 { "sp_sniksnak.turning_from_down.right.xpos", "14" },
755 { "sp_sniksnak.turning_from_down.right.ypos", "6" },
756 { "sp_sniksnak.turning_from_down.right.frames","2" },
757 { "sp_sniksnak.turning_from_down.right.delay","4" },
758 { "sp_sniksnak.turning_from_down.right.offset","960" },
759 { "sp_sniksnak.turning_from_down.right.anim_mode","linear" },
761 { "sp_electron", "RocksSP.png" },
762 { "sp_electron.xpos", "8" },
763 { "sp_electron.ypos", "10" },
764 { "sp_electron.frames", "8" },
765 { "sp_electron.delay", "4" },
766 { "sp_electron.global_sync", "true" },
767 { "sp_electron.EDITOR", "RocksSP.png" },
768 { "sp_electron.EDITOR.xpos", "10" },
769 { "sp_electron.EDITOR.ypos", "11" },
770 { "sp_electron.exploding", "RocksSP.png" },
771 { "sp_electron.exploding.xpos", "8" },
772 { "sp_electron.exploding.ypos", "4" },
773 { "sp_electron.exploding.frames", "8" },
774 { "sp_electron.exploding.delay", "4" },
775 { "sp_electron.exploding.anim_mode", "linear" },
777 { "sp_terminal", "RocksSP.png" },
778 { "sp_terminal.xpos", "0" },
779 { "sp_terminal.ypos", "10" },
780 { "sp_terminal.frames", "7" },
781 { "sp_terminal.delay", "12" },
782 { "sp_terminal.EDITOR", "RocksSP.png" },
783 { "sp_terminal.EDITOR.xpos", "9" },
784 { "sp_terminal.EDITOR.ypos", "11" },
785 { "sp_terminal.active", "RocksSP.png" },
786 { "sp_terminal.active.xpos", "0" },
787 { "sp_terminal.active.ypos", "11" },
788 { "sp_terminal.active.frames", "7" },
789 { "sp_terminal.active.delay", "4" },
791 { "sp_buggy_base", "RocksSP.png" },
792 { "sp_buggy_base.xpos", "1" },
793 { "sp_buggy_base.ypos", "3" },
794 { "sp_buggy_base.frames", "1" },
795 { "sp_buggy_base.EDITOR", "RocksSP.png" },
796 { "sp_buggy_base.EDITOR.xpos", "9" },
797 { "sp_buggy_base.EDITOR.ypos", "6" },
798 { "sp_buggy_base.activating", "RocksSP.png" },
799 { "sp_buggy_base.activating.xpos", "15" },
800 { "sp_buggy_base.activating.ypos", "2" },
801 { "sp_buggy_base.activating.frames", "1" },
802 { "sp_buggy_base.active", "RocksSP.png" },
803 { "sp_buggy_base.active.xpos", "8" },
804 { "sp_buggy_base.active.ypos", "6" },
805 { "sp_buggy_base.active.frames", "4" },
806 { "sp_buggy_base.active.delay", "4" },
807 { "sp_buggy_base.active.anim_mode", "pingpong" },
809 { "sp_hardware_base_1", "RocksSP.png" },
810 { "sp_hardware_base_1.xpos", "4" },
811 { "sp_hardware_base_1.ypos", "3" },
812 { "sp_hardware_base_1.frames", "1" },
813 { "sp_hardware_base_2", "RocksSP.png" },
814 { "sp_hardware_base_2.xpos", "1" },
815 { "sp_hardware_base_2.ypos", "4" },
816 { "sp_hardware_base_2.frames", "1" },
817 { "sp_hardware_base_3", "RocksSP.png" },
818 { "sp_hardware_base_3.xpos", "2" },
819 { "sp_hardware_base_3.ypos", "4" },
820 { "sp_hardware_base_3.frames", "1" },
821 { "sp_hardware_base_4", "RocksSP.png" },
822 { "sp_hardware_base_4.xpos", "3" },
823 { "sp_hardware_base_4.ypos", "4" },
824 { "sp_hardware_base_4.frames", "1" },
825 { "sp_hardware_base_5", "RocksSP.png" },
826 { "sp_hardware_base_5.xpos", "4" },
827 { "sp_hardware_base_5.ypos", "4" },
828 { "sp_hardware_base_5.frames", "1" },
829 { "sp_hardware_base_6", "RocksSP.png" },
830 { "sp_hardware_base_6.xpos", "5" },
831 { "sp_hardware_base_6.ypos", "4" },
832 { "sp_hardware_base_6.frames", "1" },
834 // images for Sokoban style elements and actions
836 { "sokoban_object", "RocksElements.png" },
837 { "sokoban_object.xpos", "9" },
838 { "sokoban_object.ypos", "7" },
839 { "sokoban_object.frames", "1" },
840 { "sokoban_object.EDITOR", "RocksElements.png" },
841 { "sokoban_object.EDITOR.xpos", "2" },
842 { "sokoban_object.EDITOR.ypos", "14" },
844 { "sokoban_field_empty", "RocksElements.png" },
845 { "sokoban_field_empty.xpos", "10" },
846 { "sokoban_field_empty.ypos", "7" },
847 { "sokoban_field_empty.frames", "1" },
849 { "sokoban_field_full", "RocksElements.png" },
850 { "sokoban_field_full.xpos", "11" },
851 { "sokoban_field_full.ypos", "7" },
852 { "sokoban_field_full.frames", "1" },
854 { "sokoban_field_player", "RocksHeroes.png" },
855 { "sokoban_field_player.xpos", "0" },
856 { "sokoban_field_player.ypos", "15" },
857 { "sokoban_field_player.frames", "1" },
858 { "sokoban_field_player.EDITOR", "RocksHeroes.png" },
859 { "sokoban_field_player.EDITOR.xpos", "1" },
860 { "sokoban_field_player.EDITOR.ypos", "15" },
862 // images for Emerald Mine style elements and actions
864 { "empty_space", "RocksSP.png" },
865 { "empty_space.xpos", "0" },
866 { "empty_space.ypos", "0" },
867 { "empty_space.frames", "1" },
869 { "sand", "RocksElements.png" },
870 { "sand.xpos", "0" },
871 { "sand.ypos", "0" },
872 { "sand.frames", "1" },
873 { "sand.CRUMBLED", "RocksElements.png" },
874 { "sand.CRUMBLED.xpos", "1" },
875 { "sand.CRUMBLED.ypos", "0" },
876 { "sand.CRUMBLED.frames", "1" },
877 { "sand.digging.left", "RocksMore.png" },
878 { "sand.digging.left.xpos", "6" },
879 { "sand.digging.left.ypos", "3" },
880 { "sand.digging.left.frames", "3" },
881 { "sand.digging.left.delay", "2" },
882 { "sand.digging.left.anim_mode", "linear" },
883 { "sand.digging.right", "RocksMore.png" },
884 { "sand.digging.right.xpos", "9" },
885 { "sand.digging.right.ypos", "3" },
886 { "sand.digging.right.frames", "3" },
887 { "sand.digging.right.delay", "2" },
888 { "sand.digging.right.anim_mode", "linear" },
889 { "sand.digging.up", "RocksMore.png" },
890 { "sand.digging.up.xpos", "0" },
891 { "sand.digging.up.ypos", "3" },
892 { "sand.digging.up.frames", "3" },
893 { "sand.digging.up.delay", "2" },
894 { "sand.digging.up.anim_mode", "linear" },
895 { "sand.digging.down", "RocksMore.png" },
896 { "sand.digging.down.xpos", "3" },
897 { "sand.digging.down.ypos", "3" },
898 { "sand.digging.down.frames", "3" },
899 { "sand.digging.down.delay", "2" },
900 { "sand.digging.down.anim_mode", "linear" },
901 { "sand.digging.left.CRUMBLED", "RocksMore.png" },
902 { "sand.digging.left.CRUMBLED.xpos", "6" },
903 { "sand.digging.left.CRUMBLED.ypos", "0" },
904 { "sand.digging.left.CRUMBLED.frames", "3" },
905 { "sand.digging.left.CRUMBLED.delay", "2" },
906 { "sand.digging.left.CRUMBLED.anim_mode", "linear" },
907 { "sand.digging.right.CRUMBLED", "RocksMore.png" },
908 { "sand.digging.right.CRUMBLED.xpos", "9" },
909 { "sand.digging.right.CRUMBLED.ypos", "0" },
910 { "sand.digging.right.CRUMBLED.frames", "3" },
911 { "sand.digging.right.CRUMBLED.delay", "2" },
912 { "sand.digging.right.CRUMBLED.anim_mode", "linear" },
913 { "sand.digging.up.CRUMBLED", "RocksMore.png" },
914 { "sand.digging.up.CRUMBLED.xpos", "0" },
915 { "sand.digging.up.CRUMBLED.ypos", "0" },
916 { "sand.digging.up.CRUMBLED.frames", "3" },
917 { "sand.digging.up.CRUMBLED.delay", "2" },
918 { "sand.digging.up.CRUMBLED.anim_mode", "linear" },
919 { "sand.digging.down.CRUMBLED", "RocksMore.png" },
920 { "sand.digging.down.CRUMBLED.xpos", "3" },
921 { "sand.digging.down.CRUMBLED.ypos", "0" },
922 { "sand.digging.down.CRUMBLED.frames", "3" },
923 { "sand.digging.down.CRUMBLED.delay", "2" },
924 { "sand.digging.down.CRUMBLED.anim_mode", "linear" },
926 { "wall", "RocksElements.png" },
927 { "wall.xpos", "5" },
928 { "wall.ypos", "0" },
929 { "wall.frames", "1" },
931 { "wall_slippery", "RocksElements.png" },
932 { "wall_slippery.xpos", "6" },
933 { "wall_slippery.ypos", "0" },
934 { "wall_slippery.frames", "1" },
936 { "steelwall", "RocksElements.png" },
937 { "steelwall.xpos", "4" },
938 { "steelwall.ypos", "0" },
939 { "steelwall.frames", "1" },
941 { "rock", "RocksElements.png" },
942 { "rock.xpos", "12" },
943 { "rock.ypos", "0" },
944 { "rock.frames", "1" },
945 { "rock.moving.left", "RocksElements.png" },
946 { "rock.moving.left.xpos", "12" },
947 { "rock.moving.left.ypos", "0" },
948 { "rock.moving.left.frames", "4" },
949 { "rock.moving.left.delay", "2" },
950 { "rock.moving.left.anim_mode", "reverse" },
951 { "rock.moving.right", "RocksElements.png" },
952 { "rock.moving.right.xpos", "12" },
953 { "rock.moving.right.ypos", "0" },
954 { "rock.moving.right.frames", "4" },
955 { "rock.moving.right.start_frame", "1" },
956 { "rock.moving.right.delay", "2" },
957 { "rock.pushing.left", "RocksElements.png" },
958 { "rock.pushing.left.xpos", "12" },
959 { "rock.pushing.left.ypos", "0" },
960 { "rock.pushing.left.frames", "4" },
961 { "rock.pushing.left.delay", "2" },
962 { "rock.pushing.left.anim_mode", "reverse" },
963 { "rock.pushing.right", "RocksElements.png" },
964 { "rock.pushing.right.xpos", "12" },
965 { "rock.pushing.right.ypos", "0" },
966 { "rock.pushing.right.frames", "4" },
967 { "rock.pushing.right.start_frame", "1" },
968 { "rock.pushing.right.delay", "2" },
970 { "emerald", "RocksElements.png" },
971 { "emerald.xpos", "8" },
972 { "emerald.ypos", "0" },
973 { "emerald.frames", "1" },
974 { "emerald.moving", "RocksElements.png" },
975 { "emerald.moving.xpos", "8" },
976 { "emerald.moving.ypos", "0" },
977 { "emerald.moving.frames", "2" },
978 { "emerald.moving.delay", "4" },
979 { "emerald.falling", "RocksElements.png" },
980 { "emerald.falling.xpos", "8" },
981 { "emerald.falling.ypos", "0" },
982 { "emerald.falling.frames", "2" },
983 { "emerald.falling.delay", "4" },
984 { "emerald.collecting", "RocksMore.png" },
985 { "emerald.collecting.xpos", "3" },
986 { "emerald.collecting.ypos", "2" },
987 { "emerald.collecting.frames", "3" },
988 { "emerald.collecting.delay", "2" },
989 { "emerald.collecting.anim_mode", "linear" },
991 { "diamond", "RocksElements.png" },
992 { "diamond.xpos", "10" },
993 { "diamond.ypos", "0" },
994 { "diamond.frames", "1" },
995 { "diamond.moving", "RocksElements.png" },
996 { "diamond.moving.xpos", "10" },
997 { "diamond.moving.ypos", "0" },
998 { "diamond.moving.frames", "2" },
999 { "diamond.moving.delay", "4" },
1000 { "diamond.falling", "RocksElements.png" },
1001 { "diamond.falling.xpos", "10" },
1002 { "diamond.falling.ypos", "0" },
1003 { "diamond.falling.frames", "2" },
1004 { "diamond.falling.delay", "4" },
1005 { "diamond.collecting", "RocksMore.png" },
1006 { "diamond.collecting.xpos", "7" },
1007 { "diamond.collecting.ypos", "2" },
1008 { "diamond.collecting.frames", "3" },
1009 { "diamond.collecting.delay", "2" },
1010 { "diamond.collecting.anim_mode", "linear" },
1012 { "bomb", "RocksElements.png" },
1013 { "bomb.xpos", "11" },
1014 { "bomb.ypos", "1" },
1015 { "bomb.frames", "1" },
1017 { "nut", "RocksElements.png" },
1018 { "nut.xpos", "12" },
1019 { "nut.ypos", "1" },
1020 { "nut.frames", "1" },
1021 { "nut.breaking", "RocksElements.png" },
1022 { "nut.breaking.xpos", "13" },
1023 { "nut.breaking.ypos", "1" },
1024 { "nut.breaking.frames", "3" },
1025 { "nut.breaking.delay", "2" },
1026 { "nut.breaking.anim_mode", "linear" },
1028 { "dynamite", "RocksElements.png" },
1029 { "dynamite.xpos", "0" },
1030 { "dynamite.ypos", "3" },
1031 { "dynamite.frames", "1" },
1032 { "dynamite.EDITOR", "RocksElements.png" },
1033 { "dynamite.EDITOR.xpos", "0" },
1034 { "dynamite.EDITOR.ypos", "14" },
1035 { "dynamite.active", "RocksElements.png" },
1036 { "dynamite.active.xpos", "1" },
1037 { "dynamite.active.ypos", "3" },
1038 { "dynamite.active.frames", "7" },
1039 { "dynamite.active.delay", "12" },
1040 { "dynamite.active.anim_mode", "linear" },
1041 { "dynamite.active.EDITOR", "RocksElements.png" },
1042 { "dynamite.active.EDITOR.xpos", "1" },
1043 { "dynamite.active.EDITOR.ypos", "14" },
1045 { "em_dynamite", "RocksEMC.png" },
1046 { "em_dynamite.xpos", "0" },
1047 { "em_dynamite.ypos", "15" },
1048 { "em_dynamite.frames", "1" },
1049 { "em_dynamite.active", "RocksEMC.png" },
1050 { "em_dynamite.active.xpos", "1" },
1051 { "em_dynamite.active.ypos", "15" },
1052 { "em_dynamite.active.frames", "4" },
1053 { "em_dynamite.active.delay", "8" },
1054 { "em_dynamite.active.anim_mode", "linear" },
1055 { "em_dynamite.active.EDITOR", "RocksEMC.png" },
1056 { "em_dynamite.active.EDITOR.xpos", "2" },
1057 { "em_dynamite.active.EDITOR.ypos", "15" },
1059 { "wall_emerald", "RocksElements.png" },
1060 { "wall_emerald.xpos", "4" },
1061 { "wall_emerald.ypos", "8" },
1062 { "wall_emerald.frames", "1" },
1064 { "wall_diamond", "RocksElements.png" },
1065 { "wall_diamond.xpos", "5" },
1066 { "wall_diamond.ypos", "8" },
1067 { "wall_diamond.frames", "1" },
1069 { "bug", "RocksElements.png" },
1070 { "bug.xpos", "8" },
1071 { "bug.ypos", "4" },
1072 { "bug.frames", "4" },
1073 { "bug.delay", "8" },
1074 { "bug.right", "RocksElements.png" },
1075 { "bug.right.xpos", "8" },
1076 { "bug.right.ypos", "4" },
1077 { "bug.right.frames", "1" },
1078 { "bug.up", "RocksElements.png" },
1079 { "bug.up.xpos", "9" },
1080 { "bug.up.ypos", "4" },
1081 { "bug.up.frames", "1" },
1082 { "bug.left", "RocksElements.png" },
1083 { "bug.left.xpos", "10" },
1084 { "bug.left.ypos", "4" },
1085 { "bug.left.frames", "1" },
1086 { "bug.down", "RocksElements.png" },
1087 { "bug.down.xpos", "11" },
1088 { "bug.down.ypos", "4" },
1089 { "bug.down.frames", "1" },
1090 { "bug.moving.right", "RocksElements.png" },
1091 { "bug.moving.right.xpos", "8" },
1092 { "bug.moving.right.ypos", "4" },
1093 { "bug.moving.right.frames", "2" },
1094 { "bug.moving.right.delay", "4" },
1095 { "bug.moving.right.offset", "128" },
1096 { "bug.moving.up", "RocksElements.png" },
1097 { "bug.moving.up.xpos", "9" },
1098 { "bug.moving.up.ypos", "4" },
1099 { "bug.moving.up.frames", "2" },
1100 { "bug.moving.up.delay", "4" },
1101 { "bug.moving.up.offset", "128" },
1102 { "bug.moving.left", "RocksElements.png" },
1103 { "bug.moving.left.xpos", "10" },
1104 { "bug.moving.left.ypos", "4" },
1105 { "bug.moving.left.frames", "2" },
1106 { "bug.moving.left.delay", "4" },
1107 { "bug.moving.left.offset", "128" },
1108 { "bug.moving.down", "RocksElements.png" },
1109 { "bug.moving.down.xpos", "11" },
1110 { "bug.moving.down.ypos", "4" },
1111 { "bug.moving.down.frames", "2" },
1112 { "bug.moving.down.delay", "4" },
1113 { "bug.moving.down.offset", "128" },
1114 { "bug.turning_from_right.up", "RocksMore.png" },
1115 { "bug.turning_from_right.up.xpos", "0" },
1116 { "bug.turning_from_right.up.ypos", "6" },
1117 { "bug.turning_from_right.up.frames", "4" },
1118 { "bug.turning_from_right.up.delay", "2" },
1119 { "bug.turning_from_right.up.anim_mode", "linear,reverse" },
1120 { "bug.turning_from_up.left", "RocksMore.png" },
1121 { "bug.turning_from_up.left.xpos", "12" },
1122 { "bug.turning_from_up.left.ypos", "6" },
1123 { "bug.turning_from_up.left.frames", "4" },
1124 { "bug.turning_from_up.left.delay", "2" },
1125 { "bug.turning_from_up.left.anim_mode", "linear,reverse" },
1126 { "bug.turning_from_left.down", "RocksMore.png" },
1127 { "bug.turning_from_left.down.xpos", "8" },
1128 { "bug.turning_from_left.down.ypos", "6" },
1129 { "bug.turning_from_left.down.frames", "4" },
1130 { "bug.turning_from_left.down.delay", "2" },
1131 { "bug.turning_from_left.down.anim_mode", "linear,reverse" },
1132 { "bug.turning_from_down.right", "RocksMore.png" },
1133 { "bug.turning_from_down.right.xpos", "4" },
1134 { "bug.turning_from_down.right.ypos", "6" },
1135 { "bug.turning_from_down.right.frames", "4" },
1136 { "bug.turning_from_down.right.delay", "2" },
1137 { "bug.turning_from_down.right.anim_mode", "linear,reverse" },
1138 { "bug.turning_from_right.down", "RocksMore.png" },
1139 { "bug.turning_from_right.down.xpos", "5" },
1140 { "bug.turning_from_right.down.ypos", "6" },
1141 { "bug.turning_from_right.down.frames", "4" },
1142 { "bug.turning_from_right.down.delay", "2" },
1143 { "bug.turning_from_right.down.anim_mode", "linear" },
1144 { "bug.turning_from_up.right", "RocksMore.png" },
1145 { "bug.turning_from_up.right.xpos", "1" },
1146 { "bug.turning_from_up.right.ypos", "6" },
1147 { "bug.turning_from_up.right.frames", "4" },
1148 { "bug.turning_from_up.right.delay", "2" },
1149 { "bug.turning_from_up.right.anim_mode", "linear" },
1150 { "bug.turning_from_left.up", "RocksMore.png" },
1151 { "bug.turning_from_left.up.xpos", "13" },
1152 { "bug.turning_from_left.up.ypos", "6" },
1153 { "bug.turning_from_left.up.frames", "4" },
1154 { "bug.turning_from_left.up.delay", "2" },
1155 { "bug.turning_from_left.up.anim_mode", "linear" },
1156 { "bug.turning_from_down.left", "RocksMore.png" },
1157 { "bug.turning_from_down.left.xpos", "9" },
1158 { "bug.turning_from_down.left.ypos", "6" },
1159 { "bug.turning_from_down.left.frames", "4" },
1160 { "bug.turning_from_down.left.delay", "2" },
1161 { "bug.turning_from_down.left.anim_mode", "linear" },
1163 { "spaceship", "RocksElements.png" },
1164 { "spaceship.xpos", "8" },
1165 { "spaceship.ypos", "3" },
1166 { "spaceship.frames", "4" },
1167 { "spaceship.delay", "8" },
1168 { "spaceship.right", "RocksElements.png" },
1169 { "spaceship.right.xpos", "8" },
1170 { "spaceship.right.ypos", "3" },
1171 { "spaceship.right.frames", "1" },
1172 { "spaceship.up", "RocksElements.png" },
1173 { "spaceship.up.xpos", "9" },
1174 { "spaceship.up.ypos", "3" },
1175 { "spaceship.up.frames", "1" },
1176 { "spaceship.left", "RocksElements.png" },
1177 { "spaceship.left.xpos", "10" },
1178 { "spaceship.left.ypos", "3" },
1179 { "spaceship.left.frames", "1" },
1180 { "spaceship.down", "RocksElements.png" },
1181 { "spaceship.down.xpos", "11" },
1182 { "spaceship.down.ypos", "3" },
1183 { "spaceship.down.frames", "1" },
1184 { "spaceship.moving.right", "RocksElements.png" },
1185 { "spaceship.moving.right.xpos", "8" },
1186 { "spaceship.moving.right.ypos", "3" },
1187 { "spaceship.moving.right.frames", "2" },
1188 { "spaceship.moving.right.delay", "4" },
1189 { "spaceship.moving.right.offset", "128" },
1190 { "spaceship.moving.up", "RocksElements.png" },
1191 { "spaceship.moving.up.xpos", "9" },
1192 { "spaceship.moving.up.ypos", "3" },
1193 { "spaceship.moving.up.frames", "2" },
1194 { "spaceship.moving.up.delay", "4" },
1195 { "spaceship.moving.up.offset", "128" },
1196 { "spaceship.moving.left", "RocksElements.png" },
1197 { "spaceship.moving.left.xpos", "10" },
1198 { "spaceship.moving.left.ypos", "3" },
1199 { "spaceship.moving.left.frames", "2" },
1200 { "spaceship.moving.left.delay", "4" },
1201 { "spaceship.moving.left.offset", "128" },
1202 { "spaceship.moving.down", "RocksElements.png" },
1203 { "spaceship.moving.down.xpos", "11" },
1204 { "spaceship.moving.down.ypos", "3" },
1205 { "spaceship.moving.down.frames", "2" },
1206 { "spaceship.moving.down.delay", "4" },
1207 { "spaceship.moving.down.offset", "128" },
1208 { "spaceship.turning_from_right.up", "RocksMore.png" },
1209 { "spaceship.turning_from_right.up.xpos", "0" },
1210 { "spaceship.turning_from_right.up.ypos", "5" },
1211 { "spaceship.turning_from_right.up.frames", "4" },
1212 { "spaceship.turning_from_right.up.delay", "2" },
1213 { "spaceship.turning_from_right.up.anim_mode","linear,reverse" },
1214 { "spaceship.turning_from_up.left", "RocksMore.png" },
1215 { "spaceship.turning_from_up.left.xpos", "12" },
1216 { "spaceship.turning_from_up.left.ypos", "5" },
1217 { "spaceship.turning_from_up.left.frames", "4" },
1218 { "spaceship.turning_from_up.left.delay", "2" },
1219 { "spaceship.turning_from_up.left.anim_mode", "linear,reverse" },
1220 { "spaceship.turning_from_left.down", "RocksMore.png" },
1221 { "spaceship.turning_from_left.down.xpos", "8" },
1222 { "spaceship.turning_from_left.down.ypos", "5" },
1223 { "spaceship.turning_from_left.down.frames", "4" },
1224 { "spaceship.turning_from_left.down.delay", "2" },
1225 { "spaceship.turning_from_left.down.anim_mode","linear,reverse" },
1226 { "spaceship.turning_from_down.right", "RocksMore.png" },
1227 { "spaceship.turning_from_down.right.xpos", "4" },
1228 { "spaceship.turning_from_down.right.ypos", "5" },
1229 { "spaceship.turning_from_down.right.frames", "4" },
1230 { "spaceship.turning_from_down.right.delay", "2" },
1231 { "spaceship.turning_from_down.right.anim_mode","linear,reverse" },
1232 { "spaceship.turning_from_right.down", "RocksMore.png" },
1233 { "spaceship.turning_from_right.down.xpos", "5" },
1234 { "spaceship.turning_from_right.down.ypos", "5" },
1235 { "spaceship.turning_from_right.down.frames", "4" },
1236 { "spaceship.turning_from_right.down.delay", "2" },
1237 { "spaceship.turning_from_right.down.anim_mode","linear" },
1238 { "spaceship.turning_from_up.right", "RocksMore.png" },
1239 { "spaceship.turning_from_up.right.xpos", "1" },
1240 { "spaceship.turning_from_up.right.ypos", "5" },
1241 { "spaceship.turning_from_up.right.frames", "4" },
1242 { "spaceship.turning_from_up.right.delay", "2" },
1243 { "spaceship.turning_from_up.right.anim_mode","linear" },
1244 { "spaceship.turning_from_left.up", "RocksMore.png" },
1245 { "spaceship.turning_from_left.up.xpos", "13" },
1246 { "spaceship.turning_from_left.up.ypos", "5" },
1247 { "spaceship.turning_from_left.up.frames", "4" },
1248 { "spaceship.turning_from_left.up.delay", "2" },
1249 { "spaceship.turning_from_left.up.anim_mode", "linear" },
1250 { "spaceship.turning_from_down.left", "RocksMore.png" },
1251 { "spaceship.turning_from_down.left.xpos", "9" },
1252 { "spaceship.turning_from_down.left.ypos", "5" },
1253 { "spaceship.turning_from_down.left.frames", "4" },
1254 { "spaceship.turning_from_down.left.delay", "2" },
1255 { "spaceship.turning_from_down.left.anim_mode","linear" },
1257 { "yamyam", "RocksElements.png" },
1258 { "yamyam.xpos", "0" },
1259 { "yamyam.ypos", "5" },
1260 { "yamyam.frames", "4" },
1261 { "yamyam.anim_mode", "pingpong2" },
1262 { "yamyam.left", "RocksElements.png" },
1263 { "yamyam.left.xpos", "0" },
1264 { "yamyam.left.ypos", "5" },
1265 { "yamyam.left.frames", "4" },
1266 { "yamyam.left.anim_mode", "pingpong2" },
1267 { "yamyam.left.EDITOR", "RocksEMC.png" },
1268 { "yamyam.left.EDITOR.xpos", "7" },
1269 { "yamyam.left.EDITOR.ypos", "15" },
1270 { "yamyam.right", "RocksElements.png" },
1271 { "yamyam.right.xpos", "0" },
1272 { "yamyam.right.ypos", "5" },
1273 { "yamyam.right.frames", "4" },
1274 { "yamyam.right.anim_mode", "pingpong2" },
1275 { "yamyam.right.EDITOR", "RocksEMC.png" },
1276 { "yamyam.right.EDITOR.xpos", "8" },
1277 { "yamyam.right.EDITOR.ypos", "15" },
1278 { "yamyam.up", "RocksElements.png" },
1279 { "yamyam.up.xpos", "0" },
1280 { "yamyam.up.ypos", "5" },
1281 { "yamyam.up.frames", "4" },
1282 { "yamyam.up.anim_mode", "pingpong2" },
1283 { "yamyam.up.EDITOR", "RocksEMC.png" },
1284 { "yamyam.up.EDITOR.xpos", "5" },
1285 { "yamyam.up.EDITOR.ypos", "15" },
1286 { "yamyam.down", "RocksElements.png" },
1287 { "yamyam.down.xpos", "0" },
1288 { "yamyam.down.ypos", "5" },
1289 { "yamyam.down.frames", "4" },
1290 { "yamyam.down.anim_mode", "pingpong2" },
1291 { "yamyam.down.EDITOR", "RocksEMC.png" },
1292 { "yamyam.down.EDITOR.xpos", "6" },
1293 { "yamyam.down.EDITOR.ypos", "15" },
1294 { "yamyam.moving", "RocksElements.png" },
1295 { "yamyam.moving.xpos", "0" },
1296 { "yamyam.moving.ypos", "5" },
1297 { "yamyam.moving.frames", "1" },
1299 { "robot", "RocksElements.png" },
1300 { "robot.xpos", "4" },
1301 { "robot.ypos", "5" },
1302 { "robot.frames", "4" },
1303 { "robot.anim_mode", "pingpong2" },
1304 { "robot.moving", "RocksElements.png" },
1305 { "robot.moving.xpos", "4" },
1306 { "robot.moving.ypos", "5" },
1307 { "robot.moving.frames", "1" },
1309 { "robot_wheel", "RocksElements.png" },
1310 { "robot_wheel.xpos", "0" },
1311 { "robot_wheel.ypos", "6" },
1312 { "robot_wheel.frames", "1" },
1313 { "robot_wheel.active", "RocksElements.png" },
1314 { "robot_wheel.active.xpos", "0" },
1315 { "robot_wheel.active.ypos", "6" },
1316 { "robot_wheel.active.frames", "4" },
1318 { "magic_wall", "RocksElements.png" },
1319 { "magic_wall.xpos", "0" },
1320 { "magic_wall.ypos", "8" },
1321 { "magic_wall.frames", "1" },
1322 { "magic_wall.active", "RocksElements.png" },
1323 { "magic_wall.active.xpos", "0" },
1324 { "magic_wall.active.ypos", "8" },
1325 { "magic_wall.active.frames", "4" },
1326 { "magic_wall.active.anim_mode", "reverse" },
1327 { "magic_wall.active.delay", "4" },
1328 { "magic_wall.active.global_sync", "true" },
1329 { "magic_wall.filling", "RocksElements.png" },
1330 { "magic_wall.filling.xpos", "0" },
1331 { "magic_wall.filling.ypos", "8" },
1332 { "magic_wall.filling.frames", "4" },
1333 { "magic_wall.filling.anim_mode", "reverse" },
1334 { "magic_wall.filling.delay", "4" },
1335 { "magic_wall.filling.global_sync", "true" },
1336 { "magic_wall_full", "RocksElements.png" },
1337 { "magic_wall_full.xpos", "0" },
1338 { "magic_wall_full.ypos", "8" },
1339 { "magic_wall_full.frames", "4" },
1340 { "magic_wall_full.anim_mode", "reverse" },
1341 { "magic_wall_full.delay", "4" },
1342 { "magic_wall_full.global_sync", "true" },
1343 { "magic_wall.emptying", "RocksElements.png" },
1344 { "magic_wall.emptying.xpos", "0" },
1345 { "magic_wall.emptying.ypos", "8" },
1346 { "magic_wall.emptying.frames", "4" },
1347 { "magic_wall.emptying.anim_mode", "reverse" },
1348 { "magic_wall.emptying.delay", "4" },
1349 { "magic_wall.emptying.global_sync", "true" },
1350 { "magic_wall_dead", "RocksElements.png" },
1351 { "magic_wall_dead.xpos", "0" },
1352 { "magic_wall_dead.ypos", "8" },
1353 { "magic_wall_dead.frames", "1" },
1355 { "dc_magic_wall", "RocksDC2.png" },
1356 { "dc_magic_wall.xpos", "0" },
1357 { "dc_magic_wall.ypos", "3" },
1358 { "dc_magic_wall.frames", "1" },
1359 { "dc_magic_wall.active", "RocksDC2.png" },
1360 { "dc_magic_wall.active.xpos", "0" },
1361 { "dc_magic_wall.active.ypos", "3" },
1362 { "dc_magic_wall.active.frames", "4" },
1363 { "dc_magic_wall.active.anim_mode", "reverse" },
1364 { "dc_magic_wall.active.delay", "4" },
1365 { "dc_magic_wall.active.global_sync", "true" },
1366 { "dc_magic_wall.filling", "RocksDC2.png" },
1367 { "dc_magic_wall.filling.xpos", "0" },
1368 { "dc_magic_wall.filling.ypos", "3" },
1369 { "dc_magic_wall.filling.frames", "4" },
1370 { "dc_magic_wall.filling.anim_mode", "reverse" },
1371 { "dc_magic_wall.filling.delay", "4" },
1372 { "dc_magic_wall.filling.global_sync", "true" },
1373 { "dc_magic_wall_full", "RocksDC2.png" },
1374 { "dc_magic_wall_full.xpos", "0" },
1375 { "dc_magic_wall_full.ypos", "3" },
1376 { "dc_magic_wall_full.frames", "4" },
1377 { "dc_magic_wall_full.anim_mode", "reverse" },
1378 { "dc_magic_wall_full.delay", "4" },
1379 { "dc_magic_wall_full.global_sync", "true" },
1380 { "dc_magic_wall.emptying", "RocksDC2.png" },
1381 { "dc_magic_wall.emptying.xpos", "0" },
1382 { "dc_magic_wall.emptying.ypos", "3" },
1383 { "dc_magic_wall.emptying.frames", "4" },
1384 { "dc_magic_wall.emptying.anim_mode", "reverse" },
1385 { "dc_magic_wall.emptying.delay", "4" },
1386 { "dc_magic_wall.emptying.global_sync", "true" },
1387 { "dc_magic_wall_dead", "RocksDC2.png" },
1388 { "dc_magic_wall_dead.xpos", "0" },
1389 { "dc_magic_wall_dead.ypos", "3" },
1390 { "dc_magic_wall_dead.frames", "1" },
1392 { "quicksand_empty", "RocksElements.png" },
1393 { "quicksand_empty.xpos", "2" },
1394 { "quicksand_empty.ypos", "0" },
1395 { "quicksand_empty.frames", "1" },
1396 { "quicksand.filling", "RocksElements.png" },
1397 { "quicksand.filling.xpos", "3" },
1398 { "quicksand.filling.ypos", "0" },
1399 { "quicksand.filling.frames", "1" },
1400 { "quicksand_full", "RocksElements.png" },
1401 { "quicksand_full.xpos", "3" },
1402 { "quicksand_full.ypos", "0" },
1403 { "quicksand_full.frames", "1" },
1404 { "quicksand_full.EDITOR", "RocksElements.png" },
1405 { "quicksand_full.EDITOR.xpos", "3" },
1406 { "quicksand_full.EDITOR.ypos", "14" },
1407 { "quicksand.emptying", "RocksElements.png" },
1408 { "quicksand.emptying.xpos", "3" },
1409 { "quicksand.emptying.ypos", "0" },
1410 { "quicksand.emptying.frames", "1" },
1412 { "quicksand_fast_empty", "RocksDC2.png" },
1413 { "quicksand_fast_empty.xpos", "4" },
1414 { "quicksand_fast_empty.ypos", "3" },
1415 { "quicksand_fast_empty.frames", "1" },
1416 { "quicksand_fast.filling", "RocksDC2.png" },
1417 { "quicksand_fast.filling.xpos", "4" },
1418 { "quicksand_fast.filling.ypos", "3" },
1419 { "quicksand_fast.filling.frames", "1" },
1420 { "quicksand_fast_full", "RocksDC2.png" },
1421 { "quicksand_fast_full.xpos", "4" },
1422 { "quicksand_fast_full.ypos", "3" },
1423 { "quicksand_fast_full.frames", "1" },
1424 { "quicksand_fast_full.EDITOR", "RocksDC2.png" },
1425 { "quicksand_fast_full.EDITOR.xpos", "5" },
1426 { "quicksand_fast_full.EDITOR.ypos", "3" },
1427 { "quicksand_fast.emptying", "RocksDC2.png" },
1428 { "quicksand_fast.emptying.xpos", "4" },
1429 { "quicksand_fast.emptying.ypos", "3" },
1430 { "quicksand_fast.emptying.frames", "1" },
1432 { "acid_pool_topleft", "RocksElements.png" },
1433 { "acid_pool_topleft.xpos", "0" },
1434 { "acid_pool_topleft.ypos", "1" },
1435 { "acid_pool_topleft.frames", "1" },
1436 { "acid_pool_topright", "RocksElements.png" },
1437 { "acid_pool_topright.xpos", "2" },
1438 { "acid_pool_topright.ypos", "1" },
1439 { "acid_pool_topright.frames", "1" },
1440 { "acid_pool_bottomleft", "RocksElements.png" },
1441 { "acid_pool_bottomleft.xpos", "0" },
1442 { "acid_pool_bottomleft.ypos", "2" },
1443 { "acid_pool_bottomleft.frames", "1" },
1444 { "acid_pool_bottom", "RocksElements.png" },
1445 { "acid_pool_bottom.xpos", "1" },
1446 { "acid_pool_bottom.ypos", "2" },
1447 { "acid_pool_bottom.frames", "1" },
1448 { "acid_pool_bottomright", "RocksElements.png" },
1449 { "acid_pool_bottomright.xpos", "2" },
1450 { "acid_pool_bottomright.ypos", "2" },
1451 { "acid_pool_bottomright.frames", "1" },
1453 { "acid", "RocksElements.png" },
1454 { "acid.xpos", "12" },
1455 { "acid.ypos", "7" },
1456 { "acid.frames", "4" },
1457 { "acid.delay", "10" },
1458 { "acid.global_sync", "true" },
1460 { "acid_splash_left", "RocksHeroes.png" },
1461 { "acid_splash_left.xpos", "8" },
1462 { "acid_splash_left.ypos", "10" },
1463 { "acid_splash_left.frames", "4" },
1464 { "acid_splash_left.delay", "2" },
1465 { "acid_splash_left.anim_mode", "linear" },
1466 { "acid_splash_right", "RocksHeroes.png" },
1467 { "acid_splash_right.xpos", "12" },
1468 { "acid_splash_right.ypos", "10" },
1469 { "acid_splash_right.frames", "4" },
1470 { "acid_splash_right.delay", "2" },
1471 { "acid_splash_right.anim_mode", "linear" },
1473 { "amoeba_drop", "RocksElements.png" },
1474 { "amoeba_drop.xpos", "5" },
1475 { "amoeba_drop.ypos", "6" },
1476 { "amoeba_drop.frames", "1" },
1477 { "amoeba.growing", "RocksElements.png" },
1478 { "amoeba.growing.xpos", "5" },
1479 { "amoeba.growing.ypos", "6" },
1480 { "amoeba.growing.frames", "3" },
1481 { "amoeba.growing.delay", "2" },
1482 { "amoeba.growing.anim_mode", "linear" },
1483 { "amoeba.shrinking", "RocksElements.png" },
1484 { "amoeba.shrinking.xpos", "5" },
1485 { "amoeba.shrinking.ypos", "6" },
1486 { "amoeba.shrinking.frames", "3" },
1487 { "amoeba.shrinking.delay", "2" },
1488 { "amoeba.shrinking.anim_mode", "linear,reverse" },
1489 { "amoeba_wet", "RocksElements.png" },
1490 { "amoeba_wet.xpos", "8" },
1491 { "amoeba_wet.ypos", "6" },
1492 { "amoeba_wet.frames", "4" },
1493 { "amoeba_wet.delay", "1000000" },
1494 { "amoeba_wet.anim_mode", "random" },
1495 { "amoeba_wet.EDITOR", "RocksElements.png" },
1496 { "amoeba_wet.EDITOR.xpos", "4" },
1497 { "amoeba_wet.EDITOR.ypos", "6" },
1498 { "amoeba.dropping", "RocksElements.png" },
1499 { "amoeba.dropping.xpos", "8" },
1500 { "amoeba.dropping.ypos", "6" },
1501 { "amoeba.dropping.frames", "4" },
1502 { "amoeba.dropping.delay", "1000000" },
1503 { "amoeba.dropping.anim_mode", "random" },
1504 { "amoeba_dry", "RocksElements.png" },
1505 { "amoeba_dry.xpos", "8" },
1506 { "amoeba_dry.ypos", "6" },
1507 { "amoeba_dry.frames", "4" },
1508 { "amoeba_dry.delay", "1000000" },
1509 { "amoeba_dry.anim_mode", "random" },
1510 { "amoeba_full", "RocksElements.png" },
1511 { "amoeba_full.xpos", "8" },
1512 { "amoeba_full.ypos", "6" },
1513 { "amoeba_full.frames", "4" },
1514 { "amoeba_full.delay", "1000000" },
1515 { "amoeba_full.anim_mode", "random" },
1516 { "amoeba_full.EDITOR", "RocksElements.png" },
1517 { "amoeba_full.EDITOR.xpos", "8" },
1518 { "amoeba_full.EDITOR.ypos", "7" },
1519 { "amoeba_dead", "RocksElements.png" },
1520 { "amoeba_dead.xpos", "12" },
1521 { "amoeba_dead.ypos", "6" },
1522 { "amoeba_dead.frames", "4" },
1523 { "amoeba_dead.delay", "1000000" },
1524 { "amoeba_dead.anim_mode", "random" },
1525 { "amoeba_dead.EDITOR", "RocksElements.png" },
1526 { "amoeba_dead.EDITOR.xpos", "12" },
1527 { "amoeba_dead.EDITOR.ypos", "6" },
1529 { "em_key_1", "RocksSP.png" },
1530 { "em_key_1.xpos", "4" },
1531 { "em_key_1.ypos", "6" },
1532 { "em_key_1.frames", "1" },
1533 { "em_key_2", "RocksSP.png" },
1534 { "em_key_2.xpos", "5" },
1535 { "em_key_2.ypos", "6" },
1536 { "em_key_2.frames", "1" },
1537 { "em_key_3", "RocksSP.png" },
1538 { "em_key_3.xpos", "6" },
1539 { "em_key_3.ypos", "6" },
1540 { "em_key_3.frames", "1" },
1541 { "em_key_4", "RocksSP.png" },
1542 { "em_key_4.xpos", "7" },
1543 { "em_key_4.ypos", "6" },
1544 { "em_key_4.frames", "1" },
1546 { "dc_key_white", "RocksSP.png" },
1547 { "dc_key_white.xpos", "13" },
1548 { "dc_key_white.ypos", "1" },
1549 { "dc_key_white.frames", "1" },
1551 { "em_gate_1", "RocksSP.png" },
1552 { "em_gate_1.xpos", "0" },
1553 { "em_gate_1.ypos", "7" },
1554 { "em_gate_1.frames", "1" },
1555 { "em_gate_2", "RocksSP.png" },
1556 { "em_gate_2.xpos", "1" },
1557 { "em_gate_2.ypos", "7" },
1558 { "em_gate_2.frames", "1" },
1559 { "em_gate_3", "RocksSP.png" },
1560 { "em_gate_3.xpos", "2" },
1561 { "em_gate_3.ypos", "7" },
1562 { "em_gate_3.frames", "1" },
1563 { "em_gate_4", "RocksSP.png" },
1564 { "em_gate_4.xpos", "3" },
1565 { "em_gate_4.ypos", "7" },
1566 { "em_gate_4.frames", "1" },
1568 { "dc_gate_white", "RocksSP.png" },
1569 { "dc_gate_white.xpos", "14" },
1570 { "dc_gate_white.ypos", "1" },
1571 { "dc_gate_white.frames", "1" },
1573 { "em_gate_1_gray", "RocksSP.png" },
1574 { "em_gate_1_gray.xpos", "4" },
1575 { "em_gate_1_gray.ypos", "7" },
1576 { "em_gate_1_gray.frames", "1" },
1577 { "em_gate_1_gray.EDITOR", "RocksSP.png" },
1578 { "em_gate_1_gray.EDITOR.xpos", "12" },
1579 { "em_gate_1_gray.EDITOR.ypos", "11" },
1580 { "em_gate_1_gray.active", "RocksSP.png" },
1581 { "em_gate_1_gray.active.xpos", "0" },
1582 { "em_gate_1_gray.active.ypos", "7" },
1583 { "em_gate_1_gray.active.frames", "1" },
1584 { "em_gate_2_gray", "RocksSP.png" },
1585 { "em_gate_2_gray.xpos", "5" },
1586 { "em_gate_2_gray.ypos", "7" },
1587 { "em_gate_2_gray.frames", "1" },
1588 { "em_gate_2_gray.EDITOR", "RocksSP.png" },
1589 { "em_gate_2_gray.EDITOR.xpos", "13" },
1590 { "em_gate_2_gray.EDITOR.ypos", "11" },
1591 { "em_gate_2_gray.active", "RocksSP.png" },
1592 { "em_gate_2_gray.active.xpos", "1" },
1593 { "em_gate_2_gray.active.ypos", "7" },
1594 { "em_gate_2_gray.active.frames", "1" },
1595 { "em_gate_3_gray", "RocksSP.png" },
1596 { "em_gate_3_gray.xpos", "6" },
1597 { "em_gate_3_gray.ypos", "7" },
1598 { "em_gate_3_gray.frames", "1" },
1599 { "em_gate_3_gray.EDITOR", "RocksSP.png" },
1600 { "em_gate_3_gray.EDITOR.xpos", "14" },
1601 { "em_gate_3_gray.EDITOR.ypos", "11" },
1602 { "em_gate_3_gray.active", "RocksSP.png" },
1603 { "em_gate_3_gray.active.xpos", "2" },
1604 { "em_gate_3_gray.active.ypos", "7" },
1605 { "em_gate_3_gray.active.frames", "1" },
1606 { "em_gate_4_gray", "RocksSP.png" },
1607 { "em_gate_4_gray.xpos", "7" },
1608 { "em_gate_4_gray.ypos", "7" },
1609 { "em_gate_4_gray.frames", "1" },
1610 { "em_gate_4_gray.EDITOR", "RocksSP.png" },
1611 { "em_gate_4_gray.EDITOR.xpos", "15" },
1612 { "em_gate_4_gray.EDITOR.ypos", "11" },
1613 { "em_gate_4_gray.active", "RocksSP.png" },
1614 { "em_gate_4_gray.active.xpos", "3" },
1615 { "em_gate_4_gray.active.ypos", "7" },
1616 { "em_gate_4_gray.active.frames", "1" },
1618 { "dc_gate_white_gray", "RocksSP.png" },
1619 { "dc_gate_white_gray.xpos", "7" },
1620 { "dc_gate_white_gray.ypos", "7" },
1621 { "dc_gate_white_gray.frames", "1" },
1622 { "dc_gate_white_gray.EDITOR", "RocksSP.png" },
1623 { "dc_gate_white_gray.EDITOR.xpos", "15" },
1624 { "dc_gate_white_gray.EDITOR.ypos", "1" },
1625 { "dc_gate_white_gray.active", "RocksSP.png" },
1626 { "dc_gate_white_gray.active.xpos", "14" },
1627 { "dc_gate_white_gray.active.ypos", "1" },
1628 { "dc_gate_white_gray.active.frames", "1" },
1630 { "dc_gate_fake_gray", "RocksSP.png" },
1631 { "dc_gate_fake_gray.xpos", "7" },
1632 { "dc_gate_fake_gray.ypos", "7" },
1633 { "dc_gate_fake_gray.frames", "1" },
1635 { "exit_closed", "RocksElements.png" },
1636 { "exit_closed.xpos", "0" },
1637 { "exit_closed.ypos", "11" },
1638 { "exit_closed.frames", "1" },
1639 { "exit.opening", "RocksElements.png" },
1640 { "exit.opening.xpos", "0" },
1641 { "exit.opening.ypos", "11" },
1642 { "exit.opening.frames", "5" },
1643 { "exit.opening.delay", "6" },
1644 { "exit.opening.anim_mode", "linear" },
1645 { "exit_open", "RocksElements.png" },
1646 { "exit_open.xpos", "4" },
1647 { "exit_open.ypos", "11" },
1648 { "exit_open.frames", "4" },
1649 { "exit_open.delay", "4" },
1650 { "exit_open.anim_mode", "pingpong" },
1651 { "exit.closing", "RocksElements.png" },
1652 { "exit.closing.xpos", "0" },
1653 { "exit.closing.ypos", "11" },
1654 { "exit.closing.frames", "5" },
1655 { "exit.closing.delay", "6" },
1656 { "exit.closing.anim_mode", "linear,reverse" },
1658 { "steel_exit_closed", "RocksDC2.png" },
1659 { "steel_exit_closed.xpos", "8" },
1660 { "steel_exit_closed.ypos", "0" },
1661 { "steel_exit_closed.frames", "1" },
1662 { "steel_exit.opening", "RocksDC2.png" },
1663 { "steel_exit.opening.xpos", "8" },
1664 { "steel_exit.opening.ypos", "0" },
1665 { "steel_exit.opening.frames", "5" },
1666 { "steel_exit.opening.delay", "6" },
1667 { "steel_exit.opening.anim_mode", "linear" },
1668 { "steel_exit_open", "RocksDC2.png" },
1669 { "steel_exit_open.xpos", "12" },
1670 { "steel_exit_open.ypos", "0" },
1671 { "steel_exit_open.frames", "4" },
1672 { "steel_exit_open.delay", "4" },
1673 { "steel_exit_open.anim_mode", "pingpong" },
1674 { "steel_exit.closing", "RocksDC2.png" },
1675 { "steel_exit.closing.xpos", "8" },
1676 { "steel_exit.closing.ypos", "0" },
1677 { "steel_exit.closing.frames", "5" },
1678 { "steel_exit.closing.delay", "6" },
1679 { "steel_exit.closing.anim_mode", "linear,reverse" },
1681 { "em_exit_closed", "RocksDC2.png" },
1682 { "em_exit_closed.xpos", "0" },
1683 { "em_exit_closed.ypos", "4" },
1684 { "em_exit_closed.frames", "1" },
1685 { "em_exit.opening", "RocksDC2.png" },
1686 { "em_exit.opening.xpos", "0" },
1687 { "em_exit.opening.ypos", "4" },
1688 { "em_exit.opening.frames", "5" },
1689 { "em_exit.opening.delay", "6" },
1690 { "em_exit.opening.anim_mode", "linear" },
1691 { "em_exit_open", "RocksDC2.png" },
1692 { "em_exit_open.xpos", "4" },
1693 { "em_exit_open.ypos", "4" },
1694 { "em_exit_open.frames", "4" },
1695 { "em_exit_open.delay", "4" },
1696 { "em_exit_open.anim_mode", "pingpong" },
1697 { "em_exit.closing", "RocksDC2.png" },
1698 { "em_exit.closing.xpos", "0" },
1699 { "em_exit.closing.ypos", "6" },
1700 { "em_exit.closing.frames", "5" },
1701 { "em_exit.closing.delay", "6" },
1702 { "em_exit.closing.anim_mode", "linear" },
1704 { "em_steel_exit_closed", "RocksDC2.png" },
1705 { "em_steel_exit_closed.xpos", "0" },
1706 { "em_steel_exit_closed.ypos", "5" },
1707 { "em_steel_exit_closed.frames", "1" },
1708 { "em_steel_exit.opening", "RocksDC2.png" },
1709 { "em_steel_exit.opening.xpos", "0" },
1710 { "em_steel_exit.opening.ypos", "5" },
1711 { "em_steel_exit.opening.frames", "5" },
1712 { "em_steel_exit.opening.delay", "6" },
1713 { "em_steel_exit.opening.anim_mode", "linear" },
1714 { "em_steel_exit_open", "RocksDC2.png" },
1715 { "em_steel_exit_open.xpos", "4" },
1716 { "em_steel_exit_open.ypos", "5" },
1717 { "em_steel_exit_open.frames", "4" },
1718 { "em_steel_exit_open.delay", "4" },
1719 { "em_steel_exit_open.anim_mode", "pingpong" },
1720 { "em_steel_exit.closing", "RocksDC2.png" },
1721 { "em_steel_exit.closing.xpos", "0" },
1722 { "em_steel_exit.closing.ypos", "7" },
1723 { "em_steel_exit.closing.frames", "5" },
1724 { "em_steel_exit.closing.delay", "6" },
1725 { "em_steel_exit.closing.anim_mode", "linear" },
1727 // images for Emerald Mine Club style elements and actions
1729 { "balloon", "RocksDC.png" },
1730 { "balloon.xpos", "12" },
1731 { "balloon.ypos", "7" },
1732 { "balloon.frames", "1" },
1733 { "balloon.moving", "RocksDC.png" },
1734 { "balloon.moving.xpos", "12" },
1735 { "balloon.moving.ypos", "7" },
1736 { "balloon.moving.frames", "4" },
1737 { "balloon.moving.anim_mode", "pingpong" },
1738 { "balloon.moving.delay", "2" },
1739 { "balloon.pushing", "RocksDC.png" },
1740 { "balloon.pushing.xpos", "12" },
1741 { "balloon.pushing.ypos", "7" },
1742 { "balloon.pushing.frames", "4" },
1743 { "balloon.pushing.anim_mode", "pingpong" },
1744 { "balloon.pushing.delay", "2" },
1745 { "balloon_switch_left", "RocksDC.png" },
1746 { "balloon_switch_left.xpos", "8" },
1747 { "balloon_switch_left.ypos", "7" },
1748 { "balloon_switch_left.frames", "1" },
1749 { "balloon_switch_right", "RocksDC.png" },
1750 { "balloon_switch_right.xpos", "9" },
1751 { "balloon_switch_right.ypos", "7" },
1752 { "balloon_switch_right.frames", "1" },
1753 { "balloon_switch_up", "RocksDC.png" },
1754 { "balloon_switch_up.xpos", "10" },
1755 { "balloon_switch_up.ypos", "7" },
1756 { "balloon_switch_up.frames", "1" },
1757 { "balloon_switch_down", "RocksDC.png" },
1758 { "balloon_switch_down.xpos", "11" },
1759 { "balloon_switch_down.ypos", "7" },
1760 { "balloon_switch_down.frames", "1" },
1761 { "balloon_switch_any", "RocksDC.png" },
1762 { "balloon_switch_any.xpos", "15" },
1763 { "balloon_switch_any.ypos", "0" },
1764 { "balloon_switch_any.frames", "1" },
1765 { "balloon_switch_none", "RocksDC.png" },
1766 { "balloon_switch_none.xpos", "13" },
1767 { "balloon_switch_none.ypos", "5" },
1768 { "balloon_switch_none.frames", "1" },
1770 { "spring", "RocksDC.png" },
1771 { "spring.xpos", "8" },
1772 { "spring.ypos", "13" },
1773 { "spring.frames", "1" },
1775 { "emc_steelwall_1", "RocksDC.png" },
1776 { "emc_steelwall_1.xpos", "14" },
1777 { "emc_steelwall_1.ypos", "0" },
1778 { "emc_steelwall_1.frames", "1" },
1779 { "emc_steelwall_2", "RocksEMC.png" },
1780 { "emc_steelwall_2.xpos", "9" },
1781 { "emc_steelwall_2.ypos", "8" },
1782 { "emc_steelwall_2.frames", "1" },
1783 { "emc_steelwall_3", "RocksEMC.png" },
1784 { "emc_steelwall_3.xpos", "9" },
1785 { "emc_steelwall_3.ypos", "9" },
1786 { "emc_steelwall_3.frames", "1" },
1787 { "emc_steelwall_4", "RocksEMC.png" },
1788 { "emc_steelwall_4.xpos", "9" },
1789 { "emc_steelwall_4.ypos", "10" },
1790 { "emc_steelwall_4.frames", "1" },
1792 { "emc_wall_1", "RocksDC.png" },
1793 { "emc_wall_1.xpos", "13" },
1794 { "emc_wall_1.ypos", "6" },
1795 { "emc_wall_1.frames", "1" },
1796 { "emc_wall_2", "RocksDC.png" },
1797 { "emc_wall_2.xpos", "14" },
1798 { "emc_wall_2.ypos", "6" },
1799 { "emc_wall_2.frames", "1" },
1800 { "emc_wall_3", "RocksDC.png" },
1801 { "emc_wall_3.xpos", "15" },
1802 { "emc_wall_3.ypos", "6" },
1803 { "emc_wall_3.frames", "1" },
1804 { "emc_wall_4", "RocksDC.png" },
1805 { "emc_wall_4.xpos", "14" },
1806 { "emc_wall_4.ypos", "1" },
1807 { "emc_wall_4.frames", "1" },
1808 { "emc_wall_5", "RocksDC.png" },
1809 { "emc_wall_5.xpos", "15" },
1810 { "emc_wall_5.ypos", "1" },
1811 { "emc_wall_5.frames", "1" },
1812 { "emc_wall_6", "RocksDC.png" },
1813 { "emc_wall_6.xpos", "14" },
1814 { "emc_wall_6.ypos", "2" },
1815 { "emc_wall_6.frames", "1" },
1816 { "emc_wall_7", "RocksDC.png" },
1817 { "emc_wall_7.xpos", "15" },
1818 { "emc_wall_7.ypos", "2" },
1819 { "emc_wall_7.frames", "1" },
1820 { "emc_wall_8", "RocksEMC.png" },
1821 { "emc_wall_8.xpos", "8" },
1822 { "emc_wall_8.ypos", "7" },
1823 { "emc_wall_8.frames", "1" },
1825 // images for Diamond Caves style elements and actions
1827 { "invisible_steelwall", "RocksSP.png" },
1828 { "invisible_steelwall.xpos", "3" },
1829 { "invisible_steelwall.ypos", "5" },
1830 { "invisible_steelwall.frames", "1" },
1831 { "invisible_steelwall.EDITOR", "RocksSP.png" },
1832 { "invisible_steelwall.EDITOR.xpos", "1" },
1833 { "invisible_steelwall.EDITOR.ypos", "5" },
1834 { "invisible_steelwall.active", "RocksSP.png" },
1835 { "invisible_steelwall.active.xpos", "1" },
1836 { "invisible_steelwall.active.ypos", "5" },
1837 { "invisible_steelwall.active.frames", "1" },
1839 { "invisible_wall", "RocksSP.png" },
1840 { "invisible_wall.xpos", "7" },
1841 { "invisible_wall.ypos", "5" },
1842 { "invisible_wall.frames", "1" },
1843 { "invisible_wall.EDITOR", "RocksSP.png" },
1844 { "invisible_wall.EDITOR.xpos", "5" },
1845 { "invisible_wall.EDITOR.ypos", "5" },
1846 { "invisible_wall.active", "RocksSP.png" },
1847 { "invisible_wall.active.xpos", "5" },
1848 { "invisible_wall.active.ypos", "5" },
1849 { "invisible_wall.active.frames", "1" },
1851 { "invisible_sand", "RocksSP.png" },
1852 { "invisible_sand.xpos", "0" },
1853 { "invisible_sand.ypos", "0" },
1854 { "invisible_sand.frames", "1" },
1855 { "invisible_sand.EDITOR", "RocksEMC.png" },
1856 { "invisible_sand.EDITOR.xpos", "2" },
1857 { "invisible_sand.EDITOR.ypos", "4" },
1858 { "invisible_sand.active", "RocksEMC.png" },
1859 { "invisible_sand.active.xpos", "2" },
1860 { "invisible_sand.active.ypos", "4" },
1861 { "invisible_sand.active.frames", "1" },
1862 { "invisible_sand.active.CRUMBLED", "RocksEMC.png" },
1863 { "invisible_sand.active.CRUMBLED.xpos", "3" },
1864 { "invisible_sand.active.CRUMBLED.ypos", "4" },
1865 { "invisible_sand.active.CRUMBLED.frames", "1" },
1866 { "invisible_sand.active.digging.left", "RocksEMC.png" },
1867 { "invisible_sand.active.digging.left.xpos", "6" },
1868 { "invisible_sand.active.digging.left.ypos", "2" },
1869 { "invisible_sand.active.digging.left.frames","3" },
1870 { "invisible_sand.active.digging.left.delay", "2" },
1871 { "invisible_sand.active.digging.left.anim_mode","linear" },
1872 { "invisible_sand.active.digging.right", "RocksEMC.png" },
1873 { "invisible_sand.active.digging.right.xpos", "9" },
1874 { "invisible_sand.active.digging.right.ypos", "2" },
1875 { "invisible_sand.active.digging.right.frames","3" },
1876 { "invisible_sand.active.digging.right.delay","2" },
1877 { "invisible_sand.active.digging.right.anim_mode","linear" },
1878 { "invisible_sand.active.digging.up", "RocksEMC.png" },
1879 { "invisible_sand.active.digging.up.xpos", "0" },
1880 { "invisible_sand.active.digging.up.ypos", "2" },
1881 { "invisible_sand.active.digging.up.frames", "3" },
1882 { "invisible_sand.active.digging.up.delay", "2" },
1883 { "invisible_sand.active.digging.up.anim_mode","linear" },
1884 { "invisible_sand.active.digging.down", "RocksEMC.png" },
1885 { "invisible_sand.active.digging.down.xpos", "3" },
1886 { "invisible_sand.active.digging.down.ypos", "2" },
1887 { "invisible_sand.active.digging.down.frames","3" },
1888 { "invisible_sand.active.digging.down.delay", "2" },
1889 { "invisible_sand.active.digging.down.anim_mode","linear" },
1890 { "invisible_sand.active.digging.left.CRUMBLED", "RocksEMC.png" },
1891 { "invisible_sand.active.digging.left.CRUMBLED.xpos", "6" },
1892 { "invisible_sand.active.digging.left.CRUMBLED.ypos", "3" },
1893 { "invisible_sand.active.digging.left.CRUMBLED.frames","3" },
1894 { "invisible_sand.active.digging.left.CRUMBLED.delay","2" },
1895 { "invisible_sand.active.digging.left.CRUMBLED.anim_mode","linear" },
1896 { "invisible_sand.active.digging.right.CRUMBLED", "RocksEMC.png" },
1897 { "invisible_sand.active.digging.right.CRUMBLED.xpos","9" },
1898 { "invisible_sand.active.digging.right.CRUMBLED.ypos","3" },
1899 { "invisible_sand.active.digging.right.CRUMBLED.frames","3" },
1900 { "invisible_sand.active.digging.right.CRUMBLED.delay","2" },
1901 { "invisible_sand.active.digging.right.CRUMBLED.anim_mode","linear" },
1902 { "invisible_sand.active.digging.up.CRUMBLED", "RocksEMC.png" },
1903 { "invisible_sand.active.digging.up.CRUMBLED.xpos", "0" },
1904 { "invisible_sand.active.digging.up.CRUMBLED.ypos", "3" },
1905 { "invisible_sand.active.digging.up.CRUMBLED.frames", "3" },
1906 { "invisible_sand.active.digging.up.CRUMBLED.delay", "2" },
1907 { "invisible_sand.active.digging.up.CRUMBLED.anim_mode","linear" },
1908 { "invisible_sand.active.digging.down.CRUMBLED", "RocksEMC.png" },
1909 { "invisible_sand.active.digging.down.CRUMBLED.xpos", "3" },
1910 { "invisible_sand.active.digging.down.CRUMBLED.ypos", "3" },
1911 { "invisible_sand.active.digging.down.CRUMBLED.frames","3" },
1912 { "invisible_sand.active.digging.down.CRUMBLED.delay","2" },
1913 { "invisible_sand.active.digging.down.CRUMBLED.anim_mode","linear" },
1915 { "conveyor_belt_1_middle", "RocksDC.png" },
1916 { "conveyor_belt_1_middle.xpos", "0" },
1917 { "conveyor_belt_1_middle.ypos", "0" },
1918 { "conveyor_belt_1_middle.frames", "1" },
1919 { "conveyor_belt_1_middle.active", "RocksDC.png" },
1920 { "conveyor_belt_1_middle.active.xpos", "0" },
1921 { "conveyor_belt_1_middle.active.ypos", "0" },
1922 { "conveyor_belt_1_middle.active.frames", "8" },
1923 { "conveyor_belt_1_middle.active.delay", "2" },
1924 { "conveyor_belt_1_left", "RocksDC.png" },
1925 { "conveyor_belt_1_left.xpos", "0" },
1926 { "conveyor_belt_1_left.ypos", "1" },
1927 { "conveyor_belt_1_left.frames", "1" },
1928 { "conveyor_belt_1_left.active", "RocksDC.png" },
1929 { "conveyor_belt_1_left.active.xpos", "0" },
1930 { "conveyor_belt_1_left.active.ypos", "1" },
1931 { "conveyor_belt_1_left.active.frames", "8" },
1932 { "conveyor_belt_1_left.active.delay", "2" },
1933 { "conveyor_belt_1_right", "RocksDC.png" },
1934 { "conveyor_belt_1_right.xpos", "0" },
1935 { "conveyor_belt_1_right.ypos", "2" },
1936 { "conveyor_belt_1_right.frames", "1" },
1937 { "conveyor_belt_1_right.active", "RocksDC.png" },
1938 { "conveyor_belt_1_right.active.xpos", "0" },
1939 { "conveyor_belt_1_right.active.ypos", "2" },
1940 { "conveyor_belt_1_right.active.frames", "8" },
1941 { "conveyor_belt_1_right.active.delay", "2" },
1942 { "conveyor_belt_1_switch_left", "RocksDC.png" },
1943 { "conveyor_belt_1_switch_left.xpos", "0" },
1944 { "conveyor_belt_1_switch_left.ypos", "12" },
1945 { "conveyor_belt_1_switch_left.frames", "1" },
1946 { "conveyor_belt_1_switch_middle", "RocksDC.png" },
1947 { "conveyor_belt_1_switch_middle.xpos", "0" },
1948 { "conveyor_belt_1_switch_middle.ypos", "13" },
1949 { "conveyor_belt_1_switch_middle.frames", "1" },
1950 { "conveyor_belt_1_switch_right", "RocksDC.png" },
1951 { "conveyor_belt_1_switch_right.xpos", "0" },
1952 { "conveyor_belt_1_switch_right.ypos", "14" },
1953 { "conveyor_belt_1_switch_right.frames", "1" },
1955 { "conveyor_belt_2_middle", "RocksDC.png" },
1956 { "conveyor_belt_2_middle.xpos", "0" },
1957 { "conveyor_belt_2_middle.ypos", "3" },
1958 { "conveyor_belt_2_middle.frames", "1" },
1959 { "conveyor_belt_2_middle.active", "RocksDC.png" },
1960 { "conveyor_belt_2_middle.active.xpos", "0" },
1961 { "conveyor_belt_2_middle.active.ypos", "3" },
1962 { "conveyor_belt_2_middle.active.frames", "8" },
1963 { "conveyor_belt_2_middle.active.delay", "2" },
1964 { "conveyor_belt_2_left", "RocksDC.png" },
1965 { "conveyor_belt_2_left.xpos", "0" },
1966 { "conveyor_belt_2_left.ypos", "4" },
1967 { "conveyor_belt_2_left.frames", "1" },
1968 { "conveyor_belt_2_left.active", "RocksDC.png" },
1969 { "conveyor_belt_2_left.active.xpos", "0" },
1970 { "conveyor_belt_2_left.active.ypos", "4" },
1971 { "conveyor_belt_2_left.active.frames", "8" },
1972 { "conveyor_belt_2_left.active.delay", "2" },
1973 { "conveyor_belt_2_right", "RocksDC.png" },
1974 { "conveyor_belt_2_right.xpos", "0" },
1975 { "conveyor_belt_2_right.ypos", "5" },
1976 { "conveyor_belt_2_right.frames", "1" },
1977 { "conveyor_belt_2_right.active", "RocksDC.png" },
1978 { "conveyor_belt_2_right.active.xpos", "0" },
1979 { "conveyor_belt_2_right.active.ypos", "5" },
1980 { "conveyor_belt_2_right.active.frames", "8" },
1981 { "conveyor_belt_2_right.active.delay", "2" },
1982 { "conveyor_belt_2_switch_left", "RocksDC.png" },
1983 { "conveyor_belt_2_switch_left.xpos", "1" },
1984 { "conveyor_belt_2_switch_left.ypos", "12" },
1985 { "conveyor_belt_2_switch_left.frames", "1" },
1986 { "conveyor_belt_2_switch_middle", "RocksDC.png" },
1987 { "conveyor_belt_2_switch_middle.xpos", "1" },
1988 { "conveyor_belt_2_switch_middle.ypos", "13" },
1989 { "conveyor_belt_2_switch_middle.frames", "1" },
1990 { "conveyor_belt_2_switch_right", "RocksDC.png" },
1991 { "conveyor_belt_2_switch_right.xpos", "1" },
1992 { "conveyor_belt_2_switch_right.ypos", "14" },
1993 { "conveyor_belt_2_switch_right.frames", "1" },
1995 { "conveyor_belt_3_middle", "RocksDC.png" },
1996 { "conveyor_belt_3_middle.xpos", "0" },
1997 { "conveyor_belt_3_middle.ypos", "6" },
1998 { "conveyor_belt_3_middle.frames", "1" },
1999 { "conveyor_belt_3_middle.active", "RocksDC.png" },
2000 { "conveyor_belt_3_middle.active.xpos", "0" },
2001 { "conveyor_belt_3_middle.active.ypos", "6" },
2002 { "conveyor_belt_3_middle.active.frames", "8" },
2003 { "conveyor_belt_3_middle.active.delay", "2" },
2004 { "conveyor_belt_3_left", "RocksDC.png" },
2005 { "conveyor_belt_3_left.xpos", "0" },
2006 { "conveyor_belt_3_left.ypos", "7" },
2007 { "conveyor_belt_3_left.frames", "1" },
2008 { "conveyor_belt_3_left.active", "RocksDC.png" },
2009 { "conveyor_belt_3_left.active.xpos", "0" },
2010 { "conveyor_belt_3_left.active.ypos", "7" },
2011 { "conveyor_belt_3_left.active.frames", "8" },
2012 { "conveyor_belt_3_left.active.delay", "2" },
2013 { "conveyor_belt_3_right", "RocksDC.png" },
2014 { "conveyor_belt_3_right.xpos", "0" },
2015 { "conveyor_belt_3_right.ypos", "8" },
2016 { "conveyor_belt_3_right.frames", "1" },
2017 { "conveyor_belt_3_right.active", "RocksDC.png" },
2018 { "conveyor_belt_3_right.active.xpos", "0" },
2019 { "conveyor_belt_3_right.active.ypos", "8" },
2020 { "conveyor_belt_3_right.active.frames", "8" },
2021 { "conveyor_belt_3_right.active.delay", "2" },
2022 { "conveyor_belt_3_switch_left", "RocksDC.png" },
2023 { "conveyor_belt_3_switch_left.xpos", "2" },
2024 { "conveyor_belt_3_switch_left.ypos", "12" },
2025 { "conveyor_belt_3_switch_left.frames", "1" },
2026 { "conveyor_belt_3_switch_middle", "RocksDC.png" },
2027 { "conveyor_belt_3_switch_middle.xpos", "2" },
2028 { "conveyor_belt_3_switch_middle.ypos", "13" },
2029 { "conveyor_belt_3_switch_middle.frames", "1" },
2030 { "conveyor_belt_3_switch_right", "RocksDC.png" },
2031 { "conveyor_belt_3_switch_right.xpos", "2" },
2032 { "conveyor_belt_3_switch_right.ypos", "14" },
2033 { "conveyor_belt_3_switch_right.frames", "1" },
2035 { "conveyor_belt_4_middle", "RocksDC.png" },
2036 { "conveyor_belt_4_middle.xpos", "0" },
2037 { "conveyor_belt_4_middle.ypos", "9" },
2038 { "conveyor_belt_4_middle.frames", "1" },
2039 { "conveyor_belt_4_middle.active", "RocksDC.png" },
2040 { "conveyor_belt_4_middle.active.xpos", "0" },
2041 { "conveyor_belt_4_middle.active.ypos", "9" },
2042 { "conveyor_belt_4_middle.active.frames", "8" },
2043 { "conveyor_belt_4_middle.active.delay", "2" },
2044 { "conveyor_belt_4_left", "RocksDC.png" },
2045 { "conveyor_belt_4_left.xpos", "0" },
2046 { "conveyor_belt_4_left.ypos", "10" },
2047 { "conveyor_belt_4_left.frames", "1" },
2048 { "conveyor_belt_4_left.active", "RocksDC.png" },
2049 { "conveyor_belt_4_left.active.xpos", "0" },
2050 { "conveyor_belt_4_left.active.ypos", "10" },
2051 { "conveyor_belt_4_left.active.frames", "8" },
2052 { "conveyor_belt_4_left.active.delay", "2" },
2053 { "conveyor_belt_4_right", "RocksDC.png" },
2054 { "conveyor_belt_4_right.xpos", "0" },
2055 { "conveyor_belt_4_right.ypos", "11" },
2056 { "conveyor_belt_4_right.frames", "1" },
2057 { "conveyor_belt_4_right.active", "RocksDC.png" },
2058 { "conveyor_belt_4_right.active.xpos", "0" },
2059 { "conveyor_belt_4_right.active.ypos", "11" },
2060 { "conveyor_belt_4_right.active.frames", "8" },
2061 { "conveyor_belt_4_right.active.delay", "2" },
2062 { "conveyor_belt_4_switch_left", "RocksDC.png" },
2063 { "conveyor_belt_4_switch_left.xpos", "3" },
2064 { "conveyor_belt_4_switch_left.ypos", "12" },
2065 { "conveyor_belt_4_switch_left.frames", "1" },
2066 { "conveyor_belt_4_switch_middle", "RocksDC.png" },
2067 { "conveyor_belt_4_switch_middle.xpos", "3" },
2068 { "conveyor_belt_4_switch_middle.ypos", "13" },
2069 { "conveyor_belt_4_switch_middle.frames", "1" },
2070 { "conveyor_belt_4_switch_right", "RocksDC.png" },
2071 { "conveyor_belt_4_switch_right.xpos", "3" },
2072 { "conveyor_belt_4_switch_right.ypos", "14" },
2073 { "conveyor_belt_4_switch_right.frames", "1" },
2075 { "switchgate_switch_up", "RocksDC.png" },
2076 { "switchgate_switch_up.xpos", "4" },
2077 { "switchgate_switch_up.ypos", "12" },
2078 { "switchgate_switch_up.frames", "1" },
2079 { "switchgate_switch_down", "RocksDC.png" },
2080 { "switchgate_switch_down.xpos", "5" },
2081 { "switchgate_switch_down.ypos", "12" },
2082 { "switchgate_switch_down.frames", "1" },
2084 { "dc_switchgate_switch_up", "RocksDC2.png" },
2085 { "dc_switchgate_switch_up.xpos", "10" },
2086 { "dc_switchgate_switch_up.ypos", "1" },
2087 { "dc_switchgate_switch_up.frames", "1" },
2088 { "dc_switchgate_switch_down", "RocksDC2.png" },
2089 { "dc_switchgate_switch_down.xpos", "11" },
2090 { "dc_switchgate_switch_down.ypos", "1" },
2091 { "dc_switchgate_switch_down.frames", "1" },
2093 { "light_switch", "RocksDC.png" },
2094 { "light_switch.xpos", "6" },
2095 { "light_switch.ypos", "12" },
2096 { "light_switch.frames", "1" },
2097 { "light_switch.active", "RocksDC.png" },
2098 { "light_switch.active.xpos", "7" },
2099 { "light_switch.active.ypos", "12" },
2100 { "light_switch.active.frames", "1" },
2102 { "timegate_switch", "RocksDC.png" },
2103 { "timegate_switch.xpos", "0" },
2104 { "timegate_switch.ypos", "15" },
2105 { "timegate_switch.frames", "1" },
2106 { "timegate_switch.active", "RocksDC.png" },
2107 { "timegate_switch.active.xpos", "0" },
2108 { "timegate_switch.active.ypos", "15" },
2109 { "timegate_switch.active.frames", "4" },
2111 { "dc_timegate_switch", "RocksDC2.png" },
2112 { "dc_timegate_switch.xpos", "12" },
2113 { "dc_timegate_switch.ypos", "1" },
2114 { "dc_timegate_switch.frames", "1" },
2115 { "dc_timegate_switch.active", "RocksDC2.png" },
2116 { "dc_timegate_switch.active.xpos", "12" },
2117 { "dc_timegate_switch.active.ypos", "1" },
2118 { "dc_timegate_switch.active.frames", "4" },
2120 { "envelope_1", "RocksMore.png" },
2121 { "envelope_1.xpos", "0" },
2122 { "envelope_1.ypos", "4" },
2123 { "envelope_1.frames", "1" },
2124 { "envelope_1.collecting", "RocksMore.png" },
2125 { "envelope_1.collecting.xpos", "5" },
2126 { "envelope_1.collecting.ypos", "4" },
2127 { "envelope_1.collecting.frames", "3" },
2128 { "envelope_1.collecting.delay", "2" },
2129 { "envelope_1.collecting.anim_mode", "linear" },
2130 { "envelope_2", "RocksMore.png" },
2131 { "envelope_2.xpos", "1" },
2132 { "envelope_2.ypos", "4" },
2133 { "envelope_2.frames", "1" },
2134 { "envelope_2.collecting", "RocksMore.png" },
2135 { "envelope_2.collecting.xpos", "5" },
2136 { "envelope_2.collecting.ypos", "4" },
2137 { "envelope_2.collecting.frames", "3" },
2138 { "envelope_2.collecting.delay", "2" },
2139 { "envelope_2.collecting.anim_mode", "linear" },
2140 { "envelope_3", "RocksMore.png" },
2141 { "envelope_3.xpos", "2" },
2142 { "envelope_3.ypos", "4" },
2143 { "envelope_3.frames", "1" },
2144 { "envelope_3.collecting", "RocksMore.png" },
2145 { "envelope_3.collecting.xpos", "5" },
2146 { "envelope_3.collecting.ypos", "4" },
2147 { "envelope_3.collecting.frames", "3" },
2148 { "envelope_3.collecting.delay", "2" },
2149 { "envelope_3.collecting.anim_mode", "linear" },
2150 { "envelope_4", "RocksMore.png" },
2151 { "envelope_4.xpos", "3" },
2152 { "envelope_4.ypos", "4" },
2153 { "envelope_4.frames", "1" },
2154 { "envelope_4.collecting", "RocksMore.png" },
2155 { "envelope_4.collecting.xpos", "5" },
2156 { "envelope_4.collecting.ypos", "4" },
2157 { "envelope_4.collecting.frames", "3" },
2158 { "envelope_4.collecting.delay", "2" },
2159 { "envelope_4.collecting.anim_mode", "linear" },
2161 { "sign_radioactivity", "RocksDC.png" },
2162 { "sign_radioactivity.xpos", "4" },
2163 { "sign_radioactivity.ypos", "13" },
2164 { "sign_radioactivity.frames", "1" },
2166 { "sign_give_way", "RocksDC.png" },
2167 { "sign_give_way.xpos", "5" },
2168 { "sign_give_way.ypos", "13" },
2169 { "sign_give_way.frames", "1" },
2171 { "sign_no_entry", "RocksDC.png" },
2172 { "sign_no_entry.xpos", "6" },
2173 { "sign_no_entry.ypos", "13" },
2174 { "sign_no_entry.frames", "1" },
2176 { "sign_emergency_exit", "RocksDC.png" },
2177 { "sign_emergency_exit.xpos", "7" },
2178 { "sign_emergency_exit.ypos", "13" },
2179 { "sign_emergency_exit.frames", "1" },
2181 { "sign_yin_yang", "RocksDC.png" },
2182 { "sign_yin_yang.xpos", "4" },
2183 { "sign_yin_yang.ypos", "14" },
2184 { "sign_yin_yang.frames", "1" },
2186 { "sign_exclamation", "RocksDC.png" },
2187 { "sign_exclamation.xpos", "5" },
2188 { "sign_exclamation.ypos", "14" },
2189 { "sign_exclamation.frames", "1" },
2191 { "sign_stop", "RocksDC.png" },
2192 { "sign_stop.xpos", "6" },
2193 { "sign_stop.ypos", "14" },
2194 { "sign_stop.frames", "1" },
2196 { "sign_parking", "RocksDC.png" },
2197 { "sign_parking.xpos", "6" },
2198 { "sign_parking.ypos", "15" },
2199 { "sign_parking.frames", "1" },