rnd-20031124-1-src
[rocksndiamonds.git] / src / conf_gfx.c
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2002 Artsoft Entertainment                      *
5 *               Holger Schemel                             *
6 *               Detmolder Strasse 189                      *
7 *               33604 Bielefeld                            *
8 *               Germany                                    *
9 *               e-mail: info@artsoft.org                   *
10 *----------------------------------------------------------*
11 * conf_gfx.c                                               *
12 ***********************************************************/
13
14 #include "libgame/libgame.h"
15 #include "main.h"
16
17
18 /* List values that are not defined in the configuration file are set to
19    reliable default values. If that value is GFX_ARG_UNDEFINED, it will
20    be dynamically determined, using some of the other list values. */
21
22 struct ConfigInfo image_config_suffix[] =
23 {
24   { ".x",                               ARG_UNDEFINED,  TYPE_INTEGER    },
25   { ".y",                               ARG_UNDEFINED,  TYPE_INTEGER    },
26   { ".xpos",                            ARG_UNDEFINED,  TYPE_INTEGER    },
27   { ".ypos",                            ARG_UNDEFINED,  TYPE_INTEGER    },
28   { ".width",                           ARG_UNDEFINED,  TYPE_INTEGER    },
29   { ".height",                          ARG_UNDEFINED,  TYPE_INTEGER    },
30   { ".offset",                          ARG_UNDEFINED,  TYPE_INTEGER    },
31   { ".vertical",                        "false",        TYPE_BOOLEAN    },
32   { ".xoffset",                         ARG_UNDEFINED,  TYPE_INTEGER    },
33   { ".yoffset",                         ARG_UNDEFINED,  TYPE_INTEGER    },
34   { ".frames",                          ARG_UNDEFINED,  TYPE_INTEGER    },
35   { ".frames_per_line",                 ARG_UNDEFINED,  TYPE_INTEGER    },
36   { ".start_frame",                     ARG_UNDEFINED,  TYPE_INTEGER    },
37   { ".delay",                           "1",            TYPE_INTEGER    },
38   { ".anim_mode",                       ARG_UNDEFINED,  TYPE_STRING     },
39   { ".global_sync",                     "false",        TYPE_BOOLEAN    },
40   { ".crumbled_like",                   ARG_UNDEFINED,  TYPE_TOKEN      },
41   { ".diggable_like",                   ARG_UNDEFINED,  TYPE_TOKEN      },
42   { ".border_size",                     ARG_UNDEFINED,  TYPE_INTEGER    },
43   { ".step_offset",                     "4",            TYPE_INTEGER    },
44   { ".step_delay",                      "1",            TYPE_INTEGER    },
45   { ".direction",                       ARG_UNDEFINED,  TYPE_STRING     },
46   { ".position",                        ARG_UNDEFINED,  TYPE_STRING     },
47   { ".draw_xoffset",                    "0",            TYPE_INTEGER    },
48   { ".draw_yoffset",                    "0",            TYPE_INTEGER    },
49   { ".draw_masked",                     "false",        TYPE_BOOLEAN    },
50   { ".anim_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
51   { ".anim_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
52   { ".post_delay_fixed",                ARG_UNDEFINED,  TYPE_INTEGER    },
53   { ".post_delay_random",               ARG_UNDEFINED,  TYPE_INTEGER    },
54   { ".name",                            ARG_UNDEFINED,  TYPE_STRING     },
55
56   { NULL,                               NULL,           0               }
57 };
58
59 struct ConfigInfo image_config[] =
60 {
61   /* images for Boulder Dash style elements and actions */
62
63   { "bd_wall",                                  "RocksDC.pcx"           },
64   { "bd_wall.xpos",                             "12"                    },
65   { "bd_wall.ypos",                             "9"                     },
66   { "bd_wall.frames",                           "1"                     },
67   { "bd_wall.EDITOR",                           "RocksDC.pcx"           },
68   { "bd_wall.EDITOR.xpos",                      "14"                    },
69   { "bd_wall.EDITOR.ypos",                      "13"                    },
70
71   { "bd_rock",                                  "RocksDC.pcx"           },
72   { "bd_rock.xpos",                             "12"                    },
73   { "bd_rock.ypos",                             "10"                    },
74   { "bd_rock.frames",                           "1"                     },
75   { "bd_rock.EDITOR",                           "RocksDC.pcx"           },
76   { "bd_rock.EDITOR.xpos",                      "14"                    },
77   { "bd_rock.EDITOR.ypos",                      "14"                    },
78   { "bd_rock.moving.left",                      "RocksDC.pcx"           },
79   { "bd_rock.moving.left.xpos",                 "12"                    },
80   { "bd_rock.moving.left.ypos",                 "10"                    },
81   { "bd_rock.moving.left.frames",               "4"                     },
82   { "bd_rock.moving.left.delay",                "2"                     },
83   { "bd_rock.moving.left.anim_mode",            "reverse"               },
84   { "bd_rock.moving.right",                     "RocksDC.pcx"           },
85   { "bd_rock.moving.right.xpos",                "12"                    },
86   { "bd_rock.moving.right.ypos",                "10"                    },
87   { "bd_rock.moving.right.frames",              "4"                     },
88   { "bd_rock.moving.right.start_frame",         "1"                     },
89   { "bd_rock.moving.right.delay",               "2"                     },
90   { "bd_rock.pushing.left",                     "RocksDC.pcx"           },
91   { "bd_rock.pushing.left.xpos",                "12"                    },
92   { "bd_rock.pushing.left.ypos",                "10"                    },
93   { "bd_rock.pushing.left.frames",              "4"                     },
94   { "bd_rock.pushing.left.delay",               "2"                     },
95   { "bd_rock.pushing.left.anim_mode",           "reverse"               },
96   { "bd_rock.pushing.right",                    "RocksDC.pcx"           },
97   { "bd_rock.pushing.right.xpos",               "12"                    },
98   { "bd_rock.pushing.right.ypos",               "10"                    },
99   { "bd_rock.pushing.right.frames",             "4"                     },
100   { "bd_rock.pushing.right.start_frame",        "1"                     },
101   { "bd_rock.pushing.right.delay",              "2"                     },
102
103   { "bd_diamond",                               "RocksElements.pcx"     },
104   { "bd_diamond.xpos",                          "0"                     },
105   { "bd_diamond.ypos",                          "10"                    },
106   { "bd_diamond.frames",                        "4"                     },
107   { "bd_diamond.delay",                         "4"                     },
108   { "bd_diamond.anim_mode",                     "reverse"               },
109   { "bd_diamond.moving",                        "RocksElements.pcx"     },
110   { "bd_diamond.moving.xpos",                   "3"                     },
111   { "bd_diamond.moving.ypos",                   "10"                    },
112   { "bd_diamond.moving.frames",                 "2"                     },
113   { "bd_diamond.moving.delay",                  "4"                     },
114   { "bd_diamond.falling",                       "RocksElements.pcx"     },
115   { "bd_diamond.falling.xpos",                  "3"                     },
116   { "bd_diamond.falling.ypos",                  "10"                    },
117   { "bd_diamond.falling.frames",                "2"                     },
118   { "bd_diamond.falling.delay",                 "4"                     },
119
120   { "bd_magic_wall",                            "RocksElements.pcx"     },
121   { "bd_magic_wall.xpos",                       "12"                    },
122   { "bd_magic_wall.ypos",                       "10"                    },
123   { "bd_magic_wall.frames",                     "1"                     },
124   { "bd_magic_wall.active",                     "RocksElements.pcx"     },
125   { "bd_magic_wall.active.xpos",                "12"                    },
126   { "bd_magic_wall.active.ypos",                "10"                    },
127   { "bd_magic_wall.active.frames",              "4"                     },
128   { "bd_magic_wall.active.anim_mode",           "reverse"               },
129   { "bd_magic_wall.active.delay",               "4"                     },
130   { "bd_magic_wall.active.global_sync",         "true"                  },
131   { "bd_magic_wall.filling",                    "RocksElements.pcx"     },
132   { "bd_magic_wall.filling.xpos",               "12"                    },
133   { "bd_magic_wall.filling.ypos",               "10"                    },
134   { "bd_magic_wall.filling.frames",             "4"                     },
135   { "bd_magic_wall.filling.anim_mode",          "reverse"               },
136   { "bd_magic_wall.filling.delay",              "4"                     },
137   { "bd_magic_wall.filling.global_sync",        "true"                  },
138   { "bd_magic_wall_full",                       "RocksElements.pcx"     },
139   { "bd_magic_wall_full.xpos",                  "12"                    },
140   { "bd_magic_wall_full.ypos",                  "10"                    },
141   { "bd_magic_wall_full.frames",                "4"                     },
142   { "bd_magic_wall_full.anim_mode",             "reverse"               },
143   { "bd_magic_wall_full.delay",                 "4"                     },
144   { "bd_magic_wall_full.global_sync",           "true"                  },
145   { "bd_magic_wall.emptying",                   "RocksElements.pcx"     },
146   { "bd_magic_wall.emptying.xpos",              "12"                    },
147   { "bd_magic_wall.emptying.ypos",              "10"                    },
148   { "bd_magic_wall.emptying.frames",            "4"                     },
149   { "bd_magic_wall.emptying.anim_mode",         "reverse"               },
150   { "bd_magic_wall.emptying.delay",             "4"                     },
151   { "bd_magic_wall.emptying.global_sync",       "true"                  },
152   { "bd_magic_wall_dead",                       "RocksElements.pcx"     },
153   { "bd_magic_wall_dead.xpos",                  "12"                    },
154   { "bd_magic_wall_dead.ypos",                  "10"                    },
155   { "bd_magic_wall_dead.frames",                "1"                     },
156
157   { "bd_amoeba",                                "RocksElements.pcx"     },
158   { "bd_amoeba.xpos",                           "8"                     },
159   { "bd_amoeba.ypos",                           "6"                     },
160   { "bd_amoeba.frames",                         "4"                     },
161   { "bd_amoeba.delay",                          "1000000"               },
162   { "bd_amoeba.anim_mode",                      "random"                },
163   { "bd_amoeba.EDITOR",                         "RocksElements.pcx"     },
164   { "bd_amoeba.EDITOR.xpos",                    "8"                     },
165   { "bd_amoeba.EDITOR.ypos",                    "7"                     },
166
167   { "bd_butterfly",                             "RocksElements.pcx"     },
168   { "bd_butterfly.xpos",                        "4"                     },
169   { "bd_butterfly.ypos",                        "12"                    },
170   { "bd_butterfly.frames",                      "2"                     },
171   { "bd_butterfly.anim_mode",                   "pingpong"              },
172   { "bd_butterfly.delay",                       "4"                     },
173   { "bd_butterfly.global_sync",                 "true"                  },
174   { "bd_butterfly.right.EDITOR",                "RocksElements.pcx"     },
175   { "bd_butterfly.right.EDITOR.xpos",           "8"                     },
176   { "bd_butterfly.right.EDITOR.ypos",           "12"                    },
177   { "bd_butterfly.up.EDITOR",                   "RocksElements.pcx"     },
178   { "bd_butterfly.up.EDITOR.xpos",              "9"                     },
179   { "bd_butterfly.up.EDITOR.ypos",              "12"                    },
180   { "bd_butterfly.left.EDITOR",                 "RocksElements.pcx"     },
181   { "bd_butterfly.left.EDITOR.xpos",            "10"                    },
182   { "bd_butterfly.left.EDITOR.ypos",            "12"                    },
183   { "bd_butterfly.down.EDITOR",                 "RocksElements.pcx"     },
184   { "bd_butterfly.down.EDITOR.xpos",            "11"                    },
185   { "bd_butterfly.down.EDITOR.ypos",            "12"                    },
186
187   { "bd_firefly",                               "RocksElements.pcx"     },
188   { "bd_firefly.xpos",                          "6"                     },
189   { "bd_firefly.ypos",                          "12"                    },
190   { "bd_firefly.frames",                        "2"                     },
191   { "bd_firefly.anim_mode",                     "pingpong"              },
192   { "bd_firefly.delay",                         "4"                     },
193   { "bd_firefly.global_sync",                   "true"                  },
194   { "bd_firefly.right.EDITOR",                  "RocksElements.pcx"     },
195   { "bd_firefly.right.EDITOR.xpos",             "12"                    },
196   { "bd_firefly.right.EDITOR.ypos",             "12"                    },
197   { "bd_firefly.up.EDITOR",                     "RocksElements.pcx"     },
198   { "bd_firefly.up.EDITOR.xpos",                "13"                    },
199   { "bd_firefly.up.EDITOR.ypos",                "12"                    },
200   { "bd_firefly.left.EDITOR",                   "RocksElements.pcx"     },
201   { "bd_firefly.left.EDITOR.xpos",              "14"                    },
202   { "bd_firefly.left.EDITOR.ypos",              "12"                    },
203   { "bd_firefly.down.EDITOR",                   "RocksElements.pcx"     },
204   { "bd_firefly.down.EDITOR.xpos",              "15"                    },
205   { "bd_firefly.down.EDITOR.ypos",              "12"                    },
206
207   /* images for Supaplex style elements and actions */
208
209   { "[sp_default].exploding",                   "RocksSP.pcx"           },
210   { "[sp_default].exploding.xpos",              "8"                     },
211   { "[sp_default].exploding.ypos",              "3"                     },
212   { "[sp_default].exploding.frames",            "8"                     },
213   { "[sp_default].exploding.delay",             "3"                     },
214   { "[sp_default].exploding.anim_mode",         "linear"                },
215
216   { "sp_zonk",                                  "RocksSP.pcx"           },
217   { "sp_zonk.xpos",                             "1"                     },
218   { "sp_zonk.ypos",                             "0"                     },
219   { "sp_zonk.frames",                           "1"                     },
220   { "sp_zonk.moving.left",                      "RocksSP.pcx"           },
221   { "sp_zonk.moving.left.xpos",                 "0"                     },
222   { "sp_zonk.moving.left.ypos",                 "6"                     },
223   { "sp_zonk.moving.left.frames",               "4"                     },
224   { "sp_zonk.moving.left.delay",                "2"                     },
225   { "sp_zonk.moving.left.anim_mode",            "reverse"               },
226   { "sp_zonk.moving.right",                     "RocksSP.pcx"           },
227   { "sp_zonk.moving.right.xpos",                "0"                     },
228   { "sp_zonk.moving.right.ypos",                "6"                     },
229   { "sp_zonk.moving.right.frames",              "4"                     },
230   { "sp_zonk.moving.right.start_frame",         "1"                     },
231   { "sp_zonk.moving.right.delay",               "2"                     },
232   { "sp_zonk.pushing.left",                     "RocksSP.pcx"           },
233   { "sp_zonk.pushing.left.xpos",                "0"                     },
234   { "sp_zonk.pushing.left.ypos",                "6"                     },
235   { "sp_zonk.pushing.left.frames",              "4"                     },
236   { "sp_zonk.pushing.left.delay",               "2"                     },
237   { "sp_zonk.pushing.left.anim_mode",           "reverse"               },
238   { "sp_zonk.pushing.right",                    "RocksSP.pcx"           },
239   { "sp_zonk.pushing.right.xpos",               "0"                     },
240   { "sp_zonk.pushing.right.ypos",               "6"                     },
241   { "sp_zonk.pushing.right.frames",             "4"                     },
242   { "sp_zonk.pushing.right.start_frame",        "1"                     },
243   { "sp_zonk.pushing.right.delay",              "2"                     },
244
245   { "sp_base",                                  "RocksSP.pcx"           },
246   { "sp_base.xpos",                             "2"                     },
247   { "sp_base.ypos",                             "0"                     },
248   { "sp_base.frames",                           "1"                     },
249
250   { "sp_murphy",                                "RocksSP.pcx"           },
251   { "sp_murphy.xpos",                           "3"                     },
252   { "sp_murphy.ypos",                           "0"                     },
253   { "sp_murphy.frames",                         "1"                     },
254   { "sp_murphy.moving.left",                    "RocksSP.pcx"           },
255   { "sp_murphy.moving.left.xpos",               "8"                     },
256   { "sp_murphy.moving.left.ypos",               "0"                     },
257   { "sp_murphy.moving.left.frames",             "3"                     },
258   { "sp_murphy.moving.left.anim_mode",          "pingpong"              },
259   { "sp_murphy.moving.left.delay",              "2"                     },
260   { "sp_murphy.moving.right",                   "RocksSP.pcx"           },
261   { "sp_murphy.moving.right.xpos",              "11"                    },
262   { "sp_murphy.moving.right.ypos",              "0"                     },
263   { "sp_murphy.moving.right.frames",            "3"                     },
264   { "sp_murphy.moving.right.anim_mode",         "pingpong"              },
265   { "sp_murphy.moving.right.delay",             "2"                     },
266   { "sp_murphy.digging.left",                   "RocksSP.pcx"           },
267   { "sp_murphy.digging.left.xpos",              "8"                     },
268   { "sp_murphy.digging.left.ypos",              "0"                     },
269   { "sp_murphy.digging.left.frames",            "3"                     },
270   { "sp_murphy.digging.left.anim_mode",         "pingpong"              },
271   { "sp_murphy.digging.left.delay",             "2"                     },
272   { "sp_murphy.digging.right",                  "RocksSP.pcx"           },
273   { "sp_murphy.digging.right.xpos",             "11"                    },
274   { "sp_murphy.digging.right.ypos",             "0"                     },
275   { "sp_murphy.digging.right.frames",           "3"                     },
276   { "sp_murphy.digging.right.anim_mode",        "pingpong"              },
277   { "sp_murphy.digging.right.delay",            "2"                     },
278   { "sp_murphy.collecting.left",                "RocksSP.pcx"           },
279   { "sp_murphy.collecting.left.xpos",           "8"                     },
280   { "sp_murphy.collecting.left.ypos",           "0"                     },
281   { "sp_murphy.collecting.left.frames",         "3"                     },
282   { "sp_murphy.collecting.left.anim_mode",      "pingpong"              },
283   { "sp_murphy.collecting.left.delay",          "2"                     },
284   { "sp_murphy.collecting.right",               "RocksSP.pcx"           },
285   { "sp_murphy.collecting.right.xpos",          "11"                    },
286   { "sp_murphy.collecting.right.ypos",          "0"                     },
287   { "sp_murphy.collecting.right.frames",        "3"                     },
288   { "sp_murphy.collecting.right.anim_mode",     "pingpong"              },
289   { "sp_murphy.collecting.right.delay",         "2"                     },
290   { "sp_murphy.pushing.left",                   "RocksSP.pcx"           },
291   { "sp_murphy.pushing.left.xpos",              "11"                    },
292   { "sp_murphy.pushing.left.ypos",              "1"                     },
293   { "sp_murphy.pushing.left.frames",            "1"                     },
294   { "sp_murphy.pushing.right",                  "RocksSP.pcx"           },
295   { "sp_murphy.pushing.right.xpos",             "10"                    },
296   { "sp_murphy.pushing.right.ypos",             "1"                     },
297   { "sp_murphy.pushing.right.frames",           "1"                     },
298   { "sp_murphy.snapping.left",                  "RocksSP.pcx"           },
299   { "sp_murphy.snapping.left.xpos",             "9"                     },
300   { "sp_murphy.snapping.left.ypos",             "1"                     },
301   { "sp_murphy.snapping.left.frames",           "1"                     },
302   { "sp_murphy.snapping.right",                 "RocksSP.pcx"           },
303   { "sp_murphy.snapping.right.xpos",            "8"                     },
304   { "sp_murphy.snapping.right.ypos",            "1"                     },
305   { "sp_murphy.snapping.right.frames",          "1"                     },
306   { "sp_murphy.snapping.up",                    "RocksSP.pcx"           },
307   { "sp_murphy.snapping.up.xpos",               "14"                    },
308   { "sp_murphy.snapping.up.ypos",               "0"                     },
309   { "sp_murphy.snapping.up.frames",             "1"                     },
310   { "sp_murphy.snapping.down",                  "RocksSP.pcx"           },
311   { "sp_murphy.snapping.down.xpos",             "15"                    },
312   { "sp_murphy.snapping.down.ypos",             "0"                     },
313   { "sp_murphy.snapping.down.frames",           "1"                     },
314
315   { "sp_murphy_clone",                          "RocksSP.pcx"           },
316   { "sp_murphy_clone.xpos",                     "3"                     },
317   { "sp_murphy_clone.ypos",                     "0"                     },
318   { "sp_murphy_clone.frames",                   "1"                     },
319
320   { "sp_infotron",                              "RocksSP.pcx"           },
321   { "sp_infotron.xpos",                         "4"                     },
322   { "sp_infotron.ypos",                         "0"                     },
323   { "sp_infotron.frames",                       "1"                     },
324   { "sp_infotron.EDITOR",                       "RocksSP.pcx"           },
325   { "sp_infotron.EDITOR.xpos",                  "8"                     },
326   { "sp_infotron.EDITOR.ypos",                  "11"                    },
327
328   { "sp_chip_single",                           "RocksSP.pcx"           },
329   { "sp_chip_single.xpos",                      "5"                     },
330   { "sp_chip_single.ypos",                      "0"                     },
331   { "sp_chip_single.frames",                    "1"                     },
332   { "sp_chip_left",                             "RocksSP.pcx"           },
333   { "sp_chip_left.xpos",                        "2"                     },
334   { "sp_chip_left.ypos",                        "3"                     },
335   { "sp_chip_left.frames",                      "1"                     },
336   { "sp_chip_right",                            "RocksSP.pcx"           },
337   { "sp_chip_right.xpos",                       "3"                     },
338   { "sp_chip_right.ypos",                       "3"                     },
339   { "sp_chip_right.frames",                     "1"                     },
340   { "sp_chip_top",                              "RocksSP.pcx"           },
341   { "sp_chip_top.xpos",                         "6"                     },
342   { "sp_chip_top.ypos",                         "4"                     },
343   { "sp_chip_top.frames",                       "1"                     },
344   { "sp_chip_bottom",                           "RocksSP.pcx"           },
345   { "sp_chip_bottom.xpos",                      "7"                     },
346   { "sp_chip_bottom.ypos",                      "4"                     },
347   { "sp_chip_bottom.frames",                    "1"                     },
348
349   { "sp_hardware_gray",                         "RocksSP.pcx"           },
350   { "sp_hardware_gray.xpos",                    "6"                     },
351   { "sp_hardware_gray.ypos",                    "0"                     },
352   { "sp_hardware_gray.frames",                  "1"                     },
353   { "sp_hardware_green",                        "RocksSP.pcx"           },
354   { "sp_hardware_green.xpos",                   "5"                     },
355   { "sp_hardware_green.ypos",                   "3"                     },
356   { "sp_hardware_green.frames",                 "1"                     },
357   { "sp_hardware_blue",                         "RocksSP.pcx"           },
358   { "sp_hardware_blue.xpos",                    "6"                     },
359   { "sp_hardware_blue.ypos",                    "3"                     },
360   { "sp_hardware_blue.frames",                  "1"                     },
361   { "sp_hardware_red",                          "RocksSP.pcx"           },
362   { "sp_hardware_red.xpos",                     "7"                     },
363   { "sp_hardware_red.ypos",                     "3"                     },
364   { "sp_hardware_red.frames",                   "1"                     },
365   { "sp_hardware_yellow",                       "RocksSP.pcx"           },
366   { "sp_hardware_yellow.xpos",                  "0"                     },
367   { "sp_hardware_yellow.ypos",                  "4"                     },
368   { "sp_hardware_yellow.frames",                "1"                     },
369
370   { "sp_exit_closed",                           "RocksSP.pcx"           },
371   { "sp_exit_closed.xpos",                      "7"                     },
372   { "sp_exit_closed.ypos",                      "0"                     },
373   { "sp_exit_closed.frames",                    "1"                     },
374   { "sp_exit.opening",                          "RocksSP.pcx"           },
375   { "sp_exit.opening.xpos",                     "7"                     },
376   { "sp_exit.opening.ypos",                     "0"                     },
377   { "sp_exit.opening.frames",                   "1"                     },
378   { "sp_exit_open",                             "RocksSP.pcx"           },
379   { "sp_exit_open.xpos",                        "7"                     },
380   { "sp_exit_open.ypos",                        "0"                     },
381   { "sp_exit_open.frames",                      "1"                     },
382   { "sp_exit.closing",                          "RocksSP.pcx"           },
383   { "sp_exit.closing.xpos",                     "7"                     },
384   { "sp_exit.closing.ypos",                     "0"                     },
385   { "sp_exit.closing.frames",                   "1"                     },
386
387   { "sp_disk_orange",                           "RocksSP.pcx"           },
388   { "sp_disk_orange.xpos",                      "0"                     },
389   { "sp_disk_orange.ypos",                      "1"                     },
390   { "sp_disk_orange.frames",                    "1"                     },
391
392   { "sp_disk_yellow",                           "RocksSP.pcx"           },
393   { "sp_disk_yellow.xpos",                      "2"                     },
394   { "sp_disk_yellow.ypos",                      "2"                     },
395   { "sp_disk_yellow.frames",                    "1"                     },
396
397   { "sp_disk_red",                              "RocksSP.pcx"           },
398   { "sp_disk_red.xpos",                         "4"                     },
399   { "sp_disk_red.ypos",                         "2"                     },
400   { "sp_disk_red.frames",                       "1"                     },
401   { "sp_disk_red.collecting",                   "RocksSP.pcx"           },
402   { "sp_disk_red.collecting.xpos",              "8"                     },
403   { "sp_disk_red.collecting.ypos",              "5"                     },
404   { "sp_disk_red.collecting.frames",            "8"                     },
405   { "sp_disk_red.active",                       "RocksSP.pcx"           },
406   { "sp_disk_red.active.xpos",                  "4"                     },
407   { "sp_disk_red.active.ypos",                  "2"                     },
408   { "sp_disk_red.active.frames",                "1"                     },
409
410   { "sp_port_right",                            "RocksSP.pcx"           },
411   { "sp_port_right.xpos",                       "1"                     },
412   { "sp_port_right.ypos",                       "1"                     },
413   { "sp_port_right.frames",                     "1"                     },
414   { "sp_port_down",                             "RocksSP.pcx"           },
415   { "sp_port_down.xpos",                        "2"                     },
416   { "sp_port_down.ypos",                        "1"                     },
417   { "sp_port_down.frames",                      "1"                     },
418   { "sp_port_left",                             "RocksSP.pcx"           },
419   { "sp_port_left.xpos",                        "3"                     },
420   { "sp_port_left.ypos",                        "1"                     },
421   { "sp_port_left.frames",                      "1"                     },
422   { "sp_port_up",                               "RocksSP.pcx"           },
423   { "sp_port_up.xpos",                          "4"                     },
424   { "sp_port_up.ypos",                          "1"                     },
425   { "sp_port_up.frames",                        "1"                     },
426   { "sp_port_horizontal",                       "RocksSP.pcx"           },
427   { "sp_port_horizontal.xpos",                  "6"                     },
428   { "sp_port_horizontal.ypos",                  "2"                     },
429   { "sp_port_horizontal.frames",                "1"                     },
430   { "sp_port_vertical",                         "RocksSP.pcx"           },
431   { "sp_port_vertical.xpos",                    "5"                     },
432   { "sp_port_vertical.ypos",                    "2"                     },
433   { "sp_port_vertical.frames",                  "1"                     },
434   { "sp_port_any",                              "RocksSP.pcx"           },
435   { "sp_port_any.xpos",                         "7"                     },
436   { "sp_port_any.ypos",                         "2"                     },
437   { "sp_port_any.frames",                       "1"                     },
438   { "sp_gravity_port_right",                    "RocksSP.pcx"           },
439   { "sp_gravity_port_right.xpos",               "5"                     },
440   { "sp_gravity_port_right.ypos",               "1"                     },
441   { "sp_gravity_port_right.frames",             "1"                     },
442   { "sp_gravity_port_down",                     "RocksSP.pcx"           },
443   { "sp_gravity_port_down.xpos",                "6"                     },
444   { "sp_gravity_port_down.ypos",                "1"                     },
445   { "sp_gravity_port_down.frames",              "1"                     },
446   { "sp_gravity_port_left",                     "RocksSP.pcx"           },
447   { "sp_gravity_port_left.xpos",                "7"                     },
448   { "sp_gravity_port_left.ypos",                "1"                     },
449   { "sp_gravity_port_left.frames",              "1"                     },
450   { "sp_gravity_port_up",                       "RocksSP.pcx"           },
451   { "sp_gravity_port_up.xpos",                  "0"                     },
452   { "sp_gravity_port_up.ypos",                  "2"                     },
453   { "sp_gravity_port_up.frames",                "1"                     },
454
455   { "sp_sniksnak",                              "RocksSP.pcx"           },
456   { "sp_sniksnak.xpos",                         "1"                     },
457   { "sp_sniksnak.ypos",                         "2"                     },
458   { "sp_sniksnak.frames",                       "1"                     },
459   { "sp_sniksnak.left",                         "RocksSP.pcx"           },
460   { "sp_sniksnak.left.xpos",                    "8"                     },
461   { "sp_sniksnak.left.ypos",                    "8"                     },
462   { "sp_sniksnak.left.frames",                  "4"                     },
463   { "sp_sniksnak.left.anim_mode",               "pingpong2"             },
464   { "sp_sniksnak.right",                        "RocksSP.pcx"           },
465   { "sp_sniksnak.right.xpos",                   "12"                    },
466   { "sp_sniksnak.right.ypos",                   "8"                     },
467   { "sp_sniksnak.right.frames",                 "4"                     },
468   { "sp_sniksnak.right.anim_mode",              "pingpong2"             },
469   { "sp_sniksnak.up",                           "RocksSP.pcx"           },
470   { "sp_sniksnak.up.xpos",                      "8"                     },
471   { "sp_sniksnak.up.ypos",                      "9"                     },
472   { "sp_sniksnak.up.frames",                    "4"                     },
473   { "sp_sniksnak.up.anim_mode",                 "pingpong2"             },
474   { "sp_sniksnak.down",                         "RocksSP.pcx"           },
475   { "sp_sniksnak.down.xpos",                    "12"                    },
476   { "sp_sniksnak.down.ypos",                    "9"                     },
477   { "sp_sniksnak.down.frames",                  "4"                     },
478   { "sp_sniksnak.down.anim_mode",               "pingpong2"             },
479   { "sp_sniksnak.turning_from_left.up",         "RocksSP.pcx"           },
480   { "sp_sniksnak.turning_from_left.up.xpos",    "12"                    },
481   { "sp_sniksnak.turning_from_left.up.ypos",    "6"                     },
482   { "sp_sniksnak.turning_from_left.up.frames",  "2"                     },
483   { "sp_sniksnak.turning_from_left.up.delay",   "4"                     },
484   { "sp_sniksnak.turning_from_left.up.offset",  "1408"                  },
485   { "sp_sniksnak.turning_from_left.up.anim_mode","linear"               },
486   { "sp_sniksnak.turning_from_left.down",       "RocksSP.pcx"           },
487   { "sp_sniksnak.turning_from_left.down.xpos",  "13"                    },
488   { "sp_sniksnak.turning_from_left.down.ypos",  "6"                     },
489   { "sp_sniksnak.turning_from_left.down.frames","2"                     },
490   { "sp_sniksnak.turning_from_left.down.delay", "4"                     },
491   { "sp_sniksnak.turning_from_left.down.offset","1504"                  },
492   { "sp_sniksnak.turning_from_left.down.anim_mode","linear"             },
493   { "sp_sniksnak.turning_from_right.up",        "RocksSP.pcx"           },
494   { "sp_sniksnak.turning_from_right.up.xpos",   "15"                    },
495   { "sp_sniksnak.turning_from_right.up.ypos",   "6"                     },
496   { "sp_sniksnak.turning_from_right.up.frames", "2"                     },
497   { "sp_sniksnak.turning_from_right.up.delay",  "4"                     },
498   { "sp_sniksnak.turning_from_right.up.offset", "1312"                  },
499   { "sp_sniksnak.turning_from_right.up.anim_mode","linear"              },
500   { "sp_sniksnak.turning_from_right.down",      "RocksSP.pcx"           },
501   { "sp_sniksnak.turning_from_right.down.xpos", "14"                    },
502   { "sp_sniksnak.turning_from_right.down.ypos", "6"                     },
503   { "sp_sniksnak.turning_from_right.down.frames","2"                    },
504   { "sp_sniksnak.turning_from_right.down.delay","4"                     },
505   { "sp_sniksnak.turning_from_right.down.offset","1472"                 },
506   { "sp_sniksnak.turning_from_right.down.anim_mode","linear"            },
507   { "sp_sniksnak.turning_from_up.left",         "RocksSP.pcx"           },
508   { "sp_sniksnak.turning_from_up.left.xpos",    "12"                    },
509   { "sp_sniksnak.turning_from_up.left.ypos",    "6"                     },
510   { "sp_sniksnak.turning_from_up.left.frames",  "2"                     },
511   { "sp_sniksnak.turning_from_up.left.delay",   "4"                     },
512   { "sp_sniksnak.turning_from_up.left.offset",  "896"                   },
513   { "sp_sniksnak.turning_from_up.left.anim_mode","linear"               },
514   { "sp_sniksnak.turning_from_up.right",        "RocksSP.pcx"           },
515   { "sp_sniksnak.turning_from_up.right.xpos",   "15"                    },
516   { "sp_sniksnak.turning_from_up.right.ypos",   "6"                     },
517   { "sp_sniksnak.turning_from_up.right.frames", "2"                     },
518   { "sp_sniksnak.turning_from_up.right.delay",  "4"                     },
519   { "sp_sniksnak.turning_from_up.right.offset", "928"                   },
520   { "sp_sniksnak.turning_from_up.right.anim_mode","linear"              },
521   { "sp_sniksnak.turning_from_down.left",       "RocksSP.pcx"           },
522   { "sp_sniksnak.turning_from_down.left.xpos",  "13"                    },
523   { "sp_sniksnak.turning_from_down.left.ypos",  "6"                     },
524   { "sp_sniksnak.turning_from_down.left.frames","2"                     },
525   { "sp_sniksnak.turning_from_down.left.delay", "4"                     },
526   { "sp_sniksnak.turning_from_down.left.offset","864"                   },
527   { "sp_sniksnak.turning_from_down.left.anim_mode","linear"             },
528   { "sp_sniksnak.turning_from_down.right",      "RocksSP.pcx"           },
529   { "sp_sniksnak.turning_from_down.right.xpos", "14"                    },
530   { "sp_sniksnak.turning_from_down.right.ypos", "6"                     },
531   { "sp_sniksnak.turning_from_down.right.frames","2"                    },
532   { "sp_sniksnak.turning_from_down.right.delay","4"                     },
533   { "sp_sniksnak.turning_from_down.right.offset","960"                  },
534   { "sp_sniksnak.turning_from_down.right.anim_mode","linear"            },
535
536   { "sp_electron",                              "RocksSP.pcx"           },
537   { "sp_electron.xpos",                         "8"                     },
538   { "sp_electron.ypos",                         "10"                    },
539   { "sp_electron.frames",                       "8"                     },
540   { "sp_electron.delay",                        "2"                     },
541   { "sp_electron.EDITOR",                       "RocksSP.pcx"           },
542   { "sp_electron.EDITOR.xpos",                  "10"                    },
543   { "sp_electron.EDITOR.ypos",                  "11"                    },
544   { "sp_electron.exploding",                    "RocksSP.pcx"           },
545   { "sp_electron.exploding.xpos",               "8"                     },
546   { "sp_electron.exploding.ypos",               "4"                     },
547   { "sp_electron.exploding.frames",             "8"                     },
548   { "sp_electron.exploding.delay",              "3"                     },
549   { "sp_electron.exploding.anim_mode",          "linear"                },
550
551   { "sp_terminal",                              "RocksSP.pcx"           },
552   { "sp_terminal.xpos",                         "0"                     },
553   { "sp_terminal.ypos",                         "10"                    },
554   { "sp_terminal.frames",                       "7"                     },
555   { "sp_terminal.delay",                        "12"                    },
556   { "sp_terminal.EDITOR",                       "RocksSP.pcx"           },
557   { "sp_terminal.EDITOR.xpos",                  "9"                     },
558   { "sp_terminal.EDITOR.ypos",                  "11"                    },
559   { "sp_terminal.active",                       "RocksSP.pcx"           },
560   { "sp_terminal.active.xpos",                  "0"                     },
561   { "sp_terminal.active.ypos",                  "11"                    },
562   { "sp_terminal.active.frames",                "7"                     },
563   { "sp_terminal.active.delay",                 "4"                     },
564
565   { "sp_buggy_base",                            "RocksSP.pcx"           },
566   { "sp_buggy_base.xpos",                       "1"                     },
567   { "sp_buggy_base.ypos",                       "3"                     },
568   { "sp_buggy_base.frames",                     "1"                     },
569   { "sp_buggy_base.EDITOR",                     "RocksSP.pcx"           },
570   { "sp_buggy_base.EDITOR.xpos",                "9"                     },
571   { "sp_buggy_base.EDITOR.ypos",                "6"                     },
572   { "sp_buggy_base.activating",                 "RocksSP.pcx"           },
573   { "sp_buggy_base.activating.xpos",            "15"                    },
574   { "sp_buggy_base.activating.ypos",            "2"                     },
575   { "sp_buggy_base.activating.frames",          "1"                     },
576   { "sp_buggy_base.active",                     "RocksSP.pcx"           },
577   { "sp_buggy_base.active.xpos",                "8"                     },
578   { "sp_buggy_base.active.ypos",                "6"                     },
579   { "sp_buggy_base.active.frames",              "4"                     },
580   { "sp_buggy_base.active.anim_mode",           "random"                },
581
582   { "sp_hardware_base_1",                       "RocksSP.pcx"           },
583   { "sp_hardware_base_1.xpos",                  "4"                     },
584   { "sp_hardware_base_1.ypos",                  "3"                     },
585   { "sp_hardware_base_1.frames",                "1"                     },
586   { "sp_hardware_base_2",                       "RocksSP.pcx"           },
587   { "sp_hardware_base_2.xpos",                  "1"                     },
588   { "sp_hardware_base_2.ypos",                  "4"                     },
589   { "sp_hardware_base_2.frames",                "1"                     },
590   { "sp_hardware_base_3",                       "RocksSP.pcx"           },
591   { "sp_hardware_base_3.xpos",                  "2"                     },
592   { "sp_hardware_base_3.ypos",                  "4"                     },
593   { "sp_hardware_base_3.frames",                "1"                     },
594   { "sp_hardware_base_4",                       "RocksSP.pcx"           },
595   { "sp_hardware_base_4.xpos",                  "3"                     },
596   { "sp_hardware_base_4.ypos",                  "4"                     },
597   { "sp_hardware_base_4.frames",                "1"                     },
598   { "sp_hardware_base_5",                       "RocksSP.pcx"           },
599   { "sp_hardware_base_5.xpos",                  "4"                     },
600   { "sp_hardware_base_5.ypos",                  "4"                     },
601   { "sp_hardware_base_5.frames",                "1"                     },
602   { "sp_hardware_base_6",                       "RocksSP.pcx"           },
603   { "sp_hardware_base_6.xpos",                  "5"                     },
604   { "sp_hardware_base_6.ypos",                  "4"                     },
605   { "sp_hardware_base_6.frames",                "1"                     },
606
607   /* images for Sokoban style elements and actions */
608
609   { "sokoban_object",                           "RocksElements.pcx"     },
610   { "sokoban_object.xpos",                      "9"                     },
611   { "sokoban_object.ypos",                      "7"                     },
612   { "sokoban_object.frames",                    "1"                     },
613   { "sokoban_object.EDITOR",                    "RocksElements.pcx"     },
614   { "sokoban_object.EDITOR.xpos",               "2"                     },
615   { "sokoban_object.EDITOR.ypos",               "14"                    },
616
617   { "sokoban_field_empty",                      "RocksElements.pcx"     },
618   { "sokoban_field_empty.xpos",                 "10"                    },
619   { "sokoban_field_empty.ypos",                 "7"                     },
620   { "sokoban_field_empty.frames",               "1"                     },
621
622   { "sokoban_field_full",                       "RocksElements.pcx"     },
623   { "sokoban_field_full.xpos",                  "11"                    },
624   { "sokoban_field_full.ypos",                  "7"                     },
625   { "sokoban_field_full.frames",                "1"                     },
626
627   /* images for Emerald Mine style elements and actions */
628
629   { "empty_space",                              "RocksSP.pcx"           },
630   { "empty_space.xpos",                         "0"                     },
631   { "empty_space.ypos",                         "0"                     },
632   { "empty_space.frames",                       "1"                     },
633
634   { "sand",                                     "RocksElements.pcx"     },
635   { "sand.xpos",                                "0"                     },
636   { "sand.ypos",                                "0"                     },
637   { "sand.frames",                              "1"                     },
638   { "sand.CRUMBLED",                            "RocksElements.pcx"     },
639   { "sand.CRUMBLED.xpos",                       "1"                     },
640   { "sand.CRUMBLED.ypos",                       "0"                     },
641   { "sand.CRUMBLED.frames",                     "1"                     },
642   { "sand.digging.left",                        "RocksMore.pcx"         },
643   { "sand.digging.left.xpos",                   "6"                     },
644   { "sand.digging.left.ypos",                   "3"                     },
645   { "sand.digging.left.frames",                 "3"                     },
646   { "sand.digging.left.delay",                  "2"                     },
647   { "sand.digging.left.anim_mode",              "linear"                },
648   { "sand.digging.right",                       "RocksMore.pcx"         },
649   { "sand.digging.right.xpos",                  "9"                     },
650   { "sand.digging.right.ypos",                  "3"                     },
651   { "sand.digging.right.frames",                "3"                     },
652   { "sand.digging.right.delay",                 "2"                     },
653   { "sand.digging.right.anim_mode",             "linear"                },
654   { "sand.digging.up",                          "RocksMore.pcx"         },
655   { "sand.digging.up.xpos",                     "0"                     },
656   { "sand.digging.up.ypos",                     "3"                     },
657   { "sand.digging.up.frames",                   "3"                     },
658   { "sand.digging.up.delay",                    "2"                     },
659   { "sand.digging.up.anim_mode",                "linear"                },
660   { "sand.digging.down",                        "RocksMore.pcx"         },
661   { "sand.digging.down.xpos",                   "3"                     },
662   { "sand.digging.down.ypos",                   "3"                     },
663   { "sand.digging.down.frames",                 "3"                     },
664   { "sand.digging.down.delay",                  "2"                     },
665   { "sand.digging.down.anim_mode",              "linear"                },
666   { "sand.digging.left.CRUMBLED",               "RocksMore.pcx"         },
667   { "sand.digging.left.CRUMBLED.xpos",          "6"                     },
668   { "sand.digging.left.CRUMBLED.ypos",          "0"                     },
669   { "sand.digging.left.CRUMBLED.frames",        "3"                     },
670   { "sand.digging.left.CRUMBLED.delay",         "2"                     },
671   { "sand.digging.left.CRUMBLED.anim_mode",     "linear"                },
672   { "sand.digging.right.CRUMBLED",              "RocksMore.pcx"         },
673   { "sand.digging.right.CRUMBLED.xpos",         "9"                     },
674   { "sand.digging.right.CRUMBLED.ypos",         "0"                     },
675   { "sand.digging.right.CRUMBLED.frames",       "3"                     },
676   { "sand.digging.right.CRUMBLED.delay",        "2"                     },
677   { "sand.digging.right.CRUMBLED.anim_mode",    "linear"                },
678   { "sand.digging.up.CRUMBLED",                 "RocksMore.pcx"         },
679   { "sand.digging.up.CRUMBLED.xpos",            "0"                     },
680   { "sand.digging.up.CRUMBLED.ypos",            "0"                     },
681   { "sand.digging.up.CRUMBLED.frames",          "3"                     },
682   { "sand.digging.up.CRUMBLED.delay",           "2"                     },
683   { "sand.digging.up.CRUMBLED.anim_mode",       "linear"                },
684   { "sand.digging.down.CRUMBLED",               "RocksMore.pcx"         },
685   { "sand.digging.down.CRUMBLED.xpos",          "3"                     },
686   { "sand.digging.down.CRUMBLED.ypos",          "0"                     },
687   { "sand.digging.down.CRUMBLED.frames",        "3"                     },
688   { "sand.digging.down.CRUMBLED.delay",         "2"                     },
689   { "sand.digging.down.CRUMBLED.anim_mode",     "linear"                },
690
691   { "wall",                                     "RocksElements.pcx"     },
692   { "wall.xpos",                                "5"                     },
693   { "wall.ypos",                                "0"                     },
694   { "wall.frames",                              "1"                     },
695
696   { "wall_slippery",                            "RocksElements.pcx"     },
697   { "wall_slippery.xpos",                       "6"                     },
698   { "wall_slippery.ypos",                       "0"                     },
699   { "wall_slippery.frames",                     "1"                     },
700
701   { "steelwall",                                "RocksElements.pcx"     },
702   { "steelwall.xpos",                           "4"                     },
703   { "steelwall.ypos",                           "0"                     },
704   { "steelwall.frames",                         "1"                     },
705
706   { "rock",                                     "RocksElements.pcx"     },
707   { "rock.xpos",                                "12"                    },
708   { "rock.ypos",                                "0"                     },
709   { "rock.frames",                              "1"                     },
710   { "rock.moving.left",                         "RocksElements.pcx"     },
711   { "rock.moving.left.xpos",                    "12"                    },
712   { "rock.moving.left.ypos",                    "0"                     },
713   { "rock.moving.left.frames",                  "4"                     },
714   { "rock.moving.left.delay",                   "2"                     },
715   { "rock.moving.left.anim_mode",               "reverse"               },
716   { "rock.moving.right",                        "RocksElements.pcx"     },
717   { "rock.moving.right.xpos",                   "12"                    },
718   { "rock.moving.right.ypos",                   "0"                     },
719   { "rock.moving.right.frames",                 "4"                     },
720   { "rock.moving.right.start_frame",            "1"                     },
721   { "rock.moving.right.delay",                  "2"                     },
722   { "rock.pushing.left",                        "RocksElements.pcx"     },
723   { "rock.pushing.left.xpos",                   "12"                    },
724   { "rock.pushing.left.ypos",                   "0"                     },
725   { "rock.pushing.left.frames",                 "4"                     },
726   { "rock.pushing.left.delay",                  "2"                     },
727   { "rock.pushing.left.anim_mode",              "reverse"               },
728   { "rock.pushing.right",                       "RocksElements.pcx"     },
729   { "rock.pushing.right.xpos",                  "12"                    },
730   { "rock.pushing.right.ypos",                  "0"                     },
731   { "rock.pushing.right.frames",                "4"                     },
732   { "rock.pushing.right.start_frame",           "1"                     },
733   { "rock.pushing.right.delay",                 "2"                     },
734
735   { "emerald",                                  "RocksElements.pcx"     },
736   { "emerald.xpos",                             "8"                     },
737   { "emerald.ypos",                             "0"                     },
738   { "emerald.frames",                           "1"                     },
739   { "emerald.moving",                           "RocksElements.pcx"     },
740   { "emerald.moving.xpos",                      "8"                     },
741   { "emerald.moving.ypos",                      "0"                     },
742   { "emerald.moving.frames",                    "2"                     },
743   { "emerald.moving.delay",                     "4"                     },
744   { "emerald.falling",                          "RocksElements.pcx"     },
745   { "emerald.falling.xpos",                     "8"                     },
746   { "emerald.falling.ypos",                     "0"                     },
747   { "emerald.falling.frames",                   "2"                     },
748   { "emerald.falling.delay",                    "4"                     },
749   { "emerald.collecting",                       "RocksMore.pcx"         },
750   { "emerald.collecting.xpos",                  "3"                     },
751   { "emerald.collecting.ypos",                  "2"                     },
752   { "emerald.collecting.frames",                "3"                     },
753   { "emerald.collecting.delay",                 "2"                     },
754   { "emerald.collecting.anim_mode",             "linear"                },
755
756   { "diamond",                                  "RocksElements.pcx"     },
757   { "diamond.xpos",                             "10"                    },
758   { "diamond.ypos",                             "0"                     },
759   { "diamond.frames",                           "1"                     },
760   { "diamond.moving",                           "RocksElements.pcx"     },
761   { "diamond.moving.xpos",                      "10"                    },
762   { "diamond.moving.ypos",                      "0"                     },
763   { "diamond.moving.frames",                    "2"                     },
764   { "diamond.moving.delay",                     "4"                     },
765   { "diamond.falling",                          "RocksElements.pcx"     },
766   { "diamond.falling.xpos",                     "10"                    },
767   { "diamond.falling.ypos",                     "0"                     },
768   { "diamond.falling.frames",                   "2"                     },
769   { "diamond.falling.delay",                    "4"                     },
770   { "diamond.collecting",                       "RocksMore.pcx"         },
771   { "diamond.collecting.xpos",                  "7"                     },
772   { "diamond.collecting.ypos",                  "2"                     },
773   { "diamond.collecting.frames",                "3"                     },
774   { "diamond.collecting.delay",                 "2"                     },
775   { "diamond.collecting.anim_mode",             "linear"                },
776
777   { "bomb",                                     "RocksElements.pcx"     },
778   { "bomb.xpos",                                "11"                    },
779   { "bomb.ypos",                                "1"                     },
780   { "bomb.frames",                              "1"                     },
781
782   { "nut",                                      "RocksElements.pcx"     },
783   { "nut.xpos",                                 "12"                    },
784   { "nut.ypos",                                 "1"                     },
785   { "nut.frames",                               "1"                     },
786   { "nut.breaking",                             "RocksElements.pcx"     },
787   { "nut.breaking.xpos",                        "13"                    },
788   { "nut.breaking.ypos",                        "1"                     },
789   { "nut.breaking.frames",                      "3"                     },
790   { "nut.breaking.delay",                       "2"                     },
791   { "nut.breaking.anim_mode",                   "linear"                },
792
793   { "dynamite",                                 "RocksElements.pcx"     },
794   { "dynamite.xpos",                            "0"                     },
795   { "dynamite.ypos",                            "3"                     },
796   { "dynamite.frames",                          "1"                     },
797   { "dynamite.EDITOR",                          "RocksElements.pcx"     },
798   { "dynamite.EDITOR.xpos",                     "0"                     },
799   { "dynamite.EDITOR.ypos",                     "14"                    },
800   { "dynamite.active",                          "RocksElements.pcx"     },
801   { "dynamite.active.xpos",                     "1"                     },
802   { "dynamite.active.ypos",                     "3"                     },
803   { "dynamite.active.frames",                   "7"                     },
804   { "dynamite.active.delay",                    "12"                    },
805   { "dynamite.active.anim_mode",                "linear"                },
806   { "dynamite.active.EDITOR",                   "RocksElements.pcx"     },
807   { "dynamite.active.EDITOR.xpos",              "1"                     },
808   { "dynamite.active.EDITOR.ypos",              "14"                    },
809
810   { "wall_emerald",                             "RocksElements.pcx"     },
811   { "wall_emerald.xpos",                        "4"                     },
812   { "wall_emerald.ypos",                        "8"                     },
813   { "wall_emerald.frames",                      "1"                     },
814
815   { "wall_diamond",                             "RocksElements.pcx"     },
816   { "wall_diamond.xpos",                        "5"                     },
817   { "wall_diamond.ypos",                        "8"                     },
818   { "wall_diamond.frames",                      "1"                     },
819
820   { "bug",                                      "RocksElements.pcx"     },
821   { "bug.xpos",                                 "8"                     },
822   { "bug.ypos",                                 "4"                     },
823   { "bug.frames",                               "4"                     },
824   { "bug.delay",                                "8"                     },
825   { "bug.right",                                "RocksElements.pcx"     },
826   { "bug.right.xpos",                           "8"                     },
827   { "bug.right.ypos",                           "4"                     },
828   { "bug.right.frames",                         "1"                     },
829   { "bug.up",                                   "RocksElements.pcx"     },
830   { "bug.up.xpos",                              "9"                     },
831   { "bug.up.ypos",                              "4"                     },
832   { "bug.up.frames",                            "1"                     },
833   { "bug.left",                                 "RocksElements.pcx"     },
834   { "bug.left.xpos",                            "10"                    },
835   { "bug.left.ypos",                            "4"                     },
836   { "bug.left.frames",                          "1"                     },
837   { "bug.down",                                 "RocksElements.pcx"     },
838   { "bug.down.xpos",                            "11"                    },
839   { "bug.down.ypos",                            "4"                     },
840   { "bug.down.frames",                          "1"                     },
841   { "bug.moving.right",                         "RocksElements.pcx"     },
842   { "bug.moving.right.xpos",                    "8"                     },
843   { "bug.moving.right.ypos",                    "4"                     },
844   { "bug.moving.right.frames",                  "2"                     },
845   { "bug.moving.right.delay",                   "4"                     },
846   { "bug.moving.right.offset",                  "128"                   },
847   { "bug.moving.up",                            "RocksElements.pcx"     },
848   { "bug.moving.up.xpos",                       "9"                     },
849   { "bug.moving.up.ypos",                       "4"                     },
850   { "bug.moving.up.frames",                     "2"                     },
851   { "bug.moving.up.delay",                      "4"                     },
852   { "bug.moving.up.offset",                     "128"                   },
853   { "bug.moving.left",                          "RocksElements.pcx"     },
854   { "bug.moving.left.xpos",                     "10"                    },
855   { "bug.moving.left.ypos",                     "4"                     },
856   { "bug.moving.left.frames",                   "2"                     },
857   { "bug.moving.left.delay",                    "4"                     },
858   { "bug.moving.left.offset",                   "128"                   },
859   { "bug.moving.down",                          "RocksElements.pcx"     },
860   { "bug.moving.down.xpos",                     "11"                    },
861   { "bug.moving.down.ypos",                     "4"                     },
862   { "bug.moving.down.frames",                   "2"                     },
863   { "bug.moving.down.delay",                    "4"                     },
864   { "bug.moving.down.offset",                   "128"                   },
865   { "bug.turning_from_right.up",                "RocksMore.pcx"         },
866   { "bug.turning_from_right.up.xpos",           "0"                     },
867   { "bug.turning_from_right.up.ypos",           "6"                     },
868   { "bug.turning_from_right.up.frames",         "4"                     },
869   { "bug.turning_from_right.up.delay",          "2"                     },
870   { "bug.turning_from_right.up.anim_mode",      "linear,reverse"        },
871   { "bug.turning_from_up.left",                 "RocksMore.pcx"         },
872   { "bug.turning_from_up.left.xpos",            "12"                    },
873   { "bug.turning_from_up.left.ypos",            "6"                     },
874   { "bug.turning_from_up.left.frames",          "4"                     },
875   { "bug.turning_from_up.left.delay",           "2"                     },
876   { "bug.turning_from_up.left.anim_mode",       "linear,reverse"        },
877   { "bug.turning_from_left.down",               "RocksMore.pcx"         },
878   { "bug.turning_from_left.down.xpos",          "8"                     },
879   { "bug.turning_from_left.down.ypos",          "6"                     },
880   { "bug.turning_from_left.down.frames",        "4"                     },
881   { "bug.turning_from_left.down.delay",         "2"                     },
882   { "bug.turning_from_left.down.anim_mode",     "linear,reverse"        },
883   { "bug.turning_from_down.right",              "RocksMore.pcx"         },
884   { "bug.turning_from_down.right.xpos",         "4"                     },
885   { "bug.turning_from_down.right.ypos",         "6"                     },
886   { "bug.turning_from_down.right.frames",       "4"                     },
887   { "bug.turning_from_down.right.delay",        "2"                     },
888   { "bug.turning_from_down.right.anim_mode",    "linear,reverse"        },
889   { "bug.turning_from_right.down",              "RocksMore.pcx"         },
890   { "bug.turning_from_right.down.xpos",         "5"                     },
891   { "bug.turning_from_right.down.ypos",         "6"                     },
892   { "bug.turning_from_right.down.frames",       "4"                     },
893   { "bug.turning_from_right.down.delay",        "2"                     },
894   { "bug.turning_from_right.down.anim_mode",    "linear"                },
895   { "bug.turning_from_up.right",                "RocksMore.pcx"         },
896   { "bug.turning_from_up.right.xpos",           "1"                     },
897   { "bug.turning_from_up.right.ypos",           "6"                     },
898   { "bug.turning_from_up.right.frames",         "4"                     },
899   { "bug.turning_from_up.right.delay",          "2"                     },
900   { "bug.turning_from_up.right.anim_mode",      "linear"                },
901   { "bug.turning_from_left.up",                 "RocksMore.pcx"         },
902   { "bug.turning_from_left.up.xpos",            "13"                    },
903   { "bug.turning_from_left.up.ypos",            "6"                     },
904   { "bug.turning_from_left.up.frames",          "4"                     },
905   { "bug.turning_from_left.up.delay",           "2"                     },
906   { "bug.turning_from_left.up.anim_mode",       "linear"                },
907   { "bug.turning_from_down.left",               "RocksMore.pcx"         },
908   { "bug.turning_from_down.left.xpos",          "9"                     },
909   { "bug.turning_from_down.left.ypos",          "6"                     },
910   { "bug.turning_from_down.left.frames",        "4"                     },
911   { "bug.turning_from_down.left.delay",         "2"                     },
912   { "bug.turning_from_down.left.anim_mode",     "linear"                },
913
914   { "spaceship",                                "RocksElements.pcx"     },
915   { "spaceship.xpos",                           "8"                     },
916   { "spaceship.ypos",                           "3"                     },
917   { "spaceship.frames",                         "4"                     },
918   { "spaceship.delay",                          "8"                     },
919   { "spaceship.right",                          "RocksElements.pcx"     },
920   { "spaceship.right.xpos",                     "8"                     },
921   { "spaceship.right.ypos",                     "3"                     },
922   { "spaceship.right.frames",                   "1"                     },
923   { "spaceship.up",                             "RocksElements.pcx"     },
924   { "spaceship.up.xpos",                        "9"                     },
925   { "spaceship.up.ypos",                        "3"                     },
926   { "spaceship.up.frames",                      "1"                     },
927   { "spaceship.left",                           "RocksElements.pcx"     },
928   { "spaceship.left.xpos",                      "10"                    },
929   { "spaceship.left.ypos",                      "3"                     },
930   { "spaceship.left.frames",                    "1"                     },
931   { "spaceship.down",                           "RocksElements.pcx"     },
932   { "spaceship.down.xpos",                      "11"                    },
933   { "spaceship.down.ypos",                      "3"                     },
934   { "spaceship.down.frames",                    "1"                     },
935   { "spaceship.moving.right",                   "RocksElements.pcx"     },
936   { "spaceship.moving.right.xpos",              "8"                     },
937   { "spaceship.moving.right.ypos",              "3"                     },
938   { "spaceship.moving.right.frames",            "2"                     },
939   { "spaceship.moving.right.delay",             "4"                     },
940   { "spaceship.moving.right.offset",            "128"                   },
941   { "spaceship.moving.up",                      "RocksElements.pcx"     },
942   { "spaceship.moving.up.xpos",                 "9"                     },
943   { "spaceship.moving.up.ypos",                 "3"                     },
944   { "spaceship.moving.up.frames",               "2"                     },
945   { "spaceship.moving.up.delay",                "4"                     },
946   { "spaceship.moving.up.offset",               "128"                   },
947   { "spaceship.moving.left",                    "RocksElements.pcx"     },
948   { "spaceship.moving.left.xpos",               "10"                    },
949   { "spaceship.moving.left.ypos",               "3"                     },
950   { "spaceship.moving.left.frames",             "2"                     },
951   { "spaceship.moving.left.delay",              "4"                     },
952   { "spaceship.moving.left.offset",             "128"                   },
953   { "spaceship.moving.down",                    "RocksElements.pcx"     },
954   { "spaceship.moving.down.xpos",               "11"                    },
955   { "spaceship.moving.down.ypos",               "3"                     },
956   { "spaceship.moving.down.frames",             "2"                     },
957   { "spaceship.moving.down.delay",              "4"                     },
958   { "spaceship.moving.down.offset",             "128"                   },
959   { "spaceship.turning_from_right.up",          "RocksMore.pcx"         },
960   { "spaceship.turning_from_right.up.xpos",     "0"                     },
961   { "spaceship.turning_from_right.up.ypos",     "5"                     },
962   { "spaceship.turning_from_right.up.frames",   "4"                     },
963   { "spaceship.turning_from_right.up.delay",    "2"                     },
964   { "spaceship.turning_from_right.up.anim_mode","linear,reverse"        },
965   { "spaceship.turning_from_up.left",           "RocksMore.pcx"         },
966   { "spaceship.turning_from_up.left.xpos",      "12"                    },
967   { "spaceship.turning_from_up.left.ypos",      "5"                     },
968   { "spaceship.turning_from_up.left.frames",    "4"                     },
969   { "spaceship.turning_from_up.left.delay",     "2"                     },
970   { "spaceship.turning_from_up.left.anim_mode", "linear,reverse"        },
971   { "spaceship.turning_from_left.down",         "RocksMore.pcx"         },
972   { "spaceship.turning_from_left.down.xpos",    "8"                     },
973   { "spaceship.turning_from_left.down.ypos",    "5"                     },
974   { "spaceship.turning_from_left.down.frames",  "4"                     },
975   { "spaceship.turning_from_left.down.delay",   "2"                     },
976   { "spaceship.turning_from_left.down.anim_mode","linear,reverse"       },
977   { "spaceship.turning_from_down.right",        "RocksMore.pcx"         },
978   { "spaceship.turning_from_down.right.xpos",   "4"                     },
979   { "spaceship.turning_from_down.right.ypos",   "5"                     },
980   { "spaceship.turning_from_down.right.frames", "4"                     },
981   { "spaceship.turning_from_down.right.delay",  "2"                     },
982   { "spaceship.turning_from_down.right.anim_mode","linear,reverse"      },
983   { "spaceship.turning_from_right.down",        "RocksMore.pcx"         },
984   { "spaceship.turning_from_right.down.xpos",   "5"                     },
985   { "spaceship.turning_from_right.down.ypos",   "5"                     },
986   { "spaceship.turning_from_right.down.frames", "4"                     },
987   { "spaceship.turning_from_right.down.delay",  "2"                     },
988   { "spaceship.turning_from_right.down.anim_mode","linear"              },
989   { "spaceship.turning_from_up.right",          "RocksMore.pcx"         },
990   { "spaceship.turning_from_up.right.xpos",     "1"                     },
991   { "spaceship.turning_from_up.right.ypos",     "5"                     },
992   { "spaceship.turning_from_up.right.frames",   "4"                     },
993   { "spaceship.turning_from_up.right.delay",    "2"                     },
994   { "spaceship.turning_from_up.right.anim_mode","linear"                },
995   { "spaceship.turning_from_left.up",           "RocksMore.pcx"         },
996   { "spaceship.turning_from_left.up.xpos",      "13"                    },
997   { "spaceship.turning_from_left.up.ypos",      "5"                     },
998   { "spaceship.turning_from_left.up.frames",    "4"                     },
999   { "spaceship.turning_from_left.up.delay",     "2"                     },
1000   { "spaceship.turning_from_left.up.anim_mode", "linear"                },
1001   { "spaceship.turning_from_down.left",         "RocksMore.pcx"         },
1002   { "spaceship.turning_from_down.left.xpos",    "9"                     },
1003   { "spaceship.turning_from_down.left.ypos",    "5"                     },
1004   { "spaceship.turning_from_down.left.frames",  "4"                     },
1005   { "spaceship.turning_from_down.left.delay",   "2"                     },
1006   { "spaceship.turning_from_down.left.anim_mode","linear"               },
1007
1008   { "yamyam",                                   "RocksElements.pcx"     },
1009   { "yamyam.xpos",                              "0"                     },
1010   { "yamyam.ypos",                              "5"                     },
1011   { "yamyam.frames",                            "4"                     },
1012   { "yamyam.anim_mode",                         "pingpong2"             },
1013   { "yamyam.moving",                            "RocksElements.pcx"     },
1014   { "yamyam.moving.xpos",                       "0"                     },
1015   { "yamyam.moving.ypos",                       "5"                     },
1016   { "yamyam.moving.frames",                     "1"                     },
1017
1018   { "robot",                                    "RocksElements.pcx"     },
1019   { "robot.xpos",                               "4"                     },
1020   { "robot.ypos",                               "5"                     },
1021   { "robot.frames",                             "4"                     },
1022   { "robot.anim_mode",                          "pingpong2"             },
1023   { "robot.moving",                             "RocksElements.pcx"     },
1024   { "robot.moving.xpos",                        "4"                     },
1025   { "robot.moving.ypos",                        "5"                     },
1026   { "robot.moving.frames",                      "1"                     },
1027
1028   { "robot_wheel",                              "RocksElements.pcx"     },
1029   { "robot_wheel.xpos",                         "0"                     },
1030   { "robot_wheel.ypos",                         "6"                     },
1031   { "robot_wheel.frames",                       "1"                     },
1032   { "robot_wheel.active",                       "RocksElements.pcx"     },
1033   { "robot_wheel.active.xpos",                  "0"                     },
1034   { "robot_wheel.active.ypos",                  "6"                     },
1035   { "robot_wheel.active.frames",                "4"                     },
1036
1037   { "magic_wall",                               "RocksElements.pcx"     },
1038   { "magic_wall.xpos",                          "0"                     },
1039   { "magic_wall.ypos",                          "8"                     },
1040   { "magic_wall.frames",                        "1"                     },
1041   { "magic_wall.active",                        "RocksElements.pcx"     },
1042   { "magic_wall.active.xpos",                   "0"                     },
1043   { "magic_wall.active.ypos",                   "8"                     },
1044   { "magic_wall.active.frames",                 "4"                     },
1045   { "magic_wall.active.anim_mode",              "reverse"               },
1046   { "magic_wall.active.delay",                  "4"                     },
1047   { "magic_wall.active.global_sync",            "true"                  },
1048   { "magic_wall.filling",                       "RocksElements.pcx"     },
1049   { "magic_wall.filling.xpos",                  "0"                     },
1050   { "magic_wall.filling.ypos",                  "8"                     },
1051   { "magic_wall.filling.frames",                "4"                     },
1052   { "magic_wall.filling.anim_mode",             "reverse"               },
1053   { "magic_wall.filling.delay",                 "4"                     },
1054   { "magic_wall.filling.global_sync",           "true"                  },
1055   { "magic_wall_full",                          "RocksElements.pcx"     },
1056   { "magic_wall_full.xpos",                     "0"                     },
1057   { "magic_wall_full.ypos",                     "8"                     },
1058   { "magic_wall_full.frames",                   "4"                     },
1059   { "magic_wall_full.anim_mode",                "reverse"               },
1060   { "magic_wall_full.delay",                    "4"                     },
1061   { "magic_wall_full.global_sync",              "true"                  },
1062   { "magic_wall.emptying",                      "RocksElements.pcx"     },
1063   { "magic_wall.emptying.xpos",                 "0"                     },
1064   { "magic_wall.emptying.ypos",                 "8"                     },
1065   { "magic_wall.emptying.frames",               "4"                     },
1066   { "magic_wall.emptying.anim_mode",            "reverse"               },
1067   { "magic_wall.emptying.delay",                "4"                     },
1068   { "magic_wall.emptying.global_sync",          "true"                  },
1069   { "magic_wall_dead",                          "RocksElements.pcx"     },
1070   { "magic_wall_dead.xpos",                     "0"                     },
1071   { "magic_wall_dead.ypos",                     "8"                     },
1072   { "magic_wall_dead.frames",                   "1"                     },
1073
1074   { "quicksand_empty",                          "RocksElements.pcx"     },
1075   { "quicksand_empty.xpos",                     "2"                     },
1076   { "quicksand_empty.ypos",                     "0"                     },
1077   { "quicksand_empty.frames",                   "1"                     },
1078   { "quicksand.filling",                        "RocksElements.pcx"     },
1079   { "quicksand.filling.xpos",                   "3"                     },
1080   { "quicksand.filling.ypos",                   "0"                     },
1081   { "quicksand.filling.frames",                 "1"                     },
1082   { "quicksand_full",                           "RocksElements.pcx"     },
1083   { "quicksand_full.xpos",                      "3"                     },
1084   { "quicksand_full.ypos",                      "0"                     },
1085   { "quicksand_full.frames",                    "1"                     },
1086   { "quicksand_full.EDITOR",                    "RocksElements.pcx"     },
1087   { "quicksand_full.EDITOR.xpos",               "3"                     },
1088   { "quicksand_full.EDITOR.ypos",               "14"                    },
1089   { "quicksand.emptying",                       "RocksElements.pcx"     },
1090   { "quicksand.emptying.xpos",                  "3"                     },
1091   { "quicksand.emptying.ypos",                  "0"                     },
1092   { "quicksand.emptying.frames",                "1"                     },
1093
1094   { "acid_pool_topleft",                        "RocksElements.pcx"     },
1095   { "acid_pool_topleft.xpos",                   "0"                     },
1096   { "acid_pool_topleft.ypos",                   "1"                     },
1097   { "acid_pool_topleft.frames",                 "1"                     },
1098   { "acid_pool_topright",                       "RocksElements.pcx"     },
1099   { "acid_pool_topright.xpos",                  "2"                     },
1100   { "acid_pool_topright.ypos",                  "1"                     },
1101   { "acid_pool_topright.frames",                "1"                     },
1102   { "acid_pool_bottomleft",                     "RocksElements.pcx"     },
1103   { "acid_pool_bottomleft.xpos",                "0"                     },
1104   { "acid_pool_bottomleft.ypos",                "2"                     },
1105   { "acid_pool_bottomleft.frames",              "1"                     },
1106   { "acid_pool_bottom",                         "RocksElements.pcx"     },
1107   { "acid_pool_bottom.xpos",                    "1"                     },
1108   { "acid_pool_bottom.ypos",                    "2"                     },
1109   { "acid_pool_bottom.frames",                  "1"                     },
1110   { "acid_pool_bottomright",                    "RocksElements.pcx"     },
1111   { "acid_pool_bottomright.xpos",               "2"                     },
1112   { "acid_pool_bottomright.ypos",               "2"                     },
1113   { "acid_pool_bottomright.frames",             "1"                     },
1114
1115   { "acid",                                     "RocksElements.pcx"     },
1116   { "acid.xpos",                                "12"                    },
1117   { "acid.ypos",                                "7"                     },
1118   { "acid.frames",                              "4"                     },
1119   { "acid.delay",                               "10"                    },
1120   { "acid.global_sync",                         "true"                  },
1121
1122   { "acid_splash_left",                         "RocksHeroes.pcx"       },
1123   { "acid_splash_left.xpos",                    "8"                     },
1124   { "acid_splash_left.ypos",                    "10"                    },
1125   { "acid_splash_left.frames",                  "4"                     },
1126   { "acid_splash_left.delay",                   "2"                     },
1127   { "acid_splash_left.anim_mode",               "linear"                },
1128   { "acid_splash_right",                        "RocksHeroes.pcx"       },
1129   { "acid_splash_right.xpos",                   "12"                    },
1130   { "acid_splash_right.ypos",                   "10"                    },
1131   { "acid_splash_right.frames",                 "4"                     },
1132   { "acid_splash_right.delay",                  "2"                     },
1133   { "acid_splash_right.anim_mode",              "linear"                },
1134
1135   { "amoeba_drop",                              "RocksElements.pcx"     },
1136   { "amoeba_drop.xpos",                         "5"                     },
1137   { "amoeba_drop.ypos",                         "6"                     },
1138   { "amoeba_drop.frames",                       "1"                     },
1139   { "amoeba.growing",                           "RocksElements.pcx"     },
1140   { "amoeba.growing.xpos",                      "5"                     },
1141   { "amoeba.growing.ypos",                      "6"                     },
1142   { "amoeba.growing.frames",                    "3"                     },
1143   { "amoeba.growing.delay",                     "2"                     },
1144   { "amoeba.growing.anim_mode",                 "linear"                },
1145   { "amoeba.shrinking",                         "RocksElements.pcx"     },
1146   { "amoeba.shrinking.xpos",                    "5"                     },
1147   { "amoeba.shrinking.ypos",                    "6"                     },
1148   { "amoeba.shrinking.frames",                  "3"                     },
1149   { "amoeba.shrinking.delay",                   "2"                     },
1150   { "amoeba.shrinking.anim_mode",               "linear,reverse"        },
1151   { "amoeba_wet",                               "RocksElements.pcx"     },
1152   { "amoeba_wet.xpos",                          "8"                     },
1153   { "amoeba_wet.ypos",                          "6"                     },
1154   { "amoeba_wet.frames",                        "4"                     },
1155   { "amoeba_wet.delay",                         "1000000"               },
1156   { "amoeba_wet.anim_mode",                     "random"                },
1157   { "amoeba_wet.EDITOR",                        "RocksElements.pcx"     },
1158   { "amoeba_wet.EDITOR.xpos",                   "4"                     },
1159   { "amoeba_wet.EDITOR.ypos",                   "6"                     },
1160   { "amoeba.dropping",                          "RocksElements.pcx"     },
1161   { "amoeba.dropping.xpos",                     "8"                     },
1162   { "amoeba.dropping.ypos",                     "6"                     },
1163   { "amoeba.dropping.frames",                   "4"                     },
1164   { "amoeba.dropping.delay",                    "1000000"               },
1165   { "amoeba.dropping.anim_mode",                "random"                },
1166   { "amoeba_dry",                               "RocksElements.pcx"     },
1167   { "amoeba_dry.xpos",                          "8"                     },
1168   { "amoeba_dry.ypos",                          "6"                     },
1169   { "amoeba_dry.frames",                        "4"                     },
1170   { "amoeba_dry.delay",                         "1000000"               },
1171   { "amoeba_dry.anim_mode",                     "random"                },
1172   { "amoeba_full",                              "RocksElements.pcx"     },
1173   { "amoeba_full.xpos",                         "8"                     },
1174   { "amoeba_full.ypos",                         "6"                     },
1175   { "amoeba_full.frames",                       "4"                     },
1176   { "amoeba_full.delay",                        "1000000"               },
1177   { "amoeba_full.anim_mode",                    "random"                },
1178   { "amoeba_full.EDITOR",                       "RocksElements.pcx"     },
1179   { "amoeba_full.EDITOR.xpos",                  "8"                     },
1180   { "amoeba_full.EDITOR.ypos",                  "7"                     },
1181   { "amoeba_dead",                              "RocksElements.pcx"     },
1182   { "amoeba_dead.xpos",                         "12"                    },
1183   { "amoeba_dead.ypos",                         "6"                     },
1184   { "amoeba_dead.frames",                       "4"                     },
1185   { "amoeba_dead.delay",                        "1000000"               },
1186   { "amoeba_dead.anim_mode",                    "random"                },
1187   { "amoeba_dead.EDITOR",                       "RocksElements.pcx"     },
1188   { "amoeba_dead.EDITOR.xpos",                  "12"                    },
1189   { "amoeba_dead.EDITOR.ypos",                  "6"                     },
1190
1191   { "em_key_1",                                 "RocksSP.pcx"           },
1192   { "em_key_1.xpos",                            "4"                     },
1193   { "em_key_1.ypos",                            "6"                     },
1194   { "em_key_1.frames",                          "1"                     },
1195   { "em_key_2",                                 "RocksSP.pcx"           },
1196   { "em_key_2.xpos",                            "5"                     },
1197   { "em_key_2.ypos",                            "6"                     },
1198   { "em_key_2.frames",                          "1"                     },
1199   { "em_key_3",                                 "RocksSP.pcx"           },
1200   { "em_key_3.xpos",                            "6"                     },
1201   { "em_key_3.ypos",                            "6"                     },
1202   { "em_key_3.frames",                          "1"                     },
1203   { "em_key_4",                                 "RocksSP.pcx"           },
1204   { "em_key_4.xpos",                            "7"                     },
1205   { "em_key_4.ypos",                            "6"                     },
1206   { "em_key_4.frames",                          "1"                     },
1207
1208   { "em_gate_1",                                "RocksSP.pcx"           },
1209   { "em_gate_1.xpos",                           "0"                     },
1210   { "em_gate_1.ypos",                           "7"                     },
1211   { "em_gate_1.frames",                         "1"                     },
1212   { "em_gate_2",                                "RocksSP.pcx"           },
1213   { "em_gate_2.xpos",                           "1"                     },
1214   { "em_gate_2.ypos",                           "7"                     },
1215   { "em_gate_2.frames",                         "1"                     },
1216   { "em_gate_3",                                "RocksSP.pcx"           },
1217   { "em_gate_3.xpos",                           "2"                     },
1218   { "em_gate_3.ypos",                           "7"                     },
1219   { "em_gate_3.frames",                         "1"                     },
1220   { "em_gate_4",                                "RocksSP.pcx"           },
1221   { "em_gate_4.xpos",                           "3"                     },
1222   { "em_gate_4.ypos",                           "7"                     },
1223   { "em_gate_4.frames",                         "1"                     },
1224   { "em_gate_1_gray",                           "RocksSP.pcx"           },
1225   { "em_gate_1_gray.xpos",                      "4"                     },
1226   { "em_gate_1_gray.ypos",                      "7"                     },
1227   { "em_gate_1_gray.frames",                    "1"                     },
1228   { "em_gate_1_gray.EDITOR",                    "RocksSP.pcx"           },
1229   { "em_gate_1_gray.EDITOR.xpos",               "12"                    },
1230   { "em_gate_1_gray.EDITOR.ypos",               "11"                    },
1231   { "em_gate_2_gray",                           "RocksSP.pcx"           },
1232   { "em_gate_2_gray.xpos",                      "5"                     },
1233   { "em_gate_2_gray.ypos",                      "7"                     },
1234   { "em_gate_2_gray.frames",                    "1"                     },
1235   { "em_gate_2_gray.EDITOR",                    "RocksSP.pcx"           },
1236   { "em_gate_2_gray.EDITOR.xpos",               "13"                    },
1237   { "em_gate_2_gray.EDITOR.ypos",               "11"                    },
1238   { "em_gate_3_gray",                           "RocksSP.pcx"           },
1239   { "em_gate_3_gray.xpos",                      "6"                     },
1240   { "em_gate_3_gray.ypos",                      "7"                     },
1241   { "em_gate_3_gray.frames",                    "1"                     },
1242   { "em_gate_3_gray.EDITOR",                    "RocksSP.pcx"           },
1243   { "em_gate_3_gray.EDITOR.xpos",               "14"                    },
1244   { "em_gate_3_gray.EDITOR.ypos",               "11"                    },
1245   { "em_gate_4_gray",                           "RocksSP.pcx"           },
1246   { "em_gate_4_gray.xpos",                      "7"                     },
1247   { "em_gate_4_gray.ypos",                      "7"                     },
1248   { "em_gate_4_gray.frames",                    "1"                     },
1249   { "em_gate_4_gray.EDITOR",                    "RocksSP.pcx"           },
1250   { "em_gate_4_gray.EDITOR.xpos",               "15"                    },
1251   { "em_gate_4_gray.EDITOR.ypos",               "11"                    },
1252
1253   { "exit_closed",                              "RocksElements.pcx"     },
1254   { "exit_closed.xpos",                         "0"                     },
1255   { "exit_closed.ypos",                         "11"                    },
1256   { "exit_closed.frames",                       "1"                     },
1257   { "exit.opening",                             "RocksElements.pcx"     },
1258   { "exit.opening.xpos",                        "0"                     },
1259   { "exit.opening.ypos",                        "11"                    },
1260   { "exit.opening.frames",                      "5"                     },
1261   { "exit.opening.delay",                       "6"                     },
1262   { "exit.opening.anim_mode",                   "linear"                },
1263   { "exit_open",                                "RocksElements.pcx"     },
1264   { "exit_open.xpos",                           "4"                     },
1265   { "exit_open.ypos",                           "11"                    },
1266   { "exit_open.frames",                         "4"                     },
1267   { "exit_open.delay",                          "4"                     },
1268   { "exit_open.anim_mode",                      "pingpong"              },
1269   { "exit.closing",                             "RocksElements.pcx"     },
1270   { "exit.closing.xpos",                        "0"                     },
1271   { "exit.closing.ypos",                        "11"                    },
1272   { "exit.closing.frames",                      "5"                     },
1273   { "exit.closing.delay",                       "6"                     },
1274   { "exit.closing.anim_mode",                   "linear,reverse"        },
1275
1276   /* images for Emerald Mine Club style elements and actions */
1277
1278   { "balloon",                                  "RocksDC.pcx"           },
1279   { "balloon.xpos",                             "12"                    },
1280   { "balloon.ypos",                             "7"                     },
1281   { "balloon.frames",                           "1"                     },
1282   { "balloon.moving",                           "RocksDC.pcx"           },
1283   { "balloon.moving.xpos",                      "12"                    },
1284   { "balloon.moving.ypos",                      "7"                     },
1285   { "balloon.moving.frames",                    "4"                     },
1286   { "balloon.moving.anim_mode",                 "pingpong"              },
1287   { "balloon.moving.delay",                     "2"                     },
1288   { "balloon.pushing",                          "RocksDC.pcx"           },
1289   { "balloon.pushing.xpos",                     "12"                    },
1290   { "balloon.pushing.ypos",                     "7"                     },
1291   { "balloon.pushing.frames",                   "4"                     },
1292   { "balloon.pushing.anim_mode",                "pingpong"              },
1293   { "balloon.pushing.delay",                    "2"                     },
1294   { "balloon_switch_left",                      "RocksDC.pcx"           },
1295   { "balloon_switch_left.xpos",                 "8"                     },
1296   { "balloon_switch_left.ypos",                 "7"                     },
1297   { "balloon_switch_left.frames",               "1"                     },
1298   { "balloon_switch_right",                     "RocksDC.pcx"           },
1299   { "balloon_switch_right.xpos",                "9"                     },
1300   { "balloon_switch_right.ypos",                "7"                     },
1301   { "balloon_switch_right.frames",              "1"                     },
1302   { "balloon_switch_up",                        "RocksDC.pcx"           },
1303   { "balloon_switch_up.xpos",                   "10"                    },
1304   { "balloon_switch_up.ypos",                   "7"                     },
1305   { "balloon_switch_up.frames",                 "1"                     },
1306   { "balloon_switch_down",                      "RocksDC.pcx"           },
1307   { "balloon_switch_down.xpos",                 "11"                    },
1308   { "balloon_switch_down.ypos",                 "7"                     },
1309   { "balloon_switch_down.frames",               "1"                     },
1310   { "balloon_switch_any",                       "RocksDC.pcx"           },
1311   { "balloon_switch_any.xpos",                  "15"                    },
1312   { "balloon_switch_any.ypos",                  "0"                     },
1313   { "balloon_switch_any.frames",                "1"                     },
1314
1315   { "spring",                                   "RocksDC.pcx"           },
1316   { "spring.xpos",                              "8"                     },
1317   { "spring.ypos",                              "13"                    },
1318   { "spring.frames",                            "1"                     },
1319
1320   { "emc_steelwall_1",                          "RocksDC.pcx"           },
1321   { "emc_steelwall_1.xpos",                     "14"                    },
1322   { "emc_steelwall_1.ypos",                     "0"                     },
1323   { "emc_steelwall_1.frames",                   "1"                     },
1324   { "emc_steelwall_2",                          "RocksDC.pcx"           },
1325   { "emc_steelwall_2.xpos",                     "14"                    },
1326   { "emc_steelwall_2.ypos",                     "0"                     },
1327   { "emc_steelwall_2.frames",                   "1"                     },
1328   { "emc_steelwall_3",                          "RocksDC.pcx"           },
1329   { "emc_steelwall_3.xpos",                     "14"                    },
1330   { "emc_steelwall_3.ypos",                     "0"                     },
1331   { "emc_steelwall_3.frames",                   "1"                     },
1332   { "emc_steelwall_4",                          "RocksDC.pcx"           },
1333   { "emc_steelwall_4.xpos",                     "14"                    },
1334   { "emc_steelwall_4.ypos",                     "0"                     },
1335   { "emc_steelwall_4.frames",                   "1"                     },
1336
1337   { "emc_wall_1",                               "RocksDC.pcx"           },
1338   { "emc_wall_1.xpos",                          "13"                    },
1339   { "emc_wall_1.ypos",                          "6"                     },
1340   { "emc_wall_1.frames",                        "1"                     },
1341   { "emc_wall_2",                               "RocksDC.pcx"           },
1342   { "emc_wall_2.xpos",                          "14"                    },
1343   { "emc_wall_2.ypos",                          "6"                     },
1344   { "emc_wall_2.frames",                        "1"                     },
1345   { "emc_wall_3",                               "RocksDC.pcx"           },
1346   { "emc_wall_3.xpos",                          "15"                    },
1347   { "emc_wall_3.ypos",                          "6"                     },
1348   { "emc_wall_3.frames",                        "1"                     },
1349   { "emc_wall_4",                               "RocksDC.pcx"           },
1350   { "emc_wall_4.xpos",                          "14"                    },
1351   { "emc_wall_4.ypos",                          "1"                     },
1352   { "emc_wall_4.frames",                        "1"                     },
1353   { "emc_wall_5",                               "RocksDC.pcx"           },
1354   { "emc_wall_5.xpos",                          "15"                    },
1355   { "emc_wall_5.ypos",                          "1"                     },
1356   { "emc_wall_5.frames",                        "1"                     },
1357   { "emc_wall_6",                               "RocksDC.pcx"           },
1358   { "emc_wall_6.xpos",                          "14"                    },
1359   { "emc_wall_6.ypos",                          "2"                     },
1360   { "emc_wall_6.frames",                        "1"                     },
1361   { "emc_wall_7",                               "RocksDC.pcx"           },
1362   { "emc_wall_7.xpos",                          "15"                    },
1363   { "emc_wall_7.ypos",                          "2"                     },
1364   { "emc_wall_7.frames",                        "1"                     },
1365   { "emc_wall_8",                               "RocksDC.pcx"           },
1366   { "emc_wall_8.xpos",                          "14"                    },
1367   { "emc_wall_8.ypos",                          "1"                     },
1368   { "emc_wall_8.frames",                        "1"                     },
1369
1370   /* images for Diamond Caves style elements and actions */
1371
1372   { "invisible_steelwall",                      "RocksSP.pcx"           },
1373   { "invisible_steelwall.xpos",                 "3"                     },
1374   { "invisible_steelwall.ypos",                 "5"                     },
1375   { "invisible_steelwall.frames",               "1"                     },
1376   { "invisible_steelwall.EDITOR",               "RocksSP.pcx"           },
1377   { "invisible_steelwall.EDITOR.xpos",          "1"                     },
1378   { "invisible_steelwall.EDITOR.ypos",          "5"                     },
1379   { "invisible_steelwall.active",               "RocksSP.pcx"           },
1380   { "invisible_steelwall.active.xpos",          "1"                     },
1381   { "invisible_steelwall.active.ypos",          "5"                     },
1382   { "invisible_steelwall.active.frames",        "1"                     },
1383
1384   { "invisible_wall",                           "RocksSP.pcx"           },
1385   { "invisible_wall.xpos",                      "7"                     },
1386   { "invisible_wall.ypos",                      "5"                     },
1387   { "invisible_wall.frames",                    "1"                     },
1388   { "invisible_wall.EDITOR",                    "RocksSP.pcx"           },
1389   { "invisible_wall.EDITOR.xpos",               "5"                     },
1390   { "invisible_wall.EDITOR.ypos",               "5"                     },
1391   { "invisible_wall.active",                    "RocksSP.pcx"           },
1392   { "invisible_wall.active.xpos",               "5"                     },
1393   { "invisible_wall.active.ypos",               "5"                     },
1394   { "invisible_wall.active.frames",             "1"                     },
1395
1396   { "invisible_sand",                           "RocksSP.pcx"           },
1397   { "invisible_sand.xpos",                      "6"                     },
1398   { "invisible_sand.ypos",                      "5"                     },
1399   { "invisible_sand.frames",                    "1"                     },
1400   { "invisible_sand.EDITOR",                    "RocksSP.pcx"           },
1401   { "invisible_sand.EDITOR.xpos",               "2"                     },
1402   { "invisible_sand.EDITOR.ypos",               "5"                     },
1403   { "invisible_sand.active",                    "RocksSP.pcx"           },
1404   { "invisible_sand.active.xpos",               "2"                     },
1405   { "invisible_sand.active.ypos",               "5"                     },
1406   { "invisible_sand.active.frames",             "1"                     },
1407
1408   { "conveyor_belt_1_middle",                   "RocksDC.pcx"           },
1409   { "conveyor_belt_1_middle.xpos",              "0"                     },
1410   { "conveyor_belt_1_middle.ypos",              "0"                     },
1411   { "conveyor_belt_1_middle.frames",            "1"                     },
1412   { "conveyor_belt_1_middle.active",            "RocksDC.pcx"           },
1413   { "conveyor_belt_1_middle.active.xpos",       "0"                     },
1414   { "conveyor_belt_1_middle.active.ypos",       "0"                     },
1415   { "conveyor_belt_1_middle.active.frames",     "8"                     },
1416   { "conveyor_belt_1_middle.active.delay",      "2"                     },
1417   { "conveyor_belt_1_left",                     "RocksDC.pcx"           },
1418   { "conveyor_belt_1_left.xpos",                "0"                     },
1419   { "conveyor_belt_1_left.ypos",                "1"                     },
1420   { "conveyor_belt_1_left.frames",              "1"                     },
1421   { "conveyor_belt_1_left.active",              "RocksDC.pcx"           },
1422   { "conveyor_belt_1_left.active.xpos",         "0"                     },
1423   { "conveyor_belt_1_left.active.ypos",         "1"                     },
1424   { "conveyor_belt_1_left.active.frames",       "8"                     },
1425   { "conveyor_belt_1_left.active.delay",        "2"                     },
1426   { "conveyor_belt_1_right",                    "RocksDC.pcx"           },
1427   { "conveyor_belt_1_right.xpos",               "0"                     },
1428   { "conveyor_belt_1_right.ypos",               "2"                     },
1429   { "conveyor_belt_1_right.frames",             "1"                     },
1430   { "conveyor_belt_1_right.active",             "RocksDC.pcx"           },
1431   { "conveyor_belt_1_right.active.xpos",        "0"                     },
1432   { "conveyor_belt_1_right.active.ypos",        "2"                     },
1433   { "conveyor_belt_1_right.active.frames",      "8"                     },
1434   { "conveyor_belt_1_right.active.delay",       "2"                     },
1435   { "conveyor_belt_1_switch_left",              "RocksDC.pcx"           },
1436   { "conveyor_belt_1_switch_left.xpos",         "0"                     },
1437   { "conveyor_belt_1_switch_left.ypos",         "12"                    },
1438   { "conveyor_belt_1_switch_left.frames",       "1"                     },
1439   { "conveyor_belt_1_switch_middle",            "RocksDC.pcx"           },
1440   { "conveyor_belt_1_switch_middle.xpos",       "0"                     },
1441   { "conveyor_belt_1_switch_middle.ypos",       "13"                    },
1442   { "conveyor_belt_1_switch_middle.frames",     "1"                     },
1443   { "conveyor_belt_1_switch_right",             "RocksDC.pcx"           },
1444   { "conveyor_belt_1_switch_right.xpos",        "0"                     },
1445   { "conveyor_belt_1_switch_right.ypos",        "14"                    },
1446   { "conveyor_belt_1_switch_right.frames",      "1"                     },
1447
1448   { "conveyor_belt_2_middle",                   "RocksDC.pcx"           },
1449   { "conveyor_belt_2_middle.xpos",              "0"                     },
1450   { "conveyor_belt_2_middle.ypos",              "3"                     },
1451   { "conveyor_belt_2_middle.frames",            "1"                     },
1452   { "conveyor_belt_2_middle.active",            "RocksDC.pcx"           },
1453   { "conveyor_belt_2_middle.active.xpos",       "0"                     },
1454   { "conveyor_belt_2_middle.active.ypos",       "3"                     },
1455   { "conveyor_belt_2_middle.active.frames",     "8"                     },
1456   { "conveyor_belt_2_middle.active.delay",      "2"                     },
1457   { "conveyor_belt_2_left",                     "RocksDC.pcx"           },
1458   { "conveyor_belt_2_left.xpos",                "0"                     },
1459   { "conveyor_belt_2_left.ypos",                "4"                     },
1460   { "conveyor_belt_2_left.frames",              "1"                     },
1461   { "conveyor_belt_2_left.active",              "RocksDC.pcx"           },
1462   { "conveyor_belt_2_left.active.xpos",         "0"                     },
1463   { "conveyor_belt_2_left.active.ypos",         "4"                     },
1464   { "conveyor_belt_2_left.active.frames",       "8"                     },
1465   { "conveyor_belt_2_left.active.delay",        "2"                     },
1466   { "conveyor_belt_2_right",                    "RocksDC.pcx"           },
1467   { "conveyor_belt_2_right.xpos",               "0"                     },
1468   { "conveyor_belt_2_right.ypos",               "5"                     },
1469   { "conveyor_belt_2_right.frames",             "1"                     },
1470   { "conveyor_belt_2_right.active",             "RocksDC.pcx"           },
1471   { "conveyor_belt_2_right.active.xpos",        "0"                     },
1472   { "conveyor_belt_2_right.active.ypos",        "5"                     },
1473   { "conveyor_belt_2_right.active.frames",      "8"                     },
1474   { "conveyor_belt_2_right.active.delay",       "2"                     },
1475   { "conveyor_belt_2_switch_left",              "RocksDC.pcx"           },
1476   { "conveyor_belt_2_switch_left.xpos",         "1"                     },
1477   { "conveyor_belt_2_switch_left.ypos",         "12"                    },
1478   { "conveyor_belt_2_switch_left.frames",       "1"                     },
1479   { "conveyor_belt_2_switch_middle",            "RocksDC.pcx"           },
1480   { "conveyor_belt_2_switch_middle.xpos",       "1"                     },
1481   { "conveyor_belt_2_switch_middle.ypos",       "13"                    },
1482   { "conveyor_belt_2_switch_middle.frames",     "1"                     },
1483   { "conveyor_belt_2_switch_right",             "RocksDC.pcx"           },
1484   { "conveyor_belt_2_switch_right.xpos",        "1"                     },
1485   { "conveyor_belt_2_switch_right.ypos",        "14"                    },
1486   { "conveyor_belt_2_switch_right.frames",      "1"                     },
1487
1488   { "conveyor_belt_3_middle",                   "RocksDC.pcx"           },
1489   { "conveyor_belt_3_middle.xpos",              "0"                     },
1490   { "conveyor_belt_3_middle.ypos",              "6"                     },
1491   { "conveyor_belt_3_middle.frames",            "1"                     },
1492   { "conveyor_belt_3_middle.active",            "RocksDC.pcx"           },
1493   { "conveyor_belt_3_middle.active.xpos",       "0"                     },
1494   { "conveyor_belt_3_middle.active.ypos",       "6"                     },
1495   { "conveyor_belt_3_middle.active.frames",     "8"                     },
1496   { "conveyor_belt_3_middle.active.delay",      "2"                     },
1497   { "conveyor_belt_3_left",                     "RocksDC.pcx"           },
1498   { "conveyor_belt_3_left.xpos",                "0"                     },
1499   { "conveyor_belt_3_left.ypos",                "7"                     },
1500   { "conveyor_belt_3_left.frames",              "1"                     },
1501   { "conveyor_belt_3_left.active",              "RocksDC.pcx"           },
1502   { "conveyor_belt_3_left.active.xpos",         "0"                     },
1503   { "conveyor_belt_3_left.active.ypos",         "7"                     },
1504   { "conveyor_belt_3_left.active.frames",       "8"                     },
1505   { "conveyor_belt_3_left.active.delay",        "2"                     },
1506   { "conveyor_belt_3_right",                    "RocksDC.pcx"           },
1507   { "conveyor_belt_3_right.xpos",               "0"                     },
1508   { "conveyor_belt_3_right.ypos",               "8"                     },
1509   { "conveyor_belt_3_right.frames",             "1"                     },
1510   { "conveyor_belt_3_right.active",             "RocksDC.pcx"           },
1511   { "conveyor_belt_3_right.active.xpos",        "0"                     },
1512   { "conveyor_belt_3_right.active.ypos",        "8"                     },
1513   { "conveyor_belt_3_right.active.frames",      "8"                     },
1514   { "conveyor_belt_3_right.active.delay",       "2"                     },
1515   { "conveyor_belt_3_switch_left",              "RocksDC.pcx"           },
1516   { "conveyor_belt_3_switch_left.xpos",         "2"                     },
1517   { "conveyor_belt_3_switch_left.ypos",         "12"                    },
1518   { "conveyor_belt_3_switch_left.frames",       "1"                     },
1519   { "conveyor_belt_3_switch_middle",            "RocksDC.pcx"           },
1520   { "conveyor_belt_3_switch_middle.xpos",       "2"                     },
1521   { "conveyor_belt_3_switch_middle.ypos",       "13"                    },
1522   { "conveyor_belt_3_switch_middle.frames",     "1"                     },
1523   { "conveyor_belt_3_switch_right",             "RocksDC.pcx"           },
1524   { "conveyor_belt_3_switch_right.xpos",        "2"                     },
1525   { "conveyor_belt_3_switch_right.ypos",        "14"                    },
1526   { "conveyor_belt_3_switch_right.frames",      "1"                     },
1527
1528   { "conveyor_belt_4_middle",                   "RocksDC.pcx"           },
1529   { "conveyor_belt_4_middle.xpos",              "0"                     },
1530   { "conveyor_belt_4_middle.ypos",              "9"                     },
1531   { "conveyor_belt_4_middle.frames",            "1"                     },
1532   { "conveyor_belt_4_middle.active",            "RocksDC.pcx"           },
1533   { "conveyor_belt_4_middle.active.xpos",       "0"                     },
1534   { "conveyor_belt_4_middle.active.ypos",       "9"                     },
1535   { "conveyor_belt_4_middle.active.frames",     "8"                     },
1536   { "conveyor_belt_4_middle.active.delay",      "2"                     },
1537   { "conveyor_belt_4_left",                     "RocksDC.pcx"           },
1538   { "conveyor_belt_4_left.xpos",                "0"                     },
1539   { "conveyor_belt_4_left.ypos",                "10"                    },
1540   { "conveyor_belt_4_left.frames",              "1"                     },
1541   { "conveyor_belt_4_left.active",              "RocksDC.pcx"           },
1542   { "conveyor_belt_4_left.active.xpos",         "0"                     },
1543   { "conveyor_belt_4_left.active.ypos",         "10"                    },
1544   { "conveyor_belt_4_left.active.frames",       "8"                     },
1545   { "conveyor_belt_4_left.active.delay",        "2"                     },
1546   { "conveyor_belt_4_right",                    "RocksDC.pcx"           },
1547   { "conveyor_belt_4_right.xpos",               "0"                     },
1548   { "conveyor_belt_4_right.ypos",               "11"                    },
1549   { "conveyor_belt_4_right.frames",             "1"                     },
1550   { "conveyor_belt_4_right.active",             "RocksDC.pcx"           },
1551   { "conveyor_belt_4_right.active.xpos",        "0"                     },
1552   { "conveyor_belt_4_right.active.ypos",        "11"                    },
1553   { "conveyor_belt_4_right.active.frames",      "8"                     },
1554   { "conveyor_belt_4_right.active.delay",       "2"                     },
1555   { "conveyor_belt_4_switch_left",              "RocksDC.pcx"           },
1556   { "conveyor_belt_4_switch_left.xpos",         "3"                     },
1557   { "conveyor_belt_4_switch_left.ypos",         "12"                    },
1558   { "conveyor_belt_4_switch_left.frames",       "1"                     },
1559   { "conveyor_belt_4_switch_middle",            "RocksDC.pcx"           },
1560   { "conveyor_belt_4_switch_middle.xpos",       "3"                     },
1561   { "conveyor_belt_4_switch_middle.ypos",       "13"                    },
1562   { "conveyor_belt_4_switch_middle.frames",     "1"                     },
1563   { "conveyor_belt_4_switch_right",             "RocksDC.pcx"           },
1564   { "conveyor_belt_4_switch_right.xpos",        "3"                     },
1565   { "conveyor_belt_4_switch_right.ypos",        "14"                    },
1566   { "conveyor_belt_4_switch_right.frames",      "1"                     },
1567
1568   { "switchgate_switch_up",                     "RocksDC.pcx"           },
1569   { "switchgate_switch_up.xpos",                "4"                     },
1570   { "switchgate_switch_up.ypos",                "12"                    },
1571   { "switchgate_switch_up.frames",              "1"                     },
1572   { "switchgate_switch_down",                   "RocksDC.pcx"           },
1573   { "switchgate_switch_down.xpos",              "5"                     },
1574   { "switchgate_switch_down.ypos",              "12"                    },
1575   { "switchgate_switch_down.frames",            "1"                     },
1576
1577   { "light_switch",                             "RocksDC.pcx"           },
1578   { "light_switch.xpos",                        "6"                     },
1579   { "light_switch.ypos",                        "12"                    },
1580   { "light_switch.frames",                      "1"                     },
1581   { "light_switch.active",                      "RocksDC.pcx"           },
1582   { "light_switch.active.xpos",                 "7"                     },
1583   { "light_switch.active.ypos",                 "12"                    },
1584   { "light_switch.active.frames",               "1"                     },
1585
1586   { "timegate_switch",                          "RocksDC.pcx"           },
1587   { "timegate_switch.xpos",                     "0"                     },
1588   { "timegate_switch.ypos",                     "15"                    },
1589   { "timegate_switch.frames",                   "1"                     },
1590   { "timegate_switch.active",                   "RocksDC.pcx"           },
1591   { "timegate_switch.active.xpos",              "0"                     },
1592   { "timegate_switch.active.ypos",              "15"                    },
1593   { "timegate_switch.active.frames",            "4"                     },
1594
1595   { "envelope_1",                               "RocksMore.pcx"         },
1596   { "envelope_1.xpos",                          "0"                     },
1597   { "envelope_1.ypos",                          "4"                     },
1598   { "envelope_1.frames",                        "1"                     },
1599   { "envelope_1.collecting",                    "RocksMore.pcx"         },
1600   { "envelope_1.collecting.xpos",               "5"                     },
1601   { "envelope_1.collecting.ypos",               "4"                     },
1602   { "envelope_1.collecting.frames",             "3"                     },
1603   { "envelope_1.collecting.delay",              "2"                     },
1604   { "envelope_1.collecting.anim_mode",          "linear"                },
1605   { "envelope_2",                               "RocksMore.pcx"         },
1606   { "envelope_2.xpos",                          "1"                     },
1607   { "envelope_2.ypos",                          "4"                     },
1608   { "envelope_2.frames",                        "1"                     },
1609   { "envelope_2.collecting",                    "RocksMore.pcx"         },
1610   { "envelope_2.collecting.xpos",               "5"                     },
1611   { "envelope_2.collecting.ypos",               "4"                     },
1612   { "envelope_2.collecting.frames",             "3"                     },
1613   { "envelope_2.collecting.delay",              "2"                     },
1614   { "envelope_2.collecting.anim_mode",          "linear"                },
1615   { "envelope_3",                               "RocksMore.pcx"         },
1616   { "envelope_3.xpos",                          "2"                     },
1617   { "envelope_3.ypos",                          "4"                     },
1618   { "envelope_3.frames",                        "1"                     },
1619   { "envelope_3.collecting",                    "RocksMore.pcx"         },
1620   { "envelope_3.collecting.xpos",               "5"                     },
1621   { "envelope_3.collecting.ypos",               "4"                     },
1622   { "envelope_3.collecting.frames",             "3"                     },
1623   { "envelope_3.collecting.delay",              "2"                     },
1624   { "envelope_3.collecting.anim_mode",          "linear"                },
1625   { "envelope_4",                               "RocksMore.pcx"         },
1626   { "envelope_4.xpos",                          "3"                     },
1627   { "envelope_4.ypos",                          "4"                     },
1628   { "envelope_4.frames",                        "1"                     },
1629   { "envelope_4.collecting",                    "RocksMore.pcx"         },
1630   { "envelope_4.collecting.xpos",               "5"                     },
1631   { "envelope_4.collecting.ypos",               "4"                     },
1632   { "envelope_4.collecting.frames",             "3"                     },
1633   { "envelope_4.collecting.delay",              "2"                     },
1634   { "envelope_4.collecting.anim_mode",          "linear"                },
1635
1636   { "sign_exclamation",                         "RocksDC.pcx"           },
1637   { "sign_exclamation.xpos",                    "5"                     },
1638   { "sign_exclamation.ypos",                    "14"                    },
1639   { "sign_exclamation.frames",                  "1"                     },
1640
1641   { "sign_stop",                                "RocksDC.pcx"           },
1642   { "sign_stop.xpos",                           "6"                     },
1643   { "sign_stop.ypos",                           "14"                    },
1644   { "sign_stop.frames",                         "1"                     },
1645
1646   { "landmine",                                 "RocksDC.pcx"           },
1647   { "landmine.xpos",                            "7"                     },
1648   { "landmine.ypos",                            "14"                    },
1649   { "landmine.frames",                          "1"                     },
1650   { "landmine.crumbled_like",                   "sand"                  },
1651
1652   { "steelwall_slippery",                       "RocksDC.pcx"           },
1653   { "steelwall_slippery.xpos",                  "5"                     },
1654   { "steelwall_slippery.ypos",                  "15"                    },
1655   { "steelwall_slippery.frames",                "1"                     },
1656
1657   { "extra_time",                               "RocksDC.pcx"           },
1658   { "extra_time.xpos",                          "8"                     },
1659   { "extra_time.ypos",                          "0"                     },
1660   { "extra_time.frames",                        "6"                     },
1661   { "extra_time.delay",                         "4"                     },
1662
1663   { "shield_normal",                            "RocksDC.pcx"           },
1664   { "shield_normal.xpos",                       "8"                     },
1665   { "shield_normal.ypos",                       "2"                     },
1666   { "shield_normal.frames",                     "6"                     },
1667   { "shield_normal.delay",                      "4"                     },
1668   { "shield_normal.active",                     "RocksHeroes.pcx"       },
1669   { "shield_normal.active.xpos",                "1"                     },
1670   { "shield_normal.active.ypos",                "13"                    },
1671   { "shield_normal.active.frames",              "3"                     },
1672   { "shield_normal.active.delay",               "8"                     },
1673   { "shield_normal.active.anim_mode",           "pingpong"              },
1674
1675   { "shield_deadly",                            "RocksDC.pcx"           },
1676   { "shield_deadly.xpos",                       "8"                     },
1677   { "shield_deadly.ypos",                       "1"                     },
1678   { "shield_deadly.frames",                     "6"                     },
1679   { "shield_deadly.delay",                      "4"                     },
1680   { "shield_deadly.active",                     "RocksHeroes.pcx"       },
1681   { "shield_deadly.active.xpos",                "5"                     },
1682   { "shield_deadly.active.ypos",                "13"                    },
1683   { "shield_deadly.active.frames",              "3"                     },
1684   { "shield_deadly.active.delay",               "8"                     },
1685   { "shield_deadly.active.anim_mode",           "pingpong"              },
1686
1687   { "switchgate_closed",                        "RocksDC.pcx"           },
1688   { "switchgate_closed.xpos",                   "8"                     },
1689   { "switchgate_closed.ypos",                   "5"                     },
1690   { "switchgate_closed.frames",                 "1"                     },
1691   { "switchgate.opening",                       "RocksDC.pcx"           },
1692   { "switchgate.opening.xpos",                  "8"                     },
1693   { "switchgate.opening.ypos",                  "5"                     },
1694   { "switchgate.opening.frames",                "5"                     },
1695   { "switchgate.opening.delay",                 "6"                     },
1696   { "switchgate_open",                          "RocksDC.pcx"           },
1697   { "switchgate_open.xpos",                     "12"                    },
1698   { "switchgate_open.ypos",                     "5"                     },
1699   { "switchgate_open.frames",                   "1"                     },
1700   { "switchgate.closing",                       "RocksDC.pcx"           },
1701   { "switchgate.closing.xpos",                  "8"                     },
1702   { "switchgate.closing.ypos",                  "5"                     },
1703   { "switchgate.closing.frames",                "5"                     },
1704   { "switchgate.closing.delay",                 "6"                     },
1705   { "switchgate.closing.anim_mode",             "reverse"               },
1706
1707   { "timegate_closed",                          "RocksDC.pcx"           },
1708   { "timegate_closed.xpos",                     "8"                     },
1709   { "timegate_closed.ypos",                     "6"                     },
1710   { "timegate_closed.frames",                   "1"                     },
1711   { "timegate.opening",                         "RocksDC.pcx"           },
1712   { "timegate.opening.xpos",                    "8"                     },
1713   { "timegate.opening.ypos",                    "6"                     },
1714   { "timegate.opening.frames",                  "5"                     },
1715   { "timegate.opening.delay",                   "6"                     },
1716   { "timegate_open",                            "RocksDC.pcx"           },
1717   { "timegate_open.xpos",                       "12"                    },
1718   { "timegate_open.ypos",                       "6"                     },
1719   { "timegate_open.frames",                     "1"                     },
1720   { "timegate.closing",                         "RocksDC.pcx"           },
1721   { "timegate.closing.xpos",                    "8"                     },
1722   { "timegate.closing.ypos",                    "6"                     },
1723   { "timegate.closing.frames",                  "5"                     },
1724   { "timegate.closing.delay",                   "6"                     },
1725   { "timegate.closing.anim_mode",               "reverse"               },
1726
1727   { "pearl",                                    "RocksDC.pcx"           },
1728   { "pearl.xpos",                               "8"                     },
1729   { "pearl.ypos",                               "11"                    },
1730   { "pearl.frames",                             "1"                     },
1731   { "pearl.breaking",                           "RocksDC.pcx"           },
1732   { "pearl.breaking.xpos",                      "8"                     },
1733   { "pearl.breaking.ypos",                      "12"                    },
1734   { "pearl.breaking.frames",                    "4"                     },
1735   { "pearl.breaking.delay",                     "2"                     },
1736   { "pearl.breaking.anim_mode",                 "linear"                },
1737
1738   { "crystal",                                  "RocksDC.pcx"           },
1739   { "crystal.xpos",                             "9"                     },
1740   { "crystal.ypos",                             "11"                    },
1741   { "crystal.frames",                           "1"                     },
1742
1743   { "wall_pearl",                               "RocksDC.pcx"           },
1744   { "wall_pearl.xpos",                          "10"                    },
1745   { "wall_pearl.ypos",                          "11"                    },
1746   { "wall_pearl.frames",                        "1"                     },
1747
1748   { "wall_crystal",                             "RocksDC.pcx"           },
1749   { "wall_crystal.xpos",                        "11"                    },
1750   { "wall_crystal.ypos",                        "11"                    },
1751   { "wall_crystal.frames",                      "1"                     },
1752
1753   /* images for DX Boulderdash style elements and actions */
1754
1755   { "tube_right_down",                          "RocksDC.pcx"           },
1756   { "tube_right_down.xpos",                     "9"                     },
1757   { "tube_right_down.ypos",                     "13"                    },
1758   { "tube_right_down.frames",                   "1"                     },
1759
1760   { "tube_horizontal_down",                     "RocksDC.pcx"           },
1761   { "tube_horizontal_down.xpos",                "10"                    },
1762   { "tube_horizontal_down.ypos",                "13"                    },
1763   { "tube_horizontal_down.frames",              "1"                     },
1764
1765   { "tube_left_down",                           "RocksDC.pcx"           },
1766   { "tube_left_down.xpos",                      "11"                    },
1767   { "tube_left_down.ypos",                      "13"                    },
1768   { "tube_left_down.frames",                    "1"                     },
1769
1770   { "tube_horizontal",                          "RocksDC.pcx"           },
1771   { "tube_horizontal.xpos",                     "8"                     },
1772   { "tube_horizontal.ypos",                     "14"                    },
1773   { "tube_horizontal.frames",                   "1"                     },
1774
1775   { "tube_vertical_right",                      "RocksDC.pcx"           },
1776   { "tube_vertical_right.xpos",                 "9"                     },
1777   { "tube_vertical_right.ypos",                 "14"                    },
1778   { "tube_vertical_right.frames",               "1"                     },
1779
1780   { "tube_any",                                 "RocksDC.pcx"           },
1781   { "tube_any.xpos",                            "10"                    },
1782   { "tube_any.ypos",                            "14"                    },
1783   { "tube_any.frames",                          "1"                     },
1784
1785   { "tube_vertical_left",                       "RocksDC.pcx"           },
1786   { "tube_vertical_left.xpos",                  "11"                    },
1787   { "tube_vertical_left.ypos",                  "14"                    },
1788   { "tube_vertical_left.frames",                "1"                     },
1789
1790   { "tube_vertical",                            "RocksDC.pcx"           },
1791   { "tube_vertical.xpos",                       "8"                     },
1792   { "tube_vertical.ypos",                       "15"                    },
1793   { "tube_vertical.frames",                     "1"                     },
1794
1795   { "tube_right_up",                            "RocksDC.pcx"           },
1796   { "tube_right_up.xpos",                       "9"                     },
1797   { "tube_right_up.ypos",                       "15"                    },
1798   { "tube_right_up.frames",                     "1"                     },
1799
1800   { "tube_horizontal_up",                       "RocksDC.pcx"           },
1801   { "tube_horizontal_up.xpos",                  "10"                    },
1802   { "tube_horizontal_up.ypos",                  "15"                    },
1803   { "tube_horizontal_up.frames",                "1"                     },
1804
1805   { "tube_left_up",                             "RocksDC.pcx"           },
1806   { "tube_left_up.xpos",                        "11"                    },
1807   { "tube_left_up.ypos",                        "15"                    },
1808   { "tube_left_up.frames",                      "1"                     },
1809
1810   { "trap",                                     "RocksDC.pcx"           },
1811   { "trap.xpos",                                "12"                    },
1812   { "trap.ypos",                                "8"                     },
1813   { "trap.frames",                              "1"                     },
1814   { "trap.crumbled_like",                       "sand"                  },
1815   { "trap.diggable_like",                       "sand"                  },
1816   { "trap.active",                              "RocksDC.pcx"           },
1817   { "trap.active.xpos",                         "12"                    },
1818   { "trap.active.ypos",                         "8"                     },
1819   { "trap.active.frames",                       "4"                     },
1820   { "trap.active.delay",                        "4"                     },
1821   { "trap.active.anim_mode",                    "pingpong2"             },
1822   { "trap.active.crumbled_like",                "sand"                  },
1823
1824   { "dx_supabomb",                              "RocksDC.pcx"           },
1825   { "dx_supabomb.xpos",                         "15"                    },
1826   { "dx_supabomb.ypos",                         "9"                     },
1827   { "dx_supabomb.frames",                       "1"                     },
1828
1829   /* images for Rocks'n'Diamonds style elements and actions */
1830
1831   { "key_1",                                    "RocksElements.pcx"     },
1832   { "key_1.xpos",                               "4"                     },
1833   { "key_1.ypos",                               "1"                     },
1834   { "key_1.frames",                             "1"                     },
1835   { "key_1.EDITOR",                             "RocksElements.pcx"     },
1836   { "key_1.EDITOR.xpos",                        "4"                     },
1837   { "key_1.EDITOR.ypos",                        "14"                    },
1838   { "key_2",                                    "RocksElements.pcx"     },
1839   { "key_2.xpos",                               "5"                     },
1840   { "key_2.ypos",                               "1"                     },
1841   { "key_2.frames",                             "1"                     },
1842   { "key_2.EDITOR",                             "RocksElements.pcx"     },
1843   { "key_2.EDITOR.xpos",                        "5"                     },
1844   { "key_2.EDITOR.ypos",                        "14"                    },
1845   { "key_3",                                    "RocksElements.pcx"     },
1846   { "key_3.xpos",                               "6"                     },
1847   { "key_3.ypos",                               "1"                     },
1848   { "key_3.frames",                             "1"                     },
1849   { "key_3.EDITOR",                             "RocksElements.pcx"     },
1850   { "key_3.EDITOR.xpos",                        "6"                     },
1851   { "key_3.EDITOR.ypos",                        "14"                    },
1852   { "key_4",                                    "RocksElements.pcx"     },
1853   { "key_4.xpos",                               "7"                     },
1854   { "key_4.ypos",                               "1"                     },
1855   { "key_4.frames",                             "1"                     },
1856   { "key_4.EDITOR",                             "RocksElements.pcx"     },
1857   { "key_4.EDITOR.xpos",                        "7"                     },
1858   { "key_4.EDITOR.ypos",                        "14"                    },
1859
1860   { "gate_1",                                   "RocksElements.pcx"     },
1861   { "gate_1.xpos",                              "4"                     },
1862   { "gate_1.ypos",                              "2"                     },
1863   { "gate_1.frames",                            "1"                     },
1864   { "gate_2",                                   "RocksElements.pcx"     },
1865   { "gate_2.xpos",                              "5"                     },
1866   { "gate_2.ypos",                              "2"                     },
1867   { "gate_2.frames",                            "1"                     },
1868   { "gate_3",                                   "RocksElements.pcx"     },
1869   { "gate_3.xpos",                              "6"                     },
1870   { "gate_3.ypos",                              "2"                     },
1871   { "gate_3.frames",                            "1"                     },
1872   { "gate_4",                                   "RocksElements.pcx"     },
1873   { "gate_4.xpos",                              "7"                     },
1874   { "gate_4.ypos",                              "2"                     },
1875   { "gate_4.frames",                            "1"                     },
1876   { "gate_1_gray",                              "RocksElements.pcx"     },
1877   { "gate_1_gray.xpos",                         "8"                     },
1878   { "gate_1_gray.ypos",                         "2"                     },
1879   { "gate_1_gray.frames",                       "1"                     },
1880   { "gate_1_gray.EDITOR",                       "RocksElements.pcx"     },
1881   { "gate_1_gray.EDITOR.xpos",                  "8"                     },
1882   { "gate_1_gray.EDITOR.ypos",                  "14"                    },
1883   { "gate_2_gray",                              "RocksElements.pcx"     },
1884   { "gate_2_gray.xpos",                         "9"                     },
1885   { "gate_2_gray.ypos",                         "2"                     },
1886   { "gate_2_gray.frames",                       "1"                     },
1887   { "gate_2_gray.EDITOR",                       "RocksElements.pcx"     },
1888   { "gate_2_gray.EDITOR.xpos",                  "9"                     },
1889   { "gate_2_gray.EDITOR.ypos",                  "14"                    },
1890   { "gate_3_gray",                              "RocksElements.pcx"     },
1891   { "gate_3_gray.xpos",                         "10"                    },
1892   { "gate_3_gray.ypos",                         "2"                     },
1893   { "gate_3_gray.frames",                       "1"                     },
1894   { "gate_3_gray.EDITOR",                       "RocksElements.pcx"     },
1895   { "gate_3_gray.EDITOR.xpos",                  "10"                    },
1896   { "gate_3_gray.EDITOR.ypos",                  "14"                    },
1897   { "gate_4_gray",                              "RocksElements.pcx"     },
1898   { "gate_4_gray.xpos",                         "11"                    },
1899   { "gate_4_gray.ypos",                         "2"                     },
1900   { "gate_4_gray.frames",                       "1"                     },
1901   { "gate_4_gray.EDITOR",                       "RocksElements.pcx"     },
1902   { "gate_4_gray.EDITOR.xpos",                  "11"                    },
1903   { "gate_4_gray.EDITOR.ypos",                  "14"                    },
1904
1905   { "game_of_life",                             "RocksElements.pcx"     },
1906   { "game_of_life.xpos",                        "8"                     },
1907   { "game_of_life.ypos",                        "1"                     },
1908   { "game_of_life.frames",                      "1"                     },
1909
1910   { "biomaze",                                  "RocksElements.pcx"     },
1911   { "biomaze.xpos",                             "9"                     },
1912   { "biomaze.ypos",                             "1"                     },
1913   { "biomaze.frames",                           "1"                     },
1914
1915   { "pacman",                                   "RocksElements.pcx"     },
1916   { "pacman.xpos",                              "8"                     },
1917   { "pacman.ypos",                              "5"                     },
1918   { "pacman.frames",                            "1"                     },
1919   { "pacman.right",                             "RocksElements.pcx"     },
1920   { "pacman.right.xpos",                        "8"                     },
1921   { "pacman.right.ypos",                        "5"                     },
1922   { "pacman.right.frames",                      "2"                     },
1923   { "pacman.right.delay",                       "4"                     },
1924   { "pacman.right.offset",                      "128"                   },
1925   { "pacman.up",                                "RocksElements.pcx"     },
1926   { "pacman.up.xpos",                           "9"                     },
1927   { "pacman.up.ypos",                           "5"                     },
1928   { "pacman.up.frames",                         "2"                     },
1929   { "pacman.up.delay",                          "4"                     },
1930   { "pacman.up.offset",                         "128"                   },
1931   { "pacman.left",                              "RocksElements.pcx"     },
1932   { "pacman.left.xpos",                         "10"                    },
1933   { "pacman.left.ypos",                         "5"                     },
1934   { "pacman.left.frames",                       "2"                     },
1935   { "pacman.left.delay",                        "4"                     },
1936   { "pacman.left.offset",                       "128"                   },
1937   { "pacman.down",                              "RocksElements.pcx"     },
1938   { "pacman.down.xpos",                         "11"                    },
1939   { "pacman.down.ypos",                         "5"                     },
1940   { "pacman.down.frames",                       "2"                     },
1941   { "pacman.down.delay",                        "4"                     },
1942   { "pacman.down.offset",                       "128"                   },
1943   { "pacman.turning_from_right",                "RocksElements.pcx"     },
1944   { "pacman.turning_from_right.xpos",           "12"                    },
1945   { "pacman.turning_from_right.ypos",           "5"                     },
1946   { "pacman.turning_from_right.frames",         "1"                     },
1947   { "pacman.turning_from_up",                   "RocksElements.pcx"     },
1948   { "pacman.turning_from_up.xpos",              "13"                    },
1949   { "pacman.turning_from_up.ypos",              "5"                     },
1950   { "pacman.turning_from_up.frames",            "1"                     },
1951   { "pacman.turning_from_left",                 "RocksElements.pcx"     },
1952   { "pacman.turning_from_left.xpos",            "14"                    },
1953   { "pacman.turning_from_left.ypos",            "5"                     },
1954   { "pacman.turning_from_left.frames",          "1"                     },
1955   { "pacman.turning_from_down",                 "RocksElements.pcx"     },
1956   { "pacman.turning_from_down.xpos",            "15"                    },
1957   { "pacman.turning_from_down.ypos",            "5"                     },
1958   { "pacman.turning_from_down.frames",          "1"                     },
1959
1960   { "lamp",                                     "RocksElements.pcx"     },
1961   { "lamp.xpos",                                "0"                     },
1962   { "lamp.ypos",                                "7"                     },
1963   { "lamp.frames",                              "1"                     },
1964   { "lamp.EDITOR",                              "RocksElements.pcx"     },
1965   { "lamp.EDITOR.xpos",                         "2"                     },
1966   { "lamp.EDITOR.ypos",                         "14"                    },
1967   { "lamp.active",                              "RocksElements.pcx"     },
1968   { "lamp.active.xpos",                         "1"                     },
1969   { "lamp.active.ypos",                         "7"                     },
1970   { "lamp.active.frames",                       "1"                     },
1971
1972   { "time_orb_full",                            "RocksElements.pcx"     },
1973   { "time_orb_full.xpos",                       "2"                     },
1974   { "time_orb_full.ypos",                       "7"                     },
1975   { "time_orb_full.frames",                     "1"                     },
1976   { "time_orb_empty",                           "RocksElements.pcx"     },
1977   { "time_orb_empty.xpos",                      "3"                     },
1978   { "time_orb_empty.ypos",                      "7"                     },
1979   { "time_orb_empty.frames",                    "1"                     },
1980
1981   { "emerald_yellow",                           "RocksElements.pcx"     },
1982   { "emerald_yellow.xpos",                      "10"                    },
1983   { "emerald_yellow.ypos",                      "8"                     },
1984   { "emerald_yellow.frames",                    "1"                     },
1985   { "emerald_yellow.moving",                    "RocksElements.pcx"     },
1986   { "emerald_yellow.moving.xpos",               "10"                    },
1987   { "emerald_yellow.moving.ypos",               "8"                     },
1988   { "emerald_yellow.moving.frames",             "2"                     },
1989   { "emerald_yellow.moving.delay",              "4"                     },
1990   { "emerald_yellow.falling",                   "RocksElements.pcx"     },
1991   { "emerald_yellow.falling.xpos",              "10"                    },
1992   { "emerald_yellow.falling.ypos",              "8"                     },
1993   { "emerald_yellow.falling.frames",            "2"                     },
1994   { "emerald_yellow.falling.delay",             "4"                     },
1995   { "emerald_red",                              "RocksElements.pcx"     },
1996   { "emerald_red.xpos",                         "8"                     },
1997   { "emerald_red.ypos",                         "9"                     },
1998   { "emerald_red.frames",                       "1"                     },
1999   { "emerald_red.moving",                       "RocksElements.pcx"     },
2000   { "emerald_red.moving.xpos",                  "8"                     },
2001   { "emerald_red.moving.ypos",                  "9"                     },
2002   { "emerald_red.moving.frames",                "2"                     },
2003   { "emerald_red.moving.delay",                 "4"                     },
2004   { "emerald_red.falling",                      "RocksElements.pcx"     },
2005   { "emerald_red.falling.xpos",                 "8"                     },
2006   { "emerald_red.falling.ypos",                 "9"                     },
2007   { "emerald_red.falling.frames",               "2"                     },
2008   { "emerald_red.falling.delay",                "4"                     },
2009   { "emerald_purple",                           "RocksElements.pcx"     },
2010   { "emerald_purple.xpos",                      "10"                    },
2011   { "emerald_purple.ypos",                      "9"                     },
2012   { "emerald_purple.frames",                    "1"                     },
2013   { "emerald_purple.moving",                    "RocksElements.pcx"     },
2014   { "emerald_purple.moving.xpos",               "10"                    },
2015   { "emerald_purple.moving.ypos",               "9"                     },
2016   { "emerald_purple.moving.frames",             "2"                     },
2017   { "emerald_purple.moving.delay",              "4"                     },
2018   { "emerald_purple.falling",                   "RocksElements.pcx"     },
2019   { "emerald_purple.falling.xpos",              "10"                    },
2020   { "emerald_purple.falling.ypos",              "9"                     },
2021   { "emerald_purple.falling.frames",            "2"                     },
2022   { "emerald_purple.falling.delay",             "4"                     },
2023
2024   { "wall_emerald_yellow",                      "RocksElements.pcx"     },
2025   { "wall_emerald_yellow.xpos",                 "8"                     },
2026   { "wall_emerald_yellow.ypos",                 "8"                     },
2027   { "wall_emerald_yellow.frames",               "1"                     },
2028   { "wall_emerald_red",                         "RocksElements.pcx"     },
2029   { "wall_emerald_red.xpos",                    "6"                     },
2030   { "wall_emerald_red.ypos",                    "8"                     },
2031   { "wall_emerald_red.frames",                  "1"                     },
2032   { "wall_emerald_purple",                      "RocksElements.pcx"     },
2033   { "wall_emerald_purple.xpos",                 "7"                     },
2034   { "wall_emerald_purple.ypos",                 "8"                     },
2035   { "wall_emerald_purple.frames",               "1"                     },
2036   { "wall_bd_diamond",                          "RocksElements.pcx"     },
2037   { "wall_bd_diamond.xpos",                     "9"                     },
2038   { "wall_bd_diamond.ypos",                     "8"                     },
2039   { "wall_bd_diamond.frames",                   "1"                     },
2040
2041   { "expandable_wall",                          "RocksElements.pcx"     },
2042   { "expandable_wall.xpos",                     "11"                    },
2043   { "expandable_wall.ypos",                     "10"                    },
2044   { "expandable_wall.frames",                   "1"                     },
2045   { "expandable_wall_horizontal",               "RocksElements.pcx"     },
2046   { "expandable_wall_horizontal.xpos",          "5"                     },
2047   { "expandable_wall_horizontal.ypos",          "9"                     },
2048   { "expandable_wall_horizontal.frames",        "1"                     },
2049   { "expandable_wall_horizontal.EDITOR",        "RocksElements.pcx"     },
2050   { "expandable_wall_horizontal.EDITOR.xpos",   "13"                    },
2051   { "expandable_wall_horizontal.EDITOR.ypos",   "13"                    },
2052   { "expandable_wall_vertical",                 "RocksElements.pcx"     },
2053   { "expandable_wall_vertical.xpos",            "6"                     },
2054   { "expandable_wall_vertical.ypos",            "9"                     },
2055   { "expandable_wall_vertical.frames",          "1"                     },
2056   { "expandable_wall_vertical.EDITOR",          "RocksElements.pcx"     },
2057   { "expandable_wall_vertical.EDITOR.xpos",     "14"                    },
2058   { "expandable_wall_vertical.EDITOR.ypos",     "13"                    },
2059   { "expandable_wall_any",                      "RocksElements.pcx"     },
2060   { "expandable_wall_any.xpos",                 "4"                     },
2061   { "expandable_wall_any.ypos",                 "9"                     },
2062   { "expandable_wall_any.frames",               "1"                     },
2063   { "expandable_wall_any.EDITOR",               "RocksElements.pcx"     },
2064   { "expandable_wall_any.EDITOR.xpos",          "12"                    },
2065   { "expandable_wall_any.EDITOR.ypos",          "13"                    },
2066
2067   { "expandable_wall.growing.left",             "RocksElements.pcx"     },
2068   { "expandable_wall.growing.left.xpos",        "8"                     },
2069   { "expandable_wall.growing.left.ypos",        "10"                    },
2070   { "expandable_wall.growing.left.frames",      "3"                     },
2071   { "expandable_wall.growing.left.delay",       "6"                     },
2072   { "expandable_wall.growing.left.anim_mode",   "linear"                },
2073   { "expandable_wall.growing.right",            "RocksElements.pcx"     },
2074   { "expandable_wall.growing.right.xpos",       "5"                     },
2075   { "expandable_wall.growing.right.ypos",       "10"                    },
2076   { "expandable_wall.growing.right.frames",     "3"                     },
2077   { "expandable_wall.growing.right.delay",      "6"                     },
2078   { "expandable_wall.growing.right.anim_mode",  "linear"                },
2079   { "expandable_wall.growing.up",               "RocksHeroes.pcx"       },
2080   { "expandable_wall.growing.up.xpos",          "3"                     },
2081   { "expandable_wall.growing.up.ypos",          "12"                    },
2082   { "expandable_wall.growing.up.frames",        "3"                     },
2083   { "expandable_wall.growing.up.delay",         "6"                     },
2084   { "expandable_wall.growing.up.anim_mode",     "linear"                },
2085   { "expandable_wall.growing.down",             "RocksHeroes.pcx"       },
2086   { "expandable_wall.growing.down.xpos",        "0"                     },
2087   { "expandable_wall.growing.down.ypos",        "12"                    },
2088   { "expandable_wall.growing.down.frames",      "3"                     },
2089   { "expandable_wall.growing.down.delay",       "6"                     },
2090   { "expandable_wall.growing.down.anim_mode",   "linear"                },
2091
2092   { "black_orb",                                "RocksElements.pcx"     },
2093   { "black_orb.xpos",                           "13"                    },
2094   { "black_orb.ypos",                           "9"                     },
2095   { "black_orb.frames",                         "1"                     },
2096
2097   { "speed_pill",                               "RocksElements.pcx"     },
2098   { "speed_pill.xpos",                          "14"                    },
2099   { "speed_pill.ypos",                          "9"                     },
2100   { "speed_pill.frames",                        "1"                     },
2101
2102   { "dark_yamyam",                              "RocksElements.pcx"     },
2103   { "dark_yamyam.xpos",                         "8"                     },
2104   { "dark_yamyam.ypos",                         "11"                    },
2105   { "dark_yamyam.frames",                       "4"                     },
2106   { "dark_yamyam.anim_mode",                    "pingpong2"             },
2107
2108   { "dynabomb",                                 "RocksElements.pcx"     },
2109   { "dynabomb.xpos",                            "12"                    },
2110   { "dynabomb.ypos",                            "11"                    },
2111   { "dynabomb.frames",                          "1"                     },
2112   { "dynabomb.active",                          "RocksElements.pcx"     },
2113   { "dynabomb.active.xpos",                     "12"                    },
2114   { "dynabomb.active.ypos",                     "11"                    },
2115   { "dynabomb.active.frames",                   "4"                     },
2116   { "dynabomb.active.delay",                    "6"                     },
2117   { "dynabomb.active.anim_mode",                "pingpong"              },
2118   { "dynabomb_player_1",                        "RocksElements.pcx"     },
2119   { "dynabomb_player_1.xpos",                   "12"                    },
2120   { "dynabomb_player_1.ypos",                   "11"                    },
2121   { "dynabomb_player_1.frames",                 "1"                     },
2122   { "dynabomb_player_1.active",                 "RocksElements.pcx"     },
2123   { "dynabomb_player_1.active.xpos",            "12"                    },
2124   { "dynabomb_player_1.active.ypos",            "11"                    },
2125   { "dynabomb_player_1.active.frames",          "4"                     },
2126   { "dynabomb_player_1.active.delay",           "6"                     },
2127   { "dynabomb_player_1.active.anim_mode",       "pingpong"              },
2128   { "dynabomb_player_2",                        "RocksElements.pcx"     },
2129   { "dynabomb_player_2.xpos",                   "12"                    },
2130   { "dynabomb_player_2.ypos",                   "11"                    },
2131   { "dynabomb_player_2.frames",                 "1"                     },
2132   { "dynabomb_player_2.active",                 "RocksElements.pcx"     },
2133   { "dynabomb_player_2.active.xpos",            "12"                    },
2134   { "dynabomb_player_2.active.ypos",            "11"                    },
2135   { "dynabomb_player_2.active.frames",          "4"                     },
2136   { "dynabomb_player_2.active.delay",           "6"                     },
2137   { "dynabomb_player_2.active.anim_mode",       "pingpong"              },
2138   { "dynabomb_player_3",                        "RocksElements.pcx"     },
2139   { "dynabomb_player_3.xpos",                   "12"                    },
2140   { "dynabomb_player_3.ypos",                   "11"                    },
2141   { "dynabomb_player_3.frames",                 "1"                     },
2142   { "dynabomb_player_3.active",                 "RocksElements.pcx"     },
2143   { "dynabomb_player_3.active.xpos",            "12"                    },
2144   { "dynabomb_player_3.active.ypos",            "11"                    },
2145   { "dynabomb_player_3.active.frames",          "4"                     },
2146   { "dynabomb_player_3.active.delay",           "6"                     },
2147   { "dynabomb_player_3.active.anim_mode",       "pingpong"              },
2148   { "dynabomb_player_4",                        "RocksElements.pcx"     },
2149   { "dynabomb_player_4.xpos",                   "12"                    },
2150   { "dynabomb_player_4.ypos",                   "11"                    },
2151   { "dynabomb_player_4.frames",                 "1"                     },
2152   { "dynabomb_player_4.active",                 "RocksElements.pcx"     },
2153   { "dynabomb_player_4.active.xpos",            "12"                    },
2154   { "dynabomb_player_4.active.ypos",            "11"                    },
2155   { "dynabomb_player_4.active.frames",          "4"                     },
2156   { "dynabomb_player_4.active.delay",           "6"                     },
2157   { "dynabomb_player_4.active.anim_mode",       "pingpong"              },
2158   { "dynabomb_increase_number",                 "RocksElements.pcx"     },
2159   { "dynabomb_increase_number.xpos",            "12"                    },
2160   { "dynabomb_increase_number.ypos",            "11"                    },
2161   { "dynabomb_increase_number.frames",          "1"                     },
2162   { "dynabomb_increase_size",                   "RocksElements.pcx"     },
2163   { "dynabomb_increase_size.xpos",              "15"                    },
2164   { "dynabomb_increase_size.ypos",              "11"                    },
2165   { "dynabomb_increase_size.frames",            "1"                     },
2166   { "dynabomb_increase_power",                  "RocksElements.pcx"     },
2167   { "dynabomb_increase_power.xpos",             "12"                    },
2168   { "dynabomb_increase_power.ypos",             "9"                     },
2169   { "dynabomb_increase_power.frames",           "1"                     },
2170
2171   { "pig",                                      "RocksHeroes.pcx"       },
2172   { "pig.xpos",                                 "8"                     },
2173   { "pig.ypos",                                 "0"                     },
2174   { "pig.frames",                               "1"                     },
2175   { "pig.down",                                 "RocksHeroes.pcx"       },
2176   { "pig.down.xpos",                            "8"                     },
2177   { "pig.down.ypos",                            "0"                     },
2178   { "pig.down.frames",                          "1"                     },
2179   { "pig.up",                                   "RocksHeroes.pcx"       },
2180   { "pig.up.xpos",                              "12"                    },
2181   { "pig.up.ypos",                              "0"                     },
2182   { "pig.up.frames",                            "1"                     },
2183   { "pig.left",                                 "RocksHeroes.pcx"       },
2184   { "pig.left.xpos",                            "8"                     },
2185   { "pig.left.ypos",                            "1"                     },
2186   { "pig.left.frames",                          "1"                     },
2187   { "pig.right",                                "RocksHeroes.pcx"       },
2188   { "pig.right.xpos",                           "12"                    },
2189   { "pig.right.ypos",                           "1"                     },
2190   { "pig.right.frames",                         "1"                     },
2191   { "pig.moving.down",                          "RocksHeroes.pcx"       },
2192   { "pig.moving.down.xpos",                     "8"                     },
2193   { "pig.moving.down.ypos",                     "0"                     },
2194   { "pig.moving.down.frames",                   "4"                     },
2195   { "pig.moving.down.delay",                    "2"                     },
2196   { "pig.moving.up",                            "RocksHeroes.pcx"       },
2197   { "pig.moving.up.xpos",                       "12"                    },
2198   { "pig.moving.up.ypos",                       "0"                     },
2199   { "pig.moving.up.frames",                     "4"                     },
2200   { "pig.moving.up.delay",                      "2"                     },
2201   { "pig.moving.left",                          "RocksHeroes.pcx"       },
2202   { "pig.moving.left.xpos",                     "8"                     },
2203   { "pig.moving.left.ypos",                     "1"                     },
2204   { "pig.moving.left.frames",                   "4"                     },
2205   { "pig.moving.left.delay",                    "2"                     },
2206   { "pig.moving.right",                         "RocksHeroes.pcx"       },
2207   { "pig.moving.right.xpos",                    "12"                    },
2208   { "pig.moving.right.ypos",                    "1"                     },
2209   { "pig.moving.right.frames",                  "4"                     },
2210   { "pig.moving.right.delay",                   "2"                     },
2211   { "pig.digging.down",                         "RocksHeroes.pcx"       },
2212   { "pig.digging.down.xpos",                    "8"                     },
2213   { "pig.digging.down.ypos",                    "0"                     },
2214   { "pig.digging.down.frames",                  "4"                     },
2215   { "pig.digging.down.delay",                   "2"                     },
2216   { "pig.digging.up",                           "RocksHeroes.pcx"       },
2217   { "pig.digging.up.xpos",                      "12"                    },
2218   { "pig.digging.up.ypos",                      "0"                     },
2219   { "pig.digging.up.frames",                    "4"                     },
2220   { "pig.digging.up.delay",                     "2"                     },
2221   { "pig.digging.left",                         "RocksHeroes.pcx"       },
2222   { "pig.digging.left.xpos",                    "8"                     },
2223   { "pig.digging.left.ypos",                    "1"                     },
2224   { "pig.digging.left.frames",                  "4"                     },
2225   { "pig.digging.left.delay",                   "2"                     },
2226   { "pig.digging.right",                        "RocksHeroes.pcx"       },
2227   { "pig.digging.right.xpos",                   "12"                    },
2228   { "pig.digging.right.ypos",                   "1"                     },
2229   { "pig.digging.right.frames",                 "4"                     },
2230   { "pig.digging.right.delay",                  "2"                     },
2231
2232   { "dragon",                                   "RocksHeroes.pcx"       },
2233   { "dragon.xpos",                              "8"                     },
2234   { "dragon.ypos",                              "2"                     },
2235   { "dragon.frames",                            "1"                     },
2236   { "dragon.down",                              "RocksHeroes.pcx"       },
2237   { "dragon.down.xpos",                         "8"                     },
2238   { "dragon.down.ypos",                         "2"                     },
2239   { "dragon.down.frames",                       "1"                     },
2240   { "dragon.up",                                "RocksHeroes.pcx"       },
2241   { "dragon.up.xpos",                           "12"                    },
2242   { "dragon.up.ypos",                           "2"                     },
2243   { "dragon.up.frames",                         "1"                     },
2244   { "dragon.left",                              "RocksHeroes.pcx"       },
2245   { "dragon.left.xpos",                         "8"                     },
2246   { "dragon.left.ypos",                         "3"                     },
2247   { "dragon.left.frames",                       "1"                     },
2248   { "dragon.right",                             "RocksHeroes.pcx"       },
2249   { "dragon.right.xpos",                        "12"                    },
2250   { "dragon.right.ypos",                        "3"                     },
2251   { "dragon.right.frames",                      "1"                     },
2252   { "dragon.moving.down",                       "RocksHeroes.pcx"       },
2253   { "dragon.moving.down.xpos",                  "8"                     },
2254   { "dragon.moving.down.ypos",                  "2"                     },
2255   { "dragon.moving.down.frames",                "4"                     },
2256   { "dragon.moving.down.delay",                 "2"                     },
2257   { "dragon.moving.up",                         "RocksHeroes.pcx"       },
2258   { "dragon.moving.up.xpos",                    "12"                    },
2259   { "dragon.moving.up.ypos",                    "2"                     },
2260   { "dragon.moving.up.frames",                  "4"                     },
2261   { "dragon.moving.up.delay",                   "2"                     },
2262   { "dragon.moving.left",                       "RocksHeroes.pcx"       },
2263   { "dragon.moving.left.xpos",                  "8"                     },
2264   { "dragon.moving.left.ypos",                  "3"                     },
2265   { "dragon.moving.left.frames",                "4"                     },
2266   { "dragon.moving.left.delay",                 "2"                     },
2267   { "dragon.moving.right",                      "RocksHeroes.pcx"       },
2268   { "dragon.moving.right.xpos",                 "12"                    },
2269   { "dragon.moving.right.ypos",                 "3"                     },
2270   { "dragon.moving.right.frames",               "4"                     },
2271   { "dragon.moving.right.delay",                "2"                     },
2272   { "dragon.attacking.down",                    "RocksHeroes.pcx"       },
2273   { "dragon.attacking.down.xpos",               "8"                     },
2274   { "dragon.attacking.down.ypos",               "2"                     },
2275   { "dragon.attacking.down.frames",             "1"                     },
2276   { "dragon.attacking.up",                      "RocksHeroes.pcx"       },
2277   { "dragon.attacking.up.xpos",                 "12"                    },
2278   { "dragon.attacking.up.ypos",                 "2"                     },
2279   { "dragon.attacking.up.frames",               "1"                     },
2280   { "dragon.attacking.left",                    "RocksHeroes.pcx"       },
2281   { "dragon.attacking.left.xpos",               "8"                     },
2282   { "dragon.attacking.left.ypos",               "3"                     },
2283   { "dragon.attacking.left.frames",             "1"                     },
2284   { "dragon.attacking.right",                   "RocksHeroes.pcx"       },
2285   { "dragon.attacking.right.xpos",              "12"                    },
2286   { "dragon.attacking.right.ypos",              "3"                     },
2287   { "dragon.attacking.right.frames",            "1"                     },
2288
2289   { "mole",                                     "RocksHeroes.pcx"       },
2290   { "mole.xpos",                                "8"                     },
2291   { "mole.ypos",                                "4"                     },
2292   { "mole.frames",                              "1"                     },
2293   { "mole.down",                                "RocksHeroes.pcx"       },
2294   { "mole.down.xpos",                           "8"                     },
2295   { "mole.down.ypos",                           "4"                     },
2296   { "mole.down.frames",                         "1"                     },
2297   { "mole.up",                                  "RocksHeroes.pcx"       },
2298   { "mole.up.xpos",                             "12"                    },
2299   { "mole.up.ypos",                             "4"                     },
2300   { "mole.up.frames",                           "1"                     },
2301   { "mole.left",                                "RocksHeroes.pcx"       },
2302   { "mole.left.xpos",                           "8"                     },
2303   { "mole.left.ypos",                           "5"                     },
2304   { "mole.left.frames",                         "1"                     },
2305   { "mole.right",                               "RocksHeroes.pcx"       },
2306   { "mole.right.xpos",                          "12"                    },
2307   { "mole.right.ypos",                          "5"                     },
2308   { "mole.right.frames",                        "1"                     },
2309   { "mole.moving.down",                         "RocksHeroes.pcx"       },
2310   { "mole.moving.down.xpos",                    "8"                     },
2311   { "mole.moving.down.ypos",                    "4"                     },
2312   { "mole.moving.down.frames",                  "4"                     },
2313   { "mole.moving.down.delay",                   "2"                     },
2314   { "mole.moving.up",                           "RocksHeroes.pcx"       },
2315   { "mole.moving.up.xpos",                      "12"                    },
2316   { "mole.moving.up.ypos",                      "4"                     },
2317   { "mole.moving.up.frames",                    "4"                     },
2318   { "mole.moving.up.delay",                     "2"                     },
2319   { "mole.moving.left",                         "RocksHeroes.pcx"       },
2320   { "mole.moving.left.xpos",                    "8"                     },
2321   { "mole.moving.left.ypos",                    "5"                     },
2322   { "mole.moving.left.frames",                  "4"                     },
2323   { "mole.moving.left.delay",                   "2"                     },
2324   { "mole.moving.right",                        "RocksHeroes.pcx"       },
2325   { "mole.moving.right.xpos",                   "12"                    },
2326   { "mole.moving.right.ypos",                   "5"                     },
2327   { "mole.moving.right.frames",                 "4"                     },
2328   { "mole.moving.right.delay",                  "2"                     },
2329   { "mole.digging.down",                        "RocksHeroes.pcx"       },
2330   { "mole.digging.down.xpos",                   "8"                     },
2331   { "mole.digging.down.ypos",                   "4"                     },
2332   { "mole.digging.down.frames",                 "4"                     },
2333   { "mole.digging.down.delay",                  "2"                     },
2334   { "mole.digging.up",                          "RocksHeroes.pcx"       },
2335   { "mole.digging.up.xpos",                     "12"                    },
2336   { "mole.digging.up.ypos",                     "4"                     },
2337   { "mole.digging.up.frames",                   "4"                     },
2338   { "mole.digging.up.delay",                    "2"                     },
2339   { "mole.digging.left",                        "RocksHeroes.pcx"       },
2340   { "mole.digging.left.xpos",                   "8"                     },
2341   { "mole.digging.left.ypos",                   "5"                     },
2342   { "mole.digging.left.frames",                 "4"                     },
2343   { "mole.digging.left.delay",                  "2"                     },
2344   { "mole.digging.right",                       "RocksHeroes.pcx"       },
2345   { "mole.digging.right.xpos",                  "12"                    },
2346   { "mole.digging.right.ypos",                  "5"                     },
2347   { "mole.digging.right.frames",                "4"                     },
2348   { "mole.digging.right.delay",                 "2"                     },
2349
2350   { "penguin",                                  "RocksHeroes.pcx"       },
2351   { "penguin.xpos",                             "8"                     },
2352   { "penguin.ypos",                             "6"                     },
2353   { "penguin.frames",                           "1"                     },
2354   { "penguin.EDITOR",                           "RocksElements.pcx"     },
2355   { "penguin.EDITOR.xpos",                      "12"                    },
2356   { "penguin.EDITOR.ypos",                      "14"                    },
2357   { "penguin.down",                             "RocksHeroes.pcx"       },
2358   { "penguin.down.xpos",                        "8"                     },
2359   { "penguin.down.ypos",                        "6"                     },
2360   { "penguin.down.frames",                      "1"                     },
2361   { "penguin.up",                               "RocksHeroes.pcx"       },
2362   { "penguin.up.xpos",                          "12"                    },
2363   { "penguin.up.ypos",                          "6"                     },
2364   { "penguin.up.frames",                        "1"                     },
2365   { "penguin.left",                             "RocksHeroes.pcx"       },
2366   { "penguin.left.xpos",                        "8"                     },
2367   { "penguin.left.ypos",                        "7"                     },
2368   { "penguin.left.frames",                      "1"                     },
2369   { "penguin.right",                            "RocksHeroes.pcx"       },
2370   { "penguin.right.xpos",                       "12"                    },
2371   { "penguin.right.ypos",                       "7"                     },
2372   { "penguin.right.frames",                     "1"                     },
2373   { "penguin.moving.down",                      "RocksHeroes.pcx"       },
2374   { "penguin.moving.down.xpos",                 "8"                     },
2375   { "penguin.moving.down.ypos",                 "6"                     },
2376   { "penguin.moving.down.frames",               "4"                     },
2377   { "penguin.moving.down.delay",                "2"                     },
2378   { "penguin.moving.up",                        "RocksHeroes.pcx"       },
2379   { "penguin.moving.up.xpos",                   "12"                    },
2380   { "penguin.moving.up.ypos",                   "6"                     },
2381   { "penguin.moving.up.frames",                 "4"                     },
2382   { "penguin.moving.up.delay",                  "2"                     },
2383   { "penguin.moving.left",                      "RocksHeroes.pcx"       },
2384   { "penguin.moving.left.xpos",                 "8"                     },
2385   { "penguin.moving.left.ypos",                 "7"                     },
2386   { "penguin.moving.left.frames",               "4"                     },
2387   { "penguin.moving.left.delay",                "2"                     },
2388   { "penguin.moving.right",                     "RocksHeroes.pcx"       },
2389   { "penguin.moving.right.xpos",                "12"                    },
2390   { "penguin.moving.right.ypos",                "7"                     },
2391   { "penguin.moving.right.frames",              "4"                     },
2392   { "penguin.moving.right.delay",               "2"                     },
2393
2394   { "satellite",                                "RocksHeroes.pcx"       },
2395   { "satellite.xpos",                           "8"                     },
2396   { "satellite.ypos",                           "9"                     },
2397   { "satellite.frames",                         "8"                     },
2398   { "satellite.delay",                          "2"                     },
2399   { "satellite.global_sync",                    "true"                  },
2400
2401   { "flames_1_left",                            "RocksHeroes.pcx"       },
2402   { "flames_1_left.xpos",                       "8"                     },
2403   { "flames_1_left.ypos",                       "12"                    },
2404   { "flames_1_left.frames",                     "2"                     },
2405   { "flames_1_left.offset",                     "96"                    },
2406   { "flames_2_left",                            "RocksHeroes.pcx"       },
2407   { "flames_2_left.xpos",                       "9"                     },
2408   { "flames_2_left.ypos",                       "12"                    },
2409   { "flames_2_left.frames",                     "2"                     },
2410   { "flames_2_left.offset",                     "96"                    },
2411   { "flames_3_left",                            "RocksHeroes.pcx"       },
2412   { "flames_3_left.xpos",                       "10"                    },
2413   { "flames_3_left.ypos",                       "12"                    },
2414   { "flames_3_left.frames",                     "2"                     },
2415   { "flames_3_left.offset",                     "96"                    },
2416
2417   { "flames_1_right",                           "RocksHeroes.pcx"       },
2418   { "flames_1_right.xpos",                      "8"                     },
2419   { "flames_1_right.ypos",                      "13"                    },
2420   { "flames_1_right.frames",                    "2"                     },
2421   { "flames_1_right.offset",                    "96"                    },
2422   { "flames_2_right",                           "RocksHeroes.pcx"       },
2423   { "flames_2_right.xpos",                      "9"                     },
2424   { "flames_2_right.ypos",                      "13"                    },
2425   { "flames_2_right.frames",                    "2"                     },
2426   { "flames_2_right.offset",                    "96"                    },
2427   { "flames_3_right",                           "RocksHeroes.pcx"       },
2428   { "flames_3_right.xpos",                      "10"                    },
2429   { "flames_3_right.ypos",                      "13"                    },
2430   { "flames_3_right.frames",                    "2"                     },
2431   { "flames_3_right.offset",                    "96"                    },
2432
2433   { "flames_1_up",                              "RocksHeroes.pcx"       },
2434   { "flames_1_up.xpos",                         "8"                     },
2435   { "flames_1_up.ypos",                         "14"                    },
2436   { "flames_1_up.frames",                       "2"                     },
2437   { "flames_1_up.offset",                       "96"                    },
2438   { "flames_2_up",                              "RocksHeroes.pcx"       },
2439   { "flames_2_up.xpos",                         "9"                     },
2440   { "flames_2_up.ypos",                         "14"                    },
2441   { "flames_2_up.frames",                       "2"                     },
2442   { "flames_2_up.offset",                       "96"                    },
2443   { "flames_3_up",                              "RocksHeroes.pcx"       },
2444   { "flames_3_up.xpos",                         "10"                    },
2445   { "flames_3_up.ypos",                         "14"                    },
2446   { "flames_3_up.frames",                       "2"                     },
2447   { "flames_3_up.offset",                       "96"                    },
2448
2449   { "flames_1_down",                            "RocksHeroes.pcx"       },
2450   { "flames_1_down.xpos",                       "8"                     },
2451   { "flames_1_down.ypos",                       "15"                    },
2452   { "flames_1_down.frames",                     "2"                     },
2453   { "flames_1_down.offset",                     "96"                    },
2454   { "flames_2_down",                            "RocksHeroes.pcx"       },
2455   { "flames_2_down.xpos",                       "9"                     },
2456   { "flames_2_down.ypos",                       "15"                    },
2457   { "flames_2_down.frames",                     "2"                     },
2458   { "flames_2_down.offset",                     "96"                    },
2459   { "flames_3_down",                            "RocksHeroes.pcx"       },
2460   { "flames_3_down.xpos",                       "10"                    },
2461   { "flames_3_down.ypos",                       "15"                    },
2462   { "flames_3_down.frames",                     "2"                     },
2463   { "flames_3_down.offset",                     "96"                    },
2464
2465   { "stoneblock",                               "RocksElements.pcx"     },
2466   { "stoneblock.xpos",                          "10"                    },
2467   { "stoneblock.ypos",                          "1"                     },
2468   { "stoneblock.frames",                        "1"                     },
2469
2470   /* images for other elements and actions */
2471
2472   { "player_1",                                 "RocksHeroes.pcx"       },
2473   { "player_1.xpos",                            "0"                     },
2474   { "player_1.ypos",                            "0"                     },
2475   { "player_1.frames",                          "1"                     },
2476   { "player_1.EDITOR",                          "RocksElements.pcx"     },
2477   { "player_1.EDITOR.xpos",                     "4"                     },
2478   { "player_1.EDITOR.ypos",                     "7"                     },
2479   { "player_1.down",                            "RocksHeroes.pcx"       },
2480   { "player_1.down.xpos",                       "0"                     },
2481   { "player_1.down.ypos",                       "0"                     },
2482   { "player_1.down.frames",                     "1"                     },
2483   { "player_1.up",                              "RocksHeroes.pcx"       },
2484   { "player_1.up.xpos",                         "4"                     },
2485   { "player_1.up.ypos",                         "0"                     },
2486   { "player_1.up.frames",                       "1"                     },
2487   { "player_1.left",                            "RocksHeroes.pcx"       },
2488   { "player_1.left.xpos",                       "0"                     },
2489   { "player_1.left.ypos",                       "1"                     },
2490   { "player_1.left.frames",                     "1"                     },
2491   { "player_1.right",                           "RocksHeroes.pcx"       },
2492   { "player_1.right.xpos",                      "4"                     },
2493   { "player_1.right.ypos",                      "1"                     },
2494   { "player_1.right.frames",                    "1"                     },
2495   { "player_1.moving.down",                     "RocksHeroes.pcx"       },
2496   { "player_1.moving.down.xpos",                "0"                     },
2497   { "player_1.moving.down.ypos",                "0"                     },
2498   { "player_1.moving.down.frames",              "4"                     },
2499   { "player_1.moving.down.start_frame",         "1"                     },
2500   { "player_1.moving.down.delay",               "4"                     },
2501   { "player_1.moving.up",                       "RocksHeroes.pcx"       },
2502   { "player_1.moving.up.xpos",                  "4"                     },
2503   { "player_1.moving.up.ypos",                  "0"                     },
2504   { "player_1.moving.up.frames",                "4"                     },
2505   { "player_1.moving.up.start_frame",           "1"                     },
2506   { "player_1.moving.up.delay",                 "4"                     },
2507   { "player_1.moving.left",                     "RocksHeroes.pcx"       },
2508   { "player_1.moving.left.xpos",                "0"                     },
2509   { "player_1.moving.left.ypos",                "1"                     },
2510   { "player_1.moving.left.frames",              "4"                     },
2511   { "player_1.moving.left.start_frame",         "1"                     },
2512   { "player_1.moving.left.delay",               "4"                     },
2513   { "player_1.moving.right",                    "RocksHeroes.pcx"       },
2514   { "player_1.moving.right.xpos",               "4"                     },
2515   { "player_1.moving.right.ypos",               "1"                     },
2516   { "player_1.moving.right.frames",             "4"                     },
2517   { "player_1.moving.right.start_frame",        "1"                     },
2518   { "player_1.moving.right.delay",              "4"                     },
2519   { "player_1.digging.down",                    "RocksHeroes.pcx"       },
2520   { "player_1.digging.down.xpos",               "0"                     },
2521   { "player_1.digging.down.ypos",               "0"                     },
2522   { "player_1.digging.down.frames",             "4"                     },
2523   { "player_1.digging.down.start_frame",        "1"                     },
2524   { "player_1.digging.down.delay",              "4"                     },
2525   { "player_1.digging.up",                      "RocksHeroes.pcx"       },
2526   { "player_1.digging.up.xpos",                 "4"                     },
2527   { "player_1.digging.up.ypos",                 "0"                     },
2528   { "player_1.digging.up.frames",               "4"                     },
2529   { "player_1.digging.up.start_frame",          "1"                     },
2530   { "player_1.digging.up.delay",                "4"                     },
2531   { "player_1.digging.left",                    "RocksHeroes.pcx"       },
2532   { "player_1.digging.left.xpos",               "0"                     },
2533   { "player_1.digging.left.ypos",               "1"                     },
2534   { "player_1.digging.left.frames",             "4"                     },
2535   { "player_1.digging.left.start_frame",        "1"                     },
2536   { "player_1.digging.left.delay",              "4"                     },
2537   { "player_1.digging.right",                   "RocksHeroes.pcx"       },
2538   { "player_1.digging.right.xpos",              "4"                     },
2539   { "player_1.digging.right.ypos",              "1"                     },
2540   { "player_1.digging.right.frames",            "4"                     },
2541   { "player_1.digging.right.start_frame",       "1"                     },
2542   { "player_1.digging.right.delay",             "4"                     },
2543   { "player_1.collecting.down",                 "RocksHeroes.pcx"       },
2544   { "player_1.collecting.down.xpos",            "0"                     },
2545   { "player_1.collecting.down.ypos",            "0"                     },
2546   { "player_1.collecting.down.frames",          "4"                     },
2547   { "player_1.collecting.down.start_frame",     "1"                     },
2548   { "player_1.collecting.down.delay",           "4"                     },
2549   { "player_1.collecting.up",                   "RocksHeroes.pcx"       },
2550   { "player_1.collecting.up.xpos",              "4"                     },
2551   { "player_1.collecting.up.ypos",              "0"                     },
2552   { "player_1.collecting.up.frames",            "4"                     },
2553   { "player_1.collecting.up.start_frame",       "1"                     },
2554   { "player_1.collecting.up.delay",             "4"                     },
2555   { "player_1.collecting.left",                 "RocksHeroes.pcx"       },
2556   { "player_1.collecting.left.xpos",            "0"                     },
2557   { "player_1.collecting.left.ypos",            "1"                     },
2558   { "player_1.collecting.left.frames",          "4"                     },
2559   { "player_1.collecting.left.start_frame",     "1"                     },
2560   { "player_1.collecting.left.delay",           "4"                     },
2561   { "player_1.collecting.right",                "RocksHeroes.pcx"       },
2562   { "player_1.collecting.right.xpos",           "4"                     },
2563   { "player_1.collecting.right.ypos",           "1"                     },
2564   { "player_1.collecting.right.frames",         "4"                     },
2565   { "player_1.collecting.right.start_frame",    "1"                     },
2566   { "player_1.collecting.right.delay",          "4"                     },
2567   { "player_1.pushing.down",                    "RocksHeroes.pcx"       },
2568   { "player_1.pushing.down.xpos",               "0"                     },
2569   { "player_1.pushing.down.ypos",               "0"                     },
2570   { "player_1.pushing.down.frames",             "4"                     },
2571   { "player_1.pushing.down.delay",              "4"                     },
2572   { "player_1.pushing.up",                      "RocksHeroes.pcx"       },
2573   { "player_1.pushing.up.xpos",                 "4"                     },
2574   { "player_1.pushing.up.ypos",                 "0"                     },
2575   { "player_1.pushing.up.frames",               "4"                     },
2576   { "player_1.pushing.up.delay",                "4"                     },
2577   { "player_1.pushing.left",                    "RocksHeroes.pcx"       },
2578   { "player_1.pushing.left.xpos",               "4"                     },
2579   { "player_1.pushing.left.ypos",               "2"                     },
2580   { "player_1.pushing.left.frames",             "4"                     },
2581   { "player_1.pushing.left.delay",              "4"                     },
2582   { "player_1.pushing.right",                   "RocksHeroes.pcx"       },
2583   { "player_1.pushing.right.xpos",              "0"                     },
2584   { "player_1.pushing.right.ypos",              "2"                     },
2585   { "player_1.pushing.right.frames",            "4"                     },
2586   { "player_1.pushing.right.delay",             "4"                     },
2587   { "player_1.snapping.down",                   "RocksHeroes.pcx"       },
2588   { "player_1.snapping.down.xpos",              "0"                     },
2589   { "player_1.snapping.down.ypos",              "0"                     },
2590   { "player_1.snapping.down.frames",            "1"                     },
2591   { "player_1.snapping.up",                     "RocksHeroes.pcx"       },
2592   { "player_1.snapping.up.xpos",                "4"                     },
2593   { "player_1.snapping.up.ypos",                "0"                     },
2594   { "player_1.snapping.up.frames",              "1"                     },
2595   { "player_1.snapping.left",                   "RocksHeroes.pcx"       },
2596   { "player_1.snapping.left.xpos",              "0"                     },
2597   { "player_1.snapping.left.ypos",              "1"                     },
2598   { "player_1.snapping.left.frames",            "1"                     },
2599   { "player_1.snapping.right",                  "RocksHeroes.pcx"       },
2600   { "player_1.snapping.right.xpos",             "4"                     },
2601   { "player_1.snapping.right.ypos",             "1"                     },
2602   { "player_1.snapping.right.frames",           "1"                     },
2603
2604   { "player_2",                                 "RocksHeroes.pcx"       },
2605   { "player_2.xpos",                            "0"                     },
2606   { "player_2.ypos",                            "3"                     },
2607   { "player_2.frames",                          "1"                     },
2608   { "player_2.EDITOR",                          "RocksElements.pcx"     },
2609   { "player_2.EDITOR.xpos",                     "5"                     },
2610   { "player_2.EDITOR.ypos",                     "7"                     },
2611   { "player_2.down",                            "RocksHeroes.pcx"       },
2612   { "player_2.down.xpos",                       "0"                     },
2613   { "player_2.down.ypos",                       "3"                     },
2614   { "player_2.down.frames",                     "1"                     },
2615   { "player_2.up",                              "RocksHeroes.pcx"       },
2616   { "player_2.up.xpos",                         "4"                     },
2617   { "player_2.up.ypos",                         "3"                     },
2618   { "player_2.up.frames",                       "1"                     },
2619   { "player_2.left",                            "RocksHeroes.pcx"       },
2620   { "player_2.left.xpos",                       "0"                     },
2621   { "player_2.left.ypos",                       "4"                     },
2622   { "player_2.left.frames",                     "1"                     },
2623   { "player_2.right",                           "RocksHeroes.pcx"       },
2624   { "player_2.right.xpos",                      "4"                     },
2625   { "player_2.right.ypos",                      "4"                     },
2626   { "player_2.right.frames",                    "1"                     },
2627   { "player_2.moving.down",                     "RocksHeroes.pcx"       },
2628   { "player_2.moving.down.xpos",                "0"                     },
2629   { "player_2.moving.down.ypos",                "3"                     },
2630   { "player_2.moving.down.frames",              "4"                     },
2631   { "player_2.moving.down.start_frame",         "1"                     },
2632   { "player_2.moving.down.delay",               "4"                     },
2633   { "player_2.moving.up",                       "RocksHeroes.pcx"       },
2634   { "player_2.moving.up.xpos",                  "4"                     },
2635   { "player_2.moving.up.ypos",                  "3"                     },
2636   { "player_2.moving.up.frames",                "4"                     },
2637   { "player_2.moving.up.start_frame",           "1"                     },
2638   { "player_2.moving.up.delay",                 "4"                     },
2639   { "player_2.moving.left",                     "RocksHeroes.pcx"       },
2640   { "player_2.moving.left.xpos",                "0"                     },
2641   { "player_2.moving.left.ypos",                "4"                     },
2642   { "player_2.moving.left.frames",              "4"                     },
2643   { "player_2.moving.left.start_frame",         "1"                     },
2644   { "player_2.moving.left.delay",               "4"                     },
2645   { "player_2.moving.right",                    "RocksHeroes.pcx"       },
2646   { "player_2.moving.right.xpos",               "4"                     },
2647   { "player_2.moving.right.ypos",               "4"                     },
2648   { "player_2.moving.right.frames",             "4"                     },
2649   { "player_2.moving.right.start_frame",        "1"                     },
2650   { "player_2.moving.right.delay",              "4"                     },
2651   { "player_2.digging.down",                    "RocksHeroes.pcx"       },
2652   { "player_2.digging.down.xpos",               "0"                     },
2653   { "player_2.digging.down.ypos",               "3"                     },
2654   { "player_2.digging.down.frames",             "4"                     },
2655   { "player_2.digging.down.start_frame",        "1"                     },
2656   { "player_2.digging.down.delay",              "4"                     },
2657   { "player_2.digging.up",                      "RocksHeroes.pcx"       },
2658   { "player_2.digging.up.xpos",                 "4"                     },
2659   { "player_2.digging.up.ypos",                 "3"                     },
2660   { "player_2.digging.up.frames",               "4"                     },
2661   { "player_2.digging.up.start_frame",          "1"                     },
2662   { "player_2.digging.up.delay",                "4"                     },
2663   { "player_2.digging.left",                    "RocksHeroes.pcx"       },
2664   { "player_2.digging.left.xpos",               "0"                     },
2665   { "player_2.digging.left.ypos",               "4"                     },
2666   { "player_2.digging.left.frames",             "4"                     },
2667   { "player_2.digging.left.start_frame",        "1"                     },
2668   { "player_2.digging.left.delay",              "4"                     },
2669   { "player_2.digging.right",                   "RocksHeroes.pcx"       },
2670   { "player_2.digging.right.xpos",              "4"                     },
2671   { "player_2.digging.right.ypos",              "4"                     },
2672   { "player_2.digging.right.frames",            "4"                     },
2673   { "player_2.digging.right.start_frame",       "1"                     },
2674   { "player_2.digging.right.delay",             "4"                     },
2675   { "player_2.collecting.down",                 "RocksHeroes.pcx"       },
2676   { "player_2.collecting.down.xpos",            "0"                     },
2677   { "player_2.collecting.down.ypos",            "3"                     },
2678   { "player_2.collecting.down.frames",          "4"                     },
2679   { "player_2.collecting.down.start_frame",     "1"                     },
2680   { "player_2.collecting.down.delay",           "4"                     },
2681   { "player_2.collecting.up",                   "RocksHeroes.pcx"       },
2682   { "player_2.collecting.up.xpos",              "4"                     },
2683   { "player_2.collecting.up.ypos",              "3"                     },
2684   { "player_2.collecting.up.frames",            "4"                     },
2685   { "player_2.collecting.up.start_frame",       "1"                     },
2686   { "player_2.collecting.up.delay",             "4"                     },
2687   { "player_2.collecting.left",                 "RocksHeroes.pcx"       },
2688   { "player_2.collecting.left.xpos",            "0"                     },
2689   { "player_2.collecting.left.ypos",            "4"                     },
2690   { "player_2.collecting.left.frames",          "4"                     },
2691   { "player_2.collecting.left.start_frame",     "1"                     },
2692   { "player_2.collecting.left.delay",           "4"                     },
2693   { "player_2.collecting.right",                "RocksHeroes.pcx"       },
2694   { "player_2.collecting.right.xpos",           "4"                     },
2695   { "player_2.collecting.right.ypos",           "4"                     },
2696   { "player_2.collecting.right.frames",         "4"                     },
2697   { "player_2.collecting.right.start_frame",    "1"                     },
2698   { "player_2.collecting.right.delay",          "4"                     },
2699   { "player_2.pushing.down",                    "RocksHeroes.pcx"       },
2700   { "player_2.pushing.down.xpos",               "0"                     },
2701   { "player_2.pushing.down.ypos",               "3"                     },
2702   { "player_2.pushing.down.frames",             "4"                     },
2703   { "player_2.pushing.down.delay",              "4"                     },
2704   { "player_2.pushing.up",                      "RocksHeroes.pcx"       },
2705   { "player_2.pushing.up.xpos",                 "4"                     },
2706   { "player_2.pushing.up.ypos",                 "3"                     },
2707   { "player_2.pushing.up.frames",               "4"                     },
2708   { "player_2.pushing.up.delay",                "4"                     },
2709   { "player_2.pushing.left",                    "RocksHeroes.pcx"       },
2710   { "player_2.pushing.left.xpos",               "4"                     },
2711   { "player_2.pushing.left.ypos",               "5"                     },
2712   { "player_2.pushing.left.frames",             "4"                     },
2713   { "player_2.pushing.left.delay",              "4"                     },
2714   { "player_2.pushing.right",                   "RocksHeroes.pcx"       },
2715   { "player_2.pushing.right.xpos",              "0"                     },
2716   { "player_2.pushing.right.ypos",              "5"                     },
2717   { "player_2.pushing.right.frames",            "4"                     },
2718   { "player_2.pushing.right.delay",             "4"                     },
2719   { "player_2.snapping.down",                   "RocksHeroes.pcx"       },
2720   { "player_2.snapping.down.xpos",              "0"                     },
2721   { "player_2.snapping.down.ypos",              "3"                     },
2722   { "player_2.snapping.down.frames",            "1"                     },
2723   { "player_2.snapping.up",                     "RocksHeroes.pcx"       },
2724   { "player_2.snapping.up.xpos",                "4"                     },
2725   { "player_2.snapping.up.ypos",                "3"                     },
2726   { "player_2.snapping.up.frames",              "1"                     },
2727   { "player_2.snapping.left",                   "RocksHeroes.pcx"       },
2728   { "player_2.snapping.left.xpos",              "0"                     },
2729   { "player_2.snapping.left.ypos",              "4"                     },
2730   { "player_2.snapping.left.frames",            "1"                     },
2731   { "player_2.snapping.right",                  "RocksHeroes.pcx"       },
2732   { "player_2.snapping.right.xpos",             "4"                     },
2733   { "player_2.snapping.right.ypos",             "4"                     },
2734   { "player_2.snapping.right.frames",           "1"                     },
2735
2736   { "player_3",                                 "RocksHeroes.pcx"       },
2737   { "player_3.xpos",                            "0"                     },
2738   { "player_3.ypos",                            "6"                     },
2739   { "player_3.frames",                          "1"                     },
2740   { "player_3.EDITOR",                          "RocksElements.pcx"     },
2741   { "player_3.EDITOR.xpos",                     "6"                     },
2742   { "player_3.EDITOR.ypos",                     "7"                     },
2743   { "player_3.down",                            "RocksHeroes.pcx"       },
2744   { "player_3.down.xpos",                       "0"                     },
2745   { "player_3.down.ypos",                       "6"                     },
2746   { "player_3.down.frames",                     "1"                     },
2747   { "player_3.up",                              "RocksHeroes.pcx"       },
2748   { "player_3.up.xpos",                         "4"                     },
2749   { "player_3.up.ypos",                         "6"                     },
2750   { "player_3.up.frames",                       "1"                     },
2751   { "player_3.left",                            "RocksHeroes.pcx"       },
2752   { "player_3.left.xpos",                       "0"                     },
2753   { "player_3.left.ypos",                       "7"                     },
2754   { "player_3.left.frames",                     "1"                     },
2755   { "player_3.right",                           "RocksHeroes.pcx"       },
2756   { "player_3.right.xpos",                      "4"                     },
2757   { "player_3.right.ypos",                      "7"                     },
2758   { "player_3.right.frames",                    "1"                     },
2759   { "player_3.moving.down",                     "RocksHeroes.pcx"       },
2760   { "player_3.moving.down.xpos",                "0"                     },
2761   { "player_3.moving.down.ypos",                "6"                     },
2762   { "player_3.moving.down.frames",              "4"                     },
2763   { "player_3.moving.down.start_frame",         "1"                     },
2764   { "player_3.moving.down.delay",               "4"                     },
2765   { "player_3.moving.up",                       "RocksHeroes.pcx"       },
2766   { "player_3.moving.up.xpos",                  "4"                     },
2767   { "player_3.moving.up.ypos",                  "6"                     },
2768   { "player_3.moving.up.frames",                "4"                     },
2769   { "player_3.moving.up.start_frame",           "1"                     },
2770   { "player_3.moving.up.delay",                 "4"                     },
2771   { "player_3.moving.left",                     "RocksHeroes.pcx"       },
2772   { "player_3.moving.left.xpos",                "0"                     },
2773   { "player_3.moving.left.ypos",                "7"                     },
2774   { "player_3.moving.left.frames",              "4"                     },
2775   { "player_3.moving.left.start_frame",         "1"                     },
2776   { "player_3.moving.left.delay",               "4"                     },
2777   { "player_3.moving.right",                    "RocksHeroes.pcx"       },
2778   { "player_3.moving.right.xpos",               "4"                     },
2779   { "player_3.moving.right.ypos",               "7"                     },
2780   { "player_3.moving.right.frames",             "4"                     },
2781   { "player_3.moving.right.start_frame",        "1"                     },
2782   { "player_3.moving.right.delay",              "4"                     },
2783   { "player_3.digging.down",                    "RocksHeroes.pcx"       },
2784   { "player_3.digging.down.xpos",               "0"                     },
2785   { "player_3.digging.down.ypos",               "6"                     },
2786   { "player_3.digging.down.frames",             "4"                     },
2787   { "player_3.digging.down.start_frame",        "1"                     },
2788   { "player_3.digging.down.delay",              "4"                     },
2789   { "player_3.digging.up",                      "RocksHeroes.pcx"       },
2790   { "player_3.digging.up.xpos",                 "4"                     },
2791   { "player_3.digging.up.ypos",                 "6"                     },
2792   { "player_3.digging.up.frames",               "4"                     },
2793   { "player_3.digging.up.start_frame",          "1"                     },
2794   { "player_3.digging.up.delay",                "4"                     },
2795   { "player_3.digging.left",                    "RocksHeroes.pcx"       },
2796   { "player_3.digging.left.xpos",               "0"                     },
2797   { "player_3.digging.left.ypos",               "7"                     },
2798   { "player_3.digging.left.frames",             "4"                     },
2799   { "player_3.digging.left.start_frame",        "1"                     },
2800   { "player_3.digging.left.delay",              "4"                     },
2801   { "player_3.digging.right",                   "RocksHeroes.pcx"       },
2802   { "player_3.digging.right.xpos",              "4"                     },
2803   { "player_3.digging.right.ypos",              "7"                     },
2804   { "player_3.digging.right.frames",            "4"                     },
2805   { "player_3.digging.right.start_frame",       "1"                     },
2806   { "player_3.digging.right.delay",             "4"                     },
2807   { "player_3.collecting.down",                 "RocksHeroes.pcx"       },
2808   { "player_3.collecting.down.xpos",            "0"                     },
2809   { "player_3.collecting.down.ypos",            "6"                     },
2810   { "player_3.collecting.down.frames",          "4"                     },
2811   { "player_3.collecting.down.start_frame",     "1"                     },
2812   { "player_3.collecting.down.delay",           "4"                     },
2813   { "player_3.collecting.up",                   "RocksHeroes.pcx"       },
2814   { "player_3.collecting.up.xpos",              "4"                     },
2815   { "player_3.collecting.up.ypos",              "6"                     },
2816   { "player_3.collecting.up.frames",            "4"                     },
2817   { "player_3.collecting.up.start_frame",       "1"                     },
2818   { "player_3.collecting.up.delay",             "4"                     },
2819   { "player_3.collecting.left",                 "RocksHeroes.pcx"       },
2820   { "player_3.collecting.left.xpos",            "0"                     },
2821   { "player_3.collecting.left.ypos",            "7"                     },
2822   { "player_3.collecting.left.frames",          "4"                     },
2823   { "player_3.collecting.left.start_frame",     "1"                     },
2824   { "player_3.collecting.left.delay",           "4"                     },
2825   { "player_3.collecting.right",                "RocksHeroes.pcx"       },
2826   { "player_3.collecting.right.xpos",           "4"                     },
2827   { "player_3.collecting.right.ypos",           "7"                     },
2828   { "player_3.collecting.right.frames",         "4"                     },
2829   { "player_3.collecting.right.start_frame",    "1"                     },
2830   { "player_3.collecting.right.delay",          "4"                     },
2831   { "player_3.pushing.down",                    "RocksHeroes.pcx"       },
2832   { "player_3.pushing.down.xpos",               "0"                     },
2833   { "player_3.pushing.down.ypos",               "6"                     },
2834   { "player_3.pushing.down.frames",             "4"                     },
2835   { "player_3.pushing.down.delay",              "4"                     },
2836   { "player_3.pushing.up",                      "RocksHeroes.pcx"       },
2837   { "player_3.pushing.up.xpos",                 "4"                     },
2838   { "player_3.pushing.up.ypos",                 "6"                     },
2839   { "player_3.pushing.up.frames",               "4"                     },
2840   { "player_3.pushing.up.delay",                "4"                     },
2841   { "player_3.pushing.left",                    "RocksHeroes.pcx"       },
2842   { "player_3.pushing.left.xpos",               "4"                     },
2843   { "player_3.pushing.left.ypos",               "8"                     },
2844   { "player_3.pushing.left.frames",             "4"                     },
2845   { "player_3.pushing.left.delay",              "4"                     },
2846   { "player_3.pushing.right",                   "RocksHeroes.pcx"       },
2847   { "player_3.pushing.right.xpos",              "0"                     },
2848   { "player_3.pushing.right.ypos",              "8"                     },
2849   { "player_3.pushing.right.frames",            "4"                     },
2850   { "player_3.pushing.right.delay",             "4"                     },
2851   { "player_3.snapping.down",                   "RocksHeroes.pcx"       },
2852   { "player_3.snapping.down.xpos",              "0"                     },
2853   { "player_3.snapping.down.ypos",              "6"                     },
2854   { "player_3.snapping.down.frames",            "1"                     },
2855   { "player_3.snapping.up",                     "RocksHeroes.pcx"       },
2856   { "player_3.snapping.up.xpos",                "4"                     },
2857   { "player_3.snapping.up.ypos",                "6"                     },
2858   { "player_3.snapping.up.frames",              "1"                     },
2859   { "player_3.snapping.left",                   "RocksHeroes.pcx"       },
2860   { "player_3.snapping.left.xpos",              "0"                     },
2861   { "player_3.snapping.left.ypos",              "7"                     },
2862   { "player_3.snapping.left.frames",            "1"                     },
2863   { "player_3.snapping.right",                  "RocksHeroes.pcx"       },
2864   { "player_3.snapping.right.xpos",             "4"                     },
2865   { "player_3.snapping.right.ypos",             "7"                     },
2866   { "player_3.snapping.right.frames",           "1"                     },
2867
2868   { "player_4",                                 "RocksHeroes.pcx"       },
2869   { "player_4.xpos",                            "0"                     },
2870   { "player_4.ypos",                            "9"                     },
2871   { "player_4.frames",                          "1"                     },
2872   { "player_4.EDITOR",                          "RocksElements.pcx"     },
2873   { "player_4.EDITOR.xpos",                     "7"                     },
2874   { "player_4.EDITOR.ypos",                     "7"                     },
2875   { "player_4.down",                            "RocksHeroes.pcx"       },
2876   { "player_4.down.xpos",                       "0"                     },
2877   { "player_4.down.ypos",                       "9"                     },
2878   { "player_4.down.frames",                     "1"                     },
2879   { "player_4.up",                              "RocksHeroes.pcx"       },
2880   { "player_4.up.xpos",                         "4"                     },
2881   { "player_4.up.ypos",                         "9"                     },
2882   { "player_4.up.frames",                       "1"                     },
2883   { "player_4.left",                            "RocksHeroes.pcx"       },
2884   { "player_4.left.xpos",                       "0"                     },
2885   { "player_4.left.ypos",                       "10"                    },
2886   { "player_4.left.frames",                     "1"                     },
2887   { "player_4.right",                           "RocksHeroes.pcx"       },
2888   { "player_4.right.xpos",                      "4"                     },
2889   { "player_4.right.ypos",                      "10"                    },
2890   { "player_4.right.frames",                    "1"                     },
2891   { "player_4.moving.down",                     "RocksHeroes.pcx"       },
2892   { "player_4.moving.down.xpos",                "0"                     },
2893   { "player_4.moving.down.ypos",                "9"                     },
2894   { "player_4.moving.down.frames",              "4"                     },
2895   { "player_4.moving.down.start_frame",         "1"                     },
2896   { "player_4.moving.down.delay",               "4"                     },
2897   { "player_4.moving.up",                       "RocksHeroes.pcx"       },
2898   { "player_4.moving.up.xpos",                  "4"                     },
2899   { "player_4.moving.up.ypos",                  "9"                     },
2900   { "player_4.moving.up.frames",                "4"                     },
2901   { "player_4.moving.up.start_frame",           "1"                     },
2902   { "player_4.moving.up.delay",                 "4"                     },
2903   { "player_4.moving.left",                     "RocksHeroes.pcx"       },
2904   { "player_4.moving.left.xpos",                "0"                     },
2905   { "player_4.moving.left.ypos",                "10"                    },
2906   { "player_4.moving.left.frames",              "4"                     },
2907   { "player_4.moving.left.start_frame",         "1"                     },
2908   { "player_4.moving.left.delay",               "4"                     },
2909   { "player_4.moving.right",                    "RocksHeroes.pcx"       },
2910   { "player_4.moving.right.xpos",               "4"                     },
2911   { "player_4.moving.right.ypos",               "10"                    },
2912   { "player_4.moving.right.frames",             "4"                     },
2913   { "player_4.moving.right.start_frame",        "1"                     },
2914   { "player_4.moving.right.delay",              "4"                     },
2915   { "player_4.digging.down",                    "RocksHeroes.pcx"       },
2916   { "player_4.digging.down.xpos",               "0"                     },
2917   { "player_4.digging.down.ypos",               "9"                     },
2918   { "player_4.digging.down.frames",             "4"                     },
2919   { "player_4.digging.down.start_frame",        "1"                     },
2920   { "player_4.digging.down.delay",              "4"                     },
2921   { "player_4.digging.up",                      "RocksHeroes.pcx"       },
2922   { "player_4.digging.up.xpos",                 "4"                     },
2923   { "player_4.digging.up.ypos",                 "9"                     },
2924   { "player_4.digging.up.frames",               "4"                     },
2925   { "player_4.digging.up.start_frame",          "1"                     },
2926   { "player_4.digging.up.delay",                "4"                     },
2927   { "player_4.digging.left",                    "RocksHeroes.pcx"       },
2928   { "player_4.digging.left.xpos",               "0"                     },
2929   { "player_4.digging.left.ypos",               "10"                    },
2930   { "player_4.digging.left.frames",             "4"                     },
2931   { "player_4.digging.left.start_frame",        "1"                     },
2932   { "player_4.digging.left.delay",              "4"                     },
2933   { "player_4.digging.right",                   "RocksHeroes.pcx"       },
2934   { "player_4.digging.right.xpos",              "4"                     },
2935   { "player_4.digging.right.ypos",              "10"                    },
2936   { "player_4.digging.right.frames",            "4"                     },
2937   { "player_4.digging.right.start_frame",       "1"                     },
2938   { "player_4.digging.right.delay",             "4"                     },
2939   { "player_4.collecting.down",                 "RocksHeroes.pcx"       },
2940   { "player_4.collecting.down.xpos",            "0"                     },
2941   { "player_4.collecting.down.ypos",            "9"                     },
2942   { "player_4.collecting.down.frames",          "4"                     },
2943   { "player_4.collecting.down.start_frame",     "1"                     },
2944   { "player_4.collecting.down.delay",           "4"                     },
2945   { "player_4.collecting.up",                   "RocksHeroes.pcx"       },
2946   { "player_4.collecting.up.xpos",              "4"                     },
2947   { "player_4.collecting.up.ypos",              "9"                     },
2948   { "player_4.collecting.up.frames",            "4"                     },
2949   { "player_4.collecting.up.start_frame",       "1"                     },
2950   { "player_4.collecting.up.delay",             "4"                     },
2951   { "player_4.collecting.left",                 "RocksHeroes.pcx"       },
2952   { "player_4.collecting.left.xpos",            "0"                     },
2953   { "player_4.collecting.left.ypos",            "10"                    },
2954   { "player_4.collecting.left.frames",          "4"                     },
2955   { "player_4.collecting.left.start_frame",     "1"                     },
2956   { "player_4.collecting.left.delay",           "4"                     },
2957   { "player_4.collecting.right",                "RocksHeroes.pcx"       },
2958   { "player_4.collecting.right.xpos",           "4"                     },
2959   { "player_4.collecting.right.ypos",           "10"                    },
2960   { "player_4.collecting.right.frames",         "4"                     },
2961   { "player_4.collecting.right.start_frame",    "1"                     },
2962   { "player_4.collecting.right.delay",          "4"                     },
2963   { "player_4.pushing.down",                    "RocksHeroes.pcx"       },
2964   { "player_4.pushing.down.xpos",               "0"                     },
2965   { "player_4.pushing.down.ypos",               "9"                     },
2966   { "player_4.pushing.down.frames",             "4"                     },
2967   { "player_4.pushing.down.delay",              "4"                     },
2968   { "player_4.pushing.up",                      "RocksHeroes.pcx"       },
2969   { "player_4.pushing.up.xpos",                 "4"                     },
2970   { "player_4.pushing.up.ypos",                 "9"                     },
2971   { "player_4.pushing.up.frames",               "4"                     },
2972   { "player_4.pushing.up.delay",                "4"                     },
2973   { "player_4.pushing.left",                    "RocksHeroes.pcx"       },
2974   { "player_4.pushing.left.xpos",               "4"                     },
2975   { "player_4.pushing.left.ypos",               "11"                    },
2976   { "player_4.pushing.left.frames",             "4"                     },
2977   { "player_4.pushing.left.delay",              "4"                     },
2978   { "player_4.pushing.right",                   "RocksHeroes.pcx"       },
2979   { "player_4.pushing.right.xpos",              "0"                     },
2980   { "player_4.pushing.right.ypos",              "11"                    },
2981   { "player_4.pushing.right.frames",            "4"                     },
2982   { "player_4.pushing.right.delay",             "4"                     },
2983   { "player_4.snapping.down",                   "RocksHeroes.pcx"       },
2984   { "player_4.snapping.down.xpos",              "0"                     },
2985   { "player_4.snapping.down.ypos",              "9"                     },
2986   { "player_4.snapping.down.frames",            "1"                     },
2987   { "player_4.snapping.up",                     "RocksHeroes.pcx"       },
2988   { "player_4.snapping.up.xpos",                "4"                     },
2989   { "player_4.snapping.up.ypos",                "9"                     },
2990   { "player_4.snapping.up.frames",              "1"                     },
2991   { "player_4.snapping.left",                   "RocksHeroes.pcx"       },
2992   { "player_4.snapping.left.xpos",              "0"                     },
2993   { "player_4.snapping.left.ypos",              "10"                    },
2994   { "player_4.snapping.left.frames",            "1"                     },
2995   { "player_4.snapping.right",                  "RocksHeroes.pcx"       },
2996   { "player_4.snapping.right.xpos",             "4"                     },
2997   { "player_4.snapping.right.ypos",             "10"                    },
2998   { "player_4.snapping.right.frames",           "1"                     },
2999
3000   { "[default].exploding",                      "RocksElements.pcx"     },
3001   { "[default].exploding.xpos",                 "0"                     },
3002   { "[default].exploding.ypos",                 "4"                     },
3003   { "[default].exploding.frames",               "8"                     },
3004   { "[default].exploding.delay",                "2"                     },
3005   { "[default].exploding.anim_mode",            "linear"                },
3006
3007   { "twinkle_blue",                             "RocksHeroes.pcx"       },
3008   { "twinkle_blue.xpos",                        "9"                     },
3009   { "twinkle_blue.ypos",                        "11"                    },
3010   { "twinkle_blue.frames",                      "3"                     },
3011   { "twinkle_blue.delay",                       "2"                     },
3012   { "twinkle_blue.anim_mode",                   "pingpong"              },
3013   { "twinkle_blue.global_sync",                 "false"                 },
3014   { "twinkle_white",                            "RocksHeroes.pcx"       },
3015   { "twinkle_white.xpos",                       "13"                    },
3016   { "twinkle_white.ypos",                       "11"                    },
3017   { "twinkle_white.frames",                     "3"                     },
3018   { "twinkle_white.delay",                      "2"                     },
3019   { "twinkle_white.anim_mode",                  "pingpong"              },
3020   { "twinkle_white.global_sync",                "false"                 },
3021
3022   { "steelwall_topleft",                        "RocksElements.pcx"     },
3023   { "steelwall_topleft.xpos",                   "4"                     },
3024   { "steelwall_topleft.ypos",                   "0"                     },
3025   { "steelwall_topleft.frames",                 "1"                     },
3026   { "steelwall_topright",                       "RocksElements.pcx"     },
3027   { "steelwall_topright.xpos",                  "4"                     },
3028   { "steelwall_topright.ypos",                  "0"                     },
3029   { "steelwall_topright.frames",                "1"                     },
3030   { "steelwall_bottomleft",                     "RocksElements.pcx"     },
3031   { "steelwall_bottomleft.xpos",                "4"                     },
3032   { "steelwall_bottomleft.ypos",                "0"                     },
3033   { "steelwall_bottomleft.frames",              "1"                     },
3034   { "steelwall_bottomright",                    "RocksElements.pcx"     },
3035   { "steelwall_bottomright.xpos",               "4"                     },
3036   { "steelwall_bottomright.ypos",               "0"                     },
3037   { "steelwall_bottomright.frames",             "1"                     },
3038   { "steelwall_horizontal",                     "RocksElements.pcx"     },
3039   { "steelwall_horizontal.xpos",                "4"                     },
3040   { "steelwall_horizontal.ypos",                "0"                     },
3041   { "steelwall_horizontal.frames",              "1"                     },
3042   { "steelwall_vertical",                       "RocksElements.pcx"     },
3043   { "steelwall_vertical.xpos",                  "4"                     },
3044   { "steelwall_vertical.ypos",                  "0"                     },
3045   { "steelwall_vertical.frames",                "1"                     },
3046
3047   { "steelwall_topleft.EDITOR",                 "RocksElements.pcx"     },
3048   { "steelwall_topleft.EDITOR.xpos",            "0"                     },
3049   { "steelwall_topleft.EDITOR.ypos",            "13"                    },
3050   { "steelwall_topright.EDITOR",                "RocksElements.pcx"     },
3051   { "steelwall_topright.EDITOR.xpos",           "1"                     },
3052   { "steelwall_topright.EDITOR.ypos",           "13"                    },
3053   { "steelwall_bottomleft.EDITOR",              "RocksElements.pcx"     },
3054   { "steelwall_bottomleft.EDITOR.xpos",         "2"                     },
3055   { "steelwall_bottomleft.EDITOR.ypos",         "13"                    },
3056   { "steelwall_bottomright.EDITOR",             "RocksElements.pcx"     },
3057   { "steelwall_bottomright.EDITOR.xpos",        "3"                     },
3058   { "steelwall_bottomright.EDITOR.ypos",        "13"                    },
3059   { "steelwall_horizontal.EDITOR",              "RocksElements.pcx"     },
3060   { "steelwall_horizontal.EDITOR.xpos",         "4"                     },
3061   { "steelwall_horizontal.EDITOR.ypos",         "13"                    },
3062   { "steelwall_vertical.EDITOR",                "RocksElements.pcx"     },
3063   { "steelwall_vertical.EDITOR.xpos",           "5"                     },
3064   { "steelwall_vertical.EDITOR.ypos",           "13"                    },
3065
3066   { "invisible_steelwall_topleft",              "RocksSP.pcx"           },
3067   { "invisible_steelwall_topleft.xpos",         "0"                     },
3068   { "invisible_steelwall_topleft.ypos",         "0"                     },
3069   { "invisible_steelwall_topleft.frames",       "1"                     },
3070   { "invisible_steelwall_topright",             "RocksSP.pcx"           },
3071   { "invisible_steelwall_topright.xpos",        "0"                     },
3072   { "invisible_steelwall_topright.ypos",        "0"                     },
3073   { "invisible_steelwall_topright.frames",      "1"                     },
3074   { "invisible_steelwall_bottomleft",           "RocksSP.pcx"           },
3075   { "invisible_steelwall_bottomleft.xpos",      "0"                     },
3076   { "invisible_steelwall_bottomleft.ypos",      "0"                     },
3077   { "invisible_steelwall_bottomleft.frames",    "1"                     },
3078   { "invisible_steelwall_bottomright",          "RocksSP.pcx"           },
3079   { "invisible_steelwall_bottomright.xpos",     "0"                     },
3080   { "invisible_steelwall_bottomright.ypos",     "0"                     },
3081   { "invisible_steelwall_bottomright.frames",   "1"                     },
3082   { "invisible_steelwall_horizontal",           "RocksSP.pcx"           },
3083   { "invisible_steelwall_horizontal.xpos",      "0"                     },
3084   { "invisible_steelwall_horizontal.ypos",      "0"                     },
3085   { "invisible_steelwall_horizontal.frames",    "1"                     },
3086   { "invisible_steelwall_vertical",             "RocksSP.pcx"           },
3087   { "invisible_steelwall_vertical.xpos",        "0"                     },
3088   { "invisible_steelwall_vertical.ypos",        "0"                     },
3089   { "invisible_steelwall_vertical.frames",      "1"                     },
3090
3091   { "invisible_steelwall_topleft.EDITOR",       "RocksElements.pcx"     },
3092   { "invisible_steelwall_topleft.EDITOR.xpos",  "6"                     },
3093   { "invisible_steelwall_topleft.EDITOR.ypos",  "13"                    },
3094   { "invisible_steelwall_topright.EDITOR",      "RocksElements.pcx"     },
3095   { "invisible_steelwall_topright.EDITOR.xpos", "7"                     },
3096   { "invisible_steelwall_topright.EDITOR.ypos", "13"                    },
3097   { "invisible_steelwall_bottomleft.EDITOR",    "RocksElements.pcx"     },
3098   { "invisible_steelwall_bottomleft.EDITOR.xpos","8"                    },
3099   { "invisible_steelwall_bottomleft.EDITOR.ypos","13"                   },
3100   { "invisible_steelwall_bottomright.EDITOR",   "RocksElements.pcx"     },
3101   { "invisible_steelwall_bottomright.EDITOR.xpos","9"                   },
3102   { "invisible_steelwall_bottomright.EDITOR.ypos","13"                  },
3103   { "invisible_steelwall_horizontal.EDITOR",    "RocksElements.pcx"     },
3104   { "invisible_steelwall_horizontal.EDITOR.xpos","10"                   },
3105   { "invisible_steelwall_horizontal.EDITOR.ypos","13"                   },
3106   { "invisible_steelwall_vertical.EDITOR",      "RocksElements.pcx"     },
3107   { "invisible_steelwall_vertical.EDITOR.xpos", "11"                    },
3108   { "invisible_steelwall_vertical.EDITOR.ypos", "13"                    },
3109
3110   { "arrow_left",                               "RocksDC.pcx"           },
3111   { "arrow_left.xpos",                          "8"                     },
3112   { "arrow_left.ypos",                          "8"                     },
3113   { "arrow_left.frames",                        "1"                     },
3114   { "arrow_right",                              "RocksDC.pcx"           },
3115   { "arrow_right.xpos",                         "9"                     },
3116   { "arrow_right.ypos",                         "8"                     },
3117   { "arrow_right.frames",                       "1"                     },
3118   { "arrow_up",                                 "RocksDC.pcx"           },
3119   { "arrow_up.xpos",                            "10"                    },
3120   { "arrow_up.ypos",                            "8"                     },
3121   { "arrow_up.frames",                          "1"                     },
3122   { "arrow_down",                               "RocksDC.pcx"           },
3123   { "arrow_down.xpos",                          "11"                    },
3124   { "arrow_down.ypos",                          "8"                     },
3125   { "arrow_down.frames",                        "1"                     },
3126
3127 #include "conf_chr.c"   /* include auto-generated data structure definitions */
3128 #include "conf_cus.c"   /* include auto-generated data structure definitions */
3129
3130   /* images not associated to game elements (used for menu screens etc.) */
3131   /* keyword to stop parser: "NO_MORE_ELEMENT_IMAGES" <-- do not change! */
3132
3133   { "toon_1",                                   "RocksToons.pcx"        },
3134   { "toon_1.x",                                 "2"                     },
3135   { "toon_1.y",                                 "72"                    },
3136   { "toon_1.width",                             "40"                    },
3137   { "toon_1.height",                            "48"                    },
3138   { "toon_1.frames",                            "8"                     },
3139   { "toon_1.delay",                             "1"                     },
3140   { "toon_1.step_offset",                       "4"                     },
3141   { "toon_1.step_delay",                        "5"                     },
3142   { "toon_1.direction",                         "right"                 },
3143   { "toon_1.position",                          "bottom"                },
3144
3145   { "toon_2",                                   "RocksToons.pcx"        },
3146   { "toon_2.x",                                 "2"                     },
3147   { "toon_2.y",                                 "186"                   },
3148   { "toon_2.width",                             "40"                    },
3149   { "toon_2.height",                            "48"                    },
3150   { "toon_2.frames",                            "8"                     },
3151   { "toon_2.delay",                             "1"                     },
3152   { "toon_2.step_offset",                       "4"                     },
3153   { "toon_2.step_delay",                        "5"                     },
3154   { "toon_2.direction",                         "left"                  },
3155   { "toon_2.position",                          "bottom"                },
3156
3157   { "toon_3",                                   "RocksToons.pcx"        },
3158   { "toon_3.x",                                 "2"                     },
3159   { "toon_3.y",                                 "125"                   },
3160   { "toon_3.width",                             "48"                    },
3161   { "toon_3.height",                            "56"                    },
3162   { "toon_3.frames",                            "8"                     },
3163   { "toon_3.delay",                             "1"                     },
3164   { "toon_3.step_offset",                       "4"                     },
3165   { "toon_3.step_delay",                        "5"                     },
3166   { "toon_3.direction",                         "right"                 },
3167   { "toon_3.position",                          "bottom"                },
3168
3169   { "toon_4",                                   "RocksToons.pcx"        },
3170   { "toon_4.x",                                 "327"                   },
3171   { "toon_4.y",                                 "10"                    },
3172   { "toon_4.width",                             "80"                    },
3173   { "toon_4.height",                            "110"                   },
3174   { "toon_4.frames",                            "1"                     },
3175   { "toon_4.delay",                             "1"                     },
3176   { "toon_4.step_offset",                       "1"                     },
3177   { "toon_4.step_delay",                        "1"                     },
3178   { "toon_4.direction",                         "up"                    },
3179   { "toon_4.position",                          "any"                   },
3180
3181   { "toon_5",                                   "RocksToons.pcx"        },
3182   { "toon_5.x",                                 "2"                     },
3183   { "toon_5.y",                                 "2"                     },
3184   { "toon_5.width",                             "32"                    },
3185   { "toon_5.height",                            "30"                    },
3186   { "toon_5.frames",                            "8"                     },
3187   { "toon_5.delay",                             "2"                     },
3188   { "toon_5.anim_mode",                         "pingpong2"             },
3189   { "toon_5.step_offset",                       "2"                     },
3190   { "toon_5.step_delay",                        "1"                     },
3191   { "toon_5.direction",                         "right"                 },
3192   { "toon_5.position",                          "upper"                 },
3193
3194   { "toon_6",                                   "RocksToons.pcx"        },
3195   { "toon_6.x",                                 "2"                     },
3196   { "toon_6.y",                                 "37"                    },
3197   { "toon_6.width",                             "32"                    },
3198   { "toon_6.height",                            "30"                    },
3199   { "toon_6.frames",                            "8"                     },
3200   { "toon_6.delay",                             "2"                     },
3201   { "toon_6.anim_mode",                         "pingpong2"             },
3202   { "toon_6.step_offset",                       "2"                     },
3203   { "toon_6.step_delay",                        "1"                     },
3204   { "toon_6.direction",                         "left"                  },
3205   { "toon_6.position",                          "upper"                 },
3206
3207   { "toon_7",                                   "RocksMore.pcx"         },
3208   { "toon_7.xpos",                              "0"                     },
3209   { "toon_7.ypos",                              "6"                     },
3210   { "toon_7.frames",                            "16"                    },
3211   { "toon_7.delay",                             "2"                     },
3212   { "toon_7.direction",                         "down"                  },
3213   { "toon_7.position",                          "any"                   },
3214
3215   { "toon_8",                                   "RocksHeroes.pcx"       },
3216   { "toon_8.xpos",                              "4"                     },
3217   { "toon_8.ypos",                              "1"                     },
3218   { "toon_8.frames",                            "4"                     },
3219   { "toon_8.delay",                             "4"                     },
3220   { "toon_8.direction",                         "right"                 },
3221   { "toon_8.position",                          "bottom"                },
3222
3223   { "toon_9",                                   "RocksHeroes.pcx"       },
3224   { "toon_9.xpos",                              "8"                     },
3225   { "toon_9.ypos",                              "7"                     },
3226   { "toon_9.frames",                            "4"                     },
3227   { "toon_9.delay",                             "2"                     },
3228   { "toon_9.direction",                         "left"                  },
3229   { "toon_9.position",                          "bottom"                },
3230
3231   { "toon_10",                                  "RocksHeroes.pcx"       },
3232   { "toon_10.xpos",                             "12"                    },
3233   { "toon_10.ypos",                             "7"                     },
3234   { "toon_10.frames",                           "4"                     },
3235   { "toon_10.delay",                            "2"                     },
3236   { "toon_10.direction",                        "right"                 },
3237   { "toon_10.position",                         "bottom"                },
3238
3239   { "toon_11",                                  "RocksHeroes.pcx"       },
3240   { "toon_11.xpos",                             "8"                     },
3241   { "toon_11.ypos",                             "5"                     },
3242   { "toon_11.frames",                           "4"                     },
3243   { "toon_11.delay",                            "2"                     },
3244   { "toon_11.direction",                        "left"                  },
3245   { "toon_11.position",                         "bottom"                },
3246
3247   { "toon_12",                                  "RocksHeroes.pcx"       },
3248   { "toon_12.xpos",                             "12"                    },
3249   { "toon_12.ypos",                             "5"                     },
3250   { "toon_12.frames",                           "4"                     },
3251   { "toon_12.delay",                            "2"                     },
3252   { "toon_12.direction",                        "right"                 },
3253   { "toon_12.position",                         "bottom"                },
3254
3255   { "toon_13",                                  "RocksHeroes.pcx"       },
3256   { "toon_13.xpos",                             "8"                     },
3257   { "toon_13.ypos",                             "1"                     },
3258   { "toon_13.frames",                           "4"                     },
3259   { "toon_13.delay",                            "2"                     },
3260   { "toon_13.direction",                        "left"                  },
3261   { "toon_13.position",                         "bottom"                },
3262
3263   { "toon_14",                                  "RocksHeroes.pcx"       },
3264   { "toon_14.xpos",                             "12"                    },
3265   { "toon_14.ypos",                             "1"                     },
3266   { "toon_14.frames",                           "4"                     },
3267   { "toon_14.delay",                            "2"                     },
3268   { "toon_14.direction",                        "right"                 },
3269   { "toon_14.position",                         "bottom"                },
3270
3271   { "toon_15",                                  "RocksHeroes.pcx"       },
3272   { "toon_15.xpos",                             "8"                     },
3273   { "toon_15.ypos",                             "3"                     },
3274   { "toon_15.frames",                           "4"                     },
3275   { "toon_15.delay",                            "2"                     },
3276   { "toon_15.direction",                        "left"                  },
3277   { "toon_15.position",                         "bottom"                },
3278
3279   { "toon_16",                                  "RocksHeroes.pcx"       },
3280   { "toon_16.xpos",                             "12"                    },
3281   { "toon_16.ypos",                             "3"                     },
3282   { "toon_16.frames",                           "4"                     },
3283   { "toon_16.delay",                            "2"                     },
3284   { "toon_16.direction",                        "right"                 },
3285   { "toon_16.position",                         "bottom"                },
3286
3287   { "toon_17",                                  "RocksHeroes.pcx"       },
3288   { "toon_17.xpos",                             "8"                     },
3289   { "toon_17.ypos",                             "9"                     },
3290   { "toon_17.frames",                           "8"                     },
3291   { "toon_17.delay",                            "2"                     },
3292   { "toon_17.direction",                        "left"                  },
3293   { "toon_17.position",                         "any"                   },
3294
3295   { "toon_18",                                  "RocksHeroes.pcx"       },
3296   { "toon_18.xpos",                             "8"                     },
3297   { "toon_18.ypos",                             "9"                     },
3298   { "toon_18.frames",                           "8"                     },
3299   { "toon_18.delay",                            "2"                     },
3300   { "toon_18.direction",                        "right"                 },
3301   { "toon_18.position",                         "any"                   },
3302
3303   { "toon_19",                                  "RocksElements.pcx"     },
3304   { "toon_19.xpos",                             "8"                     },
3305   { "toon_19.ypos",                             "0"                     },
3306   { "toon_19.frames",                           "2"                     },
3307   { "toon_19.delay",                            "4"                     },
3308   { "toon_19.direction",                        "down"                  },
3309   { "toon_19.position",                         "any"                   },
3310
3311   { "toon_20",                                  "RocksElements.pcx"     },
3312   { "toon_20.xpos",                             "10"                    },
3313   { "toon_20.ypos",                             "0"                     },
3314   { "toon_20.frames",                           "2"                     },
3315   { "toon_20.delay",                            "4"                     },
3316   { "toon_20.direction",                        "down"                  },
3317   { "toon_20.position",                         "any"                   },
3318
3319   { "menu.calibrate_red",                       "RocksElements.pcx"     },
3320   { "menu.calibrate_red.xpos",                  "12"                    },
3321   { "menu.calibrate_red.ypos",                  "8"                     },
3322   { "menu.calibrate_red.frames",                "1"                     },
3323   { "menu.calibrate_blue",                      "RocksElements.pcx"     },
3324   { "menu.calibrate_blue.xpos",                 "13"                    },
3325   { "menu.calibrate_blue.ypos",                 "8"                     },
3326   { "menu.calibrate_blue.frames",               "1"                     },
3327   { "menu.calibrate_yellow",                    "RocksElements.pcx"     },
3328   { "menu.calibrate_yellow.xpos",               "14"                    },
3329   { "menu.calibrate_yellow.ypos",               "8"                     },
3330   { "menu.calibrate_yellow.frames",             "1"                     },
3331
3332   { "menu.button",                              "RocksElements.pcx"     },
3333   { "menu.button.xpos",                         "13"                    },
3334   { "menu.button.ypos",                         "8"                     },
3335   { "menu.button.frames",                       "1"                     },
3336   { "menu.button.active",                       "RocksElements.pcx"     },
3337   { "menu.button.active.xpos",                  "12"                    },
3338   { "menu.button.active.ypos",                  "8"                     },
3339   { "menu.button.active.frames",                "1"                     },
3340
3341   { "menu.button_left",                         "RocksDC.pcx"           },
3342   { "menu.button_left.xpos",                    "8"                     },
3343   { "menu.button_left.ypos",                    "8"                     },
3344   { "menu.button_left.frames",                  "1"                     },
3345   { "menu.button_right",                        "RocksDC.pcx"           },
3346   { "menu.button_right.xpos",                   "9"                     },
3347   { "menu.button_right.ypos",                   "8"                     },
3348   { "menu.button_right.frames",                 "1"                     },
3349   { "menu.button_up",                           "RocksDC.pcx"           },
3350   { "menu.button_up.xpos",                      "10"                    },
3351   { "menu.button_up.ypos",                      "8"                     },
3352   { "menu.button_up.frames",                    "1"                     },
3353   { "menu.button_down",                         "RocksDC.pcx"           },
3354   { "menu.button_down.xpos",                    "11"                    },
3355   { "menu.button_down.ypos",                    "8"                     },
3356   { "menu.button_down.frames",                  "1"                     },
3357   { "menu.button_left.active",                  "RocksDC.pcx"           },
3358   { "menu.button_left.active.xpos",             "8"                     },
3359   { "menu.button_left.active.ypos",             "9"                     },
3360   { "menu.button_left.active.frames",           "1"                     },
3361   { "menu.button_right.active",                 "RocksDC.pcx"           },
3362   { "menu.button_right.active.xpos",            "9"                     },
3363   { "menu.button_right.active.ypos",            "9"                     },
3364   { "menu.button_right.active.frames",          "1"                     },
3365   { "menu.button_up.active",                    "RocksDC.pcx"           },
3366   { "menu.button_up.active.xpos",               "10"                    },
3367   { "menu.button_up.active.ypos",               "9"                     },
3368   { "menu.button_up.active.frames",             "1"                     },
3369   { "menu.button_down.active",                  "RocksDC.pcx"           },
3370   { "menu.button_down.active.xpos",             "11"                    },
3371   { "menu.button_down.active.ypos",             "9"                     },
3372   { "menu.button_down.active.frames",           "1"                     },
3373
3374   { "menu.scrollbar",                           "RocksDC.pcx"           },
3375   { "menu.scrollbar.xpos",                      "8"                     },
3376   { "menu.scrollbar.ypos",                      "10"                    },
3377   { "menu.scrollbar.frames",                    "1"                     },
3378   { "menu.scrollbar.active",                    "RocksDC.pcx"           },
3379   { "menu.scrollbar.active.xpos",               "9"                     },
3380   { "menu.scrollbar.active.ypos",               "10"                    },
3381   { "menu.scrollbar.active.frames",             "1"                     },
3382
3383   { "font.initial_1",                           "RocksFontSmall.pcx"    },
3384   { "font.initial_1.x",                         "0"                     },
3385   { "font.initial_1.y",                         "0"                     },
3386   { "font.initial_1.width",                     "14"                    },
3387   { "font.initial_1.height",                    "14"                    },
3388   { "font.initial_2",                           "RocksFontSmall.pcx"    },
3389   { "font.initial_2.x",                         "0"                     },
3390   { "font.initial_2.y",                         "70"                    },
3391   { "font.initial_2.width",                     "14"                    },
3392   { "font.initial_2.height",                    "14"                    },
3393   { "font.initial_3",                           "RocksFontSmall.pcx"    },
3394   { "font.initial_3.x",                         "0"                     },
3395   { "font.initial_3.y",                         "140"                   },
3396   { "font.initial_3.width",                     "14"                    },
3397   { "font.initial_3.height",                    "14"                    },
3398   { "font.initial_4",                           "RocksFontSmall.pcx"    },
3399   { "font.initial_4.x",                         "0"                     },
3400   { "font.initial_4.y",                         "210"                   },
3401   { "font.initial_4.width",                     "14"                    },
3402   { "font.initial_4.height",                    "14"                    },
3403
3404   { "font.title_1",                             "RocksFontBig.pcx"      },
3405   { "font.title_1.x",                           "0"                     },
3406   { "font.title_1.y",                           "480"                   },
3407   { "font.title_1.width",                       "32"                    },
3408   { "font.title_1.height",                      "32"                    },
3409   { "font.title_1.LEVELS",                      "RocksFontBig.pcx"      },
3410   { "font.title_1.LEVELS.x",                    "0"                     },
3411   { "font.title_1.LEVELS.y",                    "320"                   },
3412   { "font.title_1.LEVELS.width",                "32"                    },
3413   { "font.title_1.LEVELS.height",               "32"                    },
3414   { "font.title_2",                             "RocksFontSmall.pcx"    },
3415   { "font.title_2.x",                           "0"                     },
3416   { "font.title_2.y",                           "0"                     },
3417   { "font.title_2.width",                       "14"                    },
3418   { "font.title_2.height",                      "14"                    },
3419
3420   { "font.menu_1",                              "RocksFontBig.pcx"      },
3421   { "font.menu_1.x",                            "0"                     },
3422   { "font.menu_1.y",                            "320"                   },
3423   { "font.menu_1.width",                        "32"                    },
3424   { "font.menu_1.height",                       "32"                    },
3425   { "font.menu_2",                              "RocksFontMedium.pcx"   },
3426   { "font.menu_2.x",                            "0"                     },
3427   { "font.menu_2.y",                            "320"                   },
3428   { "font.menu_2.width",                        "16"                    },
3429   { "font.menu_2.height",                       "32"                    },
3430
3431   { "font.text_1",                              "RocksFontSmall.pcx"    },
3432   { "font.text_1.x",                            "0"                     },
3433   { "font.text_1.y",                            "140"                   },
3434   { "font.text_1.width",                        "14"                    },
3435   { "font.text_1.height",                       "14"                    },
3436   { "font.text_1.LEVELS",                       "RocksFontMedium.pcx"   },
3437   { "font.text_1.LEVELS.x",                     "0"                     },
3438   { "font.text_1.LEVELS.y",                     "0"                     },
3439   { "font.text_1.LEVELS.width",                 "16"                    },
3440   { "font.text_1.LEVELS.height",                "32"                    },
3441   { "font.text_1.PREVIEW",                      "RocksFontEM.pcx"       },
3442   { "font.text_1.PREVIEW.x",                    "0"                     },
3443   { "font.text_1.PREVIEW.y",                    "160"                   },
3444   { "font.text_1.PREVIEW.width",                "16"                    },
3445   { "font.text_1.PREVIEW.height",               "16"                    },
3446   { "font.text_1.SCORES",                       "RocksFontMedium.pcx"   },
3447   { "font.text_1.SCORES.x",                     "0"                     },
3448   { "font.text_1.SCORES.y",                     "480"                   },
3449   { "font.text_1.SCORES.width",                 "16"                    },
3450   { "font.text_1.SCORES.height",                "32"                    },
3451   { "font.text_1.active.SCORES",                "RocksFontMedium.pcx"   },
3452   { "font.text_1.active.SCORES.x",              "0"                     },
3453   { "font.text_1.active.SCORES.y",              "0"                     },
3454   { "font.text_1.active.SCORES.width",          "16"                    },
3455   { "font.text_1.active.SCORES.height",         "32"                    },
3456   { "font.text_2",                              "RocksFontSmall.pcx"    },
3457   { "font.text_2.x",                            "0"                     },
3458   { "font.text_2.y",                            "210"                   },
3459   { "font.text_2.width",                        "14"                    },
3460   { "font.text_2.height",                       "14"                    },
3461   { "font.text_2.LEVELS",                       "RocksFontMedium.pcx"   },
3462   { "font.text_2.LEVELS.x",                     "0"                     },
3463   { "font.text_2.LEVELS.y",                     "160"                   },
3464   { "font.text_2.LEVELS.width",                 "16"                    },
3465   { "font.text_2.LEVELS.height",                "32"                    },
3466   { "font.text_2.PREVIEW",                      "RocksFontEM.pcx"       },
3467   { "font.text_2.PREVIEW.x",                    "0"                     },
3468   { "font.text_2.PREVIEW.y",                    "160"                   },
3469   { "font.text_2.PREVIEW.width",                "16"                    },
3470   { "font.text_2.PREVIEW.height",               "16"                    },
3471   { "font.text_2.SCORES",                       "RocksFontBig.pcx"      },
3472   { "font.text_2.SCORES.x",                     "0"                     },
3473   { "font.text_2.SCORES.y",                     "320"                   },
3474   { "font.text_2.SCORES.width",                 "32"                    },
3475   { "font.text_2.SCORES.height",                "32"                    },
3476   { "font.text_2.active.SCORES",                "RocksFontBig.pcx"      },
3477   { "font.text_2.active.SCORES.x",              "0"                     },
3478   { "font.text_2.active.SCORES.y",              "0"                     },
3479   { "font.text_2.active.SCORES.width",          "32"                    },
3480   { "font.text_2.active.SCORES.height",         "32"                    },
3481   { "font.text_3",                              "RocksFontSmall.pcx"    },
3482   { "font.text_3.x",                            "0"                     },
3483   { "font.text_3.y",                            "0"                     },
3484   { "font.text_3.width",                        "14"                    },
3485   { "font.text_3.height",                       "14"                    },
3486   { "font.text_3.LEVELS",                       "RocksFontMedium.pcx"   },
3487   { "font.text_3.LEVELS.x",                     "0"                     },
3488   { "font.text_3.LEVELS.y",                     "320"                   },
3489   { "font.text_3.LEVELS.width",                 "16"                    },
3490   { "font.text_3.LEVELS.height",                "32"                    },
3491   { "font.text_3.PREVIEW",                      "RocksFontEM.pcx"       },
3492   { "font.text_3.PREVIEW.x",                    "0"                     },
3493   { "font.text_3.PREVIEW.y",                    "160"                   },
3494   { "font.text_3.PREVIEW.width",                "16"                    },
3495   { "font.text_3.PREVIEW.height",               "16"                    },
3496   { "font.text_3.SCORES",                       "RocksFontMedium.pcx"   },
3497   { "font.text_3.SCORES.x",                     "0"                     },
3498   { "font.text_3.SCORES.y",                     "480"                   },
3499   { "font.text_3.SCORES.width",                 "16"                    },
3500   { "font.text_3.SCORES.height",                "32"                    },
3501   { "font.text_3.active.SCORES",                "RocksFontMedium.pcx"   },
3502   { "font.text_3.active.SCORES.x",              "0"                     },
3503   { "font.text_3.active.SCORES.y",              "0"                     },
3504   { "font.text_3.active.SCORES.width",          "16"                    },
3505   { "font.text_3.active.SCORES.height",         "32"                    },
3506   { "font.text_4",                              "RocksFontSmall.pcx"    },
3507   { "font.text_4.x",                            "0"                     },
3508   { "font.text_4.y",                            "70"                    },
3509   { "font.text_4.width",                        "14"                    },
3510   { "font.text_4.height",                       "14"                    },
3511   { "font.text_4.LEVELS",                       "RocksFontMedium.pcx"   },
3512   { "font.text_4.LEVELS.x",                     "0"                     },
3513   { "font.text_4.LEVELS.y",                     "480"                   },
3514   { "font.text_4.LEVELS.width",                 "16"                    },
3515   { "font.text_4.LEVELS.height",                "32"                    },
3516   { "font.text_4.SCORES",                       "RocksFontMedium.pcx"   },
3517   { "font.text_4.SCORES.x",                     "0"                     },
3518   { "font.text_4.SCORES.y",                     "480"                   },
3519   { "font.text_4.SCORES.width",                 "16"                    },
3520   { "font.text_4.SCORES.height",                "32"                    },
3521   { "font.text_4.active.SCORES",                "RocksFontMedium.pcx"   },
3522   { "font.text_4.active.SCORES.x",              "0"                     },
3523   { "font.text_4.active.SCORES.y",              "0"                     },
3524   { "font.text_4.active.SCORES.width",          "16"                    },
3525   { "font.text_4.active.SCORES.height",         "32"                    },
3526
3527   { "font.envelope_1",                          "RocksFontEM.pcx"       },
3528   { "font.envelope_1.x",                        "0"                     },
3529   { "font.envelope_1.y",                        "160"                   },
3530   { "font.envelope_1.width",                    "16"                    },
3531   { "font.envelope_1.height",                   "16"                    },
3532   { "font.envelope_2",                          "RocksFontEM.pcx"       },
3533   { "font.envelope_2.x",                        "0"                     },
3534   { "font.envelope_2.y",                        "160"                   },
3535   { "font.envelope_2.width",                    "16"                    },
3536   { "font.envelope_2.height",                   "16"                    },
3537   { "font.envelope_3",                          "RocksFontEM.pcx"       },
3538   { "font.envelope_3.x",                        "0"                     },
3539   { "font.envelope_3.y",                        "160"                   },
3540   { "font.envelope_3.width",                    "16"                    },
3541   { "font.envelope_3.height",                   "16"                    },
3542   { "font.envelope_4",                          "RocksFontEM.pcx"       },
3543   { "font.envelope_4.x",                        "0"                     },
3544   { "font.envelope_4.y",                        "160"                   },
3545   { "font.envelope_4.width",                    "16"                    },
3546   { "font.envelope_4.height",                   "16"                    },
3547
3548   { "font.input_1",                             "RocksFontSmall.pcx"    },
3549   { "font.input_1.x",                           "0"                     },
3550   { "font.input_1.y",                           "210"                   },
3551   { "font.input_1.width",                       "14"                    },
3552   { "font.input_1.height",                      "14"                    },
3553   { "font.input_1.MAIN",                        "RocksFontBig.pcx"      },
3554   { "font.input_1.MAIN.x",                      "0"                     },
3555   { "font.input_1.MAIN.y",                      "0"                     },
3556   { "font.input_1.MAIN.width",                  "32"                    },
3557   { "font.input_1.MAIN.height",                 "32"                    },
3558   { "font.input_1.active",                      "RocksFontSmall.pcx"    },
3559   { "font.input_1.active.x",                    "0"                     },
3560   { "font.input_1.active.y",                    "210"                   },
3561   { "font.input_1.active.width",                "14"                    },
3562   { "font.input_1.active.height",               "14"                    },
3563   { "font.input_1.active.MAIN",                 "RocksFontBig.pcx"      },
3564   { "font.input_1.active.MAIN.x",               "0"                     },
3565   { "font.input_1.active.MAIN.y",               "480"                   },
3566   { "font.input_1.active.MAIN.width",           "32"                    },
3567   { "font.input_1.active.MAIN.height",          "32"                    },
3568   { "font.input_1.active.SETUP",                "RocksFontBig.pcx"      },
3569   { "font.input_1.active.SETUP.x",              "0"                     },
3570   { "font.input_1.active.SETUP.y",              "0"                     },
3571   { "font.input_1.active.SETUP.width",          "32"                    },
3572   { "font.input_1.active.SETUP.height",         "32"                    },
3573   { "font.input_2",                             "RocksFontSmall.pcx"    },
3574   { "font.input_2.x",                           "0"                     },
3575   { "font.input_2.y",                           "210"                   },
3576   { "font.input_2.width",                       "14"                    },
3577   { "font.input_2.height",                      "14"                    },
3578   { "font.input_2.active",                      "RocksFontSmall.pcx"    },
3579   { "font.input_2.active.x",                    "0"                     },
3580   { "font.input_2.active.y",                    "210"                   },
3581   { "font.input_2.active.width",                "14"                    },
3582   { "font.input_2.active.height",               "14"                    },
3583
3584   { "font.option_off",                          "RocksFontBig.pcx"      },
3585   { "font.option_off.x",                        "0"                     },
3586   { "font.option_off.y",                        "160"                   },
3587   { "font.option_off.width",                    "32"                    },
3588   { "font.option_off.height",                   "32"                    },
3589   { "font.option_on",                           "RocksFontBig.pcx"      },
3590   { "font.option_on.x",                         "0"                     },
3591   { "font.option_on.y",                         "480"                   },
3592   { "font.option_on.width",                     "32"                    },
3593   { "font.option_on.height",                    "32"                    },
3594
3595   { "font.value_1",                             "RocksFontBig.pcx"      },
3596   { "font.value_1.x",                           "0"                     },
3597   { "font.value_1.y",                           "480"                   },
3598   { "font.value_1.width",                       "32"                    },
3599   { "font.value_1.height",                      "32"                    },
3600   { "font.value_2",                             "RocksFontMedium.pcx"   },
3601   { "font.value_2.x",                           "0"                     },
3602   { "font.value_2.y",                           "480"                   },
3603   { "font.value_2.width",                       "16"                    },
3604   { "font.value_2.height",                      "32"                    },
3605   { "font.value_old",                           "RocksFontBig.pcx"      },
3606   { "font.value_old.x",                         "0"                     },
3607   { "font.value_old.y",                         "160"                   },
3608   { "font.value_old.width",                     "32"                    },
3609   { "font.value_old.height",                    "32"                    },
3610
3611   { "font.level_number",                        "RocksFontSmall.pcx"    },
3612   { "font.level_number.x",                      "0"                     },
3613   { "font.level_number.y",                      "350"                   },
3614   { "font.level_number.width",                  "10"                    },
3615   { "font.level_number.height",                 "14"                    },
3616
3617   { "font.tape_recorder",                       "RocksFontSmall.pcx"    },
3618   { "font.tape_recorder.x",                     "0"                     },
3619   { "font.tape_recorder.y",                     "280"                   },
3620   { "font.tape_recorder.width",                 "11"                    },
3621   { "font.tape_recorder.height",                "14"                    },
3622
3623   { "font.game_info",                           "RocksFontEM.pcx"       },
3624   { "font.game_info.xpos",                      "0"                     },
3625   { "font.game_info.ypos",                      "0"                     },
3626   { "font.game_info.delay",                     "10"                    },
3627
3628   { "global.border",                            "RocksScreen.pcx"       },
3629   { "global.door",                              "RocksDoor.pcx"         },
3630
3631   { "editor.element_border",                    "RocksElements.pcx"     },
3632   { "editor.element_border.xpos",               "0"                     },
3633   { "editor.element_border.ypos",               "0"                     },
3634
3635   { "editor.element_border_input",              "RocksElements.pcx"     },
3636   { "editor.element_border_input.xpos",         "0"                     },
3637   { "editor.element_border_input.ypos",         "0"                     },
3638
3639   { "background.envelope_1",                    "RocksScreen.pcx"       },
3640   { "background.envelope_1.x",                  "0"                     },
3641   { "background.envelope_1.y",                  "0"                     },
3642   { "background.envelope_1.width",              "560"                   },
3643   { "background.envelope_1.height",             "560"                   },
3644   { "background.envelope_1.anim_mode",          "default"               },
3645   { "background.envelope_1.draw_masked",        "false"                 },
3646   { "background.envelope_2",                    "RocksScreen.pcx"       },
3647   { "background.envelope_2.x",                  "0"                     },
3648   { "background.envelope_2.y",                  "0"                     },
3649   { "background.envelope_2.width",              "560"                   },
3650   { "background.envelope_2.height",             "560"                   },
3651   { "background.envelope_2.anim_mode",          "default"               },
3652   { "background.envelope_2.draw_masked",        "false"                 },
3653   { "background.envelope_3",                    "RocksScreen.pcx"       },
3654   { "background.envelope_3.x",                  "0"                     },
3655   { "background.envelope_3.y",                  "0"                     },
3656   { "background.envelope_3.width",              "560"                   },
3657   { "background.envelope_3.height",             "560"                   },
3658   { "background.envelope_3.anim_mode",          "default"               },
3659   { "background.envelope_3.draw_masked",        "false"                 },
3660   { "background.envelope_4",                    "RocksScreen.pcx"       },
3661   { "background.envelope_4.x",                  "0"                     },
3662   { "background.envelope_4.y",                  "0"                     },
3663   { "background.envelope_4.width",              "560"                   },
3664   { "background.envelope_4.height",             "560"                   },
3665   { "background.envelope_4.anim_mode",          "default"               },
3666   { "background.envelope_4.draw_masked",        "false"                 },
3667
3668   { "background",                               UNDEFINED_FILENAME      },
3669   { "background.MAIN",                          UNDEFINED_FILENAME      },
3670   { "background.LEVELS",                        UNDEFINED_FILENAME      },
3671   { "background.SCORES",                        UNDEFINED_FILENAME      },
3672   { "background.EDITOR",                        UNDEFINED_FILENAME      },
3673   { "background.INFO",                          UNDEFINED_FILENAME      },
3674   { "background.SETUP",                         UNDEFINED_FILENAME      },
3675   { "background.DOOR",                          UNDEFINED_FILENAME      },
3676
3677   /* the following directives are not associated with an image, but
3678      probably make sense to be defined in "graphicsinfo.conf", too */
3679
3680   { "global.num_toons",                         "20"                    },
3681
3682   { "menu.draw_xoffset",                        "0"                     },
3683   { "menu.draw_yoffset",                        "0"                     },
3684   { "menu.draw_xoffset.MAIN",                   "0"                     },
3685   { "menu.draw_yoffset.MAIN",                   "0"                     },
3686   { "menu.draw_xoffset.LEVELS",                 "0"                     },
3687   { "menu.draw_yoffset.LEVELS",                 "0"                     },
3688   { "menu.draw_xoffset.SCORES",                 "0"                     },
3689   { "menu.draw_yoffset.SCORES",                 "0"                     },
3690   { "menu.draw_xoffset.EDITOR",                 "0"                     },
3691   { "menu.draw_yoffset.EDITOR",                 "0"                     },
3692   { "menu.draw_xoffset.INFO",                   "0"                     },
3693   { "menu.draw_yoffset.INFO",                   "0"                     },
3694   { "menu.draw_xoffset.SETUP",                  "0"                     },
3695   { "menu.draw_yoffset.SETUP",                  "0"                     },
3696
3697   { "menu.scrollbar_xoffset",                   "0"                     },
3698
3699   { "menu.list_size",                           "-1"                    },
3700   { "menu.list_size.LEVELS",                    "-1"                    },
3701   { "menu.list_size.SCORES",                    "-1"                    },
3702   { "menu.list_size.INFO",                      "-1"                    },
3703
3704   { "door_1.step_offset",                       "2"                     },
3705   { "door_1.step_delay",                        "10"                    },
3706   { "door_1.anim_mode",                         "default"               },
3707   { "door_2.step_offset",                       "2"                     },
3708   { "door_2.step_delay",                        "10"                    },
3709   { "door_2.anim_mode",                         "default"               },
3710
3711   { "[player].boring_delay_fixed",              "0"                     },
3712   { "[player].boring_delay_random",             "0"                     },
3713   { "[player].sleeping_delay_fixed",            "0"                     },
3714   { "[player].sleeping_delay_random",           "0"                     },
3715
3716   { NULL,                                       NULL                    }
3717 };