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