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