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