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