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