rnd-20100216-3-src
[rocksndiamonds.git] / src / conf_gfx.c
1 /***********************************************************
2 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
3 *----------------------------------------------------------*
4 * (c) 1995-2006 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_ELEMENT    },
47   { ".diggable_like",                   ARG_UNDEFINED,  TYPE_ELEMENT    },
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_GRAPHIC    },
63   { ".fade_mode",                       ARG_UNDEFINED,  TYPE_INTEGER    },
64   { ".fade_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
65   { ".post_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
66   { ".auto_delay",                      ARG_UNDEFINED,  TYPE_INTEGER    },
67   { ".align",                           ARG_UNDEFINED,  TYPE_INTEGER    },
68   { ".valign",                          ARG_UNDEFINED,  TYPE_INTEGER    },
69   { ".sort_priority",                   ARG_UNDEFINED,  TYPE_INTEGER    },
70
71   { NULL,                               NULL,           0               }
72 };
73
74 struct ConfigInfo image_config[] =
75 {
76   /* images for Boulder Dash style elements and actions */
77
78   { "bd_wall",                                  "RocksDC.pcx"           },
79   { "bd_wall.xpos",                             "12"                    },
80   { "bd_wall.ypos",                             "9"                     },
81   { "bd_wall.frames",                           "1"                     },
82   { "bd_wall.EDITOR",                           "RocksDC.pcx"           },
83   { "bd_wall.EDITOR.xpos",                      "14"                    },
84   { "bd_wall.EDITOR.ypos",                      "13"                    },
85
86   { "bd_rock",                                  "RocksDC.pcx"           },
87   { "bd_rock.xpos",                             "12"                    },
88   { "bd_rock.ypos",                             "10"                    },
89   { "bd_rock.frames",                           "1"                     },
90   { "bd_rock.EDITOR",                           "RocksDC.pcx"           },
91   { "bd_rock.EDITOR.xpos",                      "14"                    },
92   { "bd_rock.EDITOR.ypos",                      "14"                    },
93   { "bd_rock.moving.left",                      "RocksDC.pcx"           },
94   { "bd_rock.moving.left.xpos",                 "12"                    },
95   { "bd_rock.moving.left.ypos",                 "10"                    },
96   { "bd_rock.moving.left.frames",               "4"                     },
97   { "bd_rock.moving.left.delay",                "2"                     },
98   { "bd_rock.moving.left.anim_mode",            "reverse"               },
99   { "bd_rock.moving.right",                     "RocksDC.pcx"           },
100   { "bd_rock.moving.right.xpos",                "12"                    },
101   { "bd_rock.moving.right.ypos",                "10"                    },
102   { "bd_rock.moving.right.frames",              "4"                     },
103   { "bd_rock.moving.right.start_frame",         "1"                     },
104   { "bd_rock.moving.right.delay",               "2"                     },
105   { "bd_rock.pushing.left",                     "RocksDC.pcx"           },
106   { "bd_rock.pushing.left.xpos",                "12"                    },
107   { "bd_rock.pushing.left.ypos",                "10"                    },
108   { "bd_rock.pushing.left.frames",              "4"                     },
109   { "bd_rock.pushing.left.delay",               "2"                     },
110   { "bd_rock.pushing.left.anim_mode",           "reverse"               },
111   { "bd_rock.pushing.right",                    "RocksDC.pcx"           },
112   { "bd_rock.pushing.right.xpos",               "12"                    },
113   { "bd_rock.pushing.right.ypos",               "10"                    },
114   { "bd_rock.pushing.right.frames",             "4"                     },
115   { "bd_rock.pushing.right.start_frame",        "1"                     },
116   { "bd_rock.pushing.right.delay",              "2"                     },
117
118   { "bd_diamond",                               "RocksElements.pcx"     },
119   { "bd_diamond.xpos",                          "0"                     },
120   { "bd_diamond.ypos",                          "10"                    },
121   { "bd_diamond.frames",                        "4"                     },
122   { "bd_diamond.delay",                         "4"                     },
123   { "bd_diamond.anim_mode",                     "reverse"               },
124   { "bd_diamond.moving",                        "RocksElements.pcx"     },
125   { "bd_diamond.moving.xpos",                   "3"                     },
126   { "bd_diamond.moving.ypos",                   "10"                    },
127   { "bd_diamond.moving.frames",                 "2"                     },
128   { "bd_diamond.moving.delay",                  "4"                     },
129   { "bd_diamond.falling",                       "RocksElements.pcx"     },
130   { "bd_diamond.falling.xpos",                  "3"                     },
131   { "bd_diamond.falling.ypos",                  "10"                    },
132   { "bd_diamond.falling.frames",                "2"                     },
133   { "bd_diamond.falling.delay",                 "4"                     },
134
135   { "bd_magic_wall",                            "RocksElements.pcx"     },
136   { "bd_magic_wall.xpos",                       "12"                    },
137   { "bd_magic_wall.ypos",                       "10"                    },
138   { "bd_magic_wall.frames",                     "1"                     },
139   { "bd_magic_wall.active",                     "RocksElements.pcx"     },
140   { "bd_magic_wall.active.xpos",                "12"                    },
141   { "bd_magic_wall.active.ypos",                "10"                    },
142   { "bd_magic_wall.active.frames",              "4"                     },
143   { "bd_magic_wall.active.anim_mode",           "reverse"               },
144   { "bd_magic_wall.active.delay",               "4"                     },
145   { "bd_magic_wall.active.global_sync",         "true"                  },
146   { "bd_magic_wall.filling",                    "RocksElements.pcx"     },
147   { "bd_magic_wall.filling.xpos",               "12"                    },
148   { "bd_magic_wall.filling.ypos",               "10"                    },
149   { "bd_magic_wall.filling.frames",             "4"                     },
150   { "bd_magic_wall.filling.anim_mode",          "reverse"               },
151   { "bd_magic_wall.filling.delay",              "4"                     },
152   { "bd_magic_wall.filling.global_sync",        "true"                  },
153   { "bd_magic_wall_full",                       "RocksElements.pcx"     },
154   { "bd_magic_wall_full.xpos",                  "12"                    },
155   { "bd_magic_wall_full.ypos",                  "10"                    },
156   { "bd_magic_wall_full.frames",                "4"                     },
157   { "bd_magic_wall_full.anim_mode",             "reverse"               },
158   { "bd_magic_wall_full.delay",                 "4"                     },
159   { "bd_magic_wall_full.global_sync",           "true"                  },
160   { "bd_magic_wall.emptying",                   "RocksElements.pcx"     },
161   { "bd_magic_wall.emptying.xpos",              "12"                    },
162   { "bd_magic_wall.emptying.ypos",              "10"                    },
163   { "bd_magic_wall.emptying.frames",            "4"                     },
164   { "bd_magic_wall.emptying.anim_mode",         "reverse"               },
165   { "bd_magic_wall.emptying.delay",             "4"                     },
166   { "bd_magic_wall.emptying.global_sync",       "true"                  },
167   { "bd_magic_wall_dead",                       "RocksElements.pcx"     },
168   { "bd_magic_wall_dead.xpos",                  "12"                    },
169   { "bd_magic_wall_dead.ypos",                  "10"                    },
170   { "bd_magic_wall_dead.frames",                "1"                     },
171
172   { "bd_amoeba",                                "RocksElements.pcx"     },
173   { "bd_amoeba.xpos",                           "8"                     },
174   { "bd_amoeba.ypos",                           "6"                     },
175   { "bd_amoeba.frames",                         "4"                     },
176   { "bd_amoeba.delay",                          "1000000"               },
177   { "bd_amoeba.anim_mode",                      "random"                },
178   { "bd_amoeba.EDITOR",                         "RocksElements.pcx"     },
179   { "bd_amoeba.EDITOR.xpos",                    "8"                     },
180   { "bd_amoeba.EDITOR.ypos",                    "7"                     },
181
182   { "bd_butterfly",                             "RocksElements.pcx"     },
183   { "bd_butterfly.xpos",                        "4"                     },
184   { "bd_butterfly.ypos",                        "12"                    },
185   { "bd_butterfly.frames",                      "2"                     },
186   { "bd_butterfly.anim_mode",                   "pingpong"              },
187   { "bd_butterfly.delay",                       "4"                     },
188   { "bd_butterfly.global_sync",                 "true"                  },
189   { "bd_butterfly.right",                       "RocksElements.pcx"     },
190   { "bd_butterfly.right.xpos",                  "4"                     },
191   { "bd_butterfly.right.ypos",                  "12"                    },
192   { "bd_butterfly.right.frames",                "2"                     },
193   { "bd_butterfly.right.anim_mode",             "pingpong"              },
194   { "bd_butterfly.right.delay",                 "4"                     },
195   { "bd_butterfly.right.global_sync",           "true"                  },
196   { "bd_butterfly.right.EDITOR",                "RocksElements.pcx"     },
197   { "bd_butterfly.right.EDITOR.xpos",           "8"                     },
198   { "bd_butterfly.right.EDITOR.ypos",           "12"                    },
199   { "bd_butterfly.up",                          "RocksElements.pcx"     },
200   { "bd_butterfly.up.xpos",                     "4"                     },
201   { "bd_butterfly.up.ypos",                     "12"                    },
202   { "bd_butterfly.up.frames",                   "2"                     },
203   { "bd_butterfly.up.anim_mode",                "pingpong"              },
204   { "bd_butterfly.up.delay",                    "4"                     },
205   { "bd_butterfly.up.global_sync",              "true"                  },
206   { "bd_butterfly.up.EDITOR",                   "RocksElements.pcx"     },
207   { "bd_butterfly.up.EDITOR.xpos",              "9"                     },
208   { "bd_butterfly.up.EDITOR.ypos",              "12"                    },
209   { "bd_butterfly.left",                        "RocksElements.pcx"     },
210   { "bd_butterfly.left.xpos",                   "4"                     },
211   { "bd_butterfly.left.ypos",                   "12"                    },
212   { "bd_butterfly.left.frames",                 "2"                     },
213   { "bd_butterfly.left.anim_mode",              "pingpong"              },
214   { "bd_butterfly.left.delay",                  "4"                     },
215   { "bd_butterfly.left.global_sync",            "true"                  },
216   { "bd_butterfly.left.EDITOR",                 "RocksElements.pcx"     },
217   { "bd_butterfly.left.EDITOR.xpos",            "10"                    },
218   { "bd_butterfly.left.EDITOR.ypos",            "12"                    },
219   { "bd_butterfly.down",                        "RocksElements.pcx"     },
220   { "bd_butterfly.down.xpos",                   "4"                     },
221   { "bd_butterfly.down.ypos",                   "12"                    },
222   { "bd_butterfly.down.frames",                 "2"                     },
223   { "bd_butterfly.down.anim_mode",              "pingpong"              },
224   { "bd_butterfly.down.delay",                  "4"                     },
225   { "bd_butterfly.down.global_sync",            "true"                  },
226   { "bd_butterfly.down.EDITOR",                 "RocksElements.pcx"     },
227   { "bd_butterfly.down.EDITOR.xpos",            "11"                    },
228   { "bd_butterfly.down.EDITOR.ypos",            "12"                    },
229
230   { "bd_firefly",                               "RocksElements.pcx"     },
231   { "bd_firefly.xpos",                          "6"                     },
232   { "bd_firefly.ypos",                          "12"                    },
233   { "bd_firefly.frames",                        "2"                     },
234   { "bd_firefly.anim_mode",                     "pingpong"              },
235   { "bd_firefly.delay",                         "4"                     },
236   { "bd_firefly.global_sync",                   "true"                  },
237   { "bd_firefly.right",                         "RocksElements.pcx"     },
238   { "bd_firefly.right.xpos",                    "6"                     },
239   { "bd_firefly.right.ypos",                    "12"                    },
240   { "bd_firefly.right.frames",                  "2"                     },
241   { "bd_firefly.right.anim_mode",               "pingpong"              },
242   { "bd_firefly.right.delay",                   "4"                     },
243   { "bd_firefly.right.global_sync",             "true"                  },
244   { "bd_firefly.right.EDITOR",                  "RocksElements.pcx"     },
245   { "bd_firefly.right.EDITOR.xpos",             "12"                    },
246   { "bd_firefly.right.EDITOR.ypos",             "12"                    },
247   { "bd_firefly.up",                            "RocksElements.pcx"     },
248   { "bd_firefly.up.xpos",                       "6"                     },
249   { "bd_firefly.up.ypos",                       "12"                    },
250   { "bd_firefly.up.frames",                     "2"                     },
251   { "bd_firefly.up.anim_mode",                  "pingpong"              },
252   { "bd_firefly.up.delay",                      "4"                     },
253   { "bd_firefly.up.global_sync",                "true"                  },
254   { "bd_firefly.up.EDITOR",                     "RocksElements.pcx"     },
255   { "bd_firefly.up.EDITOR.xpos",                "13"                    },
256   { "bd_firefly.up.EDITOR.ypos",                "12"                    },
257   { "bd_firefly.left",                          "RocksElements.pcx"     },
258   { "bd_firefly.left.xpos",                     "6"                     },
259   { "bd_firefly.left.ypos",                     "12"                    },
260   { "bd_firefly.left.frames",                   "2"                     },
261   { "bd_firefly.left.anim_mode",                "pingpong"              },
262   { "bd_firefly.left.delay",                    "4"                     },
263   { "bd_firefly.left.global_sync",              "true"                  },
264   { "bd_firefly.left.EDITOR",                   "RocksElements.pcx"     },
265   { "bd_firefly.left.EDITOR.xpos",              "14"                    },
266   { "bd_firefly.left.EDITOR.ypos",              "12"                    },
267   { "bd_firefly.down",                          "RocksElements.pcx"     },
268   { "bd_firefly.down.xpos",                     "6"                     },
269   { "bd_firefly.down.ypos",                     "12"                    },
270   { "bd_firefly.down.frames",                   "2"                     },
271   { "bd_firefly.down.anim_mode",                "pingpong"              },
272   { "bd_firefly.down.delay",                    "4"                     },
273   { "bd_firefly.down.global_sync",              "true"                  },
274   { "bd_firefly.down.EDITOR",                   "RocksElements.pcx"     },
275   { "bd_firefly.down.EDITOR.xpos",              "15"                    },
276   { "bd_firefly.down.EDITOR.ypos",              "12"                    },
277
278   /* images for Supaplex style elements and actions */
279
280   { "[sp_default].exploding",                   "RocksSP.pcx"           },
281   { "[sp_default].exploding.xpos",              "8"                     },
282   { "[sp_default].exploding.ypos",              "3"                     },
283   { "[sp_default].exploding.frames",            "8"                     },
284   { "[sp_default].exploding.delay",             "3"                     },
285   { "[sp_default].exploding.anim_mode",         "linear"                },
286
287   { "sp_zonk",                                  "RocksSP.pcx"           },
288   { "sp_zonk.xpos",                             "1"                     },
289   { "sp_zonk.ypos",                             "0"                     },
290   { "sp_zonk.frames",                           "1"                     },
291   { "sp_zonk.moving.left",                      "RocksSP.pcx"           },
292   { "sp_zonk.moving.left.xpos",                 "0"                     },
293   { "sp_zonk.moving.left.ypos",                 "6"                     },
294   { "sp_zonk.moving.left.frames",               "4"                     },
295   { "sp_zonk.moving.left.delay",                "1"                     },
296   { "sp_zonk.moving.left.anim_mode",            "reverse"               },
297   { "sp_zonk.moving.right",                     "RocksSP.pcx"           },
298   { "sp_zonk.moving.right.xpos",                "0"                     },
299   { "sp_zonk.moving.right.ypos",                "6"                     },
300   { "sp_zonk.moving.right.frames",              "4"                     },
301   { "sp_zonk.moving.right.start_frame",         "1"                     },
302   { "sp_zonk.moving.right.delay",               "1"                     },
303   { "sp_zonk.pushing.left",                     "RocksSP.pcx"           },
304   { "sp_zonk.pushing.left.xpos",                "0"                     },
305   { "sp_zonk.pushing.left.ypos",                "6"                     },
306   { "sp_zonk.pushing.left.frames",              "4"                     },
307   { "sp_zonk.pushing.left.delay",               "1"                     },
308   { "sp_zonk.pushing.left.anim_mode",           "reverse"               },
309   { "sp_zonk.pushing.right",                    "RocksSP.pcx"           },
310   { "sp_zonk.pushing.right.xpos",               "0"                     },
311   { "sp_zonk.pushing.right.ypos",               "6"                     },
312   { "sp_zonk.pushing.right.frames",             "4"                     },
313   { "sp_zonk.pushing.right.start_frame",        "1"                     },
314   { "sp_zonk.pushing.right.delay",              "1"                     },
315
316   { "sp_base",                                  "RocksSP.pcx"           },
317   { "sp_base.xpos",                             "2"                     },
318   { "sp_base.ypos",                             "0"                     },
319   { "sp_base.frames",                           "1"                     },
320   { "sp_base.digging",                          "RocksSP.pcx"           },
321   { "sp_base.digging.xpos",                     "2"                     },
322   { "sp_base.digging.ypos",                     "0"                     },
323   { "sp_base.digging.frames",                   "1"                     },
324   { "sp_base.digging.anim_mode",                "opaque_player"         },
325   { "sp_base.snapping",                         "RocksSP.pcx"           },
326   { "sp_base.snapping.xpos",                    "8"                     },
327   { "sp_base.snapping.ypos",                    "2"                     },
328   { "sp_base.snapping.frames",                  "7"                     },
329   { "sp_base.snapping.anim_mode",               "linear"                },
330
331   { "sp_murphy",                                "RocksSP.pcx"           },
332   { "sp_murphy.xpos",                           "3"                     },
333   { "sp_murphy.ypos",                           "0"                     },
334   { "sp_murphy.frames",                         "1"                     },
335   { "sp_murphy.moving.left",                    "RocksSP.pcx"           },
336   { "sp_murphy.moving.left.xpos",               "8"                     },
337   { "sp_murphy.moving.left.ypos",               "0"                     },
338   { "sp_murphy.moving.left.frames",             "3"                     },
339   { "sp_murphy.moving.left.anim_mode",          "pingpong"              },
340   { "sp_murphy.moving.left.delay",              "2"                     },
341   { "sp_murphy.moving.left.start_frame",        "1"                     },
342   { "sp_murphy.moving.right",                   "RocksSP.pcx"           },
343   { "sp_murphy.moving.right.xpos",              "11"                    },
344   { "sp_murphy.moving.right.ypos",              "0"                     },
345   { "sp_murphy.moving.right.frames",            "3"                     },
346   { "sp_murphy.moving.right.anim_mode",         "pingpong"              },
347   { "sp_murphy.moving.right.delay",             "2"                     },
348   { "sp_murphy.moving.right.start_frame",       "1"                     },
349   { "sp_murphy.digging.left",                   "RocksSP.pcx"           },
350   { "sp_murphy.digging.left.xpos",              "8"                     },
351   { "sp_murphy.digging.left.ypos",              "0"                     },
352   { "sp_murphy.digging.left.frames",            "3"                     },
353   { "sp_murphy.digging.left.anim_mode",         "pingpong"              },
354   { "sp_murphy.digging.left.delay",             "2"                     },
355   { "sp_murphy.digging.left.start_frame",       "1"                     },
356   { "sp_murphy.digging.right",                  "RocksSP.pcx"           },
357   { "sp_murphy.digging.right.xpos",             "11"                    },
358   { "sp_murphy.digging.right.ypos",             "0"                     },
359   { "sp_murphy.digging.right.frames",           "3"                     },
360   { "sp_murphy.digging.right.anim_mode",        "pingpong"              },
361   { "sp_murphy.digging.right.delay",            "2"                     },
362   { "sp_murphy.digging.right.start_frame",      "1"                     },
363   { "sp_murphy.collecting.left",                "RocksSP.pcx"           },
364   { "sp_murphy.collecting.left.xpos",           "8"                     },
365   { "sp_murphy.collecting.left.ypos",           "0"                     },
366   { "sp_murphy.collecting.left.frames",         "3"                     },
367   { "sp_murphy.collecting.left.anim_mode",      "pingpong"              },
368   { "sp_murphy.collecting.left.delay",          "2"                     },
369   { "sp_murphy.collecting.left.start_frame",    "1"                     },
370   { "sp_murphy.collecting.right",               "RocksSP.pcx"           },
371   { "sp_murphy.collecting.right.xpos",          "11"                    },
372   { "sp_murphy.collecting.right.ypos",          "0"                     },
373   { "sp_murphy.collecting.right.frames",        "3"                     },
374   { "sp_murphy.collecting.right.anim_mode",     "pingpong"              },
375   { "sp_murphy.collecting.right.delay",         "2"                     },
376   { "sp_murphy.collecting.right.start_frame",   "1"                     },
377   { "sp_murphy.pushing.left",                   "RocksSP.pcx"           },
378   { "sp_murphy.pushing.left.xpos",              "11"                    },
379   { "sp_murphy.pushing.left.ypos",              "1"                     },
380   { "sp_murphy.pushing.left.frames",            "1"                     },
381   { "sp_murphy.pushing.right",                  "RocksSP.pcx"           },
382   { "sp_murphy.pushing.right.xpos",             "10"                    },
383   { "sp_murphy.pushing.right.ypos",             "1"                     },
384   { "sp_murphy.pushing.right.frames",           "1"                     },
385   { "sp_murphy.snapping.left",                  "RocksSP.pcx"           },
386   { "sp_murphy.snapping.left.xpos",             "9"                     },
387   { "sp_murphy.snapping.left.ypos",             "1"                     },
388   { "sp_murphy.snapping.left.frames",           "1"                     },
389   { "sp_murphy.snapping.right",                 "RocksSP.pcx"           },
390   { "sp_murphy.snapping.right.xpos",            "8"                     },
391   { "sp_murphy.snapping.right.ypos",            "1"                     },
392   { "sp_murphy.snapping.right.frames",          "1"                     },
393   { "sp_murphy.snapping.up",                    "RocksSP.pcx"           },
394   { "sp_murphy.snapping.up.xpos",               "14"                    },
395   { "sp_murphy.snapping.up.ypos",               "0"                     },
396   { "sp_murphy.snapping.up.frames",             "1"                     },
397   { "sp_murphy.snapping.down",                  "RocksSP.pcx"           },
398   { "sp_murphy.snapping.down.xpos",             "15"                    },
399   { "sp_murphy.snapping.down.ypos",             "0"                     },
400   { "sp_murphy.snapping.down.frames",           "1"                     },
401   { "sp_murphy.boring",                         "RocksSP.pcx"           },
402   { "sp_murphy.boring.xpos",                    "11"                    },
403   { "sp_murphy.boring.ypos",                    "12"                    },
404   { "sp_murphy.boring.frames",                  "1"                     },
405   { "sp_murphy.boring[1]",                      "RocksSP.pcx"           },
406   { "sp_murphy.boring[1].xpos",                 "0"                     },
407   { "sp_murphy.boring[1].ypos",                 "12"                    },
408   { "sp_murphy.boring[1].frames",               "12"                    },
409   { "sp_murphy.boring[1].delay",                "10"                    },
410   { "sp_murphy.boring[1].anim_mode",            "linear"                },
411   { "sp_murphy.boring[1].anim_delay_fixed",     "120"                   },
412   { "sp_murphy.boring[1].anim_delay_random",    "0"                     },
413   { "sp_murphy.boring[1].post_delay_fixed",     "500"                   },
414   { "sp_murphy.boring[1].post_delay_random",    "500"                   },
415   { "sp_murphy.sleeping.left",                  "RocksSP.pcx"           },
416   { "sp_murphy.sleeping.left.xpos",             "4"                     },
417   { "sp_murphy.sleeping.left.ypos",             "9"                     },
418   { "sp_murphy.sleeping.left.frames",           "3"                     },
419   { "sp_murphy.sleeping.left.delay",            "100"                   },
420   { "sp_murphy.sleeping.left.anim_mode",        "linear,reverse"        },
421   { "sp_murphy.sleeping.right",                 "RocksSP.pcx"           },
422   { "sp_murphy.sleeping.right.xpos",            "13"                    },
423   { "sp_murphy.sleeping.right.ypos",            "12"                    },
424   { "sp_murphy.sleeping.right.frames",          "3"                     },
425   { "sp_murphy.sleeping.right.delay",           "100"                   },
426   { "sp_murphy.sleeping.right.anim_mode",       "linear"                },
427   { "sp_murphy.dropping",                       "RocksSP.pcx"           },
428   { "sp_murphy.dropping.xpos",                  "11"                    },
429   { "sp_murphy.dropping.ypos",                  "12"                    },
430   { "sp_murphy.dropping.frames",                "1"                     },
431   { "sp_murphy.shrinking",                      "RocksSP.pcx"           },
432   { "sp_murphy.shrinking.xpos",                 "8"                     },
433   { "sp_murphy.shrinking.ypos",                 "14"                    },
434   { "sp_murphy.shrinking.frames",               "8"                     },
435   { "sp_murphy.shrinking.delay",                "4"                     },
436   { "sp_murphy.shrinking.anim_mode",            "linear"                },
437
438   { "sp_murphy_clone",                          "RocksSP.pcx"           },
439   { "sp_murphy_clone.xpos",                     "3"                     },
440   { "sp_murphy_clone.ypos",                     "0"                     },
441   { "sp_murphy_clone.frames",                   "1"                     },
442
443   { "sp_infotron",                              "RocksSP.pcx"           },
444   { "sp_infotron.xpos",                         "4"                     },
445   { "sp_infotron.ypos",                         "0"                     },
446   { "sp_infotron.frames",                       "1"                     },
447   { "sp_infotron.EDITOR",                       "RocksSP.pcx"           },
448   { "sp_infotron.EDITOR.xpos",                  "8"                     },
449   { "sp_infotron.EDITOR.ypos",                  "11"                    },
450   { "sp_infotron.moving.left",                  "RocksSP.pcx"           },
451   { "sp_infotron.moving.left.xpos",             "8"                     },
452   { "sp_infotron.moving.left.ypos",             "13"                    },
453   { "sp_infotron.moving.left.frames",           "8"                     },
454   { "sp_infotron.moving.right",                 "RocksSP.pcx"           },
455   { "sp_infotron.moving.right.xpos",            "8"                     },
456   { "sp_infotron.moving.right.ypos",            "13"                    },
457   { "sp_infotron.moving.right.frames",          "8"                     },
458   { "sp_infotron.moving.right.start_frame",     "6"                     },
459   { "sp_infotron.moving.right.anim_mode",       "reverse"               },
460   { "sp_infotron.collecting",                   "RocksSP.pcx"           },
461   { "sp_infotron.collecting.xpos",              "8"                     },
462   { "sp_infotron.collecting.ypos",              "7"                     },
463   { "sp_infotron.collecting.frames",            "8"                     },
464   { "sp_infotron.collecting.anim_mode",         "linear"                },
465
466   { "sp_chip_single",                           "RocksSP.pcx"           },
467   { "sp_chip_single.xpos",                      "5"                     },
468   { "sp_chip_single.ypos",                      "0"                     },
469   { "sp_chip_single.frames",                    "1"                     },
470   { "sp_chip_left",                             "RocksSP.pcx"           },
471   { "sp_chip_left.xpos",                        "2"                     },
472   { "sp_chip_left.ypos",                        "3"                     },
473   { "sp_chip_left.frames",                      "1"                     },
474   { "sp_chip_right",                            "RocksSP.pcx"           },
475   { "sp_chip_right.xpos",                       "3"                     },
476   { "sp_chip_right.ypos",                       "3"                     },
477   { "sp_chip_right.frames",                     "1"                     },
478   { "sp_chip_top",                              "RocksSP.pcx"           },
479   { "sp_chip_top.xpos",                         "6"                     },
480   { "sp_chip_top.ypos",                         "4"                     },
481   { "sp_chip_top.frames",                       "1"                     },
482   { "sp_chip_bottom",                           "RocksSP.pcx"           },
483   { "sp_chip_bottom.xpos",                      "7"                     },
484   { "sp_chip_bottom.ypos",                      "4"                     },
485   { "sp_chip_bottom.frames",                    "1"                     },
486
487   { "sp_hardware_gray",                         "RocksSP.pcx"           },
488   { "sp_hardware_gray.xpos",                    "6"                     },
489   { "sp_hardware_gray.ypos",                    "0"                     },
490   { "sp_hardware_gray.frames",                  "1"                     },
491   { "sp_hardware_green",                        "RocksSP.pcx"           },
492   { "sp_hardware_green.xpos",                   "5"                     },
493   { "sp_hardware_green.ypos",                   "3"                     },
494   { "sp_hardware_green.frames",                 "1"                     },
495   { "sp_hardware_blue",                         "RocksSP.pcx"           },
496   { "sp_hardware_blue.xpos",                    "6"                     },
497   { "sp_hardware_blue.ypos",                    "3"                     },
498   { "sp_hardware_blue.frames",                  "1"                     },
499   { "sp_hardware_red",                          "RocksSP.pcx"           },
500   { "sp_hardware_red.xpos",                     "7"                     },
501   { "sp_hardware_red.ypos",                     "3"                     },
502   { "sp_hardware_red.frames",                   "1"                     },
503   { "sp_hardware_yellow",                       "RocksSP.pcx"           },
504   { "sp_hardware_yellow.xpos",                  "0"                     },
505   { "sp_hardware_yellow.ypos",                  "4"                     },
506   { "sp_hardware_yellow.frames",                "1"                     },
507
508   { "sp_exit_closed",                           "RocksSP.pcx"           },
509   { "sp_exit_closed.xpos",                      "7"                     },
510   { "sp_exit_closed.ypos",                      "0"                     },
511   { "sp_exit_closed.frames",                    "1"                     },
512   { "sp_exit.opening",                          "RocksSP.pcx"           },
513   { "sp_exit.opening.xpos",                     "7"                     },
514   { "sp_exit.opening.ypos",                     "0"                     },
515   { "sp_exit.opening.frames",                   "1"                     },
516   { "sp_exit_open",                             "RocksSP.pcx"           },
517   { "sp_exit_open.xpos",                        "7"                     },
518   { "sp_exit_open.ypos",                        "0"                     },
519   { "sp_exit_open.frames",                      "1"                     },
520   { "sp_exit.closing",                          "RocksSP.pcx"           },
521   { "sp_exit.closing.xpos",                     "7"                     },
522   { "sp_exit.closing.ypos",                     "0"                     },
523   { "sp_exit.closing.frames",                   "1"                     },
524
525   { "sp_disk_orange",                           "RocksSP.pcx"           },
526   { "sp_disk_orange.xpos",                      "0"                     },
527   { "sp_disk_orange.ypos",                      "1"                     },
528   { "sp_disk_orange.frames",                    "1"                     },
529
530   { "sp_disk_yellow",                           "RocksSP.pcx"           },
531   { "sp_disk_yellow.xpos",                      "2"                     },
532   { "sp_disk_yellow.ypos",                      "2"                     },
533   { "sp_disk_yellow.frames",                    "1"                     },
534
535   { "sp_disk_red",                              "RocksSP.pcx"           },
536   { "sp_disk_red.xpos",                         "4"                     },
537   { "sp_disk_red.ypos",                         "2"                     },
538   { "sp_disk_red.frames",                       "1"                     },
539   { "sp_disk_red.collecting",                   "RocksSP.pcx"           },
540   { "sp_disk_red.collecting.xpos",              "9"                     },
541   { "sp_disk_red.collecting.ypos",              "5"                     },
542   { "sp_disk_red.collecting.frames",            "7"                     },
543   { "sp_disk_red.collecting.anim_mode",         "linear"                },
544   { "sp_disk_red.active",                       "RocksSP.pcx"           },
545   { "sp_disk_red.active.xpos",                  "4"                     },
546   { "sp_disk_red.active.ypos",                  "2"                     },
547   { "sp_disk_red.active.frames",                "1"                     },
548
549   { "sp_port_right",                            "RocksSP.pcx"           },
550   { "sp_port_right.xpos",                       "1"                     },
551   { "sp_port_right.ypos",                       "1"                     },
552   { "sp_port_right.frames",                     "1"                     },
553   { "sp_port_down",                             "RocksSP.pcx"           },
554   { "sp_port_down.xpos",                        "2"                     },
555   { "sp_port_down.ypos",                        "1"                     },
556   { "sp_port_down.frames",                      "1"                     },
557   { "sp_port_left",                             "RocksSP.pcx"           },
558   { "sp_port_left.xpos",                        "3"                     },
559   { "sp_port_left.ypos",                        "1"                     },
560   { "sp_port_left.frames",                      "1"                     },
561   { "sp_port_up",                               "RocksSP.pcx"           },
562   { "sp_port_up.xpos",                          "4"                     },
563   { "sp_port_up.ypos",                          "1"                     },
564   { "sp_port_up.frames",                        "1"                     },
565   { "sp_port_horizontal",                       "RocksSP.pcx"           },
566   { "sp_port_horizontal.xpos",                  "6"                     },
567   { "sp_port_horizontal.ypos",                  "2"                     },
568   { "sp_port_horizontal.frames",                "1"                     },
569   { "sp_port_vertical",                         "RocksSP.pcx"           },
570   { "sp_port_vertical.xpos",                    "5"                     },
571   { "sp_port_vertical.ypos",                    "2"                     },
572   { "sp_port_vertical.frames",                  "1"                     },
573   { "sp_port_any",                              "RocksSP.pcx"           },
574   { "sp_port_any.xpos",                         "7"                     },
575   { "sp_port_any.ypos",                         "2"                     },
576   { "sp_port_any.frames",                       "1"                     },
577   { "sp_gravity_port_right",                    "RocksSP.pcx"           },
578   { "sp_gravity_port_right.xpos",               "1"                     },
579   { "sp_gravity_port_right.ypos",               "1"                     },
580   { "sp_gravity_port_right.frames",             "1"                     },
581   { "sp_gravity_port_right.EDITOR",             "RocksSP.pcx"           },
582   { "sp_gravity_port_right.EDITOR.xpos",        "0"                     },
583   { "sp_gravity_port_right.EDITOR.ypos",        "14"                    },
584   { "sp_gravity_port_down",                     "RocksSP.pcx"           },
585   { "sp_gravity_port_down.xpos",                "2"                     },
586   { "sp_gravity_port_down.ypos",                "1"                     },
587   { "sp_gravity_port_down.frames",              "1"                     },
588   { "sp_gravity_port_down.EDITOR",              "RocksSP.pcx"           },
589   { "sp_gravity_port_down.EDITOR.xpos",         "1"                     },
590   { "sp_gravity_port_down.EDITOR.ypos",         "14"                    },
591   { "sp_gravity_port_left",                     "RocksSP.pcx"           },
592   { "sp_gravity_port_left.xpos",                "3"                     },
593   { "sp_gravity_port_left.ypos",                "1"                     },
594   { "sp_gravity_port_left.frames",              "1"                     },
595   { "sp_gravity_port_left.EDITOR",              "RocksSP.pcx"           },
596   { "sp_gravity_port_left.EDITOR.xpos",         "2"                     },
597   { "sp_gravity_port_left.EDITOR.ypos",         "14"                    },
598   { "sp_gravity_port_up",                       "RocksSP.pcx"           },
599   { "sp_gravity_port_up.xpos",                  "4"                     },
600   { "sp_gravity_port_up.ypos",                  "1"                     },
601   { "sp_gravity_port_up.frames",                "1"                     },
602   { "sp_gravity_port_up.EDITOR",                "RocksSP.pcx"           },
603   { "sp_gravity_port_up.EDITOR.xpos",           "3"                     },
604   { "sp_gravity_port_up.EDITOR.ypos",           "14"                    },
605   { "sp_gravity_on_port_right",                 "RocksSP.pcx"           },
606   { "sp_gravity_on_port_right.xpos",            "1"                     },
607   { "sp_gravity_on_port_right.ypos",            "1"                     },
608   { "sp_gravity_on_port_right.frames",          "1"                     },
609   { "sp_gravity_on_port_right.EDITOR",          "RocksSP.pcx"           },
610   { "sp_gravity_on_port_right.EDITOR.xpos",     "0"                     },
611   { "sp_gravity_on_port_right.EDITOR.ypos",     "13"                    },
612   { "sp_gravity_on_port_down",                  "RocksSP.pcx"           },
613   { "sp_gravity_on_port_down.xpos",             "2"                     },
614   { "sp_gravity_on_port_down.ypos",             "1"                     },
615   { "sp_gravity_on_port_down.frames",           "1"                     },
616   { "sp_gravity_on_port_down.EDITOR",           "RocksSP.pcx"           },
617   { "sp_gravity_on_port_down.EDITOR.xpos",      "1"                     },
618   { "sp_gravity_on_port_down.EDITOR.ypos",      "13"                    },
619   { "sp_gravity_on_port_left",                  "RocksSP.pcx"           },
620   { "sp_gravity_on_port_left.xpos",             "3"                     },
621   { "sp_gravity_on_port_left.ypos",             "1"                     },
622   { "sp_gravity_on_port_left.frames",           "1"                     },
623   { "sp_gravity_on_port_left.EDITOR",           "RocksSP.pcx"           },
624   { "sp_gravity_on_port_left.EDITOR.xpos",      "2"                     },
625   { "sp_gravity_on_port_left.EDITOR.ypos",      "13"                    },
626   { "sp_gravity_on_port_up",                    "RocksSP.pcx"           },
627   { "sp_gravity_on_port_up.xpos",               "4"                     },
628   { "sp_gravity_on_port_up.ypos",               "1"                     },
629   { "sp_gravity_on_port_up.frames",             "1"                     },
630   { "sp_gravity_on_port_up.EDITOR",             "RocksSP.pcx"           },
631   { "sp_gravity_on_port_up.EDITOR.xpos",        "3"                     },
632   { "sp_gravity_on_port_up.EDITOR.ypos",        "13"                    },
633   { "sp_gravity_off_port_right",                "RocksSP.pcx"           },
634   { "sp_gravity_off_port_right.xpos",           "1"                     },
635   { "sp_gravity_off_port_right.ypos",           "1"                     },
636   { "sp_gravity_off_port_right.frames",         "1"                     },
637   { "sp_gravity_off_port_right.EDITOR",         "RocksSP.pcx"           },
638   { "sp_gravity_off_port_right.EDITOR.xpos",    "4"                     },
639   { "sp_gravity_off_port_right.EDITOR.ypos",    "13"                    },
640   { "sp_gravity_off_port_down",                 "RocksSP.pcx"           },
641   { "sp_gravity_off_port_down.xpos",            "2"                     },
642   { "sp_gravity_off_port_down.ypos",            "1"                     },
643   { "sp_gravity_off_port_down.frames",          "1"                     },
644   { "sp_gravity_off_port_down.EDITOR",          "RocksSP.pcx"           },
645   { "sp_gravity_off_port_down.EDITOR.xpos",     "5"                     },
646   { "sp_gravity_off_port_down.EDITOR.ypos",     "13"                    },
647   { "sp_gravity_off_port_left",                 "RocksSP.pcx"           },
648   { "sp_gravity_off_port_left.xpos",            "3"                     },
649   { "sp_gravity_off_port_left.ypos",            "1"                     },
650   { "sp_gravity_off_port_left.frames",          "1"                     },
651   { "sp_gravity_off_port_left.EDITOR",          "RocksSP.pcx"           },
652   { "sp_gravity_off_port_left.EDITOR.xpos",     "6"                     },
653   { "sp_gravity_off_port_left.EDITOR.ypos",     "13"                    },
654   { "sp_gravity_off_port_up",                   "RocksSP.pcx"           },
655   { "sp_gravity_off_port_up.xpos",              "4"                     },
656   { "sp_gravity_off_port_up.ypos",              "1"                     },
657   { "sp_gravity_off_port_up.frames",            "1"                     },
658   { "sp_gravity_off_port_up.EDITOR",            "RocksSP.pcx"           },
659   { "sp_gravity_off_port_up.EDITOR.xpos",       "7"                     },
660   { "sp_gravity_off_port_up.EDITOR.ypos",       "13"                    },
661
662   { "sp_sniksnak",                              "RocksSP.pcx"           },
663   { "sp_sniksnak.xpos",                         "1"                     },
664   { "sp_sniksnak.ypos",                         "2"                     },
665   { "sp_sniksnak.frames",                       "1"                     },
666   { "sp_sniksnak.left",                         "RocksSP.pcx"           },
667   { "sp_sniksnak.left.xpos",                    "8"                     },
668   { "sp_sniksnak.left.ypos",                    "8"                     },
669   { "sp_sniksnak.left.frames",                  "4"                     },
670   { "sp_sniksnak.left.anim_mode",               "pingpong2"             },
671   { "sp_sniksnak.right",                        "RocksSP.pcx"           },
672   { "sp_sniksnak.right.xpos",                   "12"                    },
673   { "sp_sniksnak.right.ypos",                   "8"                     },
674   { "sp_sniksnak.right.frames",                 "4"                     },
675   { "sp_sniksnak.right.anim_mode",              "pingpong2"             },
676   { "sp_sniksnak.up",                           "RocksSP.pcx"           },
677   { "sp_sniksnak.up.xpos",                      "8"                     },
678   { "sp_sniksnak.up.ypos",                      "9"                     },
679   { "sp_sniksnak.up.frames",                    "4"                     },
680   { "sp_sniksnak.up.anim_mode",                 "pingpong2"             },
681   { "sp_sniksnak.down",                         "RocksSP.pcx"           },
682   { "sp_sniksnak.down.xpos",                    "12"                    },
683   { "sp_sniksnak.down.ypos",                    "9"                     },
684   { "sp_sniksnak.down.frames",                  "4"                     },
685   { "sp_sniksnak.down.anim_mode",               "pingpong2"             },
686   { "sp_sniksnak.turning_from_left.up",         "RocksSP.pcx"           },
687   { "sp_sniksnak.turning_from_left.up.xpos",    "12"                    },
688   { "sp_sniksnak.turning_from_left.up.ypos",    "6"                     },
689   { "sp_sniksnak.turning_from_left.up.frames",  "2"                     },
690   { "sp_sniksnak.turning_from_left.up.delay",   "4"                     },
691   { "sp_sniksnak.turning_from_left.up.offset",  "1408"                  },
692   { "sp_sniksnak.turning_from_left.up.anim_mode","linear"               },
693   { "sp_sniksnak.turning_from_left.down",       "RocksSP.pcx"           },
694   { "sp_sniksnak.turning_from_left.down.xpos",  "13"                    },
695   { "sp_sniksnak.turning_from_left.down.ypos",  "6"                     },
696   { "sp_sniksnak.turning_from_left.down.frames","2"                     },
697   { "sp_sniksnak.turning_from_left.down.delay", "4"                     },
698   { "sp_sniksnak.turning_from_left.down.offset","1504"                  },
699   { "sp_sniksnak.turning_from_left.down.anim_mode","linear"             },
700   { "sp_sniksnak.turning_from_right.up",        "RocksSP.pcx"           },
701   { "sp_sniksnak.turning_from_right.up.xpos",   "15"                    },
702   { "sp_sniksnak.turning_from_right.up.ypos",   "6"                     },
703   { "sp_sniksnak.turning_from_right.up.frames", "2"                     },
704   { "sp_sniksnak.turning_from_right.up.delay",  "4"                     },
705   { "sp_sniksnak.turning_from_right.up.offset", "1312"                  },
706   { "sp_sniksnak.turning_from_right.up.anim_mode","linear"              },
707   { "sp_sniksnak.turning_from_right.down",      "RocksSP.pcx"           },
708   { "sp_sniksnak.turning_from_right.down.xpos", "14"                    },
709   { "sp_sniksnak.turning_from_right.down.ypos", "6"                     },
710   { "sp_sniksnak.turning_from_right.down.frames","2"                    },
711   { "sp_sniksnak.turning_from_right.down.delay","4"                     },
712   { "sp_sniksnak.turning_from_right.down.offset","1472"                 },
713   { "sp_sniksnak.turning_from_right.down.anim_mode","linear"            },
714   { "sp_sniksnak.turning_from_up.left",         "RocksSP.pcx"           },
715   { "sp_sniksnak.turning_from_up.left.xpos",    "12"                    },
716   { "sp_sniksnak.turning_from_up.left.ypos",    "6"                     },
717   { "sp_sniksnak.turning_from_up.left.frames",  "2"                     },
718   { "sp_sniksnak.turning_from_up.left.delay",   "4"                     },
719   { "sp_sniksnak.turning_from_up.left.offset",  "896"                   },
720   { "sp_sniksnak.turning_from_up.left.anim_mode","linear"               },
721   { "sp_sniksnak.turning_from_up.right",        "RocksSP.pcx"           },
722   { "sp_sniksnak.turning_from_up.right.xpos",   "15"                    },
723   { "sp_sniksnak.turning_from_up.right.ypos",   "6"                     },
724   { "sp_sniksnak.turning_from_up.right.frames", "2"                     },
725   { "sp_sniksnak.turning_from_up.right.delay",  "4"                     },
726   { "sp_sniksnak.turning_from_up.right.offset", "928"                   },
727   { "sp_sniksnak.turning_from_up.right.anim_mode","linear"              },
728   { "sp_sniksnak.turning_from_down.left",       "RocksSP.pcx"           },
729   { "sp_sniksnak.turning_from_down.left.xpos",  "13"                    },
730   { "sp_sniksnak.turning_from_down.left.ypos",  "6"                     },
731   { "sp_sniksnak.turning_from_down.left.frames","2"                     },
732   { "sp_sniksnak.turning_from_down.left.delay", "4"                     },
733   { "sp_sniksnak.turning_from_down.left.offset","864"                   },
734   { "sp_sniksnak.turning_from_down.left.anim_mode","linear"             },
735   { "sp_sniksnak.turning_from_down.right",      "RocksSP.pcx"           },
736   { "sp_sniksnak.turning_from_down.right.xpos", "14"                    },
737   { "sp_sniksnak.turning_from_down.right.ypos", "6"                     },
738   { "sp_sniksnak.turning_from_down.right.frames","2"                    },
739   { "sp_sniksnak.turning_from_down.right.delay","4"                     },
740   { "sp_sniksnak.turning_from_down.right.offset","960"                  },
741   { "sp_sniksnak.turning_from_down.right.anim_mode","linear"            },
742
743   { "sp_electron",                              "RocksSP.pcx"           },
744   { "sp_electron.xpos",                         "8"                     },
745   { "sp_electron.ypos",                         "10"                    },
746   { "sp_electron.frames",                       "8"                     },
747   { "sp_electron.delay",                        "4"                     },
748   { "sp_electron.global_sync",                  "true"                  },
749   { "sp_electron.EDITOR",                       "RocksSP.pcx"           },
750   { "sp_electron.EDITOR.xpos",                  "10"                    },
751   { "sp_electron.EDITOR.ypos",                  "11"                    },
752   { "sp_electron.exploding",                    "RocksSP.pcx"           },
753   { "sp_electron.exploding.xpos",               "8"                     },
754   { "sp_electron.exploding.ypos",               "4"                     },
755   { "sp_electron.exploding.frames",             "8"                     },
756   { "sp_electron.exploding.delay",              "3"                     },
757   { "sp_electron.exploding.anim_mode",          "linear"                },
758
759   { "sp_terminal",                              "RocksSP.pcx"           },
760   { "sp_terminal.xpos",                         "0"                     },
761   { "sp_terminal.ypos",                         "10"                    },
762   { "sp_terminal.frames",                       "7"                     },
763   { "sp_terminal.delay",                        "12"                    },
764   { "sp_terminal.EDITOR",                       "RocksSP.pcx"           },
765   { "sp_terminal.EDITOR.xpos",                  "9"                     },
766   { "sp_terminal.EDITOR.ypos",                  "11"                    },
767   { "sp_terminal.active",                       "RocksSP.pcx"           },
768   { "sp_terminal.active.xpos",                  "0"                     },
769   { "sp_terminal.active.ypos",                  "11"                    },
770   { "sp_terminal.active.frames",                "7"                     },
771   { "sp_terminal.active.delay",                 "4"                     },
772
773   { "sp_buggy_base",                            "RocksSP.pcx"           },
774   { "sp_buggy_base.xpos",                       "1"                     },
775   { "sp_buggy_base.ypos",                       "3"                     },
776   { "sp_buggy_base.frames",                     "1"                     },
777   { "sp_buggy_base.EDITOR",                     "RocksSP.pcx"           },
778   { "sp_buggy_base.EDITOR.xpos",                "9"                     },
779   { "sp_buggy_base.EDITOR.ypos",                "6"                     },
780   { "sp_buggy_base.activating",                 "RocksSP.pcx"           },
781   { "sp_buggy_base.activating.xpos",            "15"                    },
782   { "sp_buggy_base.activating.ypos",            "2"                     },
783   { "sp_buggy_base.activating.frames",          "1"                     },
784   { "sp_buggy_base.active",                     "RocksSP.pcx"           },
785   { "sp_buggy_base.active.xpos",                "8"                     },
786   { "sp_buggy_base.active.ypos",                "6"                     },
787   { "sp_buggy_base.active.frames",              "4"                     },
788   { "sp_buggy_base.active.delay",               "4"                     },
789   { "sp_buggy_base.active.anim_mode",           "pingpong"              },
790
791   { "sp_hardware_base_1",                       "RocksSP.pcx"           },
792   { "sp_hardware_base_1.xpos",                  "4"                     },
793   { "sp_hardware_base_1.ypos",                  "3"                     },
794   { "sp_hardware_base_1.frames",                "1"                     },
795   { "sp_hardware_base_2",                       "RocksSP.pcx"           },
796   { "sp_hardware_base_2.xpos",                  "1"                     },
797   { "sp_hardware_base_2.ypos",                  "4"                     },
798   { "sp_hardware_base_2.frames",                "1"                     },
799   { "sp_hardware_base_3",                       "RocksSP.pcx"           },
800   { "sp_hardware_base_3.xpos",                  "2"                     },
801   { "sp_hardware_base_3.ypos",                  "4"                     },
802   { "sp_hardware_base_3.frames",                "1"                     },
803   { "sp_hardware_base_4",                       "RocksSP.pcx"           },
804   { "sp_hardware_base_4.xpos",                  "3"                     },
805   { "sp_hardware_base_4.ypos",                  "4"                     },
806   { "sp_hardware_base_4.frames",                "1"                     },
807   { "sp_hardware_base_5",                       "RocksSP.pcx"           },
808   { "sp_hardware_base_5.xpos",                  "4"                     },
809   { "sp_hardware_base_5.ypos",                  "4"                     },
810   { "sp_hardware_base_5.frames",                "1"                     },
811   { "sp_hardware_base_6",                       "RocksSP.pcx"           },
812   { "sp_hardware_base_6.xpos",                  "5"                     },
813   { "sp_hardware_base_6.ypos",                  "4"                     },
814   { "sp_hardware_base_6.frames",                "1"                     },
815
816   /* images for Sokoban style elements and actions */
817
818   { "sokoban_object",                           "RocksElements.pcx"     },
819   { "sokoban_object.xpos",                      "9"                     },
820   { "sokoban_object.ypos",                      "7"                     },
821   { "sokoban_object.frames",                    "1"                     },
822   { "sokoban_object.EDITOR",                    "RocksElements.pcx"     },
823   { "sokoban_object.EDITOR.xpos",               "2"                     },
824   { "sokoban_object.EDITOR.ypos",               "14"                    },
825
826   { "sokoban_field_empty",                      "RocksElements.pcx"     },
827   { "sokoban_field_empty.xpos",                 "10"                    },
828   { "sokoban_field_empty.ypos",                 "7"                     },
829   { "sokoban_field_empty.frames",               "1"                     },
830
831   { "sokoban_field_full",                       "RocksElements.pcx"     },
832   { "sokoban_field_full.xpos",                  "11"                    },
833   { "sokoban_field_full.ypos",                  "7"                     },
834   { "sokoban_field_full.frames",                "1"                     },
835
836   { "sokoban_field_player",                     "RocksHeroes.pcx"       },
837   { "sokoban_field_player.xpos",                "0"                     },
838   { "sokoban_field_player.ypos",                "15"                    },
839   { "sokoban_field_player.frames",              "1"                     },
840   { "sokoban_field_player.EDITOR",              "RocksHeroes.pcx"       },
841   { "sokoban_field_player.EDITOR.xpos",         "1"                     },
842   { "sokoban_field_player.EDITOR.ypos",         "15"                    },
843
844   /* images for Emerald Mine style elements and actions */
845
846   { "empty_space",                              "RocksSP.pcx"           },
847   { "empty_space.xpos",                         "0"                     },
848   { "empty_space.ypos",                         "0"                     },
849   { "empty_space.frames",                       "1"                     },
850
851   { "sand",                                     "RocksElements.pcx"     },
852   { "sand.xpos",                                "0"                     },
853   { "sand.ypos",                                "0"                     },
854   { "sand.frames",                              "1"                     },
855   { "sand.CRUMBLED",                            "RocksElements.pcx"     },
856   { "sand.CRUMBLED.xpos",                       "1"                     },
857   { "sand.CRUMBLED.ypos",                       "0"                     },
858   { "sand.CRUMBLED.frames",                     "1"                     },
859   { "sand.digging.left",                        "RocksMore.pcx"         },
860   { "sand.digging.left.xpos",                   "6"                     },
861   { "sand.digging.left.ypos",                   "3"                     },
862   { "sand.digging.left.frames",                 "3"                     },
863   { "sand.digging.left.delay",                  "2"                     },
864   { "sand.digging.left.anim_mode",              "linear"                },
865   { "sand.digging.right",                       "RocksMore.pcx"         },
866   { "sand.digging.right.xpos",                  "9"                     },
867   { "sand.digging.right.ypos",                  "3"                     },
868   { "sand.digging.right.frames",                "3"                     },
869   { "sand.digging.right.delay",                 "2"                     },
870   { "sand.digging.right.anim_mode",             "linear"                },
871   { "sand.digging.up",                          "RocksMore.pcx"         },
872   { "sand.digging.up.xpos",                     "0"                     },
873   { "sand.digging.up.ypos",                     "3"                     },
874   { "sand.digging.up.frames",                   "3"                     },
875   { "sand.digging.up.delay",                    "2"                     },
876   { "sand.digging.up.anim_mode",                "linear"                },
877   { "sand.digging.down",                        "RocksMore.pcx"         },
878   { "sand.digging.down.xpos",                   "3"                     },
879   { "sand.digging.down.ypos",                   "3"                     },
880   { "sand.digging.down.frames",                 "3"                     },
881   { "sand.digging.down.delay",                  "2"                     },
882   { "sand.digging.down.anim_mode",              "linear"                },
883   { "sand.digging.left.CRUMBLED",               "RocksMore.pcx"         },
884   { "sand.digging.left.CRUMBLED.xpos",          "6"                     },
885   { "sand.digging.left.CRUMBLED.ypos",          "0"                     },
886   { "sand.digging.left.CRUMBLED.frames",        "3"                     },
887   { "sand.digging.left.CRUMBLED.delay",         "2"                     },
888   { "sand.digging.left.CRUMBLED.anim_mode",     "linear"                },
889   { "sand.digging.right.CRUMBLED",              "RocksMore.pcx"         },
890   { "sand.digging.right.CRUMBLED.xpos",         "9"                     },
891   { "sand.digging.right.CRUMBLED.ypos",         "0"                     },
892   { "sand.digging.right.CRUMBLED.frames",       "3"                     },
893   { "sand.digging.right.CRUMBLED.delay",        "2"                     },
894   { "sand.digging.right.CRUMBLED.anim_mode",    "linear"                },
895   { "sand.digging.up.CRUMBLED",                 "RocksMore.pcx"         },
896   { "sand.digging.up.CRUMBLED.xpos",            "0"                     },
897   { "sand.digging.up.CRUMBLED.ypos",            "0"                     },
898   { "sand.digging.up.CRUMBLED.frames",          "3"                     },
899   { "sand.digging.up.CRUMBLED.delay",           "2"                     },
900   { "sand.digging.up.CRUMBLED.anim_mode",       "linear"                },
901   { "sand.digging.down.CRUMBLED",               "RocksMore.pcx"         },
902   { "sand.digging.down.CRUMBLED.xpos",          "3"                     },
903   { "sand.digging.down.CRUMBLED.ypos",          "0"                     },
904   { "sand.digging.down.CRUMBLED.frames",        "3"                     },
905   { "sand.digging.down.CRUMBLED.delay",         "2"                     },
906   { "sand.digging.down.CRUMBLED.anim_mode",     "linear"                },
907
908   { "wall",                                     "RocksElements.pcx"     },
909   { "wall.xpos",                                "5"                     },
910   { "wall.ypos",                                "0"                     },
911   { "wall.frames",                              "1"                     },
912
913   { "wall_slippery",                            "RocksElements.pcx"     },
914   { "wall_slippery.xpos",                       "6"                     },
915   { "wall_slippery.ypos",                       "0"                     },
916   { "wall_slippery.frames",                     "1"                     },
917
918   { "steelwall",                                "RocksElements.pcx"     },
919   { "steelwall.xpos",                           "4"                     },
920   { "steelwall.ypos",                           "0"                     },
921   { "steelwall.frames",                         "1"                     },
922
923   { "rock",                                     "RocksElements.pcx"     },
924   { "rock.xpos",                                "12"                    },
925   { "rock.ypos",                                "0"                     },
926   { "rock.frames",                              "1"                     },
927   { "rock.moving.left",                         "RocksElements.pcx"     },
928   { "rock.moving.left.xpos",                    "12"                    },
929   { "rock.moving.left.ypos",                    "0"                     },
930   { "rock.moving.left.frames",                  "4"                     },
931   { "rock.moving.left.delay",                   "2"                     },
932   { "rock.moving.left.anim_mode",               "reverse"               },
933   { "rock.moving.right",                        "RocksElements.pcx"     },
934   { "rock.moving.right.xpos",                   "12"                    },
935   { "rock.moving.right.ypos",                   "0"                     },
936   { "rock.moving.right.frames",                 "4"                     },
937   { "rock.moving.right.start_frame",            "1"                     },
938   { "rock.moving.right.delay",                  "2"                     },
939   { "rock.pushing.left",                        "RocksElements.pcx"     },
940   { "rock.pushing.left.xpos",                   "12"                    },
941   { "rock.pushing.left.ypos",                   "0"                     },
942   { "rock.pushing.left.frames",                 "4"                     },
943   { "rock.pushing.left.delay",                  "2"                     },
944   { "rock.pushing.left.anim_mode",              "reverse"               },
945   { "rock.pushing.right",                       "RocksElements.pcx"     },
946   { "rock.pushing.right.xpos",                  "12"                    },
947   { "rock.pushing.right.ypos",                  "0"                     },
948   { "rock.pushing.right.frames",                "4"                     },
949   { "rock.pushing.right.start_frame",           "1"                     },
950   { "rock.pushing.right.delay",                 "2"                     },
951
952   { "emerald",                                  "RocksElements.pcx"     },
953   { "emerald.xpos",                             "8"                     },
954   { "emerald.ypos",                             "0"                     },
955   { "emerald.frames",                           "1"                     },
956   { "emerald.moving",                           "RocksElements.pcx"     },
957   { "emerald.moving.xpos",                      "8"                     },
958   { "emerald.moving.ypos",                      "0"                     },
959   { "emerald.moving.frames",                    "2"                     },
960   { "emerald.moving.delay",                     "4"                     },
961   { "emerald.falling",                          "RocksElements.pcx"     },
962   { "emerald.falling.xpos",                     "8"                     },
963   { "emerald.falling.ypos",                     "0"                     },
964   { "emerald.falling.frames",                   "2"                     },
965   { "emerald.falling.delay",                    "4"                     },
966   { "emerald.collecting",                       "RocksMore.pcx"         },
967   { "emerald.collecting.xpos",                  "3"                     },
968   { "emerald.collecting.ypos",                  "2"                     },
969   { "emerald.collecting.frames",                "3"                     },
970   { "emerald.collecting.delay",                 "2"                     },
971   { "emerald.collecting.anim_mode",             "linear"                },
972
973   { "diamond",                                  "RocksElements.pcx"     },
974   { "diamond.xpos",                             "10"                    },
975   { "diamond.ypos",                             "0"                     },
976   { "diamond.frames",                           "1"                     },
977   { "diamond.moving",                           "RocksElements.pcx"     },
978   { "diamond.moving.xpos",                      "10"                    },
979   { "diamond.moving.ypos",                      "0"                     },
980   { "diamond.moving.frames",                    "2"                     },
981   { "diamond.moving.delay",                     "4"                     },
982   { "diamond.falling",                          "RocksElements.pcx"     },
983   { "diamond.falling.xpos",                     "10"                    },
984   { "diamond.falling.ypos",                     "0"                     },
985   { "diamond.falling.frames",                   "2"                     },
986   { "diamond.falling.delay",                    "4"                     },
987   { "diamond.collecting",                       "RocksMore.pcx"         },
988   { "diamond.collecting.xpos",                  "7"                     },
989   { "diamond.collecting.ypos",                  "2"                     },
990   { "diamond.collecting.frames",                "3"                     },
991   { "diamond.collecting.delay",                 "2"                     },
992   { "diamond.collecting.anim_mode",             "linear"                },
993
994   { "bomb",                                     "RocksElements.pcx"     },
995   { "bomb.xpos",                                "11"                    },
996   { "bomb.ypos",                                "1"                     },
997   { "bomb.frames",                              "1"                     },
998
999   { "nut",                                      "RocksElements.pcx"     },
1000   { "nut.xpos",                                 "12"                    },
1001   { "nut.ypos",                                 "1"                     },
1002   { "nut.frames",                               "1"                     },
1003   { "nut.breaking",                             "RocksElements.pcx"     },
1004   { "nut.breaking.xpos",                        "13"                    },
1005   { "nut.breaking.ypos",                        "1"                     },
1006   { "nut.breaking.frames",                      "3"                     },
1007   { "nut.breaking.delay",                       "2"                     },
1008   { "nut.breaking.anim_mode",                   "linear"                },
1009
1010   { "dynamite",                                 "RocksElements.pcx"     },
1011   { "dynamite.xpos",                            "0"                     },
1012   { "dynamite.ypos",                            "3"                     },
1013   { "dynamite.frames",                          "1"                     },
1014   { "dynamite.EDITOR",                          "RocksElements.pcx"     },
1015   { "dynamite.EDITOR.xpos",                     "0"                     },
1016   { "dynamite.EDITOR.ypos",                     "14"                    },
1017   { "dynamite.active",                          "RocksElements.pcx"     },
1018   { "dynamite.active.xpos",                     "1"                     },
1019   { "dynamite.active.ypos",                     "3"                     },
1020   { "dynamite.active.frames",                   "7"                     },
1021   { "dynamite.active.delay",                    "12"                    },
1022   { "dynamite.active.anim_mode",                "linear"                },
1023   { "dynamite.active.EDITOR",                   "RocksElements.pcx"     },
1024   { "dynamite.active.EDITOR.xpos",              "1"                     },
1025   { "dynamite.active.EDITOR.ypos",              "14"                    },
1026
1027   { "em_dynamite",                              "RocksEMC.pcx"          },
1028   { "em_dynamite.xpos",                         "0"                     },
1029   { "em_dynamite.ypos",                         "15"                    },
1030   { "em_dynamite.frames",                       "1"                     },
1031   { "em_dynamite.active",                       "RocksEMC.pcx"          },
1032   { "em_dynamite.active.xpos",                  "1"                     },
1033   { "em_dynamite.active.ypos",                  "15"                    },
1034   { "em_dynamite.active.frames",                "4"                     },
1035   { "em_dynamite.active.delay",                 "8"                     },
1036   { "em_dynamite.active.anim_mode",             "linear"                },
1037   { "em_dynamite.active.EDITOR",                "RocksEMC.pcx"          },
1038   { "em_dynamite.active.EDITOR.xpos",           "2"                     },
1039   { "em_dynamite.active.EDITOR.ypos",           "15"                    },
1040
1041   { "wall_emerald",                             "RocksElements.pcx"     },
1042   { "wall_emerald.xpos",                        "4"                     },
1043   { "wall_emerald.ypos",                        "8"                     },
1044   { "wall_emerald.frames",                      "1"                     },
1045
1046   { "wall_diamond",                             "RocksElements.pcx"     },
1047   { "wall_diamond.xpos",                        "5"                     },
1048   { "wall_diamond.ypos",                        "8"                     },
1049   { "wall_diamond.frames",                      "1"                     },
1050
1051   { "bug",                                      "RocksElements.pcx"     },
1052   { "bug.xpos",                                 "8"                     },
1053   { "bug.ypos",                                 "4"                     },
1054   { "bug.frames",                               "4"                     },
1055   { "bug.delay",                                "8"                     },
1056   { "bug.right",                                "RocksElements.pcx"     },
1057   { "bug.right.xpos",                           "8"                     },
1058   { "bug.right.ypos",                           "4"                     },
1059   { "bug.right.frames",                         "1"                     },
1060   { "bug.up",                                   "RocksElements.pcx"     },
1061   { "bug.up.xpos",                              "9"                     },
1062   { "bug.up.ypos",                              "4"                     },
1063   { "bug.up.frames",                            "1"                     },
1064   { "bug.left",                                 "RocksElements.pcx"     },
1065   { "bug.left.xpos",                            "10"                    },
1066   { "bug.left.ypos",                            "4"                     },
1067   { "bug.left.frames",                          "1"                     },
1068   { "bug.down",                                 "RocksElements.pcx"     },
1069   { "bug.down.xpos",                            "11"                    },
1070   { "bug.down.ypos",                            "4"                     },
1071   { "bug.down.frames",                          "1"                     },
1072   { "bug.moving.right",                         "RocksElements.pcx"     },
1073   { "bug.moving.right.xpos",                    "8"                     },
1074   { "bug.moving.right.ypos",                    "4"                     },
1075   { "bug.moving.right.frames",                  "2"                     },
1076   { "bug.moving.right.delay",                   "4"                     },
1077   { "bug.moving.right.offset",                  "128"                   },
1078   { "bug.moving.up",                            "RocksElements.pcx"     },
1079   { "bug.moving.up.xpos",                       "9"                     },
1080   { "bug.moving.up.ypos",                       "4"                     },
1081   { "bug.moving.up.frames",                     "2"                     },
1082   { "bug.moving.up.delay",                      "4"                     },
1083   { "bug.moving.up.offset",                     "128"                   },
1084   { "bug.moving.left",                          "RocksElements.pcx"     },
1085   { "bug.moving.left.xpos",                     "10"                    },
1086   { "bug.moving.left.ypos",                     "4"                     },
1087   { "bug.moving.left.frames",                   "2"                     },
1088   { "bug.moving.left.delay",                    "4"                     },
1089   { "bug.moving.left.offset",                   "128"                   },
1090   { "bug.moving.down",                          "RocksElements.pcx"     },
1091   { "bug.moving.down.xpos",                     "11"                    },
1092   { "bug.moving.down.ypos",                     "4"                     },
1093   { "bug.moving.down.frames",                   "2"                     },
1094   { "bug.moving.down.delay",                    "4"                     },
1095   { "bug.moving.down.offset",                   "128"                   },
1096   { "bug.turning_from_right.up",                "RocksMore.pcx"         },
1097   { "bug.turning_from_right.up.xpos",           "0"                     },
1098   { "bug.turning_from_right.up.ypos",           "6"                     },
1099   { "bug.turning_from_right.up.frames",         "4"                     },
1100   { "bug.turning_from_right.up.delay",          "2"                     },
1101   { "bug.turning_from_right.up.anim_mode",      "linear,reverse"        },
1102   { "bug.turning_from_up.left",                 "RocksMore.pcx"         },
1103   { "bug.turning_from_up.left.xpos",            "12"                    },
1104   { "bug.turning_from_up.left.ypos",            "6"                     },
1105   { "bug.turning_from_up.left.frames",          "4"                     },
1106   { "bug.turning_from_up.left.delay",           "2"                     },
1107   { "bug.turning_from_up.left.anim_mode",       "linear,reverse"        },
1108   { "bug.turning_from_left.down",               "RocksMore.pcx"         },
1109   { "bug.turning_from_left.down.xpos",          "8"                     },
1110   { "bug.turning_from_left.down.ypos",          "6"                     },
1111   { "bug.turning_from_left.down.frames",        "4"                     },
1112   { "bug.turning_from_left.down.delay",         "2"                     },
1113   { "bug.turning_from_left.down.anim_mode",     "linear,reverse"        },
1114   { "bug.turning_from_down.right",              "RocksMore.pcx"         },
1115   { "bug.turning_from_down.right.xpos",         "4"                     },
1116   { "bug.turning_from_down.right.ypos",         "6"                     },
1117   { "bug.turning_from_down.right.frames",       "4"                     },
1118   { "bug.turning_from_down.right.delay",        "2"                     },
1119   { "bug.turning_from_down.right.anim_mode",    "linear,reverse"        },
1120   { "bug.turning_from_right.down",              "RocksMore.pcx"         },
1121   { "bug.turning_from_right.down.xpos",         "5"                     },
1122   { "bug.turning_from_right.down.ypos",         "6"                     },
1123   { "bug.turning_from_right.down.frames",       "4"                     },
1124   { "bug.turning_from_right.down.delay",        "2"                     },
1125   { "bug.turning_from_right.down.anim_mode",    "linear"                },
1126   { "bug.turning_from_up.right",                "RocksMore.pcx"         },
1127   { "bug.turning_from_up.right.xpos",           "1"                     },
1128   { "bug.turning_from_up.right.ypos",           "6"                     },
1129   { "bug.turning_from_up.right.frames",         "4"                     },
1130   { "bug.turning_from_up.right.delay",          "2"                     },
1131   { "bug.turning_from_up.right.anim_mode",      "linear"                },
1132   { "bug.turning_from_left.up",                 "RocksMore.pcx"         },
1133   { "bug.turning_from_left.up.xpos",            "13"                    },
1134   { "bug.turning_from_left.up.ypos",            "6"                     },
1135   { "bug.turning_from_left.up.frames",          "4"                     },
1136   { "bug.turning_from_left.up.delay",           "2"                     },
1137   { "bug.turning_from_left.up.anim_mode",       "linear"                },
1138   { "bug.turning_from_down.left",               "RocksMore.pcx"         },
1139   { "bug.turning_from_down.left.xpos",          "9"                     },
1140   { "bug.turning_from_down.left.ypos",          "6"                     },
1141   { "bug.turning_from_down.left.frames",        "4"                     },
1142   { "bug.turning_from_down.left.delay",         "2"                     },
1143   { "bug.turning_from_down.left.anim_mode",     "linear"                },
1144
1145   { "spaceship",                                "RocksElements.pcx"     },
1146   { "spaceship.xpos",                           "8"                     },
1147   { "spaceship.ypos",                           "3"                     },
1148   { "spaceship.frames",                         "4"                     },
1149   { "spaceship.delay",                          "8"                     },
1150   { "spaceship.right",                          "RocksElements.pcx"     },
1151   { "spaceship.right.xpos",                     "8"                     },
1152   { "spaceship.right.ypos",                     "3"                     },
1153   { "spaceship.right.frames",                   "1"                     },
1154   { "spaceship.up",                             "RocksElements.pcx"     },
1155   { "spaceship.up.xpos",                        "9"                     },
1156   { "spaceship.up.ypos",                        "3"                     },
1157   { "spaceship.up.frames",                      "1"                     },
1158   { "spaceship.left",                           "RocksElements.pcx"     },
1159   { "spaceship.left.xpos",                      "10"                    },
1160   { "spaceship.left.ypos",                      "3"                     },
1161   { "spaceship.left.frames",                    "1"                     },
1162   { "spaceship.down",                           "RocksElements.pcx"     },
1163   { "spaceship.down.xpos",                      "11"                    },
1164   { "spaceship.down.ypos",                      "3"                     },
1165   { "spaceship.down.frames",                    "1"                     },
1166   { "spaceship.moving.right",                   "RocksElements.pcx"     },
1167   { "spaceship.moving.right.xpos",              "8"                     },
1168   { "spaceship.moving.right.ypos",              "3"                     },
1169   { "spaceship.moving.right.frames",            "2"                     },
1170   { "spaceship.moving.right.delay",             "4"                     },
1171   { "spaceship.moving.right.offset",            "128"                   },
1172   { "spaceship.moving.up",                      "RocksElements.pcx"     },
1173   { "spaceship.moving.up.xpos",                 "9"                     },
1174   { "spaceship.moving.up.ypos",                 "3"                     },
1175   { "spaceship.moving.up.frames",               "2"                     },
1176   { "spaceship.moving.up.delay",                "4"                     },
1177   { "spaceship.moving.up.offset",               "128"                   },
1178   { "spaceship.moving.left",                    "RocksElements.pcx"     },
1179   { "spaceship.moving.left.xpos",               "10"                    },
1180   { "spaceship.moving.left.ypos",               "3"                     },
1181   { "spaceship.moving.left.frames",             "2"                     },
1182   { "spaceship.moving.left.delay",              "4"                     },
1183   { "spaceship.moving.left.offset",             "128"                   },
1184   { "spaceship.moving.down",                    "RocksElements.pcx"     },
1185   { "spaceship.moving.down.xpos",               "11"                    },
1186   { "spaceship.moving.down.ypos",               "3"                     },
1187   { "spaceship.moving.down.frames",             "2"                     },
1188   { "spaceship.moving.down.delay",              "4"                     },
1189   { "spaceship.moving.down.offset",             "128"                   },
1190   { "spaceship.turning_from_right.up",          "RocksMore.pcx"         },
1191   { "spaceship.turning_from_right.up.xpos",     "0"                     },
1192   { "spaceship.turning_from_right.up.ypos",     "5"                     },
1193   { "spaceship.turning_from_right.up.frames",   "4"                     },
1194   { "spaceship.turning_from_right.up.delay",    "2"                     },
1195   { "spaceship.turning_from_right.up.anim_mode","linear,reverse"        },
1196   { "spaceship.turning_from_up.left",           "RocksMore.pcx"         },
1197   { "spaceship.turning_from_up.left.xpos",      "12"                    },
1198   { "spaceship.turning_from_up.left.ypos",      "5"                     },
1199   { "spaceship.turning_from_up.left.frames",    "4"                     },
1200   { "spaceship.turning_from_up.left.delay",     "2"                     },
1201   { "spaceship.turning_from_up.left.anim_mode", "linear,reverse"        },
1202   { "spaceship.turning_from_left.down",         "RocksMore.pcx"         },
1203   { "spaceship.turning_from_left.down.xpos",    "8"                     },
1204   { "spaceship.turning_from_left.down.ypos",    "5"                     },
1205   { "spaceship.turning_from_left.down.frames",  "4"                     },
1206   { "spaceship.turning_from_left.down.delay",   "2"                     },
1207   { "spaceship.turning_from_left.down.anim_mode","linear,reverse"       },
1208   { "spaceship.turning_from_down.right",        "RocksMore.pcx"         },
1209   { "spaceship.turning_from_down.right.xpos",   "4"                     },
1210   { "spaceship.turning_from_down.right.ypos",   "5"                     },
1211   { "spaceship.turning_from_down.right.frames", "4"                     },
1212   { "spaceship.turning_from_down.right.delay",  "2"                     },
1213   { "spaceship.turning_from_down.right.anim_mode","linear,reverse"      },
1214   { "spaceship.turning_from_right.down",        "RocksMore.pcx"         },
1215   { "spaceship.turning_from_right.down.xpos",   "5"                     },
1216   { "spaceship.turning_from_right.down.ypos",   "5"                     },
1217   { "spaceship.turning_from_right.down.frames", "4"                     },
1218   { "spaceship.turning_from_right.down.delay",  "2"                     },
1219   { "spaceship.turning_from_right.down.anim_mode","linear"              },
1220   { "spaceship.turning_from_up.right",          "RocksMore.pcx"         },
1221   { "spaceship.turning_from_up.right.xpos",     "1"                     },
1222   { "spaceship.turning_from_up.right.ypos",     "5"                     },
1223   { "spaceship.turning_from_up.right.frames",   "4"                     },
1224   { "spaceship.turning_from_up.right.delay",    "2"                     },
1225   { "spaceship.turning_from_up.right.anim_mode","linear"                },
1226   { "spaceship.turning_from_left.up",           "RocksMore.pcx"         },
1227   { "spaceship.turning_from_left.up.xpos",      "13"                    },
1228   { "spaceship.turning_from_left.up.ypos",      "5"                     },
1229   { "spaceship.turning_from_left.up.frames",    "4"                     },
1230   { "spaceship.turning_from_left.up.delay",     "2"                     },
1231   { "spaceship.turning_from_left.up.anim_mode", "linear"                },
1232   { "spaceship.turning_from_down.left",         "RocksMore.pcx"         },
1233   { "spaceship.turning_from_down.left.xpos",    "9"                     },
1234   { "spaceship.turning_from_down.left.ypos",    "5"                     },
1235   { "spaceship.turning_from_down.left.frames",  "4"                     },
1236   { "spaceship.turning_from_down.left.delay",   "2"                     },
1237   { "spaceship.turning_from_down.left.anim_mode","linear"               },
1238
1239   { "yamyam",                                   "RocksElements.pcx"     },
1240   { "yamyam.xpos",                              "0"                     },
1241   { "yamyam.ypos",                              "5"                     },
1242   { "yamyam.frames",                            "4"                     },
1243   { "yamyam.anim_mode",                         "pingpong2"             },
1244   { "yamyam.left",                              "RocksElements.pcx"     },
1245   { "yamyam.left.xpos",                         "0"                     },
1246   { "yamyam.left.ypos",                         "5"                     },
1247   { "yamyam.left.frames",                       "4"                     },
1248   { "yamyam.left.anim_mode",                    "pingpong2"             },
1249   { "yamyam.left.EDITOR",                       "RocksEMC.pcx"          },
1250   { "yamyam.left.EDITOR.xpos",                  "7"                     },
1251   { "yamyam.left.EDITOR.ypos",                  "15"                    },
1252   { "yamyam.right",                             "RocksElements.pcx"     },
1253   { "yamyam.right.xpos",                        "0"                     },
1254   { "yamyam.right.ypos",                        "5"                     },
1255   { "yamyam.right.frames",                      "4"                     },
1256   { "yamyam.right.anim_mode",                   "pingpong2"             },
1257   { "yamyam.right.EDITOR",                      "RocksEMC.pcx"          },
1258   { "yamyam.right.EDITOR.xpos",                 "8"                     },
1259   { "yamyam.right.EDITOR.ypos",                 "15"                    },
1260   { "yamyam.up",                                "RocksElements.pcx"     },
1261   { "yamyam.up.xpos",                           "0"                     },
1262   { "yamyam.up.ypos",                           "5"                     },
1263   { "yamyam.up.frames",                         "4"                     },
1264   { "yamyam.up.anim_mode",                      "pingpong2"             },
1265   { "yamyam.up.EDITOR",                         "RocksEMC.pcx"          },
1266   { "yamyam.up.EDITOR.xpos",                    "5"                     },
1267   { "yamyam.up.EDITOR.ypos",                    "15"                    },
1268   { "yamyam.down",                              "RocksElements.pcx"     },
1269   { "yamyam.down.xpos",                         "0"                     },
1270   { "yamyam.down.ypos",                         "5"                     },
1271   { "yamyam.down.frames",                       "4"                     },
1272   { "yamyam.down.anim_mode",                    "pingpong2"             },
1273   { "yamyam.down.EDITOR",                       "RocksEMC.pcx"          },
1274   { "yamyam.down.EDITOR.xpos",                  "6"                     },
1275   { "yamyam.down.EDITOR.ypos",                  "15"                    },
1276   { "yamyam.moving",                            "RocksElements.pcx"     },
1277   { "yamyam.moving.xpos",                       "0"                     },
1278   { "yamyam.moving.ypos",                       "5"                     },
1279   { "yamyam.moving.frames",                     "1"                     },
1280
1281   { "robot",                                    "RocksElements.pcx"     },
1282   { "robot.xpos",                               "4"                     },
1283   { "robot.ypos",                               "5"                     },
1284   { "robot.frames",                             "4"                     },
1285   { "robot.anim_mode",                          "pingpong2"             },
1286   { "robot.moving",                             "RocksElements.pcx"     },
1287   { "robot.moving.xpos",                        "4"                     },
1288   { "robot.moving.ypos",                        "5"                     },
1289   { "robot.moving.frames",                      "1"                     },
1290
1291   { "robot_wheel",                              "RocksElements.pcx"     },
1292   { "robot_wheel.xpos",                         "0"                     },
1293   { "robot_wheel.ypos",                         "6"                     },
1294   { "robot_wheel.frames",                       "1"                     },
1295   { "robot_wheel.active",                       "RocksElements.pcx"     },
1296   { "robot_wheel.active.xpos",                  "0"                     },
1297   { "robot_wheel.active.ypos",                  "6"                     },
1298   { "robot_wheel.active.frames",                "4"                     },
1299
1300   { "magic_wall",                               "RocksElements.pcx"     },
1301   { "magic_wall.xpos",                          "0"                     },
1302   { "magic_wall.ypos",                          "8"                     },
1303   { "magic_wall.frames",                        "1"                     },
1304   { "magic_wall.active",                        "RocksElements.pcx"     },
1305   { "magic_wall.active.xpos",                   "0"                     },
1306   { "magic_wall.active.ypos",                   "8"                     },
1307   { "magic_wall.active.frames",                 "4"                     },
1308   { "magic_wall.active.anim_mode",              "reverse"               },
1309   { "magic_wall.active.delay",                  "4"                     },
1310   { "magic_wall.active.global_sync",            "true"                  },
1311   { "magic_wall.filling",                       "RocksElements.pcx"     },
1312   { "magic_wall.filling.xpos",                  "0"                     },
1313   { "magic_wall.filling.ypos",                  "8"                     },
1314   { "magic_wall.filling.frames",                "4"                     },
1315   { "magic_wall.filling.anim_mode",             "reverse"               },
1316   { "magic_wall.filling.delay",                 "4"                     },
1317   { "magic_wall.filling.global_sync",           "true"                  },
1318   { "magic_wall_full",                          "RocksElements.pcx"     },
1319   { "magic_wall_full.xpos",                     "0"                     },
1320   { "magic_wall_full.ypos",                     "8"                     },
1321   { "magic_wall_full.frames",                   "4"                     },
1322   { "magic_wall_full.anim_mode",                "reverse"               },
1323   { "magic_wall_full.delay",                    "4"                     },
1324   { "magic_wall_full.global_sync",              "true"                  },
1325   { "magic_wall.emptying",                      "RocksElements.pcx"     },
1326   { "magic_wall.emptying.xpos",                 "0"                     },
1327   { "magic_wall.emptying.ypos",                 "8"                     },
1328   { "magic_wall.emptying.frames",               "4"                     },
1329   { "magic_wall.emptying.anim_mode",            "reverse"               },
1330   { "magic_wall.emptying.delay",                "4"                     },
1331   { "magic_wall.emptying.global_sync",          "true"                  },
1332   { "magic_wall_dead",                          "RocksElements.pcx"     },
1333   { "magic_wall_dead.xpos",                     "0"                     },
1334   { "magic_wall_dead.ypos",                     "8"                     },
1335   { "magic_wall_dead.frames",                   "1"                     },
1336
1337   { "dc_magic_wall",                            "RocksDC2.pcx"          },
1338   { "dc_magic_wall.xpos",                       "0"                     },
1339   { "dc_magic_wall.ypos",                       "3"                     },
1340   { "dc_magic_wall.frames",                     "1"                     },
1341   { "dc_magic_wall.active",                     "RocksDC2.pcx"          },
1342   { "dc_magic_wall.active.xpos",                "0"                     },
1343   { "dc_magic_wall.active.ypos",                "3"                     },
1344   { "dc_magic_wall.active.frames",              "4"                     },
1345   { "dc_magic_wall.active.anim_mode",           "reverse"               },
1346   { "dc_magic_wall.active.delay",               "4"                     },
1347   { "dc_magic_wall.active.global_sync",         "true"                  },
1348   { "dc_magic_wall.filling",                    "RocksDC2.pcx"          },
1349   { "dc_magic_wall.filling.xpos",               "0"                     },
1350   { "dc_magic_wall.filling.ypos",               "3"                     },
1351   { "dc_magic_wall.filling.frames",             "4"                     },
1352   { "dc_magic_wall.filling.anim_mode",          "reverse"               },
1353   { "dc_magic_wall.filling.delay",              "4"                     },
1354   { "dc_magic_wall.filling.global_sync",        "true"                  },
1355   { "dc_magic_wall_full",                       "RocksDC2.pcx"          },
1356   { "dc_magic_wall_full.xpos",                  "0"                     },
1357   { "dc_magic_wall_full.ypos",                  "3"                     },
1358   { "dc_magic_wall_full.frames",                "4"                     },
1359   { "dc_magic_wall_full.anim_mode",             "reverse"               },
1360   { "dc_magic_wall_full.delay",                 "4"                     },
1361   { "dc_magic_wall_full.global_sync",           "true"                  },
1362   { "dc_magic_wall.emptying",                   "RocksDC2.pcx"          },
1363   { "dc_magic_wall.emptying.xpos",              "0"                     },
1364   { "dc_magic_wall.emptying.ypos",              "3"                     },
1365   { "dc_magic_wall.emptying.frames",            "4"                     },
1366   { "dc_magic_wall.emptying.anim_mode",         "reverse"               },
1367   { "dc_magic_wall.emptying.delay",             "4"                     },
1368   { "dc_magic_wall.emptying.global_sync",       "true"                  },
1369   { "dc_magic_wall_dead",                       "RocksDC2.pcx"          },
1370   { "dc_magic_wall_dead.xpos",                  "0"                     },
1371   { "dc_magic_wall_dead.ypos",                  "3"                     },
1372   { "dc_magic_wall_dead.frames",                "1"                     },
1373
1374   { "quicksand_empty",                          "RocksElements.pcx"     },
1375   { "quicksand_empty.xpos",                     "2"                     },
1376   { "quicksand_empty.ypos",                     "0"                     },
1377   { "quicksand_empty.frames",                   "1"                     },
1378   { "quicksand.filling",                        "RocksElements.pcx"     },
1379   { "quicksand.filling.xpos",                   "3"                     },
1380   { "quicksand.filling.ypos",                   "0"                     },
1381   { "quicksand.filling.frames",                 "1"                     },
1382   { "quicksand_full",                           "RocksElements.pcx"     },
1383   { "quicksand_full.xpos",                      "3"                     },
1384   { "quicksand_full.ypos",                      "0"                     },
1385   { "quicksand_full.frames",                    "1"                     },
1386   { "quicksand_full.EDITOR",                    "RocksElements.pcx"     },
1387   { "quicksand_full.EDITOR.xpos",               "3"                     },
1388   { "quicksand_full.EDITOR.ypos",               "14"                    },
1389   { "quicksand.emptying",                       "RocksElements.pcx"     },
1390   { "quicksand.emptying.xpos",                  "3"                     },
1391   { "quicksand.emptying.ypos",                  "0"                     },
1392   { "quicksand.emptying.frames",                "1"                     },
1393
1394   { "quicksand_fast_empty",                     "RocksDC2.pcx"          },
1395   { "quicksand_fast_empty.xpos",                "4"                     },
1396   { "quicksand_fast_empty.ypos",                "3"                     },
1397   { "quicksand_fast_empty.frames",              "1"                     },
1398   { "quicksand_fast.filling",                   "RocksDC2.pcx"          },
1399   { "quicksand_fast.filling.xpos",              "4"                     },
1400   { "quicksand_fast.filling.ypos",              "3"                     },
1401   { "quicksand_fast.filling.frames",            "1"                     },
1402   { "quicksand_fast_full",                      "RocksDC2.pcx"          },
1403   { "quicksand_fast_full.xpos",                 "4"                     },
1404   { "quicksand_fast_full.ypos",                 "3"                     },
1405   { "quicksand_fast_full.frames",               "1"                     },
1406   { "quicksand_fast_full.EDITOR",               "RocksDC2.pcx"          },
1407   { "quicksand_fast_full.EDITOR.xpos",          "5"                     },
1408   { "quicksand_fast_full.EDITOR.ypos",          "3"                     },
1409   { "quicksand_fast.emptying",                  "RocksDC2.pcx"          },
1410   { "quicksand_fast.emptying.xpos",             "4"                     },
1411   { "quicksand_fast.emptying.ypos",             "3"                     },
1412   { "quicksand_fast.emptying.frames",           "1"                     },
1413
1414   { "acid_pool_topleft",                        "RocksElements.pcx"     },
1415   { "acid_pool_topleft.xpos",                   "0"                     },
1416   { "acid_pool_topleft.ypos",                   "1"                     },
1417   { "acid_pool_topleft.frames",                 "1"                     },
1418   { "acid_pool_topright",                       "RocksElements.pcx"     },
1419   { "acid_pool_topright.xpos",                  "2"                     },
1420   { "acid_pool_topright.ypos",                  "1"                     },
1421   { "acid_pool_topright.frames",                "1"                     },
1422   { "acid_pool_bottomleft",                     "RocksElements.pcx"     },
1423   { "acid_pool_bottomleft.xpos",                "0"                     },
1424   { "acid_pool_bottomleft.ypos",                "2"                     },
1425   { "acid_pool_bottomleft.frames",              "1"                     },
1426   { "acid_pool_bottom",                         "RocksElements.pcx"     },
1427   { "acid_pool_bottom.xpos",                    "1"                     },
1428   { "acid_pool_bottom.ypos",                    "2"                     },
1429   { "acid_pool_bottom.frames",                  "1"                     },
1430   { "acid_pool_bottomright",                    "RocksElements.pcx"     },
1431   { "acid_pool_bottomright.xpos",               "2"                     },
1432   { "acid_pool_bottomright.ypos",               "2"                     },
1433   { "acid_pool_bottomright.frames",             "1"                     },
1434
1435   { "acid",                                     "RocksElements.pcx"     },
1436   { "acid.xpos",                                "12"                    },
1437   { "acid.ypos",                                "7"                     },
1438   { "acid.frames",                              "4"                     },
1439   { "acid.delay",                               "10"                    },
1440   { "acid.global_sync",                         "true"                  },
1441
1442   { "acid_splash_left",                         "RocksHeroes.pcx"       },
1443   { "acid_splash_left.xpos",                    "8"                     },
1444   { "acid_splash_left.ypos",                    "10"                    },
1445   { "acid_splash_left.frames",                  "4"                     },
1446   { "acid_splash_left.delay",                   "2"                     },
1447   { "acid_splash_left.anim_mode",               "linear"                },
1448   { "acid_splash_right",                        "RocksHeroes.pcx"       },
1449   { "acid_splash_right.xpos",                   "12"                    },
1450   { "acid_splash_right.ypos",                   "10"                    },
1451   { "acid_splash_right.frames",                 "4"                     },
1452   { "acid_splash_right.delay",                  "2"                     },
1453   { "acid_splash_right.anim_mode",              "linear"                },
1454
1455   { "amoeba_drop",                              "RocksElements.pcx"     },
1456   { "amoeba_drop.xpos",                         "5"                     },
1457   { "amoeba_drop.ypos",                         "6"                     },
1458   { "amoeba_drop.frames",                       "1"                     },
1459   { "amoeba.growing",                           "RocksElements.pcx"     },
1460   { "amoeba.growing.xpos",                      "5"                     },
1461   { "amoeba.growing.ypos",                      "6"                     },
1462   { "amoeba.growing.frames",                    "3"                     },
1463   { "amoeba.growing.delay",                     "2"                     },
1464   { "amoeba.growing.anim_mode",                 "linear"                },
1465   { "amoeba.shrinking",                         "RocksElements.pcx"     },
1466   { "amoeba.shrinking.xpos",                    "5"                     },
1467   { "amoeba.shrinking.ypos",                    "6"                     },
1468   { "amoeba.shrinking.frames",                  "3"                     },
1469   { "amoeba.shrinking.delay",                   "2"                     },
1470   { "amoeba.shrinking.anim_mode",               "linear,reverse"        },
1471   { "amoeba_wet",                               "RocksElements.pcx"     },
1472   { "amoeba_wet.xpos",                          "8"                     },
1473   { "amoeba_wet.ypos",                          "6"                     },
1474   { "amoeba_wet.frames",                        "4"                     },
1475   { "amoeba_wet.delay",                         "1000000"               },
1476   { "amoeba_wet.anim_mode",                     "random"                },
1477   { "amoeba_wet.EDITOR",                        "RocksElements.pcx"     },
1478   { "amoeba_wet.EDITOR.xpos",                   "4"                     },
1479   { "amoeba_wet.EDITOR.ypos",                   "6"                     },
1480   { "amoeba.dropping",                          "RocksElements.pcx"     },
1481   { "amoeba.dropping.xpos",                     "8"                     },
1482   { "amoeba.dropping.ypos",                     "6"                     },
1483   { "amoeba.dropping.frames",                   "4"                     },
1484   { "amoeba.dropping.delay",                    "1000000"               },
1485   { "amoeba.dropping.anim_mode",                "random"                },
1486   { "amoeba_dry",                               "RocksElements.pcx"     },
1487   { "amoeba_dry.xpos",                          "8"                     },
1488   { "amoeba_dry.ypos",                          "6"                     },
1489   { "amoeba_dry.frames",                        "4"                     },
1490   { "amoeba_dry.delay",                         "1000000"               },
1491   { "amoeba_dry.anim_mode",                     "random"                },
1492   { "amoeba_full",                              "RocksElements.pcx"     },
1493   { "amoeba_full.xpos",                         "8"                     },
1494   { "amoeba_full.ypos",                         "6"                     },
1495   { "amoeba_full.frames",                       "4"                     },
1496   { "amoeba_full.delay",                        "1000000"               },
1497   { "amoeba_full.anim_mode",                    "random"                },
1498   { "amoeba_full.EDITOR",                       "RocksElements.pcx"     },
1499   { "amoeba_full.EDITOR.xpos",                  "8"                     },
1500   { "amoeba_full.EDITOR.ypos",                  "7"                     },
1501   { "amoeba_dead",                              "RocksElements.pcx"     },
1502   { "amoeba_dead.xpos",                         "12"                    },
1503   { "amoeba_dead.ypos",                         "6"                     },
1504   { "amoeba_dead.frames",                       "4"                     },
1505   { "amoeba_dead.delay",                        "1000000"               },
1506   { "amoeba_dead.anim_mode",                    "random"                },
1507   { "amoeba_dead.EDITOR",                       "RocksElements.pcx"     },
1508   { "amoeba_dead.EDITOR.xpos",                  "12"                    },
1509   { "amoeba_dead.EDITOR.ypos",                  "6"                     },
1510
1511   { "em_key_1",                                 "RocksSP.pcx"           },
1512   { "em_key_1.xpos",                            "4"                     },
1513   { "em_key_1.ypos",                            "6"                     },
1514   { "em_key_1.frames",                          "1"                     },
1515   { "em_key_2",                                 "RocksSP.pcx"           },
1516   { "em_key_2.xpos",                            "5"                     },
1517   { "em_key_2.ypos",                            "6"                     },
1518   { "em_key_2.frames",                          "1"                     },
1519   { "em_key_3",                                 "RocksSP.pcx"           },
1520   { "em_key_3.xpos",                            "6"                     },
1521   { "em_key_3.ypos",                            "6"                     },
1522   { "em_key_3.frames",                          "1"                     },
1523   { "em_key_4",                                 "RocksSP.pcx"           },
1524   { "em_key_4.xpos",                            "7"                     },
1525   { "em_key_4.ypos",                            "6"                     },
1526   { "em_key_4.frames",                          "1"                     },
1527
1528   { "dc_key_white",                             "RocksSP.pcx"           },
1529   { "dc_key_white.xpos",                        "13"                    },
1530   { "dc_key_white.ypos",                        "1"                     },
1531   { "dc_key_white.frames",                      "1"                     },
1532
1533   { "em_gate_1",                                "RocksSP.pcx"           },
1534   { "em_gate_1.xpos",                           "0"                     },
1535   { "em_gate_1.ypos",                           "7"                     },
1536   { "em_gate_1.frames",                         "1"                     },
1537   { "em_gate_2",                                "RocksSP.pcx"           },
1538   { "em_gate_2.xpos",                           "1"                     },
1539   { "em_gate_2.ypos",                           "7"                     },
1540   { "em_gate_2.frames",                         "1"                     },
1541   { "em_gate_3",                                "RocksSP.pcx"           },
1542   { "em_gate_3.xpos",                           "2"                     },
1543   { "em_gate_3.ypos",                           "7"                     },
1544   { "em_gate_3.frames",                         "1"                     },
1545   { "em_gate_4",                                "RocksSP.pcx"           },
1546   { "em_gate_4.xpos",                           "3"                     },
1547   { "em_gate_4.ypos",                           "7"                     },
1548   { "em_gate_4.frames",                         "1"                     },
1549
1550   { "dc_gate_white",                            "RocksSP.pcx"           },
1551   { "dc_gate_white.xpos",                       "14"                    },
1552   { "dc_gate_white.ypos",                       "1"                     },
1553   { "dc_gate_white.frames",                     "1"                     },
1554
1555   { "em_gate_1_gray",                           "RocksSP.pcx"           },
1556   { "em_gate_1_gray.xpos",                      "4"                     },
1557   { "em_gate_1_gray.ypos",                      "7"                     },
1558   { "em_gate_1_gray.frames",                    "1"                     },
1559   { "em_gate_1_gray.EDITOR",                    "RocksSP.pcx"           },
1560   { "em_gate_1_gray.EDITOR.xpos",               "12"                    },
1561   { "em_gate_1_gray.EDITOR.ypos",               "11"                    },
1562   { "em_gate_1_gray.active",                    "RocksSP.pcx"           },
1563   { "em_gate_1_gray.active.xpos",               "0"                     },
1564   { "em_gate_1_gray.active.ypos",               "7"                     },
1565   { "em_gate_1_gray.active.frames",             "1"                     },
1566   { "em_gate_2_gray",                           "RocksSP.pcx"           },
1567   { "em_gate_2_gray.xpos",                      "5"                     },
1568   { "em_gate_2_gray.ypos",                      "7"                     },
1569   { "em_gate_2_gray.frames",                    "1"                     },
1570   { "em_gate_2_gray.EDITOR",                    "RocksSP.pcx"           },
1571   { "em_gate_2_gray.EDITOR.xpos",               "13"                    },
1572   { "em_gate_2_gray.EDITOR.ypos",               "11"                    },
1573   { "em_gate_2_gray.active",                    "RocksSP.pcx"           },
1574   { "em_gate_2_gray.active.xpos",               "1"                     },
1575   { "em_gate_2_gray.active.ypos",               "7"                     },
1576   { "em_gate_2_gray.active.frames",             "1"                     },
1577   { "em_gate_3_gray",                           "RocksSP.pcx"           },
1578   { "em_gate_3_gray.xpos",                      "6"                     },
1579   { "em_gate_3_gray.ypos",                      "7"                     },
1580   { "em_gate_3_gray.frames",                    "1"                     },
1581   { "em_gate_3_gray.EDITOR",                    "RocksSP.pcx"           },
1582   { "em_gate_3_gray.EDITOR.xpos",               "14"                    },
1583   { "em_gate_3_gray.EDITOR.ypos",               "11"                    },
1584   { "em_gate_3_gray.active",                    "RocksSP.pcx"           },
1585   { "em_gate_3_gray.active.xpos",               "2"                     },
1586   { "em_gate_3_gray.active.ypos",               "7"                     },
1587   { "em_gate_3_gray.active.frames",             "1"                     },
1588   { "em_gate_4_gray",                           "RocksSP.pcx"           },
1589   { "em_gate_4_gray.xpos",                      "7"                     },
1590   { "em_gate_4_gray.ypos",                      "7"                     },
1591   { "em_gate_4_gray.frames",                    "1"                     },
1592   { "em_gate_4_gray.EDITOR",                    "RocksSP.pcx"           },
1593   { "em_gate_4_gray.EDITOR.xpos",               "15"                    },
1594   { "em_gate_4_gray.EDITOR.ypos",               "11"                    },
1595   { "em_gate_4_gray.active",                    "RocksSP.pcx"           },
1596   { "em_gate_4_gray.active.xpos",               "3"                     },
1597   { "em_gate_4_gray.active.ypos",               "7"                     },
1598   { "em_gate_4_gray.active.frames",             "1"                     },
1599
1600   { "dc_gate_white_gray",                       "RocksSP.pcx"           },
1601   { "dc_gate_white_gray.xpos",                  "7"                     },
1602   { "dc_gate_white_gray.ypos",                  "7"                     },
1603   { "dc_gate_white_gray.frames",                "1"                     },
1604   { "dc_gate_white_gray.EDITOR",                "RocksSP.pcx"           },
1605   { "dc_gate_white_gray.EDITOR.xpos",           "15"                    },
1606   { "dc_gate_white_gray.EDITOR.ypos",           "1"                     },
1607   { "dc_gate_white_gray.active",                "RocksSP.pcx"           },
1608   { "dc_gate_white_gray.active.xpos",           "14"                    },
1609   { "dc_gate_white_gray.active.ypos",           "1"                     },
1610   { "dc_gate_white_gray.active.frames",         "1"                     },
1611
1612   { "dc_gate_fake_gray",                        "RocksSP.pcx"           },
1613   { "dc_gate_fake_gray.xpos",                   "7"                     },
1614   { "dc_gate_fake_gray.ypos",                   "7"                     },
1615   { "dc_gate_fake_gray.frames",                 "1"                     },
1616
1617   { "exit_closed",                              "RocksElements.pcx"     },
1618   { "exit_closed.xpos",                         "0"                     },
1619   { "exit_closed.ypos",                         "11"                    },
1620   { "exit_closed.frames",                       "1"                     },
1621   { "exit.opening",                             "RocksElements.pcx"     },
1622   { "exit.opening.xpos",                        "0"                     },
1623   { "exit.opening.ypos",                        "11"                    },
1624   { "exit.opening.frames",                      "5"                     },
1625   { "exit.opening.delay",                       "6"                     },
1626   { "exit.opening.anim_mode",                   "linear"                },
1627   { "exit_open",                                "RocksElements.pcx"     },
1628   { "exit_open.xpos",                           "4"                     },
1629   { "exit_open.ypos",                           "11"                    },
1630   { "exit_open.frames",                         "4"                     },
1631   { "exit_open.delay",                          "4"                     },
1632   { "exit_open.anim_mode",                      "pingpong"              },
1633   { "exit.closing",                             "RocksElements.pcx"     },
1634   { "exit.closing.xpos",                        "0"                     },
1635   { "exit.closing.ypos",                        "11"                    },
1636   { "exit.closing.frames",                      "5"                     },
1637   { "exit.closing.delay",                       "6"                     },
1638   { "exit.closing.anim_mode",                   "linear,reverse"        },
1639
1640   { "steel_exit_closed",                        "RocksDC2.pcx"  },
1641   { "steel_exit_closed.xpos",                   "8"                     },
1642   { "steel_exit_closed.ypos",                   "0"                     },
1643   { "steel_exit_closed.frames",                 "1"                     },
1644   { "steel_exit.opening",                       "RocksDC2.pcx"  },
1645   { "steel_exit.opening.xpos",                  "8"                     },
1646   { "steel_exit.opening.ypos",                  "0"                     },
1647   { "steel_exit.opening.frames",                "5"                     },
1648   { "steel_exit.opening.delay",                 "6"                     },
1649   { "steel_exit.opening.anim_mode",             "linear"                },
1650   { "steel_exit_open",                          "RocksDC2.pcx"  },
1651   { "steel_exit_open.xpos",                     "12"                    },
1652   { "steel_exit_open.ypos",                     "0"                     },
1653   { "steel_exit_open.frames",                   "4"                     },
1654   { "steel_exit_open.delay",                    "4"                     },
1655   { "steel_exit_open.anim_mode",                "pingpong"              },
1656   { "steel_exit.closing",                       "RocksDC2.pcx"  },
1657   { "steel_exit.closing.xpos",                  "8"                     },
1658   { "steel_exit.closing.ypos",                  "0"                     },
1659   { "steel_exit.closing.frames",                "5"                     },
1660   { "steel_exit.closing.delay",                 "6"                     },
1661   { "steel_exit.closing.anim_mode",             "linear,reverse"        },
1662
1663   { "em_exit_closed",                           "RocksDC2.pcx"  },
1664   { "em_exit_closed.xpos",                      "0"                     },
1665   { "em_exit_closed.ypos",                      "4"                     },
1666   { "em_exit_closed.frames",                    "1"                     },
1667   { "em_exit.opening",                          "RocksDC2.pcx"  },
1668   { "em_exit.opening.xpos",                     "0"                     },
1669   { "em_exit.opening.ypos",                     "4"                     },
1670   { "em_exit.opening.frames",                   "5"                     },
1671   { "em_exit.opening.delay",                    "6"                     },
1672   { "em_exit.opening.anim_mode",                "linear"                },
1673   { "em_exit_open",                             "RocksDC2.pcx"  },
1674   { "em_exit_open.xpos",                        "4"                     },
1675   { "em_exit_open.ypos",                        "4"                     },
1676   { "em_exit_open.frames",                      "4"                     },
1677   { "em_exit_open.delay",                       "4"                     },
1678   { "em_exit_open.anim_mode",                   "pingpong"              },
1679   { "em_exit.closing",                          "RocksDC2.pcx"  },
1680   { "em_exit.closing.xpos",                     "0"                     },
1681   { "em_exit.closing.ypos",                     "6"                     },
1682   { "em_exit.closing.frames",                   "5"                     },
1683   { "em_exit.closing.delay",                    "6"                     },
1684   { "em_exit.closing.anim_mode",                "linear"                },
1685
1686   { "em_steel_exit_closed",                     "RocksDC2.pcx"  },
1687   { "em_steel_exit_closed.xpos",                "0"                     },
1688   { "em_steel_exit_closed.ypos",                "5"                     },
1689   { "em_steel_exit_closed.frames",              "1"                     },
1690   { "em_steel_exit.opening",                    "RocksDC2.pcx"  },
1691   { "em_steel_exit.opening.xpos",               "0"                     },
1692   { "em_steel_exit.opening.ypos",               "5"                     },
1693   { "em_steel_exit.opening.frames",             "5"                     },
1694   { "em_steel_exit.opening.delay",              "6"                     },
1695   { "em_steel_exit.opening.anim_mode",          "linear"                },
1696   { "em_steel_exit_open",                       "RocksDC2.pcx"  },
1697   { "em_steel_exit_open.xpos",                  "4"                     },
1698   { "em_steel_exit_open.ypos",                  "5"                     },
1699   { "em_steel_exit_open.frames",                "4"                     },
1700   { "em_steel_exit_open.delay",                 "4"                     },
1701   { "em_steel_exit_open.anim_mode",             "pingpong"              },
1702   { "em_steel_exit.closing",                    "RocksDC2.pcx"  },
1703   { "em_steel_exit.closing.xpos",               "0"                     },
1704   { "em_steel_exit.closing.ypos",               "7"                     },
1705   { "em_steel_exit.closing.frames",             "5"                     },
1706   { "em_steel_exit.closing.delay",              "6"                     },
1707   { "em_steel_exit.closing.anim_mode",          "linear"                },
1708
1709   /* images for Emerald Mine Club style elements and actions */
1710
1711   { "balloon",                                  "RocksDC.pcx"           },
1712   { "balloon.xpos",                             "12"                    },
1713   { "balloon.ypos",                             "7"                     },
1714   { "balloon.frames",                           "1"                     },
1715   { "balloon.moving",                           "RocksDC.pcx"           },
1716   { "balloon.moving.xpos",                      "12"                    },
1717   { "balloon.moving.ypos",                      "7"                     },
1718   { "balloon.moving.frames",                    "4"                     },
1719   { "balloon.moving.anim_mode",                 "pingpong"              },
1720   { "balloon.moving.delay",                     "2"                     },
1721   { "balloon.pushing",                          "RocksDC.pcx"           },
1722   { "balloon.pushing.xpos",                     "12"                    },
1723   { "balloon.pushing.ypos",                     "7"                     },
1724   { "balloon.pushing.frames",                   "4"                     },
1725   { "balloon.pushing.anim_mode",                "pingpong"              },
1726   { "balloon.pushing.delay",                    "2"                     },
1727   { "balloon_switch_left",                      "RocksDC.pcx"           },
1728   { "balloon_switch_left.xpos",                 "8"                     },
1729   { "balloon_switch_left.ypos",                 "7"                     },
1730   { "balloon_switch_left.frames",               "1"                     },
1731   { "balloon_switch_right",                     "RocksDC.pcx"           },
1732   { "balloon_switch_right.xpos",                "9"                     },
1733   { "balloon_switch_right.ypos",                "7"                     },
1734   { "balloon_switch_right.frames",              "1"                     },
1735   { "balloon_switch_up",                        "RocksDC.pcx"           },
1736   { "balloon_switch_up.xpos",                   "10"                    },
1737   { "balloon_switch_up.ypos",                   "7"                     },
1738   { "balloon_switch_up.frames",                 "1"                     },
1739   { "balloon_switch_down",                      "RocksDC.pcx"           },
1740   { "balloon_switch_down.xpos",                 "11"                    },
1741   { "balloon_switch_down.ypos",                 "7"                     },
1742   { "balloon_switch_down.frames",               "1"                     },
1743   { "balloon_switch_any",                       "RocksDC.pcx"           },
1744   { "balloon_switch_any.xpos",                  "15"                    },
1745   { "balloon_switch_any.ypos",                  "0"                     },
1746   { "balloon_switch_any.frames",                "1"                     },
1747   { "balloon_switch_none",                      "RocksDC.pcx"           },
1748   { "balloon_switch_none.xpos",                 "13"                    },
1749   { "balloon_switch_none.ypos",                 "5"                     },
1750   { "balloon_switch_none.frames",               "1"                     },
1751
1752   { "spring",                                   "RocksDC.pcx"           },
1753   { "spring.xpos",                              "8"                     },
1754   { "spring.ypos",                              "13"                    },
1755   { "spring.frames",                            "1"                     },
1756
1757   { "emc_steelwall_1",                          "RocksDC.pcx"           },
1758   { "emc_steelwall_1.xpos",                     "14"                    },
1759   { "emc_steelwall_1.ypos",                     "0"                     },
1760   { "emc_steelwall_1.frames",                   "1"                     },
1761   { "emc_steelwall_2",                          "RocksEMC.pcx"          },
1762   { "emc_steelwall_2.xpos",                     "9"                     },
1763   { "emc_steelwall_2.ypos",                     "8"                     },
1764   { "emc_steelwall_2.frames",                   "1"                     },
1765   { "emc_steelwall_3",                          "RocksEMC.pcx"          },
1766   { "emc_steelwall_3.xpos",                     "9"                     },
1767   { "emc_steelwall_3.ypos",                     "9"                     },
1768   { "emc_steelwall_3.frames",                   "1"                     },
1769   { "emc_steelwall_4",                          "RocksEMC.pcx"          },
1770   { "emc_steelwall_4.xpos",                     "9"                     },
1771   { "emc_steelwall_4.ypos",                     "10"                    },
1772   { "emc_steelwall_4.frames",                   "1"                     },
1773
1774   { "emc_wall_1",                               "RocksDC.pcx"           },
1775   { "emc_wall_1.xpos",                          "13"                    },
1776   { "emc_wall_1.ypos",                          "6"                     },
1777   { "emc_wall_1.frames",                        "1"                     },
1778   { "emc_wall_2",                               "RocksDC.pcx"           },
1779   { "emc_wall_2.xpos",                          "14"                    },
1780   { "emc_wall_2.ypos",                          "6"                     },
1781   { "emc_wall_2.frames",                        "1"                     },
1782   { "emc_wall_3",                               "RocksDC.pcx"           },
1783   { "emc_wall_3.xpos",                          "15"                    },
1784   { "emc_wall_3.ypos",                          "6"                     },
1785   { "emc_wall_3.frames",                        "1"                     },
1786   { "emc_wall_4",                               "RocksDC.pcx"           },
1787   { "emc_wall_4.xpos",                          "14"                    },
1788   { "emc_wall_4.ypos",                          "1"                     },
1789   { "emc_wall_4.frames",                        "1"                     },
1790   { "emc_wall_5",                               "RocksDC.pcx"           },
1791   { "emc_wall_5.xpos",                          "15"                    },
1792   { "emc_wall_5.ypos",                          "1"                     },
1793   { "emc_wall_5.frames",                        "1"                     },
1794   { "emc_wall_6",                               "RocksDC.pcx"           },
1795   { "emc_wall_6.xpos",                          "14"                    },
1796   { "emc_wall_6.ypos",                          "2"                     },
1797   { "emc_wall_6.frames",                        "1"                     },
1798   { "emc_wall_7",                               "RocksDC.pcx"           },
1799   { "emc_wall_7.xpos",                          "15"                    },
1800   { "emc_wall_7.ypos",                          "2"                     },
1801   { "emc_wall_7.frames",                        "1"                     },
1802   { "emc_wall_8",                               "RocksEMC.pcx"          },
1803   { "emc_wall_8.xpos",                          "8"                     },
1804   { "emc_wall_8.ypos",                          "7"                     },
1805   { "emc_wall_8.frames",                        "1"                     },
1806
1807   /* images for Diamond Caves style elements and actions */
1808
1809   { "invisible_steelwall",                      "RocksSP.pcx"           },
1810   { "invisible_steelwall.xpos",                 "3"                     },
1811   { "invisible_steelwall.ypos",                 "5"                     },
1812   { "invisible_steelwall.frames",               "1"                     },
1813   { "invisible_steelwall.EDITOR",               "RocksSP.pcx"           },
1814   { "invisible_steelwall.EDITOR.xpos",          "1"                     },
1815   { "invisible_steelwall.EDITOR.ypos",          "5"                     },
1816   { "invisible_steelwall.active",               "RocksSP.pcx"           },
1817   { "invisible_steelwall.active.xpos",          "1"                     },
1818   { "invisible_steelwall.active.ypos",          "5"                     },
1819   { "invisible_steelwall.active.frames",        "1"                     },
1820
1821   { "invisible_wall",                           "RocksSP.pcx"           },
1822   { "invisible_wall.xpos",                      "7"                     },
1823   { "invisible_wall.ypos",                      "5"                     },
1824   { "invisible_wall.frames",                    "1"                     },
1825   { "invisible_wall.EDITOR",                    "RocksSP.pcx"           },
1826   { "invisible_wall.EDITOR.xpos",               "5"                     },
1827   { "invisible_wall.EDITOR.ypos",               "5"                     },
1828   { "invisible_wall.active",                    "RocksSP.pcx"           },
1829   { "invisible_wall.active.xpos",               "5"                     },
1830   { "invisible_wall.active.ypos",               "5"                     },
1831   { "invisible_wall.active.frames",             "1"                     },
1832
1833   { "invisible_sand",                           "RocksSP.pcx"           },
1834   { "invisible_sand.xpos",                      "0"                     },
1835   { "invisible_sand.ypos",                      "0"                     },
1836   { "invisible_sand.frames",                    "1"                     },
1837   { "invisible_sand.EDITOR",                    "RocksEMC.pcx"          },
1838   { "invisible_sand.EDITOR.xpos",               "2"                     },
1839   { "invisible_sand.EDITOR.ypos",               "4"                     },
1840   { "invisible_sand.active",                    "RocksEMC.pcx"          },
1841   { "invisible_sand.active.xpos",               "2"                     },
1842   { "invisible_sand.active.ypos",               "4"                     },
1843   { "invisible_sand.active.frames",             "1"                     },
1844   { "invisible_sand.active.CRUMBLED",           "RocksEMC.pcx"          },
1845   { "invisible_sand.active.CRUMBLED.xpos",      "3"                     },
1846   { "invisible_sand.active.CRUMBLED.ypos",      "4"                     },
1847   { "invisible_sand.active.CRUMBLED.frames",    "1"                     },
1848   { "invisible_sand.active.digging.left",       "RocksEMC.pcx"          },
1849   { "invisible_sand.active.digging.left.xpos",  "6"                     },
1850   { "invisible_sand.active.digging.left.ypos",  "2"                     },
1851   { "invisible_sand.active.digging.left.frames","3"                     },
1852   { "invisible_sand.active.digging.left.delay", "2"                     },
1853   { "invisible_sand.active.digging.left.anim_mode","linear"             },
1854   { "invisible_sand.active.digging.right",      "RocksEMC.pcx"          },
1855   { "invisible_sand.active.digging.right.xpos", "9"                     },
1856   { "invisible_sand.active.digging.right.ypos", "2"                     },
1857   { "invisible_sand.active.digging.right.frames","3"                    },
1858   { "invisible_sand.active.digging.right.delay","2"                     },
1859   { "invisible_sand.active.digging.right.anim_mode","linear"            },
1860   { "invisible_sand.active.digging.up",         "RocksEMC.pcx"          },
1861   { "invisible_sand.active.digging.up.xpos",    "0"                     },
1862   { "invisible_sand.active.digging.up.ypos",    "2"                     },
1863   { "invisible_sand.active.digging.up.frames",  "3"                     },
1864   { "invisible_sand.active.digging.up.delay",   "2"                     },
1865   { "invisible_sand.active.digging.up.anim_mode","linear"               },
1866   { "invisible_sand.active.digging.down",       "RocksEMC.pcx"          },
1867   { "invisible_sand.active.digging.down.xpos",  "3"                     },
1868   { "invisible_sand.active.digging.down.ypos",  "2"                     },
1869   { "invisible_sand.active.digging.down.frames","3"                     },
1870   { "invisible_sand.active.digging.down.delay", "2"                     },
1871   { "invisible_sand.active.digging.down.anim_mode","linear"             },
1872   { "invisible_sand.active.digging.left.CRUMBLED",      "RocksEMC.pcx"  },
1873   { "invisible_sand.active.digging.left.CRUMBLED.xpos", "6"             },
1874   { "invisible_sand.active.digging.left.CRUMBLED.ypos", "3"             },
1875   { "invisible_sand.active.digging.left.CRUMBLED.frames","3"            },
1876   { "invisible_sand.active.digging.left.CRUMBLED.delay","2"             },
1877   { "invisible_sand.active.digging.left.CRUMBLED.anim_mode","linear"    },
1878   { "invisible_sand.active.digging.right.CRUMBLED",     "RocksEMC.pcx"  },
1879   { "invisible_sand.active.digging.right.CRUMBLED.xpos","9"             },
1880   { "invisible_sand.active.digging.right.CRUMBLED.ypos","3"             },
1881   { "invisible_sand.active.digging.right.CRUMBLED.frames","3"           },
1882   { "invisible_sand.active.digging.right.CRUMBLED.delay","2"            },
1883   { "invisible_sand.active.digging.right.CRUMBLED.anim_mode","linear"   },
1884   { "invisible_sand.active.digging.up.CRUMBLED",        "RocksEMC.pcx"  },
1885   { "invisible_sand.active.digging.up.CRUMBLED.xpos",   "0"             },
1886   { "invisible_sand.active.digging.up.CRUMBLED.ypos",   "3"             },
1887   { "invisible_sand.active.digging.up.CRUMBLED.frames", "3"             },
1888   { "invisible_sand.active.digging.up.CRUMBLED.delay",  "2"             },
1889   { "invisible_sand.active.digging.up.CRUMBLED.anim_mode","linear"      },
1890   { "invisible_sand.active.digging.down.CRUMBLED",      "RocksEMC.pcx"  },
1891   { "invisible_sand.active.digging.down.CRUMBLED.xpos", "3"             },
1892   { "invisible_sand.active.digging.down.CRUMBLED.ypos", "3"             },
1893   { "invisible_sand.active.digging.down.CRUMBLED.frames","3"            },
1894   { "invisible_sand.active.digging.down.CRUMBLED.delay","2"             },
1895   { "invisible_sand.active.digging.down.CRUMBLED.anim_mode","linear"    },
1896
1897   { "conveyor_belt_1_middle",                   "RocksDC.pcx"           },
1898   { "conveyor_belt_1_middle.xpos",              "0"                     },
1899   { "conveyor_belt_1_middle.ypos",              "0"                     },
1900   { "conveyor_belt_1_middle.frames",            "1"                     },
1901   { "conveyor_belt_1_middle.active",            "RocksDC.pcx"           },
1902   { "conveyor_belt_1_middle.active.xpos",       "0"                     },
1903   { "conveyor_belt_1_middle.active.ypos",       "0"                     },
1904   { "conveyor_belt_1_middle.active.frames",     "8"                     },
1905   { "conveyor_belt_1_middle.active.delay",      "2"                     },
1906   { "conveyor_belt_1_left",                     "RocksDC.pcx"           },
1907   { "conveyor_belt_1_left.xpos",                "0"                     },
1908   { "conveyor_belt_1_left.ypos",                "1"                     },
1909   { "conveyor_belt_1_left.frames",              "1"                     },
1910   { "conveyor_belt_1_left.active",              "RocksDC.pcx"           },
1911   { "conveyor_belt_1_left.active.xpos",         "0"                     },
1912   { "conveyor_belt_1_left.active.ypos",         "1"                     },
1913   { "conveyor_belt_1_left.active.frames",       "8"                     },
1914   { "conveyor_belt_1_left.active.delay",        "2"                     },
1915   { "conveyor_belt_1_right",                    "RocksDC.pcx"           },
1916   { "conveyor_belt_1_right.xpos",               "0"                     },
1917   { "conveyor_belt_1_right.ypos",               "2"                     },
1918   { "conveyor_belt_1_right.frames",             "1"                     },
1919   { "conveyor_belt_1_right.active",             "RocksDC.pcx"           },
1920   { "conveyor_belt_1_right.active.xpos",        "0"                     },
1921   { "conveyor_belt_1_right.active.ypos",        "2"                     },
1922   { "conveyor_belt_1_right.active.frames",      "8"                     },
1923   { "conveyor_belt_1_right.active.delay",       "2"                     },
1924   { "conveyor_belt_1_switch_left",              "RocksDC.pcx"           },
1925   { "conveyor_belt_1_switch_left.xpos",         "0"                     },
1926   { "conveyor_belt_1_switch_left.ypos",         "12"                    },
1927   { "conveyor_belt_1_switch_left.frames",       "1"                     },
1928   { "conveyor_belt_1_switch_middle",            "RocksDC.pcx"           },
1929   { "conveyor_belt_1_switch_middle.xpos",       "0"                     },
1930   { "conveyor_belt_1_switch_middle.ypos",       "13"                    },
1931   { "conveyor_belt_1_switch_middle.frames",     "1"                     },
1932   { "conveyor_belt_1_switch_right",             "RocksDC.pcx"           },
1933   { "conveyor_belt_1_switch_right.xpos",        "0"                     },
1934   { "conveyor_belt_1_switch_right.ypos",        "14"                    },
1935   { "conveyor_belt_1_switch_right.frames",      "1"                     },
1936
1937   { "conveyor_belt_2_middle",                   "RocksDC.pcx"           },
1938   { "conveyor_belt_2_middle.xpos",              "0"                     },
1939   { "conveyor_belt_2_middle.ypos",              "3"                     },
1940   { "conveyor_belt_2_middle.frames",            "1"                     },
1941   { "conveyor_belt_2_middle.active",            "RocksDC.pcx"           },
1942   { "conveyor_belt_2_middle.active.xpos",       "0"                     },
1943   { "conveyor_belt_2_middle.active.ypos",       "3"                     },
1944   { "conveyor_belt_2_middle.active.frames",     "8"                     },
1945   { "conveyor_belt_2_middle.active.delay",      "2"                     },
1946   { "conveyor_belt_2_left",                     "RocksDC.pcx"           },
1947   { "conveyor_belt_2_left.xpos",                "0"                     },
1948   { "conveyor_belt_2_left.ypos",                "4"                     },
1949   { "conveyor_belt_2_left.frames",              "1"                     },
1950   { "conveyor_belt_2_left.active",              "RocksDC.pcx"           },
1951   { "conveyor_belt_2_left.active.xpos",         "0"                     },
1952   { "conveyor_belt_2_left.active.ypos",         "4"                     },
1953   { "conveyor_belt_2_left.active.frames",       "8"                     },
1954   { "conveyor_belt_2_left.active.delay",        "2"                     },
1955   { "conveyor_belt_2_right",                    "RocksDC.pcx"           },
1956   { "conveyor_belt_2_right.xpos",               "0"                     },
1957   { "conveyor_belt_2_right.ypos",               "5"                     },
1958   { "conveyor_belt_2_right.frames",             "1"                     },
1959   { "conveyor_belt_2_right.active",             "RocksDC.pcx"           },
1960   { "conveyor_belt_2_right.active.xpos",        "0"                     },
1961   { "conveyor_belt_2_right.active.ypos",        "5"                     },
1962   { "conveyor_belt_2_right.active.frames",      "8"                     },
1963   { "conveyor_belt_2_right.active.delay",       "2"                     },
1964   { "conveyor_belt_2_switch_left",              "RocksDC.pcx"           },
1965   { "conveyor_belt_2_switch_left.xpos",         "1"                     },
1966   { "conveyor_belt_2_switch_left.ypos",         "12"                    },
1967   { "conveyor_belt_2_switch_left.frames",       "1"                     },
1968   { "conveyor_belt_2_switch_middle",            "RocksDC.pcx"           },
1969   { "conveyor_belt_2_switch_middle.xpos",       "1"                     },
1970   { "conveyor_belt_2_switch_middle.ypos",       "13"                    },
1971   { "conveyor_belt_2_switch_middle.frames",     "1"                     },
1972   { "conveyor_belt_2_switch_right",             "RocksDC.pcx"           },
1973   { "conveyor_belt_2_switch_right.xpos",        "1"                     },
1974   { "conveyor_belt_2_switch_right.ypos",        "14"                    },
1975   { "conveyor_belt_2_switch_right.frames",      "1"                     },
1976
1977   { "conveyor_belt_3_middle",                   "RocksDC.pcx"           },
1978   { "conveyor_belt_3_middle.xpos",              "0"                     },
1979   { "conveyor_belt_3_middle.ypos",              "6"                     },
1980   { "conveyor_belt_3_middle.frames",            "1"                     },
1981   { "conveyor_belt_3_middle.active",            "RocksDC.pcx"           },
1982   { "conveyor_belt_3_middle.active.xpos",       "0"                     },
1983   { "conveyor_belt_3_middle.active.ypos",       "6"                     },
1984   { "conveyor_belt_3_middle.active.frames",     "8"                     },
1985   { "conveyor_belt_3_middle.active.delay",      "2"                     },
1986   { "conveyor_belt_3_left",                     "RocksDC.pcx"           },
1987   { "conveyor_belt_3_left.xpos",                "0"                     },
1988   { "conveyor_belt_3_left.ypos",                "7"                     },
1989   { "conveyor_belt_3_left.frames",              "1"                     },
1990   { "conveyor_belt_3_left.active",              "RocksDC.pcx"           },
1991   { "conveyor_belt_3_left.active.xpos",         "0"                     },
1992   { "conveyor_belt_3_left.active.ypos",         "7"                     },
1993   { "conveyor_belt_3_left.active.frames",       "8"                     },
1994   { "conveyor_belt_3_left.active.delay",        "2"                     },
1995   { "conveyor_belt_3_right",                    "RocksDC.pcx"           },
1996   { "conveyor_belt_3_right.xpos",               "0"                     },
1997   { "conveyor_belt_3_right.ypos",               "8"                     },
1998   { "conveyor_belt_3_right.frames",             "1"                     },
1999   { "conveyor_belt_3_right.active",             "RocksDC.pcx"           },
2000   { "conveyor_belt_3_right.active.xpos",        "0"                     },
2001   { "conveyor_belt_3_right.active.ypos",        "8"                     },
2002   { "conveyor_belt_3_right.active.frames",      "8"                     },
2003   { "conveyor_belt_3_right.active.delay",       "2"                     },
2004   { "conveyor_belt_3_switch_left",              "RocksDC.pcx"           },
2005   { "conveyor_belt_3_switch_left.xpos",         "2"                     },
2006   { "conveyor_belt_3_switch_left.ypos",         "12"                    },
2007   { "conveyor_belt_3_switch_left.frames",       "1"                     },
2008   { "conveyor_belt_3_switch_middle",            "RocksDC.pcx"           },
2009   { "conveyor_belt_3_switch_middle.xpos",       "2"                     },
2010   { "conveyor_belt_3_switch_middle.ypos",       "13"                    },
2011   { "conveyor_belt_3_switch_middle.frames",     "1"                     },
2012   { "conveyor_belt_3_switch_right",             "RocksDC.pcx"           },
2013   { "conveyor_belt_3_switch_right.xpos",        "2"                     },
2014   { "conveyor_belt_3_switch_right.ypos",        "14"                    },
2015   { "conveyor_belt_3_switch_right.frames",      "1"                     },
2016
2017   { "conveyor_belt_4_middle",                   "RocksDC.pcx"           },
2018   { "conveyor_belt_4_middle.xpos",              "0"                     },
2019   { "conveyor_belt_4_middle.ypos",              "9"                     },
2020   { "conveyor_belt_4_middle.frames",            "1"                     },
2021   { "conveyor_belt_4_middle.active",            "RocksDC.pcx"           },
2022   { "conveyor_belt_4_middle.active.xpos",       "0"                     },
2023   { "conveyor_belt_4_middle.active.ypos",       "9"                     },
2024   { "conveyor_belt_4_middle.active.frames",     "8"                     },
2025   { "conveyor_belt_4_middle.active.delay",      "2"                     },
2026   { "conveyor_belt_4_left",                     "RocksDC.pcx"           },
2027   { "conveyor_belt_4_left.xpos",                "0"                     },
2028   { "conveyor_belt_4_left.ypos",                "10"                    },
2029   { "conveyor_belt_4_left.frames",              "1"                     },
2030   { "conveyor_belt_4_left.active",              "RocksDC.pcx"           },
2031   { "conveyor_belt_4_left.active.xpos",         "0"                     },
2032   { "conveyor_belt_4_left.active.ypos",         "10"                    },
2033   { "conveyor_belt_4_left.active.frames",       "8"                     },
2034   { "conveyor_belt_4_left.active.delay",        "2"                     },
2035   { "conveyor_belt_4_right",                    "RocksDC.pcx"           },
2036   { "conveyor_belt_4_right.xpos",               "0"                     },
2037   { "conveyor_belt_4_right.ypos",               "11"                    },
2038   { "conveyor_belt_4_right.frames",             "1"                     },
2039   { "conveyor_belt_4_right.active",             "RocksDC.pcx"           },
2040   { "conveyor_belt_4_right.active.xpos",        "0"                     },
2041   { "conveyor_belt_4_right.active.ypos",        "11"                    },
2042   { "conveyor_belt_4_right.active.frames",      "8"                     },
2043   { "conveyor_belt_4_right.active.delay",       "2"                     },
2044   { "conveyor_belt_4_switch_left",              "RocksDC.pcx"           },
2045   { "conveyor_belt_4_switch_left.xpos",         "3"                     },
2046   { "conveyor_belt_4_switch_left.ypos",         "12"                    },
2047   { "conveyor_belt_4_switch_left.frames",       "1"                     },
2048   { "conveyor_belt_4_switch_middle",            "RocksDC.pcx"           },
2049   { "conveyor_belt_4_switch_middle.xpos",       "3"                     },
2050   { "conveyor_belt_4_switch_middle.ypos",       "13"                    },
2051   { "conveyor_belt_4_switch_middle.frames",     "1"                     },
2052   { "conveyor_belt_4_switch_right",             "RocksDC.pcx"           },
2053   { "conveyor_belt_4_switch_right.xpos",        "3"                     },
2054   { "conveyor_belt_4_switch_right.ypos",        "14"                    },
2055   { "conveyor_belt_4_switch_right.frames",      "1"                     },
2056
2057   { "switchgate_switch_up",                     "RocksDC.pcx"           },
2058   { "switchgate_switch_up.xpos",                "4"                     },
2059   { "switchgate_switch_up.ypos",                "12"                    },
2060   { "switchgate_switch_up.frames",              "1"                     },
2061   { "switchgate_switch_down",                   "RocksDC.pcx"           },
2062   { "switchgate_switch_down.xpos",              "5"                     },
2063   { "switchgate_switch_down.ypos",              "12"                    },
2064   { "switchgate_switch_down.frames",            "1"                     },
2065
2066   { "dc_switchgate_switch_up",                  "RocksDC2.pcx"          },
2067   { "dc_switchgate_switch_up.xpos",             "10"                    },
2068   { "dc_switchgate_switch_up.ypos",             "1"                     },
2069   { "dc_switchgate_switch_up.frames",           "1"                     },
2070   { "dc_switchgate_switch_down",                "RocksDC2.pcx"          },
2071   { "dc_switchgate_switch_down.xpos",           "11"                    },
2072   { "dc_switchgate_switch_down.ypos",           "1"                     },
2073   { "dc_switchgate_switch_down.frames",         "1"                     },
2074
2075   { "light_switch",                             "RocksDC.pcx"           },
2076   { "light_switch.xpos",                        "6"                     },
2077   { "light_switch.ypos",                        "12"                    },
2078   { "light_switch.frames",                      "1"                     },
2079   { "light_switch.active",                      "RocksDC.pcx"           },
2080   { "light_switch.active.xpos",                 "7"                     },
2081   { "light_switch.active.ypos",                 "12"                    },
2082   { "light_switch.active.frames",               "1"                     },
2083
2084   { "timegate_switch",                          "RocksDC.pcx"           },
2085   { "timegate_switch.xpos",                     "0"                     },
2086   { "timegate_switch.ypos",                     "15"                    },
2087   { "timegate_switch.frames",                   "1"                     },
2088   { "timegate_switch.active",                   "RocksDC.pcx"           },
2089   { "timegate_switch.active.xpos",              "0"                     },
2090   { "timegate_switch.active.ypos",              "15"                    },
2091   { "timegate_switch.active.frames",            "4"                     },
2092
2093   { "dc_timegate_switch",                       "RocksDC2.pcx"          },
2094   { "dc_timegate_switch.xpos",                  "12"                    },
2095   { "dc_timegate_switch.ypos",                  "1"                     },
2096   { "dc_timegate_switch.frames",                "1"                     },
2097   { "dc_timegate_switch.active",                "RocksDC2.pcx"          },
2098   { "dc_timegate_switch.active.xpos",           "12"                    },
2099   { "dc_timegate_switch.active.ypos",           "1"                     },
2100   { "dc_timegate_switch.active.frames",         "4"                     },
2101
2102   { "envelope_1",                               "RocksMore.pcx"         },
2103   { "envelope_1.xpos",                          "0"                     },
2104   { "envelope_1.ypos",                          "4"                     },
2105   { "envelope_1.frames",                        "1"                     },
2106   { "envelope_1.collecting",                    "RocksMore.pcx"         },
2107   { "envelope_1.collecting.xpos",               "5"                     },
2108   { "envelope_1.collecting.ypos",               "4"                     },
2109   { "envelope_1.collecting.frames",             "3"                     },
2110   { "envelope_1.collecting.delay",              "2"                     },
2111   { "envelope_1.collecting.anim_mode",          "linear"                },
2112   { "envelope_2",                               "RocksMore.pcx"         },
2113   { "envelope_2.xpos",                          "1"                     },
2114   { "envelope_2.ypos",                          "4"                     },
2115   { "envelope_2.frames",                        "1"                     },
2116   { "envelope_2.collecting",                    "RocksMore.pcx"         },
2117   { "envelope_2.collecting.xpos",               "5"                     },
2118   { "envelope_2.collecting.ypos",               "4"                     },
2119   { "envelope_2.collecting.frames",             "3"                     },
2120   { "envelope_2.collecting.delay",              "2"                     },
2121   { "envelope_2.collecting.anim_mode",          "linear"                },
2122   { "envelope_3",                               "RocksMore.pcx"         },
2123   { "envelope_3.xpos",                          "2"                     },
2124   { "envelope_3.ypos",                          "4"                     },
2125   { "envelope_3.frames",                        "1"                     },
2126   { "envelope_3.collecting",                    "RocksMore.pcx"         },
2127   { "envelope_3.collecting.xpos",               "5"                     },
2128   { "envelope_3.collecting.ypos",               "4"                     },
2129   { "envelope_3.collecting.frames",             "3"                     },
2130   { "envelope_3.collecting.delay",              "2"                     },
2131   { "envelope_3.collecting.anim_mode",          "linear"                },
2132   { "envelope_4",                               "RocksMore.pcx"         },
2133   { "envelope_4.xpos",                          "3"                     },
2134   { "envelope_4.ypos",                          "4"                     },
2135   { "envelope_4.frames",                        "1"                     },
2136   { "envelope_4.collecting",                    "RocksMore.pcx"         },
2137   { "envelope_4.collecting.xpos",               "5"                     },
2138   { "envelope_4.collecting.ypos",               "4"                     },
2139   { "envelope_4.collecting.frames",             "3"                     },
2140   { "envelope_4.collecting.delay",              "2"                     },
2141   { "envelope_4.collecting.anim_mode",          "linear"                },
2142
2143   { "sign_radioactivity",                       "RocksDC.pcx"           },
2144   { "sign_radioactivity.xpos",                  "4"                     },
2145   { "sign_radioactivity.ypos",                  "13"                    },
2146   { "sign_radioactivity.frames",                "1"                     },
2147
2148   { "sign_give_way",                            "RocksDC.pcx"           },
2149   { "sign_give_way.xpos",                       "5"                     },
2150   { "sign_give_way.ypos",                       "13"                    },
2151   { "sign_give_way.frames",                     "1"                     },
2152
2153   { "sign_no_entry",                            "RocksDC.pcx"           },
2154   { "sign_no_entry.xpos",                       "6"                     },
2155   { "sign_no_entry.ypos",                       "13"                    },
2156   { "sign_no_entry.frames",                     "1"                     },
2157
2158   { "sign_emergency_exit",                      "RocksDC.pcx"           },
2159   { "sign_emergency_exit.xpos",                 "7"                     },
2160   { "sign_emergency_exit.ypos",                 "13"                    },
2161   { "sign_emergency_exit.frames",               "1"                     },
2162
2163   { "sign_yin_yang",                            "RocksDC.pcx"           },
2164   { "sign_yin_yang.xpos",                       "4"                     },
2165   { "sign_yin_yang.ypos",                       "14"                    },
2166   { "sign_yin_yang.frames",                     "1"                     },
2167
2168   { "sign_exclamation",                         "RocksDC.pcx"           },
2169   { "sign_exclamation.xpos",                    "5"                     },
2170   { "sign_exclamation.ypos",                    "14"                    },
2171   { "sign_exclamation.frames",                  "1"                     },
2172
2173   { "sign_stop",                                "RocksDC.pcx"           },
2174   { "sign_stop.xpos",                           "6"                     },
2175   { "sign_stop.ypos",                           "14"                    },
2176   { "sign_stop.frames",                         "1"                     },
2177
2178   { "sign_parking",                             "RocksDC.pcx"           },
2179   { "sign_parking.xpos",                        "6"                     },
2180   { "sign_parking.ypos",                        "15"                    },
2181   { "sign_parking.frames",                      "1"                     },
2182
2183   { "sign_wheelchair",                          "RocksDC.pcx"           },
2184   { "sign_wheelchair.xpos",                     "7"                     },
2185   { "sign_wheelchair.ypos",                     "15"                    },
2186   { "sign_wheelchair.frames",                   "1"                     },
2187
2188   { "sign_entry_forbidden",                     "RocksDC.pcx"           },
2189   { "sign_entry_forbidden.xpos",                "12"                    },
2190   { "sign_entry_forbidden.ypos",                "15"                    },
2191   { "sign_entry_forbidden.frames",              "1"                     },
2192
2193   { "sperms",                                   "RocksDC2.pcx"          },
2194   { "sperms.xpos",                              "11"                    },
2195   { "sperms.ypos",                              "3"                     },
2196   { "sperms.frames",                            "1"                     },
2197
2198   { "bullet",                                   "RocksDC2.pcx"          },
2199   { "bullet.xpos",                              "12"                    },
2200   { "bullet.ypos",                              "3"                     },
2201   { "bullet.frames",                            "1"                     },
2202
2203   { "heart",                                    "RocksDC2.pcx"          },
2204   { "heart.xpos",                               "13"                    },
2205   { "heart.ypos",                               "3"                     },
2206   { "heart.frames",                             "1"                     },
2207
2208   { "cross",                                    "RocksDC2.pcx"          },
2209   { "cross.xpos",                               "14"                    },
2210   { "cross.ypos",                               "3"                     },
2211   { "cross.frames",                             "1"                     },
2212
2213   { "frankie",                                  "RocksDC2.pcx"          },
2214   { "frankie.xpos",                             "15"                    },
2215   { "frankie.ypos",                             "3"                     },
2216   { "frankie.frames",                           "1"                     },
2217
2218   { "sign_sperms",                              "RocksDC2.pcx"          },
2219   { "sign_sperms.xpos",                         "11"                    },
2220   { "sign_sperms.ypos",                         "2"                     },
2221   { "sign_sperms.frames",                       "1"                     },
2222
2223   { "sign_bullet",                              "RocksDC2.pcx"          },
2224   { "sign_bullet.xpos",                         "12"                    },
2225   { "sign_bullet.ypos",                         "2"                     },
2226   { "sign_bullet.frames",                       "1"                     },
2227
2228   { "sign_heart",                               "RocksDC2.pcx"          },
2229   { "sign_heart.xpos",                          "13"                    },
2230   { "sign_heart.ypos",                          "2"                     },
2231   { "sign_heart.frames",                        "1"                     },
2232
2233   { "sign_cross",                               "RocksDC2.pcx"          },
2234   { "sign_cross.xpos",                          "14"                    },
2235   { "sign_cross.ypos",                          "2"                     },
2236   { "sign_cross.frames",                        "1"                     },
2237
2238   { "sign_frankie",                             "RocksDC2.pcx"          },
2239   { "sign_frankie.xpos",                        "15"                    },
2240   { "sign_frankie.ypos",                        "2"                     },
2241   { "sign_frankie.frames",                      "1"                     },
2242
2243   { "landmine",                                 "RocksDC.pcx"           },
2244   { "landmine.xpos",                            "7"                     },
2245   { "landmine.ypos",                            "14"                    },
2246   { "landmine.frames",                          "1"                     },
2247   { "landmine.crumbled_like",                   "sand"                  },
2248
2249   { "dc_landmine",                              "RocksDC.pcx"           },
2250   { "dc_landmine.xpos",                         "14"                    },
2251   { "dc_landmine.ypos",                         "5"                     },
2252   { "dc_landmine.frames",                       "1"                     },
2253   { "dc_landmine.crumbled_like",                "sand"                  },
2254
2255   { "steelwall_slippery",                       "RocksDC.pcx"           },
2256   { "steelwall_slippery.xpos",                  "5"                     },
2257   { "steelwall_slippery.ypos",                  "15"                    },
2258   { "steelwall_slippery.frames",                "1"                     },
2259
2260   { "extra_time",                               "RocksDC.pcx"           },
2261   { "extra_time.xpos",                          "8"                     },
2262   { "extra_time.ypos",                          "0"                     },
2263   { "extra_time.frames",                        "6"                     },
2264   { "extra_time.delay",                         "4"                     },
2265
2266   { "shield_normal",                            "RocksDC.pcx"           },
2267   { "shield_normal.xpos",                       "8"                     },
2268   { "shield_normal.ypos",                       "2"                     },
2269   { "shield_normal.frames",                     "6"                     },
2270   { "shield_normal.delay",                      "4"                     },
2271   { "shield_normal.active",                     "RocksHeroes.pcx"       },
2272   { "shield_normal.active.xpos",                "1"                     },
2273   { "shield_normal.active.ypos",                "13"                    },
2274   { "shield_normal.active.frames",              "3"                     },
2275   { "shield_normal.active.delay",               "8"                     },
2276   { "shield_normal.active.anim_mode",           "pingpong"              },
2277
2278   { "shield_deadly",                            "RocksDC.pcx"           },
2279   { "shield_deadly.xpos",                       "8"                     },
2280   { "shield_deadly.ypos",                       "1"                     },
2281   { "shield_deadly.frames",                     "6"                     },
2282   { "shield_deadly.delay",                      "4"                     },
2283   { "shield_deadly.active",                     "RocksHeroes.pcx"       },
2284   { "shield_deadly.active.xpos",                "5"                     },
2285   { "shield_deadly.active.ypos",                "13"                    },
2286   { "shield_deadly.active.frames",              "3"                     },
2287   { "shield_deadly.active.delay",               "8"                     },
2288   { "shield_deadly.active.anim_mode",           "pingpong"              },
2289
2290   { "switchgate_closed",                        "RocksDC.pcx"           },
2291   { "switchgate_closed.xpos",                   "8"                     },
2292   { "switchgate_closed.ypos",                   "5"                     },
2293   { "switchgate_closed.frames",                 "1"                     },
2294   { "switchgate.opening",                       "RocksDC.pcx"           },
2295   { "switchgate.opening.xpos",                  "8"                     },
2296   { "switchgate.opening.ypos",                  "5"                     },
2297   { "switchgate.opening.frames",                "5"                     },
2298   { "switchgate.opening.delay",                 "6"                     },
2299   { "switchgate_open",                          "RocksDC.pcx"           },
2300   { "switchgate_open.xpos",                     "12"                    },
2301   { "switchgate_open.ypos",                     "5"                     },
2302   { "switchgate_open.frames",                   "1"                     },
2303   { "switchgate.closing",                       "RocksDC.pcx"           },
2304   { "switchgate.closing.xpos",                  "8"                     },
2305   { "switchgate.closing.ypos",                  "5"                     },
2306   { "switchgate.closing.frames",                "5"                     },
2307   { "switchgate.closing.delay",                 "6"                     },
2308   { "switchgate.closing.anim_mode",             "reverse"               },
2309
2310   { "timegate_closed",                          "RocksDC.pcx"           },
2311   { "timegate_closed.xpos",                     "8"                     },
2312   { "timegate_closed.ypos",                     "6"                     },
2313   { "timegate_closed.frames",                   "1"                     },
2314   { "timegate.opening",                         "RocksDC.pcx"           },
2315   { "timegate.opening.xpos",                    "8"                     },
2316   { "timegate.opening.ypos",                    "6"                     },
2317   { "timegate.opening.frames",                  "5"                     },
2318   { "timegate.opening.delay",                   "6"                     },
2319   { "timegate_open",                            "RocksDC.pcx"           },
2320   { "timegate_open.xpos",                       "12"                    },
2321   { "timegate_open.ypos",                       "6"                     },
2322   { "timegate_open.frames",                     "1"                     },
2323   { "timegate.closing",                         "RocksDC.pcx"           },
2324   { "timegate.closing.xpos",                    "8"                     },
2325   { "timegate.closing.ypos",                    "6"                     },
2326   { "timegate.closing.frames",                  "5"                     },
2327   { "timegate.closing.delay",                   "6"                     },
2328   { "timegate.closing.anim_mode",               "reverse"               },
2329
2330   { "pearl",                                    "RocksDC.pcx"           },
2331   { "pearl.xpos",                               "8"                     },
2332   { "pearl.ypos",                               "11"                    },
2333   { "pearl.frames",                             "1"                     },
2334   { "pearl.breaking",                           "RocksDC.pcx"           },
2335   { "pearl.breaking.xpos",                      "8"                     },
2336   { "pearl.breaking.ypos",                      "12"                    },
2337   { "pearl.breaking.frames",                    "4"                     },
2338   { "pearl.breaking.delay",                     "2"                     },
2339   { "pearl.breaking.anim_mode",                 "linear"                },
2340
2341   { "crystal",                                  "RocksDC.pcx"           },
2342   { "crystal.xpos",                             "9"                     },
2343   { "crystal.ypos",                             "11"                    },
2344   { "crystal.frames",                           "1"                     },
2345
2346   { "wall_pearl",                               "RocksDC.pcx"           },
2347   { "wall_pearl.xpos",                          "10"                    },
2348   { "wall_pearl.ypos",                          "11"                    },
2349   { "wall_pearl.frames",                        "1"                     },
2350
2351   { "wall_crystal",                             "RocksDC.pcx"           },
2352   { "wall_crystal.xpos",                        "11"                    },
2353   { "wall_crystal.ypos",                        "11"                    },
2354   { "wall_crystal.frames",                      "1"                     },
2355
2356   { "dc_steelwall_1_left",                      "RocksDC2.pcx"          },
2357   { "dc_steelwall_1_left.xpos",                 "5"                     },
2358   { "dc_steelwall_1_left.ypos",                 "1"                     },
2359   { "dc_steelwall_1_left.frames",               "1"                     },
2360   { "dc_steelwall_1_right",                     "RocksDC2.pcx"          },
2361   { "dc_steelwall_1_right.xpos",                "3"                     },
2362   { "dc_steelwall_1_right.ypos",                "1"                     },
2363   { "dc_steelwall_1_right.frames",              "1"                     },
2364   { "dc_steelwall_1_top",                       "RocksDC2.pcx"          },
2365   { "dc_steelwall_1_top.xpos",                  "4"                     },
2366   { "dc_steelwall_1_top.ypos",                  "2"                     },
2367   { "dc_steelwall_1_top.frames",                "1"                     },
2368   { "dc_steelwall_1_bottom",                    "RocksDC2.pcx"          },
2369   { "dc_steelwall_1_bottom.xpos",               "4"                     },
2370   { "dc_steelwall_1_bottom.ypos",               "0"                     },
2371   { "dc_steelwall_1_bottom.frames",             "1"                     },
2372   { "dc_steelwall_1_horizontal",                "RocksDC2.pcx"          },
2373   { "dc_steelwall_1_horizontal.xpos",           "1"                     },
2374   { "dc_steelwall_1_horizontal.ypos",           "0"                     },
2375   { "dc_steelwall_1_horizontal.frames",         "1"                     },
2376   { "dc_steelwall_1_vertical",                  "RocksDC2.pcx"          },
2377   { "dc_steelwall_1_vertical.xpos",             "0"                     },
2378   { "dc_steelwall_1_vertical.ypos",             "1"                     },
2379   { "dc_steelwall_1_vertical.frames",           "1"                     },
2380   { "dc_steelwall_1_topleft",                   "RocksDC2.pcx"          },
2381   { "dc_steelwall_1_topleft.xpos",              "0"                     },
2382   { "dc_steelwall_1_topleft.ypos",              "0"                     },
2383   { "dc_steelwall_1_topleft.frames",            "1"                     },
2384   { "dc_steelwall_1_topright",                  "RocksDC2.pcx"          },
2385   { "dc_steelwall_1_topright.xpos",             "2"                     },
2386   { "dc_steelwall_1_topright.ypos",             "0"                     },
2387   { "dc_steelwall_1_topright.frames",           "1"                     },
2388   { "dc_steelwall_1_bottomleft",                "RocksDC2.pcx"          },
2389   { "dc_steelwall_1_bottomleft.xpos",           "0"                     },
2390   { "dc_steelwall_1_bottomleft.ypos",           "2"                     },
2391   { "dc_steelwall_1_bottomleft.frames",         "1"                     },
2392   { "dc_steelwall_1_bottomright",               "RocksDC2.pcx"          },
2393   { "dc_steelwall_1_bottomright.xpos",          "2"                     },
2394   { "dc_steelwall_1_bottomright.ypos",          "2"                     },
2395   { "dc_steelwall_1_bottomright.frames",        "1"                     },
2396   { "dc_steelwall_1_topleft_2",                 "RocksDC2.pcx"          },
2397   { "dc_steelwall_1_topleft_2.xpos",            "5"                     },
2398   { "dc_steelwall_1_topleft_2.ypos",            "2"                     },
2399   { "dc_steelwall_1_topleft_2.frames",          "1"                     },
2400   { "dc_steelwall_1_topright_2",                "RocksDC2.pcx"          },
2401   { "dc_steelwall_1_topright_2.xpos",           "3"                     },
2402   { "dc_steelwall_1_topright_2.ypos",           "2"                     },
2403   { "dc_steelwall_1_topright_2.frames",         "1"                     },
2404   { "dc_steelwall_1_bottomleft_2",              "RocksDC2.pcx"          },
2405   { "dc_steelwall_1_bottomleft_2.xpos",         "5"                     },
2406   { "dc_steelwall_1_bottomleft_2.ypos",         "0"                     },
2407   { "dc_steelwall_1_bottomleft_2.frames",       "1"                     },
2408   { "dc_steelwall_1_bottomright_2",             "RocksDC2.pcx"          },
2409   { "dc_steelwall_1_bottomright_2.xpos",        "3"                     },
2410   { "dc_steelwall_1_bottomright_2.ypos",        "0"                     },
2411   { "dc_steelwall_1_bottomright_2.frames",      "1"                     },
2412
2413   { "dc_steelwall_2_left",                      "RocksDC2.pcx"          },
2414   { "dc_steelwall_2_left.xpos",                 "6"                     },
2415   { "dc_steelwall_2_left.ypos",                 "1"                     },
2416   { "dc_steelwall_2_left.frames",               "1"                     },
2417   { "dc_steelwall_2_right",                     "RocksDC2.pcx"          },
2418   { "dc_steelwall_2_right.xpos",                "9"                     },
2419   { "dc_steelwall_2_right.ypos",                "1"                     },
2420   { "dc_steelwall_2_right.frames",              "1"                     },
2421   { "dc_steelwall_2_top",                       "RocksDC2.pcx"          },
2422   { "dc_steelwall_2_top.xpos",                  "7"                     },
2423   { "dc_steelwall_2_top.ypos",                  "0"                     },
2424   { "dc_steelwall_2_top.frames",                "1"                     },
2425   { "dc_steelwall_2_bottom",                    "RocksDC2.pcx"          },
2426   { "dc_steelwall_2_bottom.xpos",               "7"                     },
2427   { "dc_steelwall_2_bottom.ypos",               "3"                     },
2428   { "dc_steelwall_2_bottom.frames",             "1"                     },
2429   { "dc_steelwall_2_horizontal",                "RocksDC2.pcx"          },
2430   { "dc_steelwall_2_horizontal.xpos",           "8"                     },
2431   { "dc_steelwall_2_horizontal.ypos",           "1"                     },
2432   { "dc_steelwall_2_horizontal.frames",         "1"                     },
2433   { "dc_steelwall_2_vertical",                  "RocksDC2.pcx"          },
2434   { "dc_steelwall_2_vertical.xpos",             "7"                     },
2435   { "dc_steelwall_2_vertical.ypos",             "2"                     },
2436   { "dc_steelwall_2_vertical.frames",           "1"                     },
2437   { "dc_steelwall_2_middle",                    "RocksDC2.pcx"          },
2438   { "dc_steelwall_2_middle.xpos",               "7"                     },
2439   { "dc_steelwall_2_middle.ypos",               "1"                     },
2440   { "dc_steelwall_2_middle.frames",             "1"                     },
2441   { "dc_steelwall_2_single",                    "RocksDC2.pcx"          },
2442   { "dc_steelwall_2_single.xpos",               "6"                     },
2443   { "dc_steelwall_2_single.ypos",               "0"                     },
2444   { "dc_steelwall_2_single.frames",             "1"                     },
2445
2446   /* images for DX Boulderdash style elements and actions */
2447
2448   { "tube_right_down",                          "RocksDC.pcx"           },
2449   { "tube_right_down.xpos",                     "9"                     },
2450   { "tube_right_down.ypos",                     "13"                    },
2451   { "tube_right_down.frames",                   "1"                     },
2452
2453   { "tube_horizontal_down",                     "RocksDC.pcx"           },
2454   { "tube_horizontal_down.xpos",                "10"                    },
2455   { "tube_horizontal_down.ypos",                "13"                    },
2456   { "tube_horizontal_down.frames",              "1"                     },
2457
2458   { "tube_left_down",                           "RocksDC.pcx"           },
2459   { "tube_left_down.xpos",                      "11"                    },
2460   { "tube_left_down.ypos",                      "13"                    },
2461   { "tube_left_down.frames",                    "1"                     },
2462
2463   { "tube_horizontal",                          "RocksDC.pcx"           },
2464   { "tube_horizontal.xpos",                     "8"                     },
2465   { "tube_horizontal.ypos",                     "14"                    },
2466   { "tube_horizontal.frames",                   "1"                     },
2467
2468   { "tube_vertical_right",                      "RocksDC.pcx"           },
2469   { "tube_vertical_right.xpos",                 "9"                     },
2470   { "tube_vertical_right.ypos",                 "14"                    },
2471   { "tube_vertical_right.frames",               "1"                     },
2472
2473   { "tube_any",                                 "RocksDC.pcx"           },
2474   { "tube_any.xpos",                            "10"                    },
2475   { "tube_any.ypos",                            "14"                    },
2476   { "tube_any.frames",                          "1"                     },
2477
2478   { "tube_vertical_left",                       "RocksDC.pcx"           },
2479   { "tube_vertical_left.xpos",                  "11"                    },
2480   { "tube_vertical_left.ypos",                  "14"                    },
2481   { "tube_vertical_left.frames",                "1"                     },
2482
2483   { "tube_vertical",                            "RocksDC.pcx"           },
2484   { "tube_vertical.xpos",                       "8"                     },
2485   { "tube_vertical.ypos",                       "15"                    },
2486   { "tube_vertical.frames",                     "1"                     },
2487
2488   { "tube_right_up",                            "RocksDC.pcx"           },
2489   { "tube_right_up.xpos",                       "9"                     },
2490   { "tube_right_up.ypos",                       "15"                    },
2491   { "tube_right_up.frames",                     "1"                     },
2492
2493   { "tube_horizontal_up",                       "RocksDC.pcx"           },
2494   { "tube_horizontal_up.xpos",                  "10"                    },
2495   { "tube_horizontal_up.ypos",                  "15"                    },
2496   { "tube_horizontal_up.frames",                "1"                     },
2497
2498   { "tube_left_up",                             "RocksDC.pcx"           },
2499   { "tube_left_up.xpos",                        "11"                    },
2500   { "tube_left_up.ypos",                        "15"                    },
2501   { "tube_left_up.frames",                      "1"                     },
2502
2503   { "trap",                                     "RocksDC.pcx"           },
2504   { "trap.xpos",                                "12"                    },
2505   { "trap.ypos",                                "8"                     },
2506   { "trap.frames",                              "1"                     },
2507   { "trap.crumbled_like",                       "sand"                  },
2508   { "trap.diggable_like",                       "sand"                  },
2509   { "trap.active",                              "RocksDC.pcx"           },
2510   { "trap.active.xpos",                         "12"                    },
2511   { "trap.active.ypos",                         "8"                     },
2512   { "trap.active.frames",                       "4"                     },
2513   { "trap.active.delay",                        "4"                     },
2514   { "trap.active.anim_mode",                    "pingpong2"             },
2515   { "trap.active.crumbled_like",                "sand"                  },
2516
2517   { "dx_supabomb",                              "RocksDC.pcx"           },
2518   { "dx_supabomb.xpos",                         "15"                    },
2519   { "dx_supabomb.ypos",                         "9"                     },
2520   { "dx_supabomb.frames",                       "1"                     },
2521
2522   /* images for Rocks'n'Diamonds style elements and actions */
2523
2524   { "key_1",                                    "RocksElements.pcx"     },
2525   { "key_1.xpos",                               "4"                     },
2526   { "key_1.ypos",                               "1"                     },
2527   { "key_1.frames",                             "1"                     },
2528   { "key_1.EDITOR",                             "RocksElements.pcx"     },
2529   { "key_1.EDITOR.xpos",                        "4"                     },
2530   { "key_1.EDITOR.ypos",                        "14"                    },
2531   { "key_2",                                    "RocksElements.pcx"     },
2532   { "key_2.xpos",                               "5"                     },
2533   { "key_2.ypos",                               "1"                     },
2534   { "key_2.frames",                             "1"                     },
2535   { "key_2.EDITOR",                             "RocksElements.pcx"     },
2536   { "key_2.EDITOR.xpos",                        "5"                     },
2537   { "key_2.EDITOR.ypos",                        "14"                    },
2538   { "key_3",                                    "RocksElements.pcx"     },
2539   { "key_3.xpos",                               "6"                     },
2540   { "key_3.ypos",                               "1"                     },
2541   { "key_3.frames",                             "1"                     },
2542   { "key_3.EDITOR",                             "RocksElements.pcx"     },
2543   { "key_3.EDITOR.xpos",                        "6"                     },
2544   { "key_3.EDITOR.ypos",                        "14"                    },
2545   { "key_4",                                    "RocksElements.pcx"     },
2546   { "key_4.xpos",                               "7"                     },
2547   { "key_4.ypos",                               "1"                     },
2548   { "key_4.frames",                             "1"                     },
2549   { "key_4.EDITOR",                             "RocksElements.pcx"     },
2550   { "key_4.EDITOR.xpos",                        "7"                     },
2551   { "key_4.EDITOR.ypos",                        "14"                    },
2552
2553   { "gate_1",                                   "RocksElements.pcx"     },
2554   { "gate_1.xpos",                              "4"                     },
2555   { "gate_1.ypos",                              "2"                     },
2556   { "gate_1.frames",                            "1"                     },
2557   { "gate_2",                                   "RocksElements.pcx"     },
2558   { "gate_2.xpos",                              "5"                     },
2559   { "gate_2.ypos",                              "2"                     },
2560   { "gate_2.frames",                            "1"                     },
2561   { "gate_3",                                   "RocksElements.pcx"     },
2562   { "gate_3.xpos",                              "6"                     },
2563   { "gate_3.ypos",                              "2"                     },
2564   { "gate_3.frames",                            "1"                     },
2565   { "gate_4",                                   "RocksElements.pcx"     },
2566   { "gate_4.xpos",                              "7"                     },
2567   { "gate_4.ypos",                              "2"                     },
2568   { "gate_4.frames",                            "1"                     },
2569   { "gate_1_gray",                              "RocksElements.pcx"     },
2570   { "gate_1_gray.xpos",                         "8"                     },
2571   { "gate_1_gray.ypos",                         "2"                     },
2572   { "gate_1_gray.frames",                       "1"                     },
2573   { "gate_1_gray.EDITOR",                       "RocksElements.pcx"     },
2574   { "gate_1_gray.EDITOR.xpos",                  "8"                     },
2575   { "gate_1_gray.EDITOR.ypos",                  "14"                    },
2576   { "gate_1_gray.active",                       "RocksElements.pcx"     },
2577   { "gate_1_gray.active.xpos",                  "4"                     },
2578   { "gate_1_gray.active.ypos",                  "2"                     },
2579   { "gate_1_gray.active.frames",                "1"                     },
2580   { "gate_2_gray",                              "RocksElements.pcx"     },
2581   { "gate_2_gray.xpos",                         "9"                     },
2582   { "gate_2_gray.ypos",                         "2"                     },
2583   { "gate_2_gray.frames",                       "1"                     },
2584   { "gate_2_gray.EDITOR",                       "RocksElements.pcx"     },
2585   { "gate_2_gray.EDITOR.xpos",                  "9"                     },
2586   { "gate_2_gray.EDITOR.ypos",                  "14"                    },
2587   { "gate_2_gray.active",                       "RocksElements.pcx"     },
2588   { "gate_2_gray.active.xpos",                  "5"                     },
2589   { "gate_2_gray.active.ypos",                  "2"                     },
2590   { "gate_2_gray.active.frames",                "1"                     },
2591   { "gate_3_gray",                              "RocksElements.pcx"     },
2592   { "gate_3_gray.xpos",                         "10"                    },
2593   { "gate_3_gray.ypos",                         "2"                     },
2594   { "gate_3_gray.frames",                       "1"                     },
2595   { "gate_3_gray.EDITOR",                       "RocksElements.pcx"     },
2596   { "gate_3_gray.EDITOR.xpos",                  "10"                    },
2597   { "gate_3_gray.EDITOR.ypos",                  "14"                    },
2598   { "gate_3_gray.active",                       "RocksElements.pcx"     },
2599   { "gate_3_gray.active.xpos",                  "6"                     },
2600   { "gate_3_gray.active.ypos",                  "2"                     },
2601   { "gate_3_gray.active.frames",                "1"                     },
2602   { "gate_4_gray",                              "RocksElements.pcx"     },
2603   { "gate_4_gray.xpos",                         "11"                    },
2604   { "gate_4_gray.ypos",                         "2"                     },
2605   { "gate_4_gray.frames",                       "1"                     },
2606   { "gate_4_gray.EDITOR",                       "RocksElements.pcx"     },
2607   { "gate_4_gray.EDITOR.xpos",                  "11"                    },
2608   { "gate_4_gray.EDITOR.ypos",                  "14"                    },
2609   { "gate_4_gray.active",                       "RocksElements.pcx"     },
2610   { "gate_4_gray.active.xpos",                  "7"                     },
2611   { "gate_4_gray.active.ypos",                  "2"                     },
2612   { "gate_4_gray.active.frames",                "1"                     },
2613
2614   { "game_of_life",                             "RocksElements.pcx"     },
2615   { "game_of_life.xpos",                        "8"                     },
2616   { "game_of_life.ypos",                        "1"                     },
2617   { "game_of_life.frames",                      "1"                     },
2618
2619   { "biomaze",                                  "RocksElements.pcx"     },
2620   { "biomaze.xpos",                             "9"                     },
2621   { "biomaze.ypos",                             "1"                     },
2622   { "biomaze.frames",                           "1"                     },
2623
2624   { "pacman",                                   "RocksElements.pcx"     },
2625   { "pacman.xpos",                              "8"                     },
2626   { "pacman.ypos",                              "5"                     },
2627   { "pacman.frames",                            "1"                     },
2628   { "pacman.right",                             "RocksElements.pcx"     },
2629   { "pacman.right.xpos",                        "8"                     },
2630   { "pacman.right.ypos",                        "5"                     },
2631   { "pacman.right.frames",                      "2"                     },
2632   { "pacman.right.delay",                       "4"                     },
2633   { "pacman.right.offset",                      "128"                   },
2634   { "pacman.up",                                "RocksElements.pcx"     },
2635   { "pacman.up.xpos",                           "9"                     },
2636   { "pacman.up.ypos",                           "5"                     },
2637   { "pacman.up.frames",                         "2"                     },
2638   { "pacman.up.delay",                          "4"                     },
2639   { "pacman.up.offset",                         "128"                   },
2640   { "pacman.left",                              "RocksElements.pcx"     },
2641   { "pacman.left.xpos",                         "10"                    },
2642   { "pacman.left.ypos",                         "5"                     },
2643   { "pacman.left.frames",                       "2"                     },
2644   { "pacman.left.delay",                        "4"                     },
2645   { "pacman.left.offset",                       "128"                   },
2646   { "pacman.down",                              "RocksElements.pcx"     },
2647   { "pacman.down.xpos",                         "11"                    },
2648   { "pacman.down.ypos",                         "5"                     },
2649   { "pacman.down.frames",                       "2"                     },
2650   { "pacman.down.delay",                        "4"                     },
2651   { "pacman.down.offset",                       "128"                   },
2652   { "pacman.turning_from_right",                "RocksElements.pcx"     },
2653   { "pacman.turning_from_right.xpos",           "12"                    },
2654   { "pacman.turning_from_right.ypos",           "5"                     },
2655   { "pacman.turning_from_right.frames",         "1"                     },
2656   { "pacman.turning_from_up",                   "RocksElements.pcx"     },
2657   { "pacman.turning_from_up.xpos",              "13"                    },
2658   { "pacman.turning_from_up.ypos",              "5"                     },
2659   { "pacman.turning_from_up.frames",            "1"                     },
2660   { "pacman.turning_from_left",                 "RocksElements.pcx"     },
2661   { "pacman.turning_from_left.xpos",            "14"                    },
2662   { "pacman.turning_from_left.ypos",            "5"                     },
2663   { "pacman.turning_from_left.frames",          "1"                     },
2664   { "pacman.turning_from_down",                 "RocksElements.pcx"     },
2665   { "pacman.turning_from_down.xpos",            "15"                    },
2666   { "pacman.turning_from_down.ypos",            "5"                     },
2667   { "pacman.turning_from_down.frames",          "1"                     },
2668
2669   { "lamp",                                     "RocksElements.pcx"     },
2670   { "lamp.xpos",                                "0"                     },
2671   { "lamp.ypos",                                "7"                     },
2672   { "lamp.frames",                              "1"                     },
2673   { "lamp.EDITOR",                              "RocksElements.pcx"     },
2674   { "lamp.EDITOR.xpos",                         "2"                     },
2675   { "lamp.EDITOR.ypos",                         "14"                    },
2676   { "lamp.active",                              "RocksElements.pcx"     },
2677   { "lamp.active.xpos",                         "1"                     },
2678   { "lamp.active.ypos",                         "7"                     },
2679   { "lamp.active.frames",                       "1"                     },
2680
2681   { "time_orb_full",                            "RocksElements.pcx"     },
2682   { "time_orb_full.xpos",                       "2"                     },
2683   { "time_orb_full.ypos",                       "7"                     },
2684   { "time_orb_full.frames",                     "1"                     },
2685   { "time_orb_empty",                           "RocksElements.pcx"     },
2686   { "time_orb_empty.xpos",                      "3"                     },
2687   { "time_orb_empty.ypos",                      "7"                     },
2688   { "time_orb_empty.frames",                    "1"                     },
2689
2690   { "emerald_yellow",                           "RocksElements.pcx"     },
2691   { "emerald_yellow.xpos",                      "10"                    },
2692   { "emerald_yellow.ypos",                      "8"                     },
2693   { "emerald_yellow.frames",                    "1"                     },
2694   { "emerald_yellow.moving",                    "RocksElements.pcx"     },
2695   { "emerald_yellow.moving.xpos",               "10"                    },
2696   { "emerald_yellow.moving.ypos",               "8"                     },
2697   { "emerald_yellow.moving.frames",             "2"                     },
2698   { "emerald_yellow.moving.delay",              "4"                     },
2699   { "emerald_yellow.falling",                   "RocksElements.pcx"     },
2700   { "emerald_yellow.falling.xpos",              "10"                    },
2701   { "emerald_yellow.falling.ypos",              "8"                     },
2702   { "emerald_yellow.falling.frames",            "2"                     },
2703   { "emerald_yellow.falling.delay",             "4"                     },
2704   { "emerald_red",                              "RocksElements.pcx"     },
2705   { "emerald_red.xpos",                         "8"                     },
2706   { "emerald_red.ypos",                         "9"                     },
2707   { "emerald_red.frames",                       "1"                     },
2708   { "emerald_red.moving",                       "RocksElements.pcx"     },
2709   { "emerald_red.moving.xpos",                  "8"                     },
2710   { "emerald_red.moving.ypos",                  "9"                     },
2711   { "emerald_red.moving.frames",                "2"                     },
2712   { "emerald_red.moving.delay",                 "4"                     },
2713   { "emerald_red.falling",                      "RocksElements.pcx"     },
2714   { "emerald_red.falling.xpos",                 "8"                     },
2715   { "emerald_red.falling.ypos",                 "9"                     },
2716   { "emerald_red.falling.frames",               "2"                     },
2717   { "emerald_red.falling.delay",                "4"                     },
2718   { "emerald_purple",                           "RocksElements.pcx"     },
2719   { "emerald_purple.xpos",                      "10"                    },
2720   { "emerald_purple.ypos",                      "9"                     },
2721   { "emerald_purple.frames",                    "1"                     },
2722   { "emerald_purple.moving",                    "RocksElements.pcx"     },
2723   { "emerald_purple.moving.xpos",               "10"                    },
2724   { "emerald_purple.moving.ypos",               "9"                     },
2725   { "emerald_purple.moving.frames",             "2"                     },
2726   { "emerald_purple.moving.delay",              "4"                     },
2727   { "emerald_purple.falling",                   "RocksElements.pcx"     },
2728   { "emerald_purple.falling.xpos",              "10"                    },
2729   { "emerald_purple.falling.ypos",              "9"                     },
2730   { "emerald_purple.falling.frames",            "2"                     },
2731   { "emerald_purple.falling.delay",             "4"                     },
2732
2733   { "wall_emerald_yellow",                      "RocksElements.pcx"     },
2734   { "wall_emerald_yellow.xpos",                 "8"                     },
2735   { "wall_emerald_yellow.ypos",                 "8"                     },
2736   { "wall_emerald_yellow.frames",               "1"                     },
2737   { "wall_emerald_red",                         "RocksElements.pcx"     },
2738   { "wall_emerald_red.xpos",                    "6"                     },
2739   { "wall_emerald_red.ypos",                    "8"                     },
2740   { "wall_emerald_red.frames",                  "1"                     },
2741   { "wall_emerald_purple",                      "RocksElements.pcx"     },
2742   { "wall_emerald_purple.xpos",                 "7"                     },
2743   { "wall_emerald_purple.ypos",                 "8"                     },
2744   { "wall_emerald_purple.frames",               "1"                     },
2745   { "wall_bd_diamond",                          "RocksElements.pcx"     },
2746   { "wall_bd_diamond.xpos",                     "9"                     },
2747   { "wall_bd_diamond.ypos",                     "8"                     },
2748   { "wall_bd_diamond.frames",                   "1"                     },
2749
2750   { "expandable_wall",                          "RocksElements.pcx"     },
2751   { "expandable_wall.xpos",                     "11"                    },
2752   { "expandable_wall.ypos",                     "10"                    },
2753   { "expandable_wall.frames",                   "1"                     },
2754   { "expandable_wall_horizontal",               "RocksElements.pcx"     },
2755   { "expandable_wall_horizontal.xpos",          "5"                     },
2756   { "expandable_wall_horizontal.ypos",          "9"                     },
2757   { "expandable_wall_horizontal.frames",        "1"                     },
2758   { "expandable_wall_horizontal.EDITOR",        "RocksElements.pcx"     },
2759   { "expandable_wall_horizontal.EDITOR.xpos",   "13"                    },
2760   { "expandable_wall_horizontal.EDITOR.ypos",   "13"                    },
2761   { "expandable_wall_vertical",                 "RocksElements.pcx"     },
2762   { "expandable_wall_vertical.xpos",            "6"                     },
2763   { "expandable_wall_vertical.ypos",            "9"                     },
2764   { "expandable_wall_vertical.frames",          "1"                     },
2765   { "expandable_wall_vertical.EDITOR",          "RocksElements.pcx"     },
2766   { "expandable_wall_vertical.EDITOR.xpos",     "14"                    },
2767   { "expandable_wall_vertical.EDITOR.ypos",     "13"                    },
2768   { "expandable_wall_any",                      "RocksElements.pcx"     },
2769   { "expandable_wall_any.xpos",                 "4"                     },
2770   { "expandable_wall_any.ypos",                 "9"                     },
2771   { "expandable_wall_any.frames",               "1"                     },
2772   { "expandable_wall_any.EDITOR",               "RocksElements.pcx"     },
2773   { "expandable_wall_any.EDITOR.xpos",          "12"                    },
2774   { "expandable_wall_any.EDITOR.ypos",          "13"                    },
2775
2776   { "expandable_steelwall_horizontal",          "RocksDC2.pcx"          },
2777   { "expandable_steelwall_horizontal.xpos",     "6"                     },
2778   { "expandable_steelwall_horizontal.ypos",     "2"                     },
2779   { "expandable_steelwall_horizontal.frames",   "1"                     },
2780   { "expandable_steelwall_horizontal.EDITOR",   "RocksDC2.pcx"          },
2781   { "expandable_steelwall_horizontal.EDITOR.xpos","9"                   },
2782   { "expandable_steelwall_horizontal.EDITOR.ypos","2"                   },
2783   { "expandable_steelwall_vertical",            "RocksDC2.pcx"          },
2784   { "expandable_steelwall_vertical.xpos",       "6"                     },
2785   { "expandable_steelwall_vertical.ypos",       "2"                     },
2786   { "expandable_steelwall_vertical.frames",     "1"                     },
2787   { "expandable_steelwall_vertical.EDITOR",     "RocksDC2.pcx"          },
2788   { "expandable_steelwall_vertical.EDITOR.xpos","10"                    },
2789   { "expandable_steelwall_vertical.EDITOR.ypos","2"                     },
2790   { "expandable_steelwall_any",                 "RocksDC2.pcx"          },
2791   { "expandable_steelwall_any.xpos",            "6"                     },
2792   { "expandable_steelwall_any.ypos",            "2"                     },
2793   { "expandable_steelwall_any.frames",          "1"                     },
2794   { "expandable_steelwall_any.EDITOR",          "RocksDC2.pcx"          },
2795   { "expandable_steelwall_any.EDITOR.xpos",     "8"                     },
2796   { "expandable_steelwall_any.EDITOR.ypos",     "2"                     },
2797
2798   { "bd_expandable_wall",                       "RocksElements.pcx"     },
2799   { "bd_expandable_wall.xpos",                  "5"                     },
2800   { "bd_expandable_wall.ypos",                  "9"                     },
2801   { "bd_expandable_wall.frames",                "1"                     },
2802   { "bd_expandable_wall.EDITOR",                "RocksDC.pcx"           },
2803   { "bd_expandable_wall.EDITOR.xpos",           "15"                    },
2804   { "bd_expandable_wall.EDITOR.ypos",           "15"                    },
2805
2806   { "expandable_wall.growing.left",             "RocksElements.pcx"     },
2807   { "expandable_wall.growing.left.xpos",        "8"                     },
2808   { "expandable_wall.growing.left.ypos",        "10"                    },
2809   { "expandable_wall.growing.left.frames",      "3"                     },
2810   { "expandable_wall.growing.left.delay",       "6"                     },
2811   { "expandable_wall.growing.left.anim_mode",   "linear"                },
2812   { "expandable_wall.growing.right",            "RocksElements.pcx"     },
2813   { "expandable_wall.growing.right.xpos",       "5"                     },
2814   { "expandable_wall.growing.right.ypos",       "10"                    },
2815   { "expandable_wall.growing.right.frames",     "3"                     },
2816   { "expandable_wall.growing.right.delay",      "6"                     },
2817   { "expandable_wall.growing.right.anim_mode",  "linear"                },
2818   { "expandable_wall.growing.up",               "RocksHeroes.pcx"       },
2819   { "expandable_wall.growing.up.xpos",          "3"                     },
2820   { "expandable_wall.growing.up.ypos",          "12"                    },
2821   { "expandable_wall.growing.up.frames",        "3"                     },
2822   { "expandable_wall.growing.up.delay",         "6"                     },
2823   { "expandable_wall.growing.up.anim_mode",     "linear"                },
2824   { "expandable_wall.growing.down",             "RocksHeroes.pcx"       },
2825   { "expandable_wall.growing.down.xpos",        "0"                     },
2826   { "expandable_wall.growing.down.ypos",        "12"                    },
2827   { "expandable_wall.growing.down.frames",      "3"                     },
2828   { "expandable_wall.growing.down.delay",       "6"                     },
2829   { "expandable_wall.growing.down.anim_mode",   "linear"                },
2830
2831   { "expandable_steelwall.growing.left",        "RocksDC2.pcx"          },
2832   { "expandable_steelwall.growing.left.xpos",   "8"                     },
2833   { "expandable_steelwall.growing.left.ypos",   "4"                     },
2834   { "expandable_steelwall.growing.left.frames", "4"                     },
2835   { "expandable_steelwall.growing.left.delay",  "4"                     },
2836   { "expandable_steelwall.growing.left.anim_mode","linear"              },
2837   { "expandable_steelwall.growing.right",       "RocksDC2.pcx"          },
2838   { "expandable_steelwall.growing.right.xpos",  "12"                    },
2839   { "expandable_steelwall.growing.right.ypos",  "4"                     },
2840   { "expandable_steelwall.growing.right.frames","4"                     },
2841   { "expandable_steelwall.growing.right.delay", "4"                     },
2842   { "expandable_steelwall.growing.right.anim_mode","linear"             },
2843   { "expandable_steelwall.growing.up",          "RocksDC2.pcx"          },
2844   { "expandable_steelwall.growing.up.xpos",     "8"                     },
2845   { "expandable_steelwall.growing.up.ypos",     "5"                     },
2846   { "expandable_steelwall.growing.up.frames",   "4"                     },
2847   { "expandable_steelwall.growing.up.delay",    "4"                     },
2848   { "expandable_steelwall.growing.up.anim_mode","linear"                },
2849   { "expandable_steelwall.growing.down",        "RocksDC2.pcx"          },
2850   { "expandable_steelwall.growing.down.xpos",   "12"                    },
2851   { "expandable_steelwall.growing.down.ypos",   "5"                     },
2852   { "expandable_steelwall.growing.down.frames", "4"                     },
2853   { "expandable_steelwall.growing.down.delay",  "4"                     },
2854   { "expandable_steelwall.growing.down.anim_mode","linear"              },
2855
2856   { "black_orb",                                "RocksElements.pcx"     },
2857   { "black_orb.xpos",                           "13"                    },
2858   { "black_orb.ypos",                           "9"                     },
2859   { "black_orb.frames",                         "1"                     },
2860
2861   { "speed_pill",                               "RocksElements.pcx"     },
2862   { "speed_pill.xpos",                          "14"                    },
2863   { "speed_pill.ypos",                          "9"                     },
2864   { "speed_pill.frames",                        "1"                     },
2865
2866   { "dark_yamyam",                              "RocksElements.pcx"     },
2867   { "dark_yamyam.xpos",                         "8"                     },
2868   { "dark_yamyam.ypos",                         "11"                    },
2869   { "dark_yamyam.frames",                       "4"                     },
2870   { "dark_yamyam.anim_mode",                    "pingpong2"             },
2871
2872   { "dynabomb",                                 "RocksElements.pcx"     },
2873   { "dynabomb.xpos",                            "12"                    },
2874   { "dynabomb.ypos",                            "11"                    },
2875   { "dynabomb.frames",                          "1"                     },
2876   { "dynabomb.active",                          "RocksElements.pcx"     },
2877   { "dynabomb.active.xpos",                     "12"                    },
2878   { "dynabomb.active.ypos",                     "11"                    },
2879   { "dynabomb.active.frames",                   "4"                     },
2880   { "dynabomb.active.delay",                    "6"                     },
2881   { "dynabomb.active.anim_mode",                "pingpong"              },
2882   { "dynabomb_player_1",                        "RocksElements.pcx"     },
2883   { "dynabomb_player_1.xpos",                   "12"                    },
2884   { "dynabomb_player_1.ypos",                   "11"                    },
2885   { "dynabomb_player_1.frames",                 "1"                     },
2886   { "dynabomb_player_1.active",                 "RocksElements.pcx"     },
2887   { "dynabomb_player_1.active.xpos",            "12"                    },
2888   { "dynabomb_player_1.active.ypos",            "11"                    },
2889   { "dynabomb_player_1.active.frames",          "4"                     },
2890   { "dynabomb_player_1.active.delay",           "6"                     },
2891   { "dynabomb_player_1.active.anim_mode",       "pingpong"              },
2892   { "dynabomb_player_2",                        "RocksElements.pcx"     },
2893   { "dynabomb_player_2.xpos",                   "12"                    },
2894   { "dynabomb_player_2.ypos",                   "11"                    },
2895   { "dynabomb_player_2.frames",                 "1"                     },
2896   { "dynabomb_player_2.active",                 "RocksElements.pcx"     },
2897   { "dynabomb_player_2.active.xpos",            "12"                    },
2898   { "dynabomb_player_2.active.ypos",            "11"                    },
2899   { "dynabomb_player_2.active.frames",          "4"                     },
2900   { "dynabomb_player_2.active.delay",           "6"                     },
2901   { "dynabomb_player_2.active.anim_mode",       "pingpong"              },
2902   { "dynabomb_player_3",                        "RocksElements.pcx"     },
2903   { "dynabomb_player_3.xpos",                   "12"                    },
2904   { "dynabomb_player_3.ypos",                   "11"                    },
2905   { "dynabomb_player_3.frames",                 "1"                     },
2906   { "dynabomb_player_3.active",                 "RocksElements.pcx"     },
2907   { "dynabomb_player_3.active.xpos",            "12"                    },
2908   { "dynabomb_player_3.active.ypos",            "11"                    },
2909   { "dynabomb_player_3.active.frames",          "4"                     },
2910   { "dynabomb_player_3.active.delay",           "6"                     },
2911   { "dynabomb_player_3.active.anim_mode",       "pingpong"              },
2912   { "dynabomb_player_4",                        "RocksElements.pcx"     },
2913   { "dynabomb_player_4.xpos",                   "12"                    },
2914   { "dynabomb_player_4.ypos",                   "11"                    },
2915   { "dynabomb_player_4.frames",                 "1"                     },
2916   { "dynabomb_player_4.active",                 "RocksElements.pcx"     },
2917   { "dynabomb_player_4.active.xpos",            "12"                    },
2918   { "dynabomb_player_4.active.ypos",            "11"                    },
2919   { "dynabomb_player_4.active.frames",          "4"                     },
2920   { "dynabomb_player_4.active.delay",           "6"                     },
2921   { "dynabomb_player_4.active.anim_mode",       "pingpong"              },
2922   { "dynabomb_increase_number",                 "RocksElements.pcx"     },
2923   { "dynabomb_increase_number.xpos",            "12"                    },
2924   { "dynabomb_increase_number.ypos",            "11"                    },
2925   { "dynabomb_increase_number.frames",          "1"                     },
2926   { "dynabomb_increase_size",                   "RocksElements.pcx"     },
2927   { "dynabomb_increase_size.xpos",              "15"                    },
2928   { "dynabomb_increase_size.ypos",              "11"                    },
2929   { "dynabomb_increase_size.frames",            "1"                     },
2930   { "dynabomb_increase_power",                  "RocksElements.pcx"     },
2931   { "dynabomb_increase_power.xpos",             "12"                    },
2932   { "dynabomb_increase_power.ypos",             "9"                     },
2933   { "dynabomb_increase_power.frames",           "1"                     },
2934
2935   { "pig",                                      "RocksHeroes.pcx"       },
2936   { "pig.xpos",                                 "8"                     },
2937   { "pig.ypos",                                 "0"                     },
2938   { "pig.frames",                               "1"                     },
2939   { "pig.down",                                 "RocksHeroes.pcx"       },
2940   { "pig.down.xpos",                            "8"                     },
2941   { "pig.down.ypos",                            "0"                     },
2942   { "pig.down.frames",                          "1"                     },
2943   { "pig.up",                                   "RocksHeroes.pcx"       },
2944   { "pig.up.xpos",                              "12"                    },
2945   { "pig.up.ypos",                              "0"                     },
2946   { "pig.up.frames",                            "1"                     },
2947   { "pig.left",                                 "RocksHeroes.pcx"       },
2948   { "pig.left.xpos",                            "8"                     },
2949   { "pig.left.ypos",                            "1"                     },
2950   { "pig.left.frames",                          "1"                     },
2951   { "pig.right",                                "RocksHeroes.pcx"       },
2952   { "pig.right.xpos",                           "12"                    },
2953   { "pig.right.ypos",                           "1"                     },
2954   { "pig.right.frames",                         "1"                     },
2955   { "pig.moving.down",                          "RocksHeroes.pcx"       },
2956   { "pig.moving.down.xpos",                     "8"                     },
2957   { "pig.moving.down.ypos",                     "0"                     },
2958   { "pig.moving.down.frames",                   "4"                     },
2959   { "pig.moving.down.delay",                    "2"                     },
2960   { "pig.moving.up",                            "RocksHeroes.pcx"       },
2961   { "pig.moving.up.xpos",                       "12"                    },
2962   { "pig.moving.up.ypos",                       "0"                     },
2963   { "pig.moving.up.frames",                     "4"                     },
2964   { "pig.moving.up.delay",                      "2"                     },
2965   { "pig.moving.left",                          "RocksHeroes.pcx"       },
2966   { "pig.moving.left.xpos",                     "8"                     },
2967   { "pig.moving.left.ypos",                     "1"                     },
2968   { "pig.moving.left.frames",                   "4"                     },
2969   { "pig.moving.left.delay",                    "2"                     },
2970   { "pig.moving.right",                         "RocksHeroes.pcx"       },
2971   { "pig.moving.right.xpos",                    "12"                    },
2972   { "pig.moving.right.ypos",                    "1"                     },
2973   { "pig.moving.right.frames",                  "4"                     },
2974   { "pig.moving.right.delay",                   "2"                     },
2975   { "pig.digging.down",                         "RocksHeroes.pcx"       },
2976   { "pig.digging.down.xpos",                    "8"                     },
2977   { "pig.digging.down.ypos",                    "0"                     },
2978   { "pig.digging.down.frames",                  "4"                     },
2979   { "pig.digging.down.delay",                   "2"                     },
2980   { "pig.digging.up",                           "RocksHeroes.pcx"       },
2981   { "pig.digging.up.xpos",                      "12"                    },
2982   { "pig.digging.up.ypos",                      "0"                     },
2983   { "pig.digging.up.frames",                    "4"                     },
2984   { "pig.digging.up.delay",                     "2"                     },
2985   { "pig.digging.left",                         "RocksHeroes.pcx"       },
2986   { "pig.digging.left.xpos",                    "8"                     },
2987   { "pig.digging.left.ypos",                    "1"                     },
2988   { "pig.digging.left.frames",                  "4"                     },
2989   { "pig.digging.left.delay",                   "2"                     },
2990   { "pig.digging.right",                        "RocksHeroes.pcx"       },
2991   { "pig.digging.right.xpos",                   "12"                    },
2992   { "pig.digging.right.ypos",                   "1"                     },
2993   { "pig.digging.right.frames",                 "4"                     },
2994   { "pig.digging.right.delay",                  "2"                     },
2995
2996   { "dragon",                                   "RocksHeroes.pcx"       },
2997   { "dragon.xpos",                              "8"                     },
2998   { "dragon.ypos",                              "2"                     },
2999   { "dragon.frames",                            "1"                     },
3000   { "dragon.down",                              "RocksHeroes.pcx"       },
3001   { "dragon.down.xpos",                         "8"                     },
3002   { "dragon.down.ypos",                         "2"                     },
3003   { "dragon.down.frames",                       "1"                     },
3004   { "dragon.up",                                "RocksHeroes.pcx"       },
3005   { "dragon.up.xpos",                           "12"                    },
3006   { "dragon.up.ypos",                           "2"                     },
3007   { "dragon.up.frames",                         "1"                     },
3008   { "dragon.left",                              "RocksHeroes.pcx"       },
3009   { "dragon.left.xpos",                         "8"                     },
3010   { "dragon.left.ypos",                         "3"                     },
3011   { "dragon.left.frames",                       "1"                     },
3012   { "dragon.right",                             "RocksHeroes.pcx"       },
3013   { "dragon.right.xpos",                        "12"                    },
3014   { "dragon.right.ypos",                        "3"                     },
3015   { "dragon.right.frames",                      "1"                     },
3016   { "dragon.moving.down",                       "RocksHeroes.pcx"       },
3017   { "dragon.moving.down.xpos",                  "8"                     },
3018   { "dragon.moving.down.ypos",                  "2"                     },
3019   { "dragon.moving.down.frames",                "4"                     },
3020   { "dragon.moving.down.delay",                 "2"                     },
3021   { "dragon.moving.up",                         "RocksHeroes.pcx"       },
3022   { "dragon.moving.up.xpos",                    "12"                    },
3023   { "dragon.moving.up.ypos",                    "2"                     },
3024   { "dragon.moving.up.frames",                  "4"                     },
3025   { "dragon.moving.up.delay",                   "2"                     },
3026   { "dragon.moving.left",                       "RocksHeroes.pcx"       },
3027   { "dragon.moving.left.xpos",                  "8"                     },
3028   { "dragon.moving.left.ypos",                  "3"                     },
3029   { "dragon.moving.left.frames",                "4"                     },
3030   { "dragon.moving.left.delay",                 "2"                     },
3031   { "dragon.moving.right",                      "RocksHeroes.pcx"       },
3032   { "dragon.moving.right.xpos",                 "12"                    },
3033   { "dragon.moving.right.ypos",                 "3"                     },
3034   { "dragon.moving.right.frames",               "4"                     },
3035   { "dragon.moving.right.delay",                "2"                     },
3036   { "dragon.attacking.down",                    "RocksHeroes.pcx"       },
3037   { "dragon.attacking.down.xpos",               "8"                     },
3038   { "dragon.attacking.down.ypos",               "2"                     },
3039   { "dragon.attacking.down.frames",             "1"                     },
3040   { "dragon.attacking.up",                      "RocksHeroes.pcx"       },
3041   { "dragon.attacking.up.xpos",                 "12"                    },
3042   { "dragon.attacking.up.ypos",                 "2"                     },
3043   { "dragon.attacking.up.frames",               "1"                     },
3044   { "dragon.attacking.left",                    "RocksHeroes.pcx"       },
3045   { "dragon.attacking.left.xpos",               "8"                     },
3046   { "dragon.attacking.left.ypos",               "3"                     },
3047   { "dragon.attacking.left.frames",             "1"                     },
3048   { "dragon.attacking.right",                   "RocksHeroes.pcx"       },
3049   { "dragon.attacking.right.xpos",              "12"                    },
3050   { "dragon.attacking.right.ypos",              "3"                     },
3051   { "dragon.attacking.right.frames",            "1"                     },
3052
3053   { "mole",                                     "RocksHeroes.pcx"       },
3054   { "mole.xpos",                                "8"                     },
3055   { "mole.ypos",                                "4"                     },
3056   { "mole.frames",                              "1"                     },
3057   { "mole.down",                                "RocksHeroes.pcx"       },
3058   { "mole.down.xpos",                           "8"                     },
3059   { "mole.down.ypos",                           "4"                     },
3060   { "mole.down.frames",                         "1"                     },
3061   { "mole.up",                                  "RocksHeroes.pcx"       },
3062   { "mole.up.xpos",                             "12"                    },
3063   { "mole.up.ypos",                             "4"                     },
3064   { "mole.up.frames",                           "1"                     },
3065   { "mole.left",                                "RocksHeroes.pcx"       },
3066   { "mole.left.xpos",                           "8"                     },
3067   { "mole.left.ypos",                           "5"                     },
3068   { "mole.left.frames",                         "1"                     },
3069   { "mole.right",                               "RocksHeroes.pcx"       },
3070   { "mole.right.xpos",                          "12"                    },
3071   { "mole.right.ypos",                          "5"                     },
3072   { "mole.right.frames",                        "1"                     },
3073   { "mole.moving.down",                         "RocksHeroes.pcx"       },
3074   { "mole.moving.down.xpos",                    "8"                     },
3075   { "mole.moving.down.ypos",                    "4"                     },
3076   { "mole.moving.down.frames",                  "4"                     },
3077   { "mole.moving.down.delay",                   "2"                     },
3078   { "mole.moving.up",                           "RocksHeroes.pcx"       },
3079   { "mole.moving.up.xpos",                      "12"                    },
3080   { "mole.moving.up.ypos",                      "4"                     },
3081   { "mole.moving.up.frames",                    "4"                     },
3082   { "mole.moving.up.delay",                     "2"                     },
3083   { "mole.moving.left",                         "RocksHeroes.pcx"       },
3084   { "mole.moving.left.xpos",                    "8"                     },
3085   { "mole.moving.left.ypos",                    "5"                     },
3086   { "mole.moving.left.frames",                  "4"                     },
3087   { "mole.moving.left.delay",                   "2"                     },
3088   { "mole.moving.right",                        "RocksHeroes.pcx"       },
3089   { "mole.moving.right.xpos",                   "12"                    },
3090   { "mole.moving.right.ypos",                   "5"                     },
3091   { "mole.moving.right.frames",                 "4"                     },
3092   { "mole.moving.right.delay",                  "2"                     },
3093   { "mole.digging.down",                        "RocksHeroes.pcx"       },
3094   { "mole.digging.down.xpos",                   "8"                     },
3095   { "mole.digging.down.ypos",                   "4"                     },
3096   { "mole.digging.down.frames",                 "4"                     },
3097   { "mole.digging.down.delay",                  "2"                     },
3098   { "mole.digging.up",                          "RocksHeroes.pcx"       },
3099   { "mole.digging.up.xpos",                     "12"                    },
3100   { "mole.digging.up.ypos",                     "4"                     },
3101   { "mole.digging.up.frames",                   "4"                     },
3102   { "mole.digging.up.delay",                    "2"                     },
3103   { "mole.digging.left",                        "RocksHeroes.pcx"       },
3104   { "mole.digging.left.xpos",                   "8"                     },
3105   { "mole.digging.left.ypos",                   "5"                     },
3106   { "mole.digging.left.frames",                 "4"                     },
3107   { "mole.digging.left.delay",                  "2"                     },
3108   { "mole.digging.right",                       "RocksHeroes.pcx"       },
3109   { "mole.digging.right.xpos",                  "12"                    },
3110   { "mole.digging.right.ypos",                  "5"                     },
3111   { "mole.digging.right.frames",                "4"                     },
3112   { "mole.digging.right.delay",                 "2"                     },
3113
3114   { "penguin",                                  "RocksHeroes.pcx"       },
3115   { "penguin.xpos",                             "8"                     },
3116   { "penguin.ypos",                             "6"                     },
3117   { "penguin.frames",                           "1"                     },
3118   { "penguin.EDITOR",                           "RocksElements.pcx"     },
3119   { "penguin.EDITOR.xpos",                      "12"                    },
3120   { "penguin.EDITOR.ypos",                      "14"                    },
3121   { "penguin.down",                             "RocksHeroes.pcx"       },
3122   { "penguin.down.xpos",                        "8"                     },
3123   { "penguin.down.ypos",                        "6"                     },
3124   { "penguin.down.frames",                      "1"                     },
3125   { "penguin.up",                               "RocksHeroes.pcx"       },
3126   { "penguin.up.xpos",                          "12"                    },
3127   { "penguin.up.ypos",                          "6"                     },
3128   { "penguin.up.frames",                        "1"                     },
3129   { "penguin.left",                             "RocksHeroes.pcx"       },
3130   { "penguin.left.xpos",                        "8"                     },
3131   { "penguin.left.ypos",                        "7"                     },
3132   { "penguin.left.frames",                      "1"                     },
3133   { "penguin.right",                            "RocksHeroes.pcx"       },
3134   { "penguin.right.xpos",                       "12"                    },
3135   { "penguin.right.ypos",                       "7"                     },
3136   { "penguin.right.frames",                     "1"                     },
3137   { "penguin.moving.down",                      "RocksHeroes.pcx"       },
3138   { "penguin.moving.down.xpos",                 "8"                     },
3139   { "penguin.moving.down.ypos",                 "6"                     },
3140   { "penguin.moving.down.frames",               "4"                     },
3141   { "penguin.moving.down.delay",                "2"                     },
3142   { "penguin.moving.up",                        "RocksHeroes.pcx"       },
3143   { "penguin.moving.up.xpos",                   "12"                    },
3144   { "penguin.moving.up.ypos",                   "6"                     },
3145   { "penguin.moving.up.frames",                 "4"                     },
3146   { "penguin.moving.up.delay",                  "2"                     },
3147   { "penguin.moving.left",                      "RocksHeroes.pcx"       },
3148   { "penguin.moving.left.xpos",                 "8"                     },
3149   { "penguin.moving.left.ypos",                 "7"                     },
3150   { "penguin.moving.left.frames",               "4"                     },
3151   { "penguin.moving.left.delay",                "2"                     },
3152   { "penguin.moving.right",                     "RocksHeroes.pcx"       },
3153   { "penguin.moving.right.xpos",                "12"                    },
3154   { "penguin.moving.right.ypos",                "7"                     },
3155   { "penguin.moving.right.frames",              "4"                     },
3156   { "penguin.moving.right.delay",               "2"                     },
3157
3158   { "satellite",                                "RocksHeroes.pcx"       },
3159   { "satellite.xpos",                           "8"                     },
3160   { "satellite.ypos",                           "9"                     },
3161   { "satellite.frames",                         "8"                     },
3162   { "satellite.delay",                          "2"                     },
3163   { "satellite.global_sync",                    "true"                  },
3164
3165   { "flames_1_left",                            "RocksHeroes.pcx"       },
3166   { "flames_1_left.xpos",                       "8"                     },
3167   { "flames_1_left.ypos",                       "12"                    },
3168   { "flames_1_left.frames",                     "2"                     },
3169   { "flames_1_left.offset",                     "96"                    },
3170   { "flames_2_left",                            "RocksHeroes.pcx"       },
3171   { "flames_2_left.xpos",                       "9"                     },
3172   { "flames_2_left.ypos",                       "12"                    },
3173   { "flames_2_left.frames",                     "2"                     },
3174   { "flames_2_left.offset",                     "96"                    },
3175   { "flames_3_left",                            "RocksHeroes.pcx"       },
3176   { "flames_3_left.xpos",                       "10"                    },
3177   { "flames_3_left.ypos",                       "12"                    },
3178   { "flames_3_left.frames",                     "2"                     },
3179   { "flames_3_left.offset",                     "96"                    },
3180
3181   { "flames_1_right",                           "RocksHeroes.pcx"       },
3182   { "flames_1_right.xpos",                      "8"                     },
3183   { "flames_1_right.ypos",                      "13"                    },
3184   { "flames_1_right.frames",                    "2"                     },
3185   { "flames_1_right.offset",                    "96"                    },
3186   { "flames_2_right",                           "RocksHeroes.pcx"       },
3187   { "flames_2_right.xpos",                      "9"                     },
3188   { "flames_2_right.ypos",                      "13"                    },
3189   { "flames_2_right.frames",                    "2"                     },
3190   { "flames_2_right.offset",                    "96"                    },
3191   { "flames_3_right",                           "RocksHeroes.pcx"       },
3192   { "flames_3_right.xpos",                      "10"                    },
3193   { "flames_3_right.ypos",                      "13"                    },
3194   { "flames_3_right.frames",                    "2"                     },
3195   { "flames_3_right.offset",                    "96"                    },
3196
3197   { "flames_1_up",                              "RocksHeroes.pcx"       },
3198   { "flames_1_up.xpos",                         "8"                     },
3199   { "flames_1_up.ypos",                         "14"                    },
3200   { "flames_1_up.frames",                       "2"                     },
3201   { "flames_1_up.offset",                       "96"                    },
3202   { "flames_2_up",                              "RocksHeroes.pcx"       },
3203   { "flames_2_up.xpos",                         "9"                     },
3204   { "flames_2_up.ypos",                         "14"                    },
3205   { "flames_2_up.frames",                       "2"                     },
3206   { "flames_2_up.offset",                       "96"                    },
3207   { "flames_3_up",                              "RocksHeroes.pcx"       },
3208   { "flames_3_up.xpos",                         "10"                    },
3209   { "flames_3_up.ypos",                         "14"                    },
3210   { "flames_3_up.frames",                       "2"                     },
3211   { "flames_3_up.offset",                       "96"                    },
3212
3213   { "flames_1_down",                            "RocksHeroes.pcx"       },
3214   { "flames_1_down.xpos",                       "8"                     },
3215   { "flames_1_down.ypos",                       "15"                    },
3216   { "flames_1_down.frames",                     "2"                     },
3217   { "flames_1_down.offset",                     "96"                    },
3218   { "flames_2_down",                            "RocksHeroes.pcx"       },
3219   { "flames_2_down.xpos",                       "9"                     },
3220   { "flames_2_down.ypos",                       "15"                    },
3221   { "flames_2_down.frames",                     "2"                     },
3222   { "flames_2_down.offset",                     "96"                    },
3223   { "flames_3_down",                            "RocksHeroes.pcx"       },
3224   { "flames_3_down.xpos",                       "10"                    },
3225   { "flames_3_down.ypos",                       "15"                    },
3226   { "flames_3_down.frames",                     "2"                     },
3227   { "flames_3_down.offset",                     "96"                    },
3228
3229   { "stoneblock",                               "RocksElements.pcx"     },
3230   { "stoneblock.xpos",                          "10"                    },
3231   { "stoneblock.ypos",                          "1"                     },
3232   { "stoneblock.frames",                        "1"                     },
3233
3234   /* images for other elements and actions */
3235
3236   { "player_1",                                 "RocksHeroes.pcx"       },
3237   { "player_1.xpos",                            "0"                     },
3238   { "player_1.ypos",                            "0"                     },
3239   { "player_1.frames",                          "1"                     },
3240   { "player_1.EDITOR",                          "RocksElements.pcx"     },
3241   { "player_1.EDITOR.xpos",                     "4"                     },
3242   { "player_1.EDITOR.ypos",                     "7"                     },
3243   { "player_1.down",                            "RocksHeroes.pcx"       },
3244   { "player_1.down.xpos",                       "0"                     },
3245   { "player_1.down.ypos",                       "0"                     },
3246   { "player_1.down.frames",                     "1"                     },
3247   { "player_1.up",                              "RocksHeroes.pcx"       },
3248   { "player_1.up.xpos",                         "4"                     },
3249   { "player_1.up.ypos",                         "0"                     },
3250   { "player_1.up.frames",                       "1"                     },
3251   { "player_1.left",                            "RocksHeroes.pcx"       },
3252   { "player_1.left.xpos",                       "0"                     },
3253   { "player_1.left.ypos",                       "1"                     },
3254   { "player_1.left.frames",                     "1"                     },
3255   { "player_1.right",                           "RocksHeroes.pcx"       },
3256   { "player_1.right.xpos",                      "4"                     },
3257   { "player_1.right.ypos",                      "1"                     },
3258   { "player_1.right.frames",                    "1"                     },
3259   { "player_1.moving.down",                     "RocksHeroes.pcx"       },
3260   { "player_1.moving.down.xpos",                "0"                     },
3261   { "player_1.moving.down.ypos",                "0"                     },
3262   { "player_1.moving.down.frames",              "4"                     },
3263   { "player_1.moving.down.start_frame",         "1"                     },
3264   { "player_1.moving.down.delay",               "4"                     },
3265   { "player_1.moving.up",                       "RocksHeroes.pcx"       },
3266   { "player_1.moving.up.xpos",                  "4"                     },
3267   { "player_1.moving.up.ypos",                  "0"                     },
3268   { "player_1.moving.up.frames",                "4"                     },
3269   { "player_1.moving.up.start_frame",           "1"                     },
3270   { "player_1.moving.up.delay",                 "4"                     },
3271   { "player_1.moving.left",                     "RocksHeroes.pcx"       },
3272   { "player_1.moving.left.xpos",                "0"                     },
3273   { "player_1.moving.left.ypos",                "1"                     },
3274   { "player_1.moving.left.frames",              "4"                     },
3275   { "player_1.moving.left.start_frame",         "1"                     },
3276   { "player_1.moving.left.delay",               "4"                     },
3277   { "player_1.moving.right",                    "RocksHeroes.pcx"       },
3278   { "player_1.moving.right.xpos",               "4"                     },
3279   { "player_1.moving.right.ypos",               "1"                     },
3280   { "player_1.moving.right.frames",             "4"                     },
3281   { "player_1.moving.right.start_frame",        "1"                     },
3282   { "player_1.moving.right.delay",              "4"                     },
3283   { "player_1.digging.down",                    "RocksHeroes.pcx"       },
3284   { "player_1.digging.down.xpos",               "0"                     },
3285   { "player_1.digging.down.ypos",               "0"                     },
3286   { "player_1.digging.down.frames",             "4"                     },
3287   { "player_1.digging.down.start_frame",        "1"                     },
3288   { "player_1.digging.down.delay",              "4"                     },
3289   { "player_1.digging.up",                      "RocksHeroes.pcx"       },
3290   { "player_1.digging.up.xpos",                 "4"                     },
3291   { "player_1.digging.up.ypos",                 "0"                     },
3292   { "player_1.digging.up.frames",               "4"                     },
3293   { "player_1.digging.up.start_frame",          "1"                     },
3294   { "player_1.digging.up.delay",                "4"                     },
3295   { "player_1.digging.left",                    "RocksHeroes.pcx"       },
3296   { "player_1.digging.left.xpos",               "0"                     },
3297   { "player_1.digging.left.ypos",               "1"                     },
3298   { "player_1.digging.left.frames",             "4"                     },
3299   { "player_1.digging.left.start_frame",        "1"                     },
3300   { "player_1.digging.left.delay",              "4"                     },
3301   { "player_1.digging.right",                   "RocksHeroes.pcx"       },
3302   { "player_1.digging.right.xpos",              "4"                     },
3303   { "player_1.digging.right.ypos",              "1"                     },
3304   { "player_1.digging.right.frames",            "4"                     },
3305   { "player_1.digging.right.start_frame",       "1"                     },
3306   { "player_1.digging.right.delay",             "4"                     },
3307   { "player_1.collecting.down",                 "RocksHeroes.pcx"       },
3308   { "player_1.collecting.down.xpos",            "0"                     },
3309   { "player_1.collecting.down.ypos",            "0"                     },
3310   { "player_1.collecting.down.frames",          "4"                     },
3311   { "player_1.collecting.down.start_frame",     "1"                     },
3312   { "player_1.collecting.down.delay",           "4"                     },
3313   { "player_1.collecting.up",                   "RocksHeroes.pcx"       },
3314   { "player_1.collecting.up.xpos",              "4"                     },
3315   { "player_1.collecting.up.ypos",              "0"                     },
3316   { "player_1.collecting.up.frames",            "4"                     },
3317   { "player_1.collecting.up.start_frame",       "1"                     },
3318   { "player_1.collecting.up.delay",             "4"                     },
3319   { "player_1.collecting.left",                 "RocksHeroes.pcx"       },
3320   { "player_1.collecting.left.xpos",            "0"                     },
3321   { "player_1.collecting.left.ypos",            "1"                     },
3322   { "player_1.collecting.left.frames",          "4"                     },
3323   { "player_1.collecting.left.start_frame",     "1"                     },
3324   { "player_1.collecting.left.delay",           "4"                     },
3325   { "player_1.collecting.right",                "RocksHeroes.pcx"       },
3326   { "player_1.collecting.right.xpos",           "4"                     },
3327   { "player_1.collecting.right.ypos",           "1"                     },
3328   { "player_1.collecting.right.frames",         "4"                     },
3329   { "player_1.collecting.right.start_frame",    "1"                     },
3330   { "player_1.collecting.right.delay",          "4"                     },
3331   { "player_1.pushing.down",                    "RocksHeroes.pcx"       },
3332   { "player_1.pushing.down.xpos",               "0"                     },
3333   { "player_1.pushing.down.ypos",               "0"                     },
3334   { "player_1.pushing.down.frames",             "4"                     },
3335   { "player_1.pushing.down.delay",              "4"                     },
3336   { "player_1.pushing.up",                      "RocksHeroes.pcx"       },
3337   { "player_1.pushing.up.xpos",                 "4"                     },
3338   { "player_1.pushing.up.ypos",                 "0"                     },
3339   { "player_1.pushing.up.frames",               "4"                     },
3340   { "player_1.pushing.up.delay",                "4"                     },
3341   { "player_1.pushing.left",                    "RocksHeroes.pcx"       },
3342   { "player_1.pushing.left.xpos",               "4"                     },
3343   { "player_1.pushing.left.ypos",               "2"                     },
3344   { "player_1.pushing.left.frames",             "4"                     },
3345   { "player_1.pushing.left.delay",              "4"                     },
3346   { "player_1.pushing.right",                   "RocksHeroes.pcx"       },
3347   { "player_1.pushing.right.xpos",              "0"                     },
3348   { "player_1.pushing.right.ypos",              "2"                     },
3349   { "player_1.pushing.right.frames",            "4"                     },
3350   { "player_1.pushing.right.delay",             "4"                     },
3351   { "player_1.snapping.down",                   "RocksHeroes.pcx"       },
3352   { "player_1.snapping.down.xpos",              "0"                     },
3353   { "player_1.snapping.down.ypos",              "0"                     },
3354   { "player_1.snapping.down.frames",            "1"                     },
3355   { "player_1.snapping.up",                     "RocksHeroes.pcx"       },
3356   { "player_1.snapping.up.xpos",                "4"                     },
3357   { "player_1.snapping.up.ypos",                "0"                     },
3358   { "player_1.snapping.up.frames",              "1"                     },
3359   { "player_1.snapping.left",                   "RocksHeroes.pcx"       },
3360   { "player_1.snapping.left.xpos",              "0"                     },
3361   { "player_1.snapping.left.ypos",              "1"                     },
3362   { "player_1.snapping.left.frames",            "1"                     },
3363   { "player_1.snapping.right",                  "RocksHeroes.pcx"       },
3364   { "player_1.snapping.right.xpos",             "4"                     },
3365   { "player_1.snapping.right.ypos",             "1"                     },
3366   { "player_1.snapping.right.frames",           "1"                     },
3367
3368   { "player_2",                                 "RocksHeroes.pcx"       },
3369   { "player_2.xpos",                            "0"                     },
3370   { "player_2.ypos",                            "3"                     },
3371   { "player_2.frames",                          "1"                     },
3372   { "player_2.EDITOR",                          "RocksElements.pcx"     },
3373   { "player_2.EDITOR.xpos",                     "5"                     },
3374   { "player_2.EDITOR.ypos",                     "7"                     },
3375   { "player_2.down",                            "RocksHeroes.pcx"       },
3376   { "player_2.down.xpos",                       "0"                     },
3377   { "player_2.down.ypos",                       "3"                     },
3378   { "player_2.down.frames",                     "1"                     },
3379   { "player_2.up",                              "RocksHeroes.pcx"       },
3380   { "player_2.up.xpos",                         "4"                     },
3381   { "player_2.up.ypos",                         "3"                     },
3382   { "player_2.up.frames",                       "1"                     },
3383   { "player_2.left",                            "RocksHeroes.pcx"       },
3384   { "player_2.left.xpos",                       "0"                     },
3385   { "player_2.left.ypos",                       "4"                     },
3386   { "player_2.left.frames",                     "1"                     },
3387   { "player_2.right",                           "RocksHeroes.pcx"       },
3388   { "player_2.right.xpos",                      "4"                     },
3389   { "player_2.right.ypos",                      "4"                     },
3390   { "player_2.right.frames",                    "1"                     },
3391   { "player_2.moving.down",                     "RocksHeroes.pcx"       },
3392   { "player_2.moving.down.xpos",                "0"                     },
3393   { "player_2.moving.down.ypos",                "3"                     },
3394   { "player_2.moving.down.frames",              "4"                     },
3395   { "player_2.moving.down.start_frame",         "1"                     },
3396   { "player_2.moving.down.delay",               "4"                     },
3397   { "player_2.moving.up",                       "RocksHeroes.pcx"       },
3398   { "player_2.moving.up.xpos",                  "4"                     },
3399   { "player_2.moving.up.ypos",                  "3"                     },
3400   { "player_2.moving.up.frames",                "4"                     },
3401   { "player_2.moving.up.start_frame",           "1"                     },
3402   { "player_2.moving.up.delay",                 "4"                     },
3403   { "player_2.moving.left",                     "RocksHeroes.pcx"       },
3404   { "player_2.moving.left.xpos",                "0"                     },
3405   { "player_2.moving.left.ypos",                "4"                     },
3406   { "player_2.moving.left.frames",              "4"                     },
3407   { "player_2.moving.left.start_frame",         "1"                     },
3408   { "player_2.moving.left.delay",               "4"                     },
3409   { "player_2.moving.right",                    "RocksHeroes.pcx"       },
3410   { "player_2.moving.right.xpos",               "4"                     },
3411   { "player_2.moving.right.ypos",               "4"                     },
3412   { "player_2.moving.right.frames",             "4"                     },
3413   { "player_2.moving.right.start_frame",        "1"                     },
3414   { "player_2.moving.right.delay",              "4"                     },
3415   { "player_2.digging.down",                    "RocksHeroes.pcx"       },
3416   { "player_2.digging.down.xpos",               "0"                     },
3417   { "player_2.digging.down.ypos",               "3"                     },
3418   { "player_2.digging.down.frames",             "4"                     },
3419   { "player_2.digging.down.start_frame",        "1"                     },
3420   { "player_2.digging.down.delay",              "4"                     },
3421   { "player_2.digging.up",                      "RocksHeroes.pcx"       },
3422   { "player_2.digging.up.xpos",                 "4"                     },
3423   { "player_2.digging.up.ypos",                 "3"                     },
3424   { "player_2.digging.up.frames",               "4"                     },
3425   { "player_2.digging.up.start_frame",          "1"                     },
3426   { "player_2.digging.up.delay",                "4"                     },
3427   { "player_2.digging.left",                    "RocksHeroes.pcx"       },
3428   { "player_2.digging.left.xpos",               "0"                     },
3429   { "player_2.digging.left.ypos",               "4"                     },
3430   { "player_2.digging.left.frames",             "4"                     },
3431   { "player_2.digging.left.start_frame",        "1"                     },
3432   { "player_2.digging.left.delay",              "4"                     },
3433   { "player_2.digging.right",                   "RocksHeroes.pcx"       },
3434   { "player_2.digging.right.xpos",              "4"                     },
3435   { "player_2.digging.right.ypos",              "4"                     },
3436   { "player_2.digging.right.frames",            "4"                     },
3437   { "player_2.digging.right.start_frame",       "1"                     },
3438   { "player_2.digging.right.delay",             "4"                     },
3439   { "player_2.collecting.down",                 "RocksHeroes.pcx"       },
3440   { "player_2.collecting.down.xpos",            "0"                     },
3441   { "player_2.collecting.down.ypos",            "3"                     },
3442   { "player_2.collecting.down.frames",          "4"                     },
3443   { "player_2.collecting.down.start_frame",     "1"                     },
3444   { "player_2.collecting.down.delay",           "4"                     },
3445   { "player_2.collecting.up",                   "RocksHeroes.pcx"       },
3446   { "player_2.collecting.up.xpos",              "4"                     },
3447   { "player_2.collecting.up.ypos",              "3"                     },
3448   { "player_2.collecting.up.frames",            "4"                     },
3449   { "player_2.collecting.up.start_frame",       "1"                     },
3450   { "player_2.collecting.up.delay",             "4"                     },
3451   { "player_2.collecting.left",                 "RocksHeroes.pcx"       },
3452   { "player_2.collecting.left.xpos",            "0"                     },
3453   { "player_2.collecting.left.ypos",            "4"                     },
3454   { "player_2.collecting.left.frames",          "4"                     },
3455   { "player_2.collecting.left.start_frame",     "1"                     },
3456   { "player_2.collecting.left.delay",           "4"                     },
3457   { "player_2.collecting.right",                "RocksHeroes.pcx"       },
3458   { "player_2.collecting.right.xpos",           "4"                     },
3459   { "player_2.collecting.right.ypos",           "4"                     },
3460   { "player_2.collecting.right.frames",         "4"                     },
3461   { "player_2.collecting.right.start_frame",    "1"                     },
3462   { "player_2.collecting.right.delay",          "4"                     },
3463   { "player_2.pushing.down",                    "RocksHeroes.pcx"       },
3464   { "player_2.pushing.down.xpos",               "0"                     },
3465   { "player_2.pushing.down.ypos",               "3"                     },
3466   { "player_2.pushing.down.frames",             "4"                     },
3467   { "player_2.pushing.down.delay",              "4"                     },
3468   { "player_2.pushing.up",                      "RocksHeroes.pcx"       },
3469   { "player_2.pushing.up.xpos",                 "4"                     },
3470   { "player_2.pushing.up.ypos",                 "3"                     },
3471   { "player_2.pushing.up.frames",               "4"                     },
3472   { "player_2.pushing.up.delay",                "4"                     },
3473   { "player_2.pushing.left",                    "RocksHeroes.pcx"       },
3474   { "player_2.pushing.left.xpos",               "4"                     },
3475   { "player_2.pushing.left.ypos",               "5"                     },
3476   { "player_2.pushing.left.frames",             "4"                     },
3477   { "player_2.pushing.left.delay",              "4"                     },
3478   { "player_2.pushing.right",                   "RocksHeroes.pcx"       },
3479   { "player_2.pushing.right.xpos",              "0"                     },
3480   { "player_2.pushing.right.ypos",              "5"                     },
3481   { "player_2.pushing.right.frames",            "4"                     },
3482   { "player_2.pushing.right.delay",             "4"                     },
3483   { "player_2.snapping.down",                   "RocksHeroes.pcx"       },
3484   { "player_2.snapping.down.xpos",              "0"                     },
3485   { "player_2.snapping.down.ypos",              "3"                     },
3486   { "player_2.snapping.down.frames",            "1"                     },
3487   { "player_2.snapping.up",                     "RocksHeroes.pcx"       },
3488   { "player_2.snapping.up.xpos",                "4"                     },
3489   { "player_2.snapping.up.ypos",                "3"                     },
3490   { "player_2.snapping.up.frames",              "1"                     },
3491   { "player_2.snapping.left",                   "RocksHeroes.pcx"       },
3492   { "player_2.snapping.left.xpos",              "0"                     },
3493   { "player_2.snapping.left.ypos",              "4"                     },
3494   { "player_2.snapping.left.frames",            "1"                     },
3495   { "player_2.snapping.right",                  "RocksHeroes.pcx"       },
3496   { "player_2.snapping.right.xpos",             "4"                     },
3497   { "player_2.snapping.right.ypos",             "4"                     },
3498   { "player_2.snapping.right.frames",           "1"                     },
3499
3500   { "player_3",                                 "RocksHeroes.pcx"       },
3501   { "player_3.xpos",                            "0"                     },
3502   { "player_3.ypos",                            "6"                     },
3503   { "player_3.frames",                          "1"                     },
3504   { "player_3.EDITOR",                          "RocksElements.pcx"     },
3505   { "player_3.EDITOR.xpos",                     "6"                     },
3506   { "player_3.EDITOR.ypos",                     "7"                     },
3507   { "player_3.down",                            "RocksHeroes.pcx"       },
3508   { "player_3.down.xpos",                       "0"                     },
3509   { "player_3.down.ypos",                       "6"                     },
3510   { "player_3.down.frames",                     "1"                     },
3511   { "player_3.up",                              "RocksHeroes.pcx"       },
3512   { "player_3.up.xpos",                         "4"                     },
3513   { "player_3.up.ypos",                         "6"                     },
3514   { "player_3.up.frames",                       "1"                     },
3515   { "player_3.left",                            "RocksHeroes.pcx"       },
3516   { "player_3.left.xpos",                       "0"                     },
3517   { "player_3.left.ypos",                       "7"                     },
3518   { "player_3.left.frames",                     "1"                     },
3519   { "player_3.right",                           "RocksHeroes.pcx"       },
3520   { "player_3.right.xpos",                      "4"                     },
3521   { "player_3.right.ypos",                      "7"                     },
3522   { "player_3.right.frames",                    "1"                     },
3523   { "player_3.moving.down",                     "RocksHeroes.pcx"       },
3524   { "player_3.moving.down.xpos",                "0"                     },
3525   { "player_3.moving.down.ypos",                "6"                     },
3526   { "player_3.moving.down.frames",              "4"                     },
3527   { "player_3.moving.down.start_frame",         "1"                     },
3528   { "player_3.moving.down.delay",               "4"                     },
3529   { "player_3.moving.up",                       "RocksHeroes.pcx"       },
3530   { "player_3.moving.up.xpos",                  "4"                     },
3531   { "player_3.moving.up.ypos",                  "6"                     },
3532   { "player_3.moving.up.frames",                "4"                     },
3533   { "player_3.moving.up.start_frame",           "1"                     },
3534   { "player_3.moving.up.delay",                 "4"                     },
3535   { "player_3.moving.left",                     "RocksHeroes.pcx"       },
3536   { "player_3.moving.left.xpos",                "0"                     },
3537   { "player_3.moving.left.ypos",                "7"                     },
3538   { "player_3.moving.left.frames",              "4"                     },
3539   { "player_3.moving.left.start_frame",         "1"                     },
3540   { "player_3.moving.left.delay",               "4"                     },
3541   { "player_3.moving.right",                    "RocksHeroes.pcx"       },
3542   { "player_3.moving.right.xpos",               "4"                     },
3543   { "player_3.moving.right.ypos",               "7"                     },
3544   { "player_3.moving.right.frames",             "4"                     },
3545   { "player_3.moving.right.start_frame",        "1"                     },
3546   { "player_3.moving.right.delay",              "4"                     },
3547   { "player_3.digging.down",                    "RocksHeroes.pcx"       },
3548   { "player_3.digging.down.xpos",               "0"                     },
3549   { "player_3.digging.down.ypos",               "6"                     },
3550   { "player_3.digging.down.frames",             "4"                     },
3551   { "player_3.digging.down.start_frame",        "1"                     },
3552   { "player_3.digging.down.delay",              "4"                     },
3553   { "player_3.digging.up",                      "RocksHeroes.pcx"       },
3554   { "player_3.digging.up.xpos",                 "4"                     },
3555   { "player_3.digging.up.ypos",                 "6"                     },
3556   { "player_3.digging.up.frames",               "4"                     },
3557   { "player_3.digging.up.start_frame",          "1"                     },
3558   { "player_3.digging.up.delay",                "4"                     },
3559   { "player_3.digging.left",                    "RocksHeroes.pcx"       },
3560   { "player_3.digging.left.xpos",               "0"                     },
3561   { "player_3.digging.left.ypos",               "7"                     },
3562   { "player_3.digging.left.frames",             "4"                     },
3563   { "player_3.digging.left.start_frame",        "1"                     },
3564   { "player_3.digging.left.delay",              "4"                     },
3565   { "player_3.digging.right",                   "RocksHeroes.pcx"       },
3566   { "player_3.digging.right.xpos",              "4"                     },
3567   { "player_3.digging.right.ypos",              "7"                     },
3568   { "player_3.digging.right.frames",            "4"                     },
3569   { "player_3.digging.right.start_frame",       "1"                     },
3570   { "player_3.digging.right.delay",             "4"                     },
3571   { "player_3.collecting.down",                 "RocksHeroes.pcx"       },
3572   { "player_3.collecting.down.xpos",            "0"                     },
3573   { "player_3.collecting.down.ypos",            "6"                     },
3574   { "player_3.collecting.down.frames",          "4"                     },
3575   { "player_3.collecting.down.start_frame",     "1"                     },
3576   { "player_3.collecting.down.delay",           "4"                     },
3577   { "player_3.collecting.up",                   "RocksHeroes.pcx"       },
3578   { "player_3.collecting.up.xpos",              "4"                     },
3579   { "player_3.collecting.up.ypos",              "6"                     },
3580   { "player_3.collecting.up.frames",            "4"                     },
3581   { "player_3.collecting.up.start_frame",       "1"                     },
3582   { "player_3.collecting.up.delay",             "4"                     },
3583   { "player_3.collecting.left",                 "RocksHeroes.pcx"       },
3584   { "player_3.collecting.left.xpos",            "0"                     },
3585   { "player_3.collecting.left.ypos",            "7"                     },
3586   { "player_3.collecting.left.frames",          "4"                     },
3587   { "player_3.collecting.left.start_frame",     "1"                     },
3588   { "player_3.collecting.left.delay",           "4"                     },
3589   { "player_3.collecting.right",                "RocksHeroes.pcx"       },
3590   { "player_3.collecting.right.xpos",           "4"                     },
3591   { "player_3.collecting.right.ypos",           "7"                     },
3592   { "player_3.collecting.right.frames",         "4"                     },
3593   { "player_3.collecting.right.start_frame",    "1"                     },
3594   { "player_3.collecting.right.delay",          "4"                     },
3595   { "player_3.pushing.down",                    "RocksHeroes.pcx"       },
3596   { "player_3.pushing.down.xpos",               "0"                     },
3597   { "player_3.pushing.down.ypos",               "6"                     },
3598   { "player_3.pushing.down.frames",             "4"                     },
3599   { "player_3.pushing.down.delay",              "4"                     },
3600   { "player_3.pushing.up",                      "RocksHeroes.pcx"       },
3601   { "player_3.pushing.up.xpos",                 "4"                     },
3602   { "player_3.pushing.up.ypos",                 "6"                     },
3603   { "player_3.pushing.up.frames",               "4"                     },
3604   { "player_3.pushing.up.delay",                "4"                     },
3605   { "player_3.pushing.left",                    "RocksHeroes.pcx"       },
3606   { "player_3.pushing.left.xpos",               "4"                     },
3607   { "player_3.pushing.left.ypos",               "8"                     },
3608   { "player_3.pushing.left.frames",             "4"                     },
3609   { "player_3.pushing.left.delay",              "4"                     },
3610   { "player_3.pushing.right",                   "RocksHeroes.pcx"       },
3611   { "player_3.pushing.right.xpos",              "0"                     },
3612   { "player_3.pushing.right.ypos",              "8"                     },
3613   { "player_3.pushing.right.frames",            "4"                     },
3614   { "player_3.pushing.right.delay",             "4"                     },
3615   { "player_3.snapping.down",                   "RocksHeroes.pcx"       },
3616   { "player_3.snapping.down.xpos",              "0"                     },
3617   { "player_3.snapping.down.ypos",              "6"                     },
3618   { "player_3.snapping.down.frames",            "1"                     },
3619   { "player_3.snapping.up",                     "RocksHeroes.pcx"       },
3620   { "player_3.snapping.up.xpos",                "4"                     },
3621   { "player_3.snapping.up.ypos",                "6"                     },
3622   { "player_3.snapping.up.frames",              "1"                     },
3623   { "player_3.snapping.left",                   "RocksHeroes.pcx"       },
3624   { "player_3.snapping.left.xpos",              "0"                     },
3625   { "player_3.snapping.left.ypos",              "7"                     },
3626   { "player_3.snapping.left.frames",            "1"                     },
3627   { "player_3.snapping.right",                  "RocksHeroes.pcx"       },
3628   { "player_3.snapping.right.xpos",             "4"                     },
3629   { "player_3.snapping.right.ypos",             "7"                     },
3630   { "player_3.snapping.right.frames",           "1"                     },
3631
3632   { "player_4",                                 "RocksHeroes.pcx"       },
3633   { "player_4.xpos",                            "0"                     },
3634   { "player_4.ypos",                            "9"                     },
3635   { "player_4.frames",                          "1"                     },
3636   { "player_4.EDITOR",                          "RocksElements.pcx"     },
3637   { "player_4.EDITOR.xpos",                     "7"                     },
3638   { "player_4.EDITOR.ypos",                     "7"                     },
3639   { "player_4.down",                            "RocksHeroes.pcx"       },
3640   { "player_4.down.xpos",                       "0"                     },
3641   { "player_4.down.ypos",                       "9"                     },
3642   { "player_4.down.frames",                     "1"                     },
3643   { "player_4.up",                              "RocksHeroes.pcx"       },
3644   { "player_4.up.xpos",                         "4"                     },
3645   { "player_4.up.ypos",                         "9"                     },
3646   { "player_4.up.frames",                       "1"                     },
3647   { "player_4.left",                            "RocksHeroes.pcx"       },
3648   { "player_4.left.xpos",                       "0"                     },
3649   { "player_4.left.ypos",                       "10"                    },
3650   { "player_4.left.frames",                     "1"                     },
3651   { "player_4.right",                           "RocksHeroes.pcx"       },
3652   { "player_4.right.xpos",                      "4"                     },
3653   { "player_4.right.ypos",                      "10"                    },
3654   { "player_4.right.frames",                    "1"                     },
3655   { "player_4.moving.down",                     "RocksHeroes.pcx"       },
3656   { "player_4.moving.down.xpos",                "0"                     },
3657   { "player_4.moving.down.ypos",                "9"                     },
3658   { "player_4.moving.down.frames",              "4"                     },
3659   { "player_4.moving.down.start_frame",         "1"                     },
3660   { "player_4.moving.down.delay",               "4"                     },
3661   { "player_4.moving.up",                       "RocksHeroes.pcx"       },
3662   { "player_4.moving.up.xpos",                  "4"                     },
3663   { "player_4.moving.up.ypos",                  "9"                     },
3664   { "player_4.moving.up.frames",                "4"                     },
3665   { "player_4.moving.up.start_frame",           "1"                     },
3666   { "player_4.moving.up.delay",                 "4"                     },
3667   { "player_4.moving.left",                     "RocksHeroes.pcx"       },
3668   { "player_4.moving.left.xpos",                "0"                     },
3669   { "player_4.moving.left.ypos",                "10"                    },
3670   { "player_4.moving.left.frames",              "4"                     },
3671   { "player_4.moving.left.start_frame",         "1"                     },
3672   { "player_4.moving.left.delay",               "4"                     },
3673   { "player_4.moving.right",                    "RocksHeroes.pcx"       },
3674   { "player_4.moving.right.xpos",               "4"                     },
3675   { "player_4.moving.right.ypos",               "10"                    },
3676   { "player_4.moving.right.frames",             "4"                     },
3677   { "player_4.moving.right.start_frame",        "1"                     },
3678   { "player_4.moving.right.delay",              "4"                     },
3679   { "player_4.digging.down",                    "RocksHeroes.pcx"       },
3680   { "player_4.digging.down.xpos",               "0"                     },
3681   { "player_4.digging.down.ypos",               "9"                     },
3682   { "player_4.digging.down.frames",             "4"                     },
3683   { "player_4.digging.down.start_frame",        "1"                     },
3684   { "player_4.digging.down.delay",              "4"                     },
3685   { "player_4.digging.up",                      "RocksHeroes.pcx"       },
3686   { "player_4.digging.up.xpos",                 "4"                     },
3687   { "player_4.digging.up.ypos",                 "9"                     },
3688   { "player_4.digging.up.frames",               "4"                     },
3689   { "player_4.digging.up.start_frame",          "1"                     },
3690   { "player_4.digging.up.delay",                "4"                     },
3691   { "player_4.digging.left",                    "RocksHeroes.pcx"       },
3692   { "player_4.digging.left.xpos",               "0"                     },
3693   { "player_4.digging.left.ypos",               "10"                    },
3694   { "player_4.digging.left.frames",             "4"                     },
3695   { "player_4.digging.left.start_frame",        "1"                     },
3696   { "player_4.digging.left.delay",              "4"                     },
3697   { "player_4.digging.right",                   "RocksHeroes.pcx"       },
3698   { "player_4.digging.right.xpos",              "4"                     },
3699   { "player_4.digging.right.ypos",              "10"                    },
3700   { "player_4.digging.right.frames",            "4"                     },
3701   { "player_4.digging.right.start_frame",       "1"                     },
3702   { "player_4.digging.right.delay",             "4"                     },
3703   { "player_4.collecting.down",                 "RocksHeroes.pcx"       },
3704   { "player_4.collecting.down.xpos",            "0"                     },
3705   { "player_4.collecting.down.ypos",            "9"                     },
3706   { "player_4.collecting.down.frames",          "4"                     },
3707   { "player_4.collecting.down.start_frame",     "1"                     },
3708   { "player_4.collecting.down.delay",           "4"                     },
3709   { "player_4.collecting.up",                   "RocksHeroes.pcx"       },
3710   { "player_4.collecting.up.xpos",              "4"                     },
3711   { "player_4.collecting.up.ypos",              "9"                     },
3712   { "player_4.collecting.up.frames",            "4"                     },
3713   { "player_4.collecting.up.start_frame",       "1"                     },
3714   { "player_4.collecting.up.delay",             "4"                     },
3715   { "player_4.collecting.left",                 "RocksHeroes.pcx"       },
3716   { "player_4.collecting.left.xpos",            "0"                     },
3717   { "player_4.collecting.left.ypos",            "10"                    },
3718   { "player_4.collecting.left.frames",          "4"                     },
3719   { "player_4.collecting.left.start_frame",     "1"                     },
3720   { "player_4.collecting.left.delay",           "4"                     },
3721   { "player_4.collecting.right",                "RocksHeroes.pcx"       },
3722   { "player_4.collecting.right.xpos",           "4"                     },
3723   { "player_4.collecting.right.ypos",           "10"                    },
3724   { "player_4.collecting.right.frames",         "4"                     },
3725   { "player_4.collecting.right.start_frame",    "1"                     },
3726   { "player_4.collecting.right.delay",          "4"                     },
3727   { "player_4.pushing.down",                    "RocksHeroes.pcx"       },
3728   { "player_4.pushing.down.xpos",               "0"                     },
3729   { "player_4.pushing.down.ypos",               "9"                     },
3730   { "player_4.pushing.down.frames",             "4"                     },
3731   { "player_4.pushing.down.delay",              "4"                     },
3732   { "player_4.pushing.up",                      "RocksHeroes.pcx"       },
3733   { "player_4.pushing.up.xpos",                 "4"                     },
3734   { "player_4.pushing.up.ypos",                 "9"                     },
3735   { "player_4.pushing.up.frames",               "4"                     },
3736   { "player_4.pushing.up.delay",                "4"                     },
3737   { "player_4.pushing.left",                    "RocksHeroes.pcx"       },
3738   { "player_4.pushing.left.xpos",               "4"                     },
3739   { "player_4.pushing.left.ypos",               "11"                    },
3740   { "player_4.pushing.left.frames",             "4"                     },
3741   { "player_4.pushing.left.delay",              "4"                     },
3742   { "player_4.pushing.right",                   "RocksHeroes.pcx"       },
3743   { "player_4.pushing.right.xpos",              "0"                     },
3744   { "player_4.pushing.right.ypos",              "11"                    },
3745   { "player_4.pushing.right.frames",            "4"                     },
3746   { "player_4.pushing.right.delay",             "4"                     },
3747   { "player_4.snapping.down",                   "RocksHeroes.pcx"       },
3748   { "player_4.snapping.down.xpos",              "0"                     },
3749   { "player_4.snapping.down.ypos",              "9"                     },
3750   { "player_4.snapping.down.frames",            "1"                     },
3751   { "player_4.snapping.up",                     "RocksHeroes.pcx"       },
3752   { "player_4.snapping.up.xpos",                "4"                     },
3753   { "player_4.snapping.up.ypos",                "9"                     },
3754   { "player_4.snapping.up.frames",              "1"                     },
3755   { "player_4.snapping.left",                   "RocksHeroes.pcx"       },
3756   { "player_4.snapping.left.xpos",              "0"                     },
3757   { "player_4.snapping.left.ypos",              "10"                    },
3758   { "player_4.snapping.left.frames",            "1"                     },
3759   { "player_4.snapping.right",                  "RocksHeroes.pcx"       },
3760   { "player_4.snapping.right.xpos",             "4"                     },
3761   { "player_4.snapping.right.ypos",             "10"                    },
3762   { "player_4.snapping.right.frames",           "1"                     },
3763
3764   { "[default].exploding",                      "RocksElements.pcx"     },
3765   { "[default].exploding.xpos",                 "0"                     },
3766   { "[default].exploding.ypos",                 "4"                     },
3767   { "[default].exploding.frames",               "8"                     },
3768   { "[default].exploding.delay",                "2"                     },
3769   { "[default].exploding.anim_mode",            "linear"                },
3770
3771   { "twinkle_blue",                             "RocksHeroes.pcx"       },
3772   { "twinkle_blue.xpos",                        "9"                     },
3773   { "twinkle_blue.ypos",                        "11"                    },
3774   { "twinkle_blue.frames",                      "3"                     },
3775   { "twinkle_blue.delay",                       "2"                     },
3776   { "twinkle_blue.anim_mode",                   "pingpong"              },
3777   { "twinkle_blue.global_sync",                 "false"                 },
3778   { "twinkle_white",                            "RocksHeroes.pcx"       },
3779   { "twinkle_white.xpos",                       "13"                    },
3780   { "twinkle_white.ypos",                       "11"                    },
3781   { "twinkle_white.frames",                     "3"                     },
3782   { "twinkle_white.delay",                      "2"                     },
3783   { "twinkle_white.anim_mode",                  "pingpong"              },
3784   { "twinkle_white.global_sync",                "false"                 },
3785
3786   { "steelwall_topleft",                        "RocksElements.pcx"     },
3787   { "steelwall_topleft.xpos",                   "4"                     },
3788   { "steelwall_topleft.ypos",                   "0"                     },
3789   { "steelwall_topleft.frames",                 "1"                     },
3790   { "steelwall_topright",                       "RocksElements.pcx"     },
3791   { "steelwall_topright.xpos",                  "4"                     },
3792   { "steelwall_topright.ypos",                  "0"                     },
3793   { "steelwall_topright.frames",                "1"                     },
3794   { "steelwall_bottomleft",                     "RocksElements.pcx"     },
3795   { "steelwall_bottomleft.xpos",                "4"                     },
3796   { "steelwall_bottomleft.ypos",                "0"                     },
3797   { "steelwall_bottomleft.frames",              "1"                     },
3798   { "steelwall_bottomright",                    "RocksElements.pcx"     },
3799   { "steelwall_bottomright.xpos",               "4"                     },
3800   { "steelwall_bottomright.ypos",               "0"                     },
3801   { "steelwall_bottomright.frames",             "1"                     },
3802   { "steelwall_horizontal",                     "RocksElements.pcx"     },
3803   { "steelwall_horizontal.xpos",                "4"                     },
3804   { "steelwall_horizontal.ypos",                "0"                     },
3805   { "steelwall_horizontal.frames",              "1"                     },
3806   { "steelwall_vertical",                       "RocksElements.pcx"     },
3807   { "steelwall_vertical.xpos",                  "4"                     },
3808   { "steelwall_vertical.ypos",                  "0"                     },
3809   { "steelwall_vertical.frames",                "1"                     },
3810
3811   { "steelwall_topleft.EDITOR",                 "RocksElements.pcx"     },
3812   { "steelwall_topleft.EDITOR.xpos",            "0"                     },
3813   { "steelwall_topleft.EDITOR.ypos",            "13"                    },
3814   { "steelwall_topright.EDITOR",                "RocksElements.pcx"     },
3815   { "steelwall_topright.EDITOR.xpos",           "1"                     },
3816   { "steelwall_topright.EDITOR.ypos",           "13"                    },
3817   { "steelwall_bottomleft.EDITOR",              "RocksElements.pcx"     },
3818   { "steelwall_bottomleft.EDITOR.xpos",         "2"                     },
3819   { "steelwall_bottomleft.EDITOR.ypos",         "13"                    },
3820   { "steelwall_bottomright.EDITOR",             "RocksElements.pcx"     },
3821   { "steelwall_bottomright.EDITOR.xpos",        "3"                     },
3822   { "steelwall_bottomright.EDITOR.ypos",        "13"                    },
3823   { "steelwall_horizontal.EDITOR",              "RocksElements.pcx"     },
3824   { "steelwall_horizontal.EDITOR.xpos",         "4"                     },
3825   { "steelwall_horizontal.EDITOR.ypos",         "13"                    },
3826   { "steelwall_vertical.EDITOR",                "RocksElements.pcx"     },
3827   { "steelwall_vertical.EDITOR.xpos",           "5"                     },
3828   { "steelwall_vertical.EDITOR.ypos",           "13"                    },
3829
3830   { "invisible_steelwall_topleft",              "RocksSP.pcx"           },
3831   { "invisible_steelwall_topleft.xpos",         "0"                     },
3832   { "invisible_steelwall_topleft.ypos",         "0"                     },
3833   { "invisible_steelwall_topleft.frames",       "1"                     },
3834   { "invisible_steelwall_topright",             "RocksSP.pcx"           },
3835   { "invisible_steelwall_topright.xpos",        "0"                     },
3836   { "invisible_steelwall_topright.ypos",        "0"                     },
3837   { "invisible_steelwall_topright.frames",      "1"                     },
3838   { "invisible_steelwall_bottomleft",           "RocksSP.pcx"           },
3839   { "invisible_steelwall_bottomleft.xpos",      "0"                     },
3840   { "invisible_steelwall_bottomleft.ypos",      "0"                     },
3841   { "invisible_steelwall_bottomleft.frames",    "1"                     },
3842   { "invisible_steelwall_bottomright",          "RocksSP.pcx"           },
3843   { "invisible_steelwall_bottomright.xpos",     "0"                     },
3844   { "invisible_steelwall_bottomright.ypos",     "0"                     },
3845   { "invisible_steelwall_bottomright.frames",   "1"                     },
3846   { "invisible_steelwall_horizontal",           "RocksSP.pcx"           },
3847   { "invisible_steelwall_horizontal.xpos",      "0"                     },
3848   { "invisible_steelwall_horizontal.ypos",      "0"                     },
3849   { "invisible_steelwall_horizontal.frames",    "1"                     },
3850   { "invisible_steelwall_vertical",             "RocksSP.pcx"           },
3851   { "invisible_steelwall_vertical.xpos",        "0"                     },
3852   { "invisible_steelwall_vertical.ypos",        "0"                     },
3853   { "invisible_steelwall_vertical.frames",      "1"                     },
3854
3855   { "invisible_steelwall_topleft.EDITOR",       "RocksElements.pcx"     },
3856   { "invisible_steelwall_topleft.EDITOR.xpos",  "6"                     },
3857   { "invisible_steelwall_topleft.EDITOR.ypos",  "13"                    },
3858   { "invisible_steelwall_topright.EDITOR",      "RocksElements.pcx"     },
3859   { "invisible_steelwall_topright.EDITOR.xpos", "7"                     },
3860   { "invisible_steelwall_topright.EDITOR.ypos", "13"                    },
3861   { "invisible_steelwall_bottomleft.EDITOR",    "RocksElements.pcx"     },
3862   { "invisible_steelwall_bottomleft.EDITOR.xpos","8"                    },
3863   { "invisible_steelwall_bottomleft.EDITOR.ypos","13"                   },
3864   { "invisible_steelwall_bottomright.EDITOR",   "RocksElements.pcx"     },
3865   { "invisible_steelwall_bottomright.EDITOR.xpos","9"                   },
3866   { "invisible_steelwall_bottomright.EDITOR.ypos","13"                  },
3867   { "invisible_steelwall_horizontal.EDITOR",    "RocksElements.pcx"     },
3868   { "invisible_steelwall_horizontal.EDITOR.xpos","10"                   },
3869   { "invisible_steelwall_horizontal.EDITOR.ypos","13"                   },
3870   { "invisible_steelwall_vertical.EDITOR",      "RocksElements.pcx"     },
3871   { "invisible_steelwall_vertical.EDITOR.xpos", "11"                    },
3872   { "invisible_steelwall_vertical.EDITOR.ypos", "13"                    },
3873
3874   { "arrow_left",                               "RocksDC.pcx"           },
3875   { "arrow_left.xpos",                          "8"                     },
3876   { "arrow_left.ypos",                          "8"                     },
3877   { "arrow_left.frames",                        "1"                     },
3878   { "arrow_right",                              "RocksDC.pcx"           },
3879   { "arrow_right.xpos",                         "9"                     },
3880   { "arrow_right.ypos",                         "8"                     },
3881   { "arrow_right.frames",                       "1"                     },
3882   { "arrow_up",                                 "RocksDC.pcx"           },
3883   { "arrow_up.xpos",                            "10"                    },
3884   { "arrow_up.ypos",                            "8"                     },
3885   { "arrow_up.frames",                          "1"                     },
3886   { "arrow_down",                               "RocksDC.pcx"           },
3887   { "arrow_down.xpos",                          "11"                    },
3888   { "arrow_down.ypos",                          "8"                     },
3889   { "arrow_down.frames",                        "1"                     },
3890
3891   { "unknown",                                  "RocksFontEM.pcx"       },
3892   { "unknown.xpos",                             "15"                    },
3893   { "unknown.ypos",                             "1"                     },
3894   { "unknown.frames",                           "1"                     },
3895
3896   { "trigger_element",                          "RocksDC.pcx"           },
3897   { "trigger_element.xpos",                     "15"                    },
3898   { "trigger_element.ypos",                     "14"                    },
3899   { "trigger_element.frames",                   "1"                     },
3900
3901   { "trigger_player",                           "RocksDC.pcx"           },
3902   { "trigger_player.xpos",                      "15"                    },
3903   { "trigger_player.ypos",                      "13"                    },
3904   { "trigger_player.frames",                    "1"                     },
3905
3906   { "trigger_ce_value",                         "RocksDC.pcx"           },
3907   { "trigger_ce_value.xpos",                    "15"                    },
3908   { "trigger_ce_value.ypos",                    "11"                    },
3909   { "trigger_ce_value.frames",                  "1"                     },
3910
3911   { "trigger_ce_score",                         "RocksDC.pcx"           },
3912   { "trigger_ce_score.xpos",                    "15"                    },
3913   { "trigger_ce_score.ypos",                    "12"                    },
3914   { "trigger_ce_score.frames",                  "1"                     },
3915
3916   { "current_ce_value",                         "RocksDC.pcx"           },
3917   { "current_ce_value.xpos",                    "14"                    },
3918   { "current_ce_value.ypos",                    "11"                    },
3919   { "current_ce_value.frames",                  "1"                     },
3920
3921   { "current_ce_score",                         "RocksDC.pcx"           },
3922   { "current_ce_score.xpos",                    "14"                    },
3923   { "current_ce_score.ypos",                    "12"                    },
3924   { "current_ce_score.frames",                  "1"                     },
3925
3926   { "prev_ce_1",                                "RocksMore.pcx"         },
3927   { "prev_ce_1.xpos",                           "0"                     },
3928   { "prev_ce_1.ypos",                           "7"                     },
3929   { "prev_ce_1.frames",                         "1"                     },
3930
3931   { "prev_ce_2",                                "RocksMore.pcx"         },
3932   { "prev_ce_2.xpos",                           "1"                     },
3933   { "prev_ce_2.ypos",                           "7"                     },
3934   { "prev_ce_2.frames",                         "1"                     },
3935
3936   { "prev_ce_3",                                "RocksMore.pcx"         },
3937   { "prev_ce_3.xpos",                           "2"                     },
3938   { "prev_ce_3.ypos",                           "7"                     },
3939   { "prev_ce_3.frames",                         "1"                     },
3940
3941   { "prev_ce_4",                                "RocksMore.pcx"         },
3942   { "prev_ce_4.xpos",                           "3"                     },
3943   { "prev_ce_4.ypos",                           "7"                     },
3944   { "prev_ce_4.frames",                         "1"                     },
3945
3946   { "prev_ce_5",                                "RocksMore.pcx"         },
3947   { "prev_ce_5.xpos",                           "4"                     },
3948   { "prev_ce_5.ypos",                           "7"                     },
3949   { "prev_ce_5.frames",                         "1"                     },
3950
3951   { "prev_ce_6",                                "RocksMore.pcx"         },
3952   { "prev_ce_6.xpos",                           "5"                     },
3953   { "prev_ce_6.ypos",                           "7"                     },
3954   { "prev_ce_6.frames",                         "1"                     },
3955
3956   { "prev_ce_7",                                "RocksMore.pcx"         },
3957   { "prev_ce_7.xpos",                           "6"                     },
3958   { "prev_ce_7.ypos",                           "7"                     },
3959   { "prev_ce_7.frames",                         "1"                     },
3960
3961   { "prev_ce_8",                                "RocksMore.pcx"         },
3962   { "prev_ce_8.xpos",                           "7"                     },
3963   { "prev_ce_8.ypos",                           "7"                     },
3964   { "prev_ce_8.frames",                         "1"                     },
3965
3966   { "next_ce_1",                                "RocksMore.pcx"         },
3967   { "next_ce_1.xpos",                           "0"                     },
3968   { "next_ce_1.ypos",                           "8"                     },
3969   { "next_ce_1.frames",                         "1"                     },
3970
3971   { "next_ce_2",                                "RocksMore.pcx"         },
3972   { "next_ce_2.xpos",                           "1"                     },
3973   { "next_ce_2.ypos",                           "8"                     },
3974   { "next_ce_2.frames",                         "1"                     },
3975
3976   { "next_ce_3",                                "RocksMore.pcx"         },
3977   { "next_ce_3.xpos",                           "2"                     },
3978   { "next_ce_3.ypos",                           "8"                     },
3979   { "next_ce_3.frames",                         "1"                     },
3980
3981   { "next_ce_4",                                "RocksMore.pcx"         },
3982   { "next_ce_4.xpos",                           "3"                     },
3983   { "next_ce_4.ypos",                           "8"                     },
3984   { "next_ce_4.frames",                         "1"                     },
3985
3986   { "next_ce_5",                                "RocksMore.pcx"         },
3987   { "next_ce_5.xpos",                           "4"                     },
3988   { "next_ce_5.ypos",                           "8"                     },
3989   { "next_ce_5.frames",                         "1"                     },
3990
3991   { "next_ce_6",                                "RocksMore.pcx"         },
3992   { "next_ce_6.xpos",                           "5"                     },
3993   { "next_ce_6.ypos",                           "8"                     },
3994   { "next_ce_6.frames",                         "1"                     },
3995
3996   { "next_ce_7",                                "RocksMore.pcx"         },
3997   { "next_ce_7.xpos",                           "6"                     },
3998   { "next_ce_7.ypos",                           "8"                     },
3999   { "next_ce_7.frames",                         "1"                     },
4000
4001   { "next_ce_8",                                "RocksMore.pcx"         },
4002   { "next_ce_8.xpos",                           "7"                     },
4003   { "next_ce_8.ypos",                           "8"                     },
4004   { "next_ce_8.frames",                         "1"                     },
4005
4006   { "self",                                     "RocksMore.pcx"         },
4007   { "self.xpos",                                "8"                     },
4008   { "self.ypos",                                "7"                     },
4009   { "self.frames",                              "1"                     },
4010
4011   { "any_element",                              "RocksMore.pcx"         },
4012   { "any_element.xpos",                         "9"                     },
4013   { "any_element.ypos",                         "7"                     },
4014   { "any_element.frames",                       "1"                     },
4015
4016   { "emc_key_5",                                "RocksEMC.pcx"          },
4017   { "emc_key_5.xpos",                           "0"                     },
4018   { "emc_key_5.ypos",                           "5"                     },
4019   { "emc_key_5.frames",                         "1"                     },
4020   { "emc_key_6",                                "RocksEMC.pcx"          },
4021   { "emc_key_6.xpos",                           "1"                     },
4022   { "emc_key_6.ypos",                           "5"                     },
4023   { "emc_key_6.frames",                         "1"                     },
4024   { "emc_key_7",                                "RocksEMC.pcx"          },
4025   { "emc_key_7.xpos",                           "2"                     },
4026   { "emc_key_7.ypos",                           "5"                     },
4027   { "emc_key_7.frames",                         "1"                     },
4028   { "emc_key_8",                                "RocksEMC.pcx"          },
4029   { "emc_key_8.xpos",                           "3"                     },
4030   { "emc_key_8.ypos",                           "5"                     },
4031   { "emc_key_8.frames",                         "1"                     },
4032
4033   { "emc_gate_5",                               "RocksEMC.pcx"          },
4034   { "emc_gate_5.xpos",                          "0"                     },
4035   { "emc_gate_5.ypos",                          "6"                     },
4036   { "emc_gate_5.frames",                        "1"                     },
4037   { "emc_gate_6",                               "RocksEMC.pcx"          },
4038   { "emc_gate_6.xpos",                          "1"                     },
4039   { "emc_gate_6.ypos",                          "6"                     },
4040   { "emc_gate_6.frames",                        "1"                     },
4041   { "emc_gate_7",                               "RocksEMC.pcx"          },
4042   { "emc_gate_7.xpos",                          "2"                     },
4043   { "emc_gate_7.ypos",                          "6"                     },
4044   { "emc_gate_7.frames",                        "1"                     },
4045   { "emc_gate_8",                               "RocksEMC.pcx"          },
4046   { "emc_gate_8.xpos",                          "3"                     },
4047   { "emc_gate_8.ypos",                          "6"                     },
4048   { "emc_gate_8.frames",                        "1"                     },
4049   { "emc_gate_5_gray",                          "RocksEMC.pcx"          },
4050   { "emc_gate_5_gray.xpos",                     "4"                     },
4051   { "emc_gate_5_gray.ypos",                     "7"                     },
4052   { "emc_gate_5_gray.frames",                   "1"                     },
4053   { "emc_gate_5_gray.EDITOR",                   "RocksEMC.pcx"          },
4054   { "emc_gate_5_gray.EDITOR.xpos",              "0"                     },
4055   { "emc_gate_5_gray.EDITOR.ypos",              "7"                     },
4056   { "emc_gate_5_gray.active",                   "RocksEMC.pcx"          },
4057   { "emc_gate_5_gray.active.xpos",              "0"                     },
4058   { "emc_gate_5_gray.active.ypos",              "6"                     },
4059   { "emc_gate_5_gray.active.frames",            "1"                     },
4060   { "emc_gate_6_gray",                          "RocksEMC.pcx"          },
4061   { "emc_gate_6_gray.xpos",                     "4"                     },
4062   { "emc_gate_6_gray.ypos",                     "7"                     },
4063   { "emc_gate_6_gray.frames",                   "1"                     },
4064   { "emc_gate_6_gray.EDITOR",                   "RocksEMC.pcx"          },
4065   { "emc_gate_6_gray.EDITOR.xpos",              "1"                     },
4066   { "emc_gate_6_gray.EDITOR.ypos",              "7"                     },
4067   { "emc_gate_6_gray.active",                   "RocksEMC.pcx"          },
4068   { "emc_gate_6_gray.active.xpos",              "1"                     },
4069   { "emc_gate_6_gray.active.ypos",              "6"                     },
4070   { "emc_gate_6_gray.active.frames",            "1"                     },
4071   { "emc_gate_7_gray",                          "RocksEMC.pcx"          },
4072   { "emc_gate_7_gray.xpos",                     "4"                     },
4073   { "emc_gate_7_gray.ypos",                     "7"                     },
4074   { "emc_gate_7_gray.frames",                   "1"                     },
4075   { "emc_gate_7_gray.EDITOR",                   "RocksEMC.pcx"          },
4076   { "emc_gate_7_gray.EDITOR.xpos",              "2"                     },
4077   { "emc_gate_7_gray.EDITOR.ypos",              "7"                     },
4078   { "emc_gate_7_gray.active",                   "RocksEMC.pcx"          },
4079   { "emc_gate_7_gray.active.xpos",              "2"                     },
4080   { "emc_gate_7_gray.active.ypos",              "6"                     },
4081   { "emc_gate_7_gray.active.frames",            "1"                     },
4082   { "emc_gate_8_gray",                          "RocksEMC.pcx"          },
4083   { "emc_gate_8_gray.xpos",                     "4"                     },
4084   { "emc_gate_8_gray.ypos",                     "7"                     },
4085   { "emc_gate_8_gray.frames",                   "1"                     },
4086   { "emc_gate_8_gray.EDITOR",                   "RocksEMC.pcx"          },
4087   { "emc_gate_8_gray.EDITOR.xpos",              "3"                     },
4088   { "emc_gate_8_gray.EDITOR.ypos",              "7"                     },
4089   { "emc_gate_8_gray.active",                   "RocksEMC.pcx"          },
4090   { "emc_gate_8_gray.active.xpos",              "3"                     },
4091   { "emc_gate_8_gray.active.ypos",              "6"                     },
4092   { "emc_gate_8_gray.active.frames",            "1"                     },
4093
4094   { "emc_android",                              "RocksEMC.pcx"          },
4095   { "emc_android.xpos",                         "0"                     },
4096   { "emc_android.ypos",                         "8"                     },
4097   { "emc_android.frames",                       "8"                     },
4098   { "emc_android.delay",                        "2"                     },
4099
4100   { "emc_android.shrinking.upleft",             "RocksEMC.pcx"          },
4101   { "emc_android.shrinking.upleft.xpos",        "1"                     },
4102   { "emc_android.shrinking.upleft.ypos",        "11"                    },
4103   { "emc_android.shrinking.upleft.frames",      "8"                     },
4104   { "emc_android.shrinking.upleft.anim_mode",   "linear"                },
4105
4106   { "emc_android.growing.downright",            "RocksEMC.pcx"          },
4107   { "emc_android.growing.downright.xpos",       "0"                     },
4108   { "emc_android.growing.downright.ypos",       "11"                    },
4109   { "emc_android.growing.downright.frames",     "8"                     },
4110   { "emc_android.growing.downright.anim_mode",  "linear,reverse"        },
4111
4112   { "emc_android.shrinking.downleft",           "RocksEMC.pcx"          },
4113   { "emc_android.shrinking.downleft.xpos",      "1"                     },
4114   { "emc_android.shrinking.downleft.ypos",      "12"                    },
4115   { "emc_android.shrinking.downleft.frames",    "8"                     },
4116   { "emc_android.shrinking.downleft.anim_mode", "linear"                },
4117
4118   { "emc_android.growing.upright",              "RocksEMC.pcx"          },
4119   { "emc_android.growing.upright.xpos",         "0"                     },
4120   { "emc_android.growing.upright.ypos",         "12"                    },
4121   { "emc_android.growing.upright.frames",       "8"                     },
4122   { "emc_android.growing.upright.anim_mode",    "linear,reverse"        },
4123
4124   { "emc_android.shrinking.upright",            "RocksEMC.pcx"          },
4125   { "emc_android.shrinking.upright.xpos",       "1"                     },
4126   { "emc_android.shrinking.upright.ypos",       "13"                    },
4127   { "emc_android.shrinking.upright.frames",     "8"                     },
4128   { "emc_android.shrinking.upright.anim_mode",  "linear"                },
4129
4130   { "emc_android.growing.downleft",             "RocksEMC.pcx"          },
4131   { "emc_android.growing.downleft.xpos",        "0"                     },
4132   { "emc_android.growing.downleft.ypos",        "13"                    },
4133   { "emc_android.growing.downleft.frames",      "8"                     },
4134   { "emc_android.growing.downleft.anim_mode",   "linear,reverse"        },
4135
4136   { "emc_android.shrinking.downright",          "RocksEMC.pcx"          },
4137   { "emc_android.shrinking.downright.xpos",     "1"                     },
4138   { "emc_android.shrinking.downright.ypos",     "14"                    },
4139   { "emc_android.shrinking.downright.frames",   "8"                     },
4140   { "emc_android.shrinking.downright.anim_mode","linear"                },
4141
4142   { "emc_android.growing.upleft",               "RocksEMC.pcx"          },
4143   { "emc_android.growing.upleft.xpos",          "0"                     },
4144   { "emc_android.growing.upleft.ypos",          "14"                    },
4145   { "emc_android.growing.upleft.frames",        "8"                     },
4146   { "emc_android.growing.upleft.anim_mode",     "linear,reverse"        },
4147
4148   { "emc_grass",                                "RocksEMC.pcx"          },
4149   { "emc_grass.xpos",                           "0"                     },
4150   { "emc_grass.ypos",                           "4"                     },
4151   { "emc_grass.frames",                         "1"                     },
4152   { "emc_grass.CRUMBLED",                       "RocksEMC.pcx"          },
4153   { "emc_grass.CRUMBLED.xpos",                  "1"                     },
4154   { "emc_grass.CRUMBLED.ypos",                  "4"                     },
4155   { "emc_grass.CRUMBLED.frames",                "1"                     },
4156   { "emc_grass.digging.left",                   "RocksEMC.pcx"          },
4157   { "emc_grass.digging.left.xpos",              "6"                     },
4158   { "emc_grass.digging.left.ypos",              "0"                     },
4159   { "emc_grass.digging.left.frames",            "3"                     },
4160   { "emc_grass.digging.left.delay",             "2"                     },
4161   { "emc_grass.digging.left.anim_mode",         "linear"                },
4162   { "emc_grass.digging.right",                  "RocksEMC.pcx"          },
4163   { "emc_grass.digging.right.xpos",             "9"                     },
4164   { "emc_grass.digging.right.ypos",             "0"                     },
4165   { "emc_grass.digging.right.frames",           "3"                     },
4166   { "emc_grass.digging.right.delay",            "2"                     },
4167   { "emc_grass.digging.right.anim_mode",        "linear"                },
4168   { "emc_grass.digging.up",                     "RocksEMC.pcx"          },
4169   { "emc_grass.digging.up.xpos",                "0"                     },
4170   { "emc_grass.digging.up.ypos",                "0"                     },
4171   { "emc_grass.digging.up.frames",              "3"                     },
4172   { "emc_grass.digging.up.delay",               "2"                     },
4173   { "emc_grass.digging.up.anim_mode",           "linear"                },
4174   { "emc_grass.digging.down",                   "RocksEMC.pcx"          },
4175   { "emc_grass.digging.down.xpos",              "3"                     },
4176   { "emc_grass.digging.down.ypos",              "0"                     },
4177   { "emc_grass.digging.down.frames",            "3"                     },
4178   { "emc_grass.digging.down.delay",             "2"                     },
4179   { "emc_grass.digging.down.anim_mode",         "linear"                },
4180   { "emc_grass.digging.left.CRUMBLED",          "RocksEMC.pcx"          },
4181   { "emc_grass.digging.left.CRUMBLED.xpos",     "6"                     },
4182   { "emc_grass.digging.left.CRUMBLED.ypos",     "1"                     },
4183   { "emc_grass.digging.left.CRUMBLED.frames",   "3"                     },
4184   { "emc_grass.digging.left.CRUMBLED.delay",    "2"                     },
4185   { "emc_grass.digging.left.CRUMBLED.anim_mode","linear"                },
4186   { "emc_grass.digging.right.CRUMBLED",         "RocksEMC.pcx"          },
4187   { "emc_grass.digging.right.CRUMBLED.xpos",    "9"                     },
4188   { "emc_grass.digging.right.CRUMBLED.ypos",    "1"                     },
4189   { "emc_grass.digging.right.CRUMBLED.frames",  "3"                     },
4190   { "emc_grass.digging.right.CRUMBLED.delay",   "2"                     },
4191   { "emc_grass.digging.right.CRUMBLED.anim_mode","linear"               },
4192   { "emc_grass.digging.up.CRUMBLED",            "RocksEMC.pcx"          },
4193   { "emc_grass.digging.up.CRUMBLED.xpos",       "0"                     },
4194   { "emc_grass.digging.up.CRUMBLED.ypos",       "1"                     },
4195   { "emc_grass.digging.up.CRUMBLED.frames",     "3"                     },
4196   { "emc_grass.digging.up.CRUMBLED.delay",      "2"                     },
4197   { "emc_grass.digging.up.CRUMBLED.anim_mode",  "linear"                },
4198   { "emc_grass.digging.down.CRUMBLED",          "RocksEMC.pcx"          },
4199   { "emc_grass.digging.down.CRUMBLED.xpos",     "3"                     },
4200   { "emc_grass.digging.down.CRUMBLED.ypos",     "1"                     },
4201   { "emc_grass.digging.down.CRUMBLED.frames",   "3"                     },
4202   { "emc_grass.digging.down.CRUMBLED.delay",    "2"                     },
4203   { "emc_grass.digging.down.CRUMBLED.anim_mode","linear"                },
4204
4205   { "emc_magic_ball",                           "RocksEMC.pcx"          },
4206   { "emc_magic_ball.xpos",                      "0"                     },
4207   { "emc_magic_ball.ypos",                      "9"                     },
4208   { "emc_magic_ball.frames",                    "1"                     },
4209   { "emc_magic_ball.active",                    "RocksEMC.pcx"          },
4210   { "emc_magic_ball.active.xpos",               "0"                     },
4211   { "emc_magic_ball.active.ypos",               "9"                     },
4212   { "emc_magic_ball.active.frames",             "16"                    },
4213   { "emc_magic_ball.active.frames_per_line",    "8"                     },
4214   { "emc_magic_ball.dropping",                  "RocksElements.pcx"     },
4215   { "emc_magic_ball.dropping.xpos",             "0"                     },
4216   { "emc_magic_ball.dropping.ypos",             "4"                     },
4217   { "emc_magic_ball.dropping.frames",           "8"                     },
4218   { "emc_magic_ball.dropping.anim_mode",        "linear"                },
4219
4220   { "emc_magic_ball_switch",                    "RocksEMC.pcx"          },
4221   { "emc_magic_ball_switch.xpos",               "8"                     },
4222   { "emc_magic_ball_switch.ypos",               "10"                    },
4223   { "emc_magic_ball_switch.frames",             "1"                     },
4224   { "emc_magic_ball_switch.active",             "RocksEMC.pcx"          },
4225   { "emc_magic_ball_switch.active.xpos",        "8"                     },
4226   { "emc_magic_ball_switch.active.ypos",        "9"                     },
4227   { "emc_magic_ball_switch.active.frames",      "1"                     },
4228
4229   { "emc_spring_bumper",                        "RocksEMC.pcx"          },
4230   { "emc_spring_bumper.xpos",                   "8"                     },
4231   { "emc_spring_bumper.ypos",                   "4"                     },
4232   { "emc_spring_bumper.frames",                 "1"                     },
4233
4234   { "emc_spring_bumper.active",                 "RocksEMC.pcx"          },
4235   { "emc_spring_bumper.active.xpos",            "8"                     },
4236   { "emc_spring_bumper.active.ypos",            "4"                     },
4237   { "emc_spring_bumper.active.frames",          "4"                     },
4238   { "emc_spring_bumper.active.anim_mode",       "pingpong2"             },
4239
4240   { "emc_plant",                                "RocksEMC.pcx"          },
4241   { "emc_plant.xpos",                           "4"                     },
4242   { "emc_plant.ypos",                           "4"                     },
4243   { "emc_plant.frames",                         "1"                     },
4244   { "emc_plant.CRUMBLED",                       "RocksEMC.pcx"          },
4245   { "emc_plant.CRUMBLED.xpos",                  "5"                     },
4246   { "emc_plant.CRUMBLED.ypos",                  "4"                     },
4247   { "emc_plant.CRUMBLED.frames",                "1"                     },
4248
4249   { "emc_lenses",                               "RocksEMC.pcx"          },
4250   { "emc_lenses.xpos",                          "6"                     },
4251   { "emc_lenses.ypos",                          "4"                     },
4252   { "emc_lenses.frames",                        "1"                     },
4253
4254   { "emc_magnifier",                            "RocksEMC.pcx"          },
4255   { "emc_magnifier.xpos",                       "7"                     },
4256   { "emc_magnifier.ypos",                       "4"                     },
4257   { "emc_magnifier.frames",                     "1"                     },
4258
4259   { "emc_wall_9",                               "RocksEMC.pcx"          },
4260   { "emc_wall_9.xpos",                          "10"                    },
4261   { "emc_wall_9.ypos",                          "5"                     },
4262   { "emc_wall_9.frames",                        "1"                     },
4263   { "emc_wall_10",                              "RocksEMC.pcx"          },
4264   { "emc_wall_10.xpos",                         "10"                    },
4265   { "emc_wall_10.ypos",                         "6"                     },
4266   { "emc_wall_10.frames",                       "1"                     },
4267   { "emc_wall_11",                              "RocksEMC.pcx"          },
4268   { "emc_wall_11.xpos",                         "11"                    },
4269   { "emc_wall_11.ypos",                         "5"                     },
4270   { "emc_wall_11.frames",                       "1"                     },
4271   { "emc_wall_12",                              "RocksEMC.pcx"          },
4272   { "emc_wall_12.xpos",                         "11"                    },
4273   { "emc_wall_12.ypos",                         "6"                     },
4274   { "emc_wall_12.frames",                       "1"                     },
4275   { "emc_wall_13",                              "RocksEMC.pcx"          },
4276   { "emc_wall_13.xpos",                         "10"                    },
4277   { "emc_wall_13.ypos",                         "7"                     },
4278   { "emc_wall_13.frames",                       "1"                     },
4279   { "emc_wall_14",                              "RocksEMC.pcx"          },
4280   { "emc_wall_14.xpos",                         "10"                    },
4281   { "emc_wall_14.ypos",                         "8"                     },
4282   { "emc_wall_14.frames",                       "1"                     },
4283   { "emc_wall_15",                              "RocksEMC.pcx"          },
4284   { "emc_wall_15.xpos",                         "10"                    },
4285   { "emc_wall_15.ypos",                         "9"                     },
4286   { "emc_wall_15.frames",                       "1"                     },
4287   { "emc_wall_16",                              "RocksEMC.pcx"          },
4288   { "emc_wall_16.xpos",                         "10"                    },
4289   { "emc_wall_16.ypos",                         "10"                    },
4290   { "emc_wall_16.frames",                       "1"                     },
4291
4292   { "emc_wall_slippery_1",                      "RocksEMC.pcx"          },
4293   { "emc_wall_slippery_1.xpos",                 "11"                    },
4294   { "emc_wall_slippery_1.ypos",                 "7"                     },
4295   { "emc_wall_slippery_1.frames",               "1"                     },
4296   { "emc_wall_slippery_2",                      "RocksEMC.pcx"          },
4297   { "emc_wall_slippery_2.xpos",                 "11"                    },
4298   { "emc_wall_slippery_2.ypos",                 "8"                     },
4299   { "emc_wall_slippery_2.frames",               "1"                     },
4300   { "emc_wall_slippery_3",                      "RocksEMC.pcx"          },
4301   { "emc_wall_slippery_3.xpos",                 "11"                    },
4302   { "emc_wall_slippery_3.ypos",                 "9"                     },
4303   { "emc_wall_slippery_3.frames",               "1"                     },
4304   { "emc_wall_slippery_4",                      "RocksEMC.pcx"          },
4305   { "emc_wall_slippery_4.xpos",                 "11"                    },
4306   { "emc_wall_slippery_4.ypos",                 "10"                    },
4307   { "emc_wall_slippery_4.frames",               "1"                     },
4308
4309   { "emc_fake_grass",                           "RocksEMC.pcx"          },
4310   { "emc_fake_grass.xpos",                      "0"                     },
4311   { "emc_fake_grass.ypos",                      "4"                     },
4312   { "emc_fake_grass.frames",                    "1"                     },
4313   { "emc_fake_grass.CRUMBLED",                  "RocksEMC.pcx"          },
4314   { "emc_fake_grass.CRUMBLED.xpos",             "1"                     },
4315   { "emc_fake_grass.CRUMBLED.ypos",             "4"                     },
4316   { "emc_fake_grass.CRUMBLED.frames",           "1"                     },
4317   { "emc_fake_grass.active",                    "RocksEMC.pcx"          },
4318   { "emc_fake_grass.active.xpos",               "2"                     },
4319   { "emc_fake_grass.active.ypos",               "4"                     },
4320   { "emc_fake_grass.active.frames",             "1"                     },
4321   { "emc_fake_grass.active.CRUMBLED",           "RocksEMC.pcx"          },
4322   { "emc_fake_grass.active.CRUMBLED.xpos",      "3"                     },
4323   { "emc_fake_grass.active.CRUMBLED.ypos",      "4"                     },
4324   { "emc_fake_grass.active.CRUMBLED.frames",    "1"                     },
4325   { "emc_fake_grass.EDITOR",                    "RocksEMC.pcx"          },
4326   { "emc_fake_grass.EDITOR.xpos",               "2"                     },
4327   { "emc_fake_grass.EDITOR.ypos",               "4"                     },
4328   { "emc_fake_grass.EDITOR.frames",             "1"                     },
4329
4330   { "emc_fake_acid",                            "RocksElements.pcx"     },
4331   { "emc_fake_acid.xpos",                       "12"                    },
4332   { "emc_fake_acid.ypos",                       "7"                     },
4333   { "emc_fake_acid.frames",                     "4"                     },
4334   { "emc_fake_acid.delay",                      "10"                    },
4335   { "emc_fake_acid.global_sync",                "true"                  },
4336
4337   { "emc_dripper",                              "RocksSP.pcx"           },
4338   { "emc_dripper.xpos",                         "0"                     },
4339   { "emc_dripper.ypos",                         "0"                     },
4340   { "emc_dripper.frames",                       "1"                     },
4341   { "emc_dripper.EDITOR",                       "RocksEMC.pcx"          },
4342   { "emc_dripper.EDITOR.xpos",                  "8"                     },
4343   { "emc_dripper.EDITOR.ypos",                  "8"                     },
4344   { "emc_dripper.active",                       "RocksEMC.pcx"          },
4345   { "emc_dripper.active.xpos",                  "8"                     },
4346   { "emc_dripper.active.ypos",                  "8"                     },
4347   { "emc_dripper.active.frames",                "1"                     },
4348
4349   /* (these are only defined as elements to support ".PANEL" definitions) */
4350   { "graphic_1",                                UNDEFINED_FILENAME      },
4351   { "graphic_2",                                UNDEFINED_FILENAME      },
4352   { "graphic_3",                                UNDEFINED_FILENAME      },
4353   { "graphic_4",                                UNDEFINED_FILENAME      },
4354   { "graphic_5",                                UNDEFINED_FILENAME      },
4355   { "graphic_6",                                UNDEFINED_FILENAME      },
4356   { "graphic_7",                                UNDEFINED_FILENAME      },
4357   { "graphic_8",                                UNDEFINED_FILENAME      },
4358
4359 #include "conf_chr.c"   /* include auto-generated data structure definitions */
4360 #include "conf_cus.c"   /* include auto-generated data structure definitions */
4361 #include "conf_grp.c"   /* include auto-generated data structure definitions */
4362
4363   /* images not associated to game elements (used for menu screens etc.) */
4364   /* keyword to stop parser: "NO_MORE_ELEMENT_IMAGES" <-- do not change! */
4365
4366 #if 1
4367   { "sp_objects",                               "sp_objects.pcx"        },
4368 #endif
4369
4370 #if 1
4371   /* !!! TEMPORARILY STORED HERE -- PROBABLY TO BE CHANGED !!! */
4372
4373   /* (for testing, change filename back to "emc_objects dot pcx") */
4374   { "emc_object",                               "RocksEMC.pcx"          },
4375 #if 0
4376   { "emc_object.scale_up_factor",               "2"                     },
4377 #endif
4378
4379   /* (for testing, change filename back to "emc_players dot pcx") */
4380   { "emc_sprite",                               "RocksEMC.pcx"          },
4381 #if 0
4382   { "emc_sprite.scale_up_factor",               "2"                     },
4383 #endif
4384 #endif
4385
4386   { "toon_1",                                   "RocksToons.pcx"        },
4387   { "toon_1.x",                                 "2"                     },
4388   { "toon_1.y",                                 "72"                    },
4389   { "toon_1.width",                             "40"                    },
4390   { "toon_1.height",                            "48"                    },
4391   { "toon_1.frames",                            "8"                     },
4392   { "toon_1.delay",                             "1"                     },
4393   { "toon_1.step_offset",                       "4"                     },
4394   { "toon_1.step_delay",                        "5"                     },
4395   { "toon_1.direction",                         "right"                 },
4396   { "toon_1.position",                          "bottom"                },
4397
4398   { "toon_2",                                   "RocksToons.pcx"        },
4399   { "toon_2.x",                                 "2"                     },
4400   { "toon_2.y",                                 "186"                   },
4401   { "toon_2.width",                             "40"                    },
4402   { "toon_2.height",                            "48"                    },
4403   { "toon_2.frames",                            "8"                     },
4404   { "toon_2.delay",                             "1"                     },
4405   { "toon_2.step_offset",                       "4"                     },
4406   { "toon_2.step_delay",                        "5"                     },
4407   { "toon_2.direction",                         "left"                  },
4408   { "toon_2.position",                          "bottom"                },
4409
4410   { "toon_3",                                   "RocksToons.pcx"        },
4411   { "toon_3.x",                                 "2"                     },
4412   { "toon_3.y",                                 "125"                   },
4413   { "toon_3.width",                             "48"                    },
4414   { "toon_3.height",                            "56"                    },
4415   { "toon_3.frames",                            "8"                     },
4416   { "toon_3.delay",                             "1"                     },
4417   { "toon_3.step_offset",                       "4"                     },
4418   { "toon_3.step_delay",                        "5"                     },
4419   { "toon_3.direction",                         "right"                 },
4420   { "toon_3.position",                          "bottom"                },
4421
4422   { "toon_4",                                   "RocksToons.pcx"        },
4423   { "toon_4.x",                                 "327"                   },
4424   { "toon_4.y",                                 "10"                    },
4425   { "toon_4.width",                             "80"                    },
4426   { "toon_4.height",                            "110"                   },
4427   { "toon_4.frames",                            "1"                     },
4428   { "toon_4.delay",                             "1"                     },
4429   { "toon_4.step_offset",                       "1"                     },
4430   { "toon_4.step_delay",                        "1"                     },
4431   { "toon_4.direction",                         "up"                    },
4432   { "toon_4.position",                          "any"                   },
4433
4434   { "toon_5",                                   "RocksToons.pcx"        },
4435   { "toon_5.x",                                 "2"                     },
4436   { "toon_5.y",                                 "2"                     },
4437   { "toon_5.width",                             "32"                    },
4438   { "toon_5.height",                            "30"                    },
4439   { "toon_5.frames",                            "8"                     },
4440   { "toon_5.delay",                             "2"                     },
4441   { "toon_5.anim_mode",                         "pingpong2"             },
4442   { "toon_5.step_offset",                       "2"                     },
4443   { "toon_5.step_delay",                        "1"                     },
4444   { "toon_5.direction",                         "right"                 },
4445   { "toon_5.position",                          "upper"                 },
4446
4447   { "toon_6",                                   "RocksToons.pcx"        },
4448   { "toon_6.x",                                 "2"                     },
4449   { "toon_6.y",                                 "37"                    },
4450   { "toon_6.width",                             "32"                    },
4451   { "toon_6.height",                            "30"                    },
4452   { "toon_6.frames",                            "8"                     },
4453   { "toon_6.delay",                             "2"                     },
4454   { "toon_6.anim_mode",                         "pingpong2"             },
4455   { "toon_6.step_offset",                       "2"                     },
4456   { "toon_6.step_delay",                        "1"                     },
4457   { "toon_6.direction",                         "left"                  },
4458   { "toon_6.position",                          "upper"                 },
4459
4460   { "toon_7",                                   "RocksMore.pcx"         },
4461   { "toon_7.xpos",                              "0"                     },
4462   { "toon_7.ypos",                              "6"                     },
4463   { "toon_7.frames",                            "16"                    },
4464   { "toon_7.delay",                             "2"                     },
4465   { "toon_7.direction",                         "down"                  },
4466   { "toon_7.position",                          "any"                   },
4467
4468   { "toon_8",                                   "RocksHeroes.pcx"       },
4469   { "toon_8.xpos",                              "4"                     },
4470   { "toon_8.ypos",                              "1"                     },
4471   { "toon_8.frames",                            "4"                     },
4472   { "toon_8.delay",                             "4"                     },
4473   { "toon_8.direction",                         "right"                 },
4474   { "toon_8.position",                          "bottom"                },
4475
4476   { "toon_9",                                   "RocksHeroes.pcx"       },
4477   { "toon_9.xpos",                              "8"                     },
4478   { "toon_9.ypos",                              "7"                     },
4479   { "toon_9.frames",                            "4"                     },
4480   { "toon_9.delay",                             "2"                     },
4481   { "toon_9.direction",                         "left"                  },
4482   { "toon_9.position",                          "bottom"                },
4483
4484   { "toon_10",                                  "RocksHeroes.pcx"       },
4485   { "toon_10.xpos",                             "12"                    },
4486   { "toon_10.ypos",                             "7"                     },
4487   { "toon_10.frames",                           "4"                     },
4488   { "toon_10.delay",                            "2"                     },
4489   { "toon_10.direction",                        "right"                 },
4490   { "toon_10.position",                         "bottom"                },
4491
4492   { "toon_11",                                  "RocksHeroes.pcx"       },
4493   { "toon_11.xpos",                             "8"                     },
4494   { "toon_11.ypos",                             "5"                     },
4495   { "toon_11.frames",                           "4"                     },
4496   { "toon_11.delay",                            "2"                     },
4497   { "toon_11.direction",                        "left"                  },
4498   { "toon_11.position",                         "bottom"                },
4499
4500   { "toon_12",                                  "RocksHeroes.pcx"       },
4501   { "toon_12.xpos",                             "12"                    },
4502   { "toon_12.ypos",                             "5"                     },
4503   { "toon_12.frames",                           "4"                     },
4504   { "toon_12.delay",                            "2"                     },
4505   { "toon_12.direction",                        "right"                 },
4506   { "toon_12.position",                         "bottom"                },
4507
4508   { "toon_13",                                  "RocksHeroes.pcx"       },
4509   { "toon_13.xpos",                             "8"                     },
4510   { "toon_13.ypos",                             "1"                     },
4511   { "toon_13.frames",                           "4"                     },
4512   { "toon_13.delay",                            "2"                     },
4513   { "toon_13.direction",                        "left"                  },
4514   { "toon_13.position",                         "bottom"                },
4515
4516   { "toon_14",                                  "RocksHeroes.pcx"       },
4517   { "toon_14.xpos",                             "12"                    },
4518   { "toon_14.ypos",                             "1"                     },
4519   { "toon_14.frames",                           "4"                     },
4520   { "toon_14.delay",                            "2"                     },
4521   { "toon_14.direction",                        "right"                 },
4522   { "toon_14.position",                         "bottom"                },
4523
4524   { "toon_15",                                  "RocksHeroes.pcx"       },
4525   { "toon_15.xpos",                             "8"                     },
4526   { "toon_15.ypos",                             "3"                     },
4527   { "toon_15.frames",                           "4"                     },
4528   { "toon_15.delay",                            "2"                     },
4529   { "toon_15.direction",                        "left"                  },
4530   { "toon_15.position",                         "bottom"                },
4531
4532   { "toon_16",                                  "RocksHeroes.pcx"       },
4533   { "toon_16.xpos",                             "12"                    },
4534   { "toon_16.ypos",                             "3"                     },
4535   { "toon_16.frames",                           "4"                     },
4536   { "toon_16.delay",                            "2"                     },
4537   { "toon_16.direction",                        "right"                 },
4538   { "toon_16.position",                         "bottom"                },
4539
4540   { "toon_17",                                  "RocksHeroes.pcx"       },
4541   { "toon_17.xpos",                             "8"                     },
4542   { "toon_17.ypos",                             "9"                     },
4543   { "toon_17.frames",                           "8"                     },
4544   { "toon_17.delay",                            "2"                     },
4545   { "toon_17.direction",                        "left"                  },
4546   { "toon_17.position",                         "any"                   },
4547
4548   { "toon_18",                                  "RocksHeroes.pcx"       },
4549   { "toon_18.xpos",                             "8"                     },
4550   { "toon_18.ypos",                             "9"                     },
4551   { "toon_18.frames",                           "8"                     },
4552   { "toon_18.delay",                            "2"                     },
4553   { "toon_18.direction",                        "right"                 },
4554   { "toon_18.position",                         "any"                   },
4555
4556   { "toon_19",                                  "RocksElements.pcx"     },
4557   { "toon_19.xpos",                             "8"                     },
4558   { "toon_19.ypos",                             "0"                     },
4559   { "toon_19.frames",                           "2"                     },
4560   { "toon_19.delay",                            "4"                     },
4561   { "toon_19.direction",                        "down"                  },
4562   { "toon_19.position",                         "any"                   },
4563
4564   { "toon_20",                                  "RocksElements.pcx"     },
4565   { "toon_20.xpos",                             "10"                    },
4566   { "toon_20.ypos",                             "0"                     },
4567   { "toon_20.frames",                           "2"                     },
4568   { "toon_20.delay",                            "4"                     },
4569   { "toon_20.direction",                        "down"                  },
4570   { "toon_20.position",                         "any"                   },
4571
4572   { "menu.calibrate_red",                       "RocksElements.pcx"     },
4573   { "menu.calibrate_red.xpos",                  "12"                    },
4574   { "menu.calibrate_red.ypos",                  "8"                     },
4575   { "menu.calibrate_red.frames",                "1"                     },
4576   { "menu.calibrate_blue",                      "RocksElements.pcx"     },
4577   { "menu.calibrate_blue.xpos",                 "13"                    },
4578   { "menu.calibrate_blue.ypos",                 "8"                     },
4579   { "menu.calibrate_blue.frames",               "1"                     },
4580   { "menu.calibrate_yellow",                    "RocksElements.pcx"     },
4581   { "menu.calibrate_yellow.xpos",               "14"                    },
4582   { "menu.calibrate_yellow.ypos",               "8"                     },
4583   { "menu.calibrate_yellow.frames",             "1"                     },
4584
4585   { "menu.button",                              "RocksElements.pcx"     },
4586   { "menu.button.xpos",                         "13"                    },
4587   { "menu.button.ypos",                         "8"                     },
4588   { "menu.button.frames",                       "1"                     },
4589   { "menu.button.active",                       "RocksElements.pcx"     },
4590   { "menu.button.active.xpos",                  "12"                    },
4591   { "menu.button.active.ypos",                  "8"                     },
4592   { "menu.button.active.frames",                "1"                     },
4593
4594   { "menu.button_left",                         "RocksDC.pcx"           },
4595   { "menu.button_left.xpos",                    "8"                     },
4596   { "menu.button_left.ypos",                    "8"                     },
4597   { "menu.button_left.frames",                  "1"                     },
4598   { "menu.button_left.active",                  "RocksDC.pcx"           },
4599   { "menu.button_left.active.xpos",             "8"                     },
4600   { "menu.button_left.active.ypos",             "9"                     },
4601   { "menu.button_left.active.frames",           "1"                     },
4602   { "menu.button_right",                        "RocksDC.pcx"           },
4603   { "menu.button_right.xpos",                   "9"                     },
4604   { "menu.button_right.ypos",                   "8"                     },
4605   { "menu.button_right.frames",                 "1"                     },
4606   { "menu.button_right.active",                 "RocksDC.pcx"           },
4607   { "menu.button_right.active.xpos",            "9"                     },
4608   { "menu.button_right.active.ypos",            "9"                     },
4609   { "menu.button_right.active.frames",          "1"                     },
4610   { "menu.button_up",                           "RocksDC.pcx"           },
4611   { "menu.button_up.xpos",                      "10"                    },
4612   { "menu.button_up.ypos",                      "8"                     },
4613   { "menu.button_up.frames",                    "1"                     },
4614   { "menu.button_up.active",                    "RocksDC.pcx"           },
4615   { "menu.button_up.active.xpos",               "10"                    },
4616   { "menu.button_up.active.ypos",               "9"                     },
4617   { "menu.button_up.active.frames",             "1"                     },
4618   { "menu.button_down",                         "RocksDC.pcx"           },
4619   { "menu.button_down.xpos",                    "11"                    },
4620   { "menu.button_down.ypos",                    "8"                     },
4621   { "menu.button_down.frames",                  "1"                     },
4622   { "menu.button_down.active",                  "RocksDC.pcx"           },
4623   { "menu.button_down.active.xpos",             "11"                    },
4624   { "menu.button_down.active.ypos",             "9"                     },
4625   { "menu.button_down.active.frames",           "1"                     },
4626
4627   { "menu.button_enter_menu",                   UNDEFINED_FILENAME      },
4628   { "menu.button_enter_menu.clone_from",        "menu.button_right"     },
4629   { "menu.button_enter_menu.active",            UNDEFINED_FILENAME      },
4630   { "menu.button_enter_menu.active.clone_from", "menu.button_right.active" },
4631   { "menu.button_leave_menu",                   UNDEFINED_FILENAME      },
4632   { "menu.button_leave_menu.clone_from",        "menu.button_left"      },
4633   { "menu.button_leave_menu.active",            UNDEFINED_FILENAME      },
4634   { "menu.button_leave_menu.active.clone_from", "menu.button_left.active" },
4635
4636   { "menu.button_next_level",                   UNDEFINED_FILENAME      },
4637   { "menu.button_next_level.clone_from",        "menu.button_right"     },
4638   { "menu.button_next_level.active",            UNDEFINED_FILENAME      },
4639   { "menu.button_next_level.active.clone_from", "menu.button_right.active" },
4640   { "menu.button_prev_level",                   UNDEFINED_FILENAME      },
4641   { "menu.button_prev_level.clone_from",        "menu.button_left"      },
4642   { "menu.button_prev_level.active",            UNDEFINED_FILENAME      },
4643   { "menu.button_prev_level.active.clone_from", "menu.button_left.active" },
4644
4645   { "menu.button_name",                         UNDEFINED_FILENAME      },
4646   { "menu.button_name.clone_from",              "menu.button"           },
4647   { "menu.button_name.active",                  UNDEFINED_FILENAME      },
4648   { "menu.button_name.active.clone_from",       "menu.button.active"    },
4649   { "menu.button_levels",                       UNDEFINED_FILENAME      },
4650   { "menu.button_levels.clone_from",            "menu.button_right"     },
4651   { "menu.button_levels.active",                UNDEFINED_FILENAME      },
4652   { "menu.button_levels.active.clone_from",     "menu.button_right.active" },
4653   { "menu.button_scores",                       UNDEFINED_FILENAME      },
4654   { "menu.button_scores.clone_from",            "menu.button"           },
4655   { "menu.button_scores.active",                UNDEFINED_FILENAME      },
4656   { "menu.button_scores.active.clone_from",     "menu.button.active"    },
4657   { "menu.button_editor",                       UNDEFINED_FILENAME      },
4658   { "menu.button_editor.clone_from",            "menu.button"           },
4659   { "menu.button_editor.active",                UNDEFINED_FILENAME      },
4660   { "menu.button_editor.active.clone_from",     "menu.button.active"    },
4661   { "menu.button_info",                         UNDEFINED_FILENAME      },
4662   { "menu.button_info.clone_from",              "menu.button_right"     },
4663   { "menu.button_info.active",                  UNDEFINED_FILENAME      },
4664   { "menu.button_info.active.clone_from",       "menu.button_right.active" },
4665   { "menu.button_game",                         UNDEFINED_FILENAME      },
4666   { "menu.button_game.clone_from",              "menu.button"           },
4667   { "menu.button_game.active",                  UNDEFINED_FILENAME      },
4668   { "menu.button_game.active.clone_from",       "menu.button.active"    },
4669   { "menu.button_setup",                        UNDEFINED_FILENAME      },
4670   { "menu.button_setup.clone_from",             "menu.button_right"     },
4671   { "menu.button_setup.active",                 UNDEFINED_FILENAME      },
4672   { "menu.button_setup.active.clone_from",      "menu.button_right.active" },
4673   { "menu.button_quit",                         UNDEFINED_FILENAME      },
4674   { "menu.button_quit.clone_from",              "menu.button"           },
4675   { "menu.button_quit.active",                  UNDEFINED_FILENAME      },
4676   { "menu.button_quit.active.clone_from",       "menu.button.active"    },
4677
4678   { "menu.scrollbar",                           "RocksDC.pcx"           },
4679   { "menu.scrollbar.xpos",                      "8"                     },
4680   { "menu.scrollbar.ypos",                      "10"                    },
4681   { "menu.scrollbar.frames",                    "1"                     },
4682   { "menu.scrollbar.active",                    "RocksDC.pcx"           },
4683   { "menu.scrollbar.active.xpos",               "9"                     },
4684   { "menu.scrollbar.active.ypos",               "10"                    },
4685   { "menu.scrollbar.active.frames",             "1"                     },
4686
4687   { "font.initial_1",                           "RocksFontSmall.pcx"    },
4688   { "font.initial_1.x",                         "0"                     },
4689   { "font.initial_1.y",                         "0"                     },
4690   { "font.initial_1.width",                     "14"                    },
4691   { "font.initial_1.height",                    "14"                    },
4692   { "font.initial_2",                           "RocksFontSmall.pcx"    },
4693   { "font.initial_2.x",                         "0"                     },
4694   { "font.initial_2.y",                         "70"                    },
4695   { "font.initial_2.width",                     "14"                    },
4696   { "font.initial_2.height",                    "14"                    },
4697   { "font.initial_3",                           "RocksFontSmall.pcx"    },
4698   { "font.initial_3.x",                         "0"                     },
4699   { "font.initial_3.y",                         "140"                   },
4700   { "font.initial_3.width",                     "14"                    },
4701   { "font.initial_3.height",                    "14"                    },
4702   { "font.initial_4",                           "RocksFontSmall.pcx"    },
4703   { "font.initial_4.x",                         "0"                     },
4704   { "font.initial_4.y",                         "210"                   },
4705   { "font.initial_4.width",                     "14"                    },
4706   { "font.initial_4.height",                    "14"                    },
4707
4708   { "font.title_1",                             "RocksFontBig.pcx"      },
4709   { "font.title_1.x",                           "0"                     },
4710   { "font.title_1.y",                           "480"                   },
4711   { "font.title_1.width",                       "32"                    },
4712   { "font.title_1.height",                      "32"                    },
4713   { "font.title_2",                             "RocksFontSmall.pcx"    },
4714   { "font.title_2.x",                           "0"                     },
4715   { "font.title_2.y",                           "0"                     },
4716   { "font.title_2.width",                       "14"                    },
4717   { "font.title_2.height",                      "14"                    },
4718   { "font.title_2.SETUP",                       UNDEFINED_FILENAME      },
4719   { "font.title_2.SETUP.clone_from",            "font.text_4"           },
4720
4721   { "font.menu_1",                              "RocksFontBig.pcx"      },
4722   { "font.menu_1.x",                            "0"                     },
4723   { "font.menu_1.y",                            "320"                   },
4724   { "font.menu_1.width",                        "32"                    },
4725   { "font.menu_1.height",                       "32"                    },
4726   { "font.menu_1.active",                       "RocksFontBig.pcx"      },
4727   { "font.menu_1.active.x",                     "0"                     },
4728   { "font.menu_1.active.y",                     "480"                   },
4729   { "font.menu_1.active.width",                 "32"                    },
4730   { "font.menu_1.active.height",                "32"                    },
4731   { "font.menu_2",                              "RocksFontMedium.pcx"   },
4732   { "font.menu_2.x",                            "0"                     },
4733   { "font.menu_2.y",                            "320"                   },
4734   { "font.menu_2.width",                        "16"                    },
4735   { "font.menu_2.height",                       "32"                    },
4736   { "font.menu_2.active",                       "RocksFontMedium.pcx"   },
4737   { "font.menu_2.active.x",                     "0"                     },
4738   { "font.menu_2.active.y",                     "480"                   },
4739   { "font.menu_2.active.width",                 "16"                    },
4740   { "font.menu_2.active.height",                "32"                    },
4741
4742   { "font.text_1",                              "RocksFontSmall.pcx"    },
4743   { "font.text_1.x",                            "0"                     },
4744   { "font.text_1.y",                            "140"                   },
4745   { "font.text_1.width",                        "14"                    },
4746   { "font.text_1.height",                       "14"                    },
4747   { "font.text_1.MAIN",                         UNDEFINED_FILENAME      },
4748   { "font.text_1.MAIN.clone_from",              "font.text_1.PREVIEW"   },
4749   { "font.text_1.LEVELS",                       "RocksFontMedium.pcx"   },
4750   { "font.text_1.LEVELS.x",                     "0"                     },
4751   { "font.text_1.LEVELS.y",                     "0"                     },
4752   { "font.text_1.LEVELS.width",                 "16"                    },
4753   { "font.text_1.LEVELS.height",                "32"                    },
4754   { "font.text_1.SETUP",                        UNDEFINED_FILENAME      },
4755   { "font.text_1.SETUP.clone_from",             "font.text_1.LEVELS"    },
4756   { "font.text_1.PREVIEW",                      "RocksFontEM.pcx"       },
4757   { "font.text_1.PREVIEW.x",                    "0"                     },
4758   { "font.text_1.PREVIEW.y",                    "160"                   },
4759   { "font.text_1.PREVIEW.width",                "16"                    },
4760   { "font.text_1.PREVIEW.height",               "16"                    },
4761   { "font.text_1.SCORES",                       "RocksFontMedium.pcx"   },
4762   { "font.text_1.SCORES.x",                     "0"                     },
4763   { "font.text_1.SCORES.y",                     "480"                   },
4764   { "font.text_1.SCORES.width",                 "16"                    },
4765   { "font.text_1.SCORES.height",                "32"                    },
4766   { "font.text_1.active.SCORES",                "RocksFontMedium.pcx"   },
4767   { "font.text_1.active.SCORES.x",              "0"                     },
4768   { "font.text_1.active.SCORES.y",              "0"                     },
4769   { "font.text_1.active.SCORES.width",          "16"                    },
4770   { "font.text_1.active.SCORES.height",         "32"                    },
4771   { "font.text_1.PANEL",                        UNDEFINED_FILENAME      },
4772   { "font.text_1.PANEL.clone_from",             "font.level_number"     },
4773   { "font.text_1.DOOR",                         UNDEFINED_FILENAME      },
4774   { "font.text_1.DOOR.clone_from",              "font.level_number"     },
4775   { "font.text_2",                              "RocksFontSmall.pcx"    },
4776   { "font.text_2.x",                            "0"                     },
4777   { "font.text_2.y",                            "210"                   },
4778   { "font.text_2.width",                        "14"                    },
4779   { "font.text_2.height",                       "14"                    },
4780   { "font.text_2.MAIN",                         UNDEFINED_FILENAME      },
4781   { "font.text_2.MAIN.clone_from",              "font.text_2.PREVIEW"   },
4782   { "font.text_2.LEVELS",                       "RocksFontMedium.pcx"   },
4783   { "font.text_2.LEVELS.x",                     "0"                     },
4784   { "font.text_2.LEVELS.y",                     "160"                   },
4785   { "font.text_2.LEVELS.width",                 "16"                    },
4786   { "font.text_2.LEVELS.height",                "32"                    },
4787   { "font.text_2.SETUP",                        UNDEFINED_FILENAME      },
4788   { "font.text_2.SETUP.clone_from",             "font.text_2.LEVELS"    },
4789   { "font.text_2.PREVIEW",                      "RocksFontEM.pcx"       },
4790   { "font.text_2.PREVIEW.x",                    "0"                     },
4791   { "font.text_2.PREVIEW.y",                    "160"                   },
4792   { "font.text_2.PREVIEW.width",                "16"                    },
4793   { "font.text_2.PREVIEW.height",               "16"                    },
4794   { "font.text_2.SCORES",                       "RocksFontBig.pcx"      },
4795   { "font.text_2.SCORES.x",                     "0"                     },
4796   { "font.text_2.SCORES.y",                     "320"                   },
4797   { "font.text_2.SCORES.width",                 "32"                    },
4798   { "font.text_2.SCORES.height",                "32"                    },
4799   { "font.text_2.active.SCORES",                "RocksFontBig.pcx"      },
4800   { "font.text_2.active.SCORES.x",              "0"                     },
4801   { "font.text_2.active.SCORES.y",              "0"                     },
4802   { "font.text_2.active.SCORES.width",          "32"                    },
4803   { "font.text_2.active.SCORES.height",         "32"                    },
4804   { "font.text_3",                              "RocksFontSmall.pcx"    },
4805   { "font.text_3.x",                            "0"                     },
4806   { "font.text_3.y",                            "0"                     },
4807   { "font.text_3.width",                        "14"                    },
4808   { "font.text_3.height",                       "14"                    },
4809   { "font.text_3.LEVELS",                       "RocksFontMedium.pcx"   },
4810   { "font.text_3.LEVELS.x",                     "0"                     },
4811   { "font.text_3.LEVELS.y",                     "320"                   },
4812   { "font.text_3.LEVELS.width",                 "16"                    },
4813   { "font.text_3.LEVELS.height",                "32"                    },
4814   { "font.text_3.SETUP",                        UNDEFINED_FILENAME      },
4815   { "font.text_3.SETUP.clone_from",             "font.text_3.LEVELS"    },
4816   { "font.text_3.PREVIEW",                      "RocksFontEM.pcx"       },
4817   { "font.text_3.PREVIEW.x",                    "0"                     },
4818   { "font.text_3.PREVIEW.y",                    "160"                   },
4819   { "font.text_3.PREVIEW.width",                "16"                    },
4820   { "font.text_3.PREVIEW.height",               "16"                    },
4821   { "font.text_3.SCORES",                       "RocksFontMedium.pcx"   },
4822   { "font.text_3.SCORES.x",                     "0"                     },
4823   { "font.text_3.SCORES.y",                     "480"                   },
4824   { "font.text_3.SCORES.width",                 "16"                    },
4825   { "font.text_3.SCORES.height",                "32"                    },
4826   { "font.text_3.active.SCORES",                "RocksFontMedium.pcx"   },
4827   { "font.text_3.active.SCORES.x",              "0"                     },
4828   { "font.text_3.active.SCORES.y",              "0"                     },
4829   { "font.text_3.active.SCORES.width",          "16"                    },
4830   { "font.text_3.active.SCORES.height",         "32"                    },
4831   { "font.text_4",                              "RocksFontSmall.pcx"    },
4832   { "font.text_4.x",                            "0"                     },
4833   { "font.text_4.y",                            "70"                    },
4834   { "font.text_4.width",                        "14"                    },
4835   { "font.text_4.height",                       "14"                    },
4836   { "font.text_4.MAIN",                         UNDEFINED_FILENAME      },
4837   { "font.text_4.MAIN.clone_from",              "font.text_3.PREVIEW"   },
4838   { "font.text_4.LEVELS",                       "RocksFontMedium.pcx"   },
4839   { "font.text_4.LEVELS.x",                     "0"                     },
4840   { "font.text_4.LEVELS.y",                     "480"                   },
4841   { "font.text_4.LEVELS.width",                 "16"                    },
4842   { "font.text_4.LEVELS.height",                "32"                    },
4843   { "font.text_4.SETUP",                        UNDEFINED_FILENAME      },
4844   { "font.text_4.SETUP.clone_from",             "font.text_4.LEVELS"    },
4845   { "font.text_4.SCORES",                       "RocksFontMedium.pcx"   },
4846   { "font.text_4.SCORES.x",                     "0"                     },
4847   { "font.text_4.SCORES.y",                     "480"                   },
4848   { "font.text_4.SCORES.width",                 "16"                    },
4849   { "font.text_4.SCORES.height",                "32"                    },
4850   { "font.text_4.active.SCORES",                "RocksFontMedium.pcx"   },
4851   { "font.text_4.active.SCORES.x",              "0"                     },
4852   { "font.text_4.active.SCORES.y",              "0"                     },
4853   { "font.text_4.active.SCORES.width",          "16"                    },
4854   { "font.text_4.active.SCORES.height",         "32"                    },
4855
4856   { "font.envelope_1",                          "RocksFontEM.pcx"       },
4857   { "font.envelope_1.x",                        "0"                     },
4858   { "font.envelope_1.y",                        "160"                   },
4859   { "font.envelope_1.width",                    "16"                    },
4860   { "font.envelope_1.height",                   "16"                    },
4861   { "font.envelope_2",                          "RocksFontEM.pcx"       },
4862   { "font.envelope_2.x",                        "0"                     },
4863   { "font.envelope_2.y",                        "160"                   },
4864   { "font.envelope_2.width",                    "16"                    },
4865   { "font.envelope_2.height",                   "16"                    },
4866   { "font.envelope_3",                          "RocksFontEM.pcx"       },
4867   { "font.envelope_3.x",                        "0"                     },
4868   { "font.envelope_3.y",                        "160"                   },
4869   { "font.envelope_3.width",                    "16"                    },
4870   { "font.envelope_3.height",                   "16"                    },
4871   { "font.envelope_4",                          "RocksFontEM.pcx"       },
4872   { "font.envelope_4.x",                        "0"                     },
4873   { "font.envelope_4.y",                        "160"                   },
4874   { "font.envelope_4.width",                    "16"                    },
4875   { "font.envelope_4.height",                   "16"                    },
4876
4877   { "font.input_1",                             "RocksFontSmall.pcx"    },
4878   { "font.input_1.x",                           "0"                     },
4879   { "font.input_1.y",                           "210"                   },
4880   { "font.input_1.width",                       "14"                    },
4881   { "font.input_1.height",                      "14"                    },
4882   { "font.input_1.MAIN",                        "RocksFontBig.pcx"      },
4883   { "font.input_1.MAIN.x",                      "0"                     },
4884   { "font.input_1.MAIN.y",                      "0"                     },
4885   { "font.input_1.MAIN.width",                  "32"                    },
4886   { "font.input_1.MAIN.height",                 "32"                    },
4887   { "font.input_1.active",                      "RocksFontSmall.pcx"    },
4888   { "font.input_1.active.x",                    "0"                     },
4889   { "font.input_1.active.y",                    "210"                   },
4890   { "font.input_1.active.width",                "14"                    },
4891   { "font.input_1.active.height",               "14"                    },
4892   { "font.input_1.active.MAIN",                 "RocksFontBig.pcx"      },
4893   { "font.input_1.active.MAIN.x",               "0"                     },
4894   { "font.input_1.active.MAIN.y",               "480"                   },
4895   { "font.input_1.active.MAIN.width",           "32"                    },
4896   { "font.input_1.active.MAIN.height",          "32"                    },
4897   { "font.input_1.active.SETUP",                "RocksFontBig.pcx"      },
4898   { "font.input_1.active.SETUP.x",              "0"                     },
4899   { "font.input_1.active.SETUP.y",              "0"                     },
4900   { "font.input_1.active.SETUP.width",          "32"                    },
4901   { "font.input_1.active.SETUP.height",         "32"                    },
4902   { "font.input_2",                             "RocksFontSmall.pcx"    },
4903   { "font.input_2.x",                           "0"                     },
4904   { "font.input_2.y",                           "210"                   },
4905   { "font.input_2.width",                       "14"                    },
4906   { "font.input_2.height",                      "14"                    },
4907   { "font.input_2.active",                      "RocksFontSmall.pcx"    },
4908   { "font.input_2.active.x",                    "0"                     },
4909   { "font.input_2.active.y",                    "210"                   },
4910   { "font.input_2.active.width",                "14"                    },
4911   { "font.input_2.active.height",               "14"                    },
4912
4913   { "font.option_off",                          "RocksFontBig.pcx"      },
4914   { "font.option_off.x",                        "0"                     },
4915   { "font.option_off.y",                        "160"                   },
4916   { "font.option_off.width",                    "32"                    },
4917   { "font.option_off.height",                   "32"                    },
4918   { "font.option_on",                           "RocksFontBig.pcx"      },
4919   { "font.option_on.x",                         "0"                     },
4920   { "font.option_on.y",                         "480"                   },
4921   { "font.option_on.width",                     "32"                    },
4922   { "font.option_on.height",                    "32"                    },
4923
4924   { "font.value_1",                             "RocksFontBig.pcx"      },
4925   { "font.value_1.x",                           "0"                     },
4926   { "font.value_1.y",                           "480"                   },
4927   { "font.value_1.width",                       "32"                    },
4928   { "font.value_1.height",                      "32"                    },
4929   { "font.value_2",                             "RocksFontMedium.pcx"   },
4930   { "font.value_2.x",                           "0"                     },
4931   { "font.value_2.y",                           "480"                   },
4932   { "font.value_2.width",                       "16"                    },
4933   { "font.value_2.height",                      "32"                    },
4934   { "font.value_old",                           "RocksFontBig.pcx"      },
4935   { "font.value_old.x",                         "0"                     },
4936   { "font.value_old.y",                         "160"                   },
4937   { "font.value_old.width",                     "32"                    },
4938   { "font.value_old.height",                    "32"                    },
4939
4940   { "font.level_number",                        "RocksFontSmall.pcx"    },
4941   { "font.level_number.x",                      "0"                     },
4942   { "font.level_number.y",                      "350"                   },
4943   { "font.level_number.width",                  "10"                    },
4944   { "font.level_number.height",                 "14"                    },
4945   { "font.level_number.active",                 UNDEFINED_FILENAME      },
4946   { "font.level_number.active.clone_from",      "font.level_number"     },
4947
4948   { "font.tape_recorder",                       "RocksFontSmall.pcx"    },
4949   { "font.tape_recorder.x",                     "0"                     },
4950   { "font.tape_recorder.y",                     "280"                   },
4951   { "font.tape_recorder.width",                 "11"                    },
4952   { "font.tape_recorder.height",                "14"                    },
4953
4954   { "font.game_info",                           "RocksFontEM.pcx"       },
4955   { "font.game_info.xpos",                      "0"                     },
4956   { "font.game_info.ypos",                      "0"                     },
4957   { "font.game_info.delay",                     "10"                    },
4958
4959   { "font.info.elements",                       UNDEFINED_FILENAME      },
4960   { "font.info.elements.clone_from",            "font.level_number"     },
4961
4962   { "font.info.levelset",                       UNDEFINED_FILENAME      },
4963   { "font.info.levelset.clone_from",            "font.level_number"     },
4964
4965   { "global.border",                            "RocksScreen.pcx"       },
4966   { "global.door",                              "RocksDoor.pcx"         },
4967
4968   { "global.busy",                              "RocksBusy.pcx"         },
4969   { "global.busy.x",                            "0"                     },
4970   { "global.busy.y",                            "0"                     },
4971   { "global.busy.width",                        "32"                    },
4972   { "global.busy.height",                       "32"                    },
4973   { "global.busy.frames",                       "28"                    },
4974   { "global.busy.frames_per_line",              "7"                     },
4975   { "global.busy.delay",                        "2"                     },
4976
4977   { "editor.element_border",                    "RocksElements.pcx"     },
4978   { "editor.element_border.x",                  "0"                     },
4979   { "editor.element_border.y",                  "0"                     },
4980
4981   { "editor.element_border_input",              "RocksDoor.pcx"         },
4982   { "editor.element_border_input.x",            "740"                   },
4983   { "editor.element_border_input.y",            "48"                    },
4984
4985   { "editor.cascade_list",                      "RocksDoor.pcx"         },
4986   { "editor.cascade_list.x",                    "708"                   },
4987   { "editor.cascade_list.y",                    "80"                    },
4988   { "editor.cascade_list.frames",               "1"                     },
4989   { "editor.cascade_list.active",               "RocksDoor.pcx"         },
4990   { "editor.cascade_list.active.x",             "740"                   },
4991   { "editor.cascade_list.active.y",             "80"                    },
4992   { "editor.cascade_list.active.frames",        "1"                     },
4993
4994   { "background",                               UNDEFINED_FILENAME      },
4995   { "background.TITLE_INITIAL",                 UNDEFINED_FILENAME      },
4996   { "background.TITLE",                         UNDEFINED_FILENAME      },
4997   { "background.MAIN",                          UNDEFINED_FILENAME      },
4998   { "background.LEVELS",                        UNDEFINED_FILENAME      },
4999   { "background.SCORES",                        UNDEFINED_FILENAME      },
5000   { "background.EDITOR",                        UNDEFINED_FILENAME      },
5001   { "background.INFO",                          UNDEFINED_FILENAME      },
5002   { "background.INFO[ELEMENTS]",                UNDEFINED_FILENAME      },
5003   { "background.INFO[MUSIC]",                   UNDEFINED_FILENAME      },
5004   { "background.INFO[CREDITS]",                 UNDEFINED_FILENAME      },
5005   { "background.INFO[PROGRAM]",                 UNDEFINED_FILENAME      },
5006   { "background.INFO[VERSION]",                 UNDEFINED_FILENAME      },
5007   { "background.INFO[LEVELSET]",                UNDEFINED_FILENAME      },
5008   { "background.SETUP",                         UNDEFINED_FILENAME      },
5009   { "background.PLAYING",                       UNDEFINED_FILENAME      },
5010   { "background.DOOR",                          UNDEFINED_FILENAME      },
5011
5012   { "background.titlescreen_initial_1",         UNDEFINED_FILENAME      },
5013   { "background.titlescreen_initial_2",         UNDEFINED_FILENAME      },
5014   { "background.titlescreen_initial_3",         UNDEFINED_FILENAME      },
5015   { "background.titlescreen_initial_4",         UNDEFINED_FILENAME      },
5016   { "background.titlescreen_initial_5",         UNDEFINED_FILENAME      },
5017   { "background.titlescreen_1",                 UNDEFINED_FILENAME      },
5018   { "background.titlescreen_2",                 UNDEFINED_FILENAME      },
5019   { "background.titlescreen_3",                 UNDEFINED_FILENAME      },
5020   { "background.titlescreen_4",                 UNDEFINED_FILENAME      },
5021   { "background.titlescreen_5",                 UNDEFINED_FILENAME      },
5022   { "background.titlemessage_initial_1",        UNDEFINED_FILENAME      },
5023   { "background.titlemessage_initial_2",        UNDEFINED_FILENAME      },
5024   { "background.titlemessage_initial_3",        UNDEFINED_FILENAME      },
5025   { "background.titlemessage_initial_4",        UNDEFINED_FILENAME      },
5026   { "background.titlemessage_initial_5",        UNDEFINED_FILENAME      },
5027   { "background.titlemessage_1",                UNDEFINED_FILENAME      },
5028   { "background.titlemessage_2",                UNDEFINED_FILENAME      },
5029   { "background.titlemessage_3",                UNDEFINED_FILENAME      },
5030   { "background.titlemessage_4",                UNDEFINED_FILENAME      },
5031   { "background.titlemessage_5",                UNDEFINED_FILENAME      },
5032
5033   { "background.envelope_1",                    "RocksScreen.pcx"       },
5034   { "background.envelope_1.x",                  "0"                     },
5035   { "background.envelope_1.y",                  "0"                     },
5036   { "background.envelope_1.width",              "560"                   },
5037   { "background.envelope_1.height",             "560"                   },
5038   { "background.envelope_1.anim_mode",          "default"               },
5039   { "background.envelope_1.draw_masked",        "false"                 },
5040   { "background.envelope_2",                    "RocksScreen.pcx"       },
5041   { "background.envelope_2.x",                  "0"                     },
5042   { "background.envelope_2.y",                  "0"                     },
5043   { "background.envelope_2.width",              "560"                   },
5044   { "background.envelope_2.height",             "560"                   },
5045   { "background.envelope_2.anim_mode",          "default"               },
5046   { "background.envelope_2.draw_masked",        "false"                 },
5047   { "background.envelope_3",                    "RocksScreen.pcx"       },
5048   { "background.envelope_3.x",                  "0"                     },
5049   { "background.envelope_3.y",                  "0"                     },
5050   { "background.envelope_3.width",              "560"                   },
5051   { "background.envelope_3.height",             "560"                   },
5052   { "background.envelope_3.anim_mode",          "default"               },
5053   { "background.envelope_3.draw_masked",        "false"                 },
5054   { "background.envelope_4",                    "RocksScreen.pcx"       },
5055   { "background.envelope_4.x",                  "0"                     },
5056   { "background.envelope_4.y",                  "0"                     },
5057   { "background.envelope_4.width",              "560"                   },
5058   { "background.envelope_4.height",             "560"                   },
5059   { "background.envelope_4.anim_mode",          "default"               },
5060   { "background.envelope_4.draw_masked",        "false"                 },
5061
5062   { "titlescreen_initial_1",                    UNDEFINED_FILENAME      },
5063   { "titlescreen_initial_2",                    UNDEFINED_FILENAME      },
5064   { "titlescreen_initial_3",                    UNDEFINED_FILENAME      },
5065   { "titlescreen_initial_4",                    UNDEFINED_FILENAME      },
5066   { "titlescreen_initial_5",                    UNDEFINED_FILENAME      },
5067   { "titlescreen_1",                            UNDEFINED_FILENAME      },
5068   { "titlescreen_2",                            UNDEFINED_FILENAME      },
5069   { "titlescreen_3",                            UNDEFINED_FILENAME      },
5070   { "titlescreen_4",                            UNDEFINED_FILENAME      },
5071   { "titlescreen_5",                            UNDEFINED_FILENAME      },
5072
5073   /* the following directives are not associated with an image, but
5074      probably make sense to be defined in "graphicsinfo.conf", too */
5075
5076   /* keyword to start parser: "CONFIG_VARS_START" <-- do not change! */
5077
5078   { "[title_initial].fade_mode",                "fade"                  },
5079   { "[title_initial].fade_delay",               "500"                   },
5080   { "[title_initial].post_delay",               "250"                   },
5081   { "[title_initial].auto_delay",               "-1"                    },
5082   { "[title].fade_mode",                        "fade"                  },
5083   { "[title].fade_delay",                       "500"                   },
5084   { "[title].post_delay",                       "250"                   },
5085   { "[title].auto_delay",                       "-1"                    },
5086
5087   { "[titlemessage_initial].x",                 "336"                   },
5088   { "[titlemessage_initial].y",                 "280"                   },
5089   { "[titlemessage_initial].width",             "640"                   },
5090   { "[titlemessage_initial].height",            "512"                   },
5091   { "[titlemessage_initial].chars",             "-1"                    },
5092   { "[titlemessage_initial].lines",             "-1"                    },
5093   { "[titlemessage_initial].align",             "center"                },
5094   { "[titlemessage_initial].valign",            "middle"                },
5095   { "[titlemessage_initial].font",              "font.text_1"           },
5096   { "[titlemessage_initial].autowrap",          "false"                 },
5097   { "[titlemessage_initial].centered",          "false"                 },
5098   { "[titlemessage_initial].parse_comments",    "false"                 },
5099   { "[titlemessage_initial].sort_priority",     "0"                     },
5100   { "[titlemessage_initial].fade_mode",         ARG_DEFAULT             },
5101   { "[titlemessage_initial].fade_delay",        ARG_DEFAULT             },
5102   { "[titlemessage_initial].post_delay",        ARG_DEFAULT             },
5103   { "[titlemessage_initial].auto_delay",        ARG_DEFAULT             },
5104   { "[titlemessage].x",                         "336"                   },
5105   { "[titlemessage].y",                         "280"                   },
5106   { "[titlemessage].width",                     "640"                   },
5107   { "[titlemessage].height",                    "512"                   },
5108   { "[titlemessage].chars",                     "-1"                    },
5109   { "[titlemessage].lines",                     "-1"                    },
5110   { "[titlemessage].align",                     "center"                },
5111   { "[titlemessage].valign",                    "middle"                },
5112   { "[titlemessage].font",                      "font.text_1"           },
5113   { "[titlemessage].autowrap",                  "false"                 },
5114   { "[titlemessage].centered",                  "false"                 },
5115   { "[titlemessage].parse_comments",            "false"                 },
5116   { "[titlemessage].sort_priority",             "0"                     },
5117   { "[titlemessage].fade_mode",                 ARG_DEFAULT             },
5118   { "[titlemessage].fade_delay",                ARG_DEFAULT             },
5119   { "[titlemessage].post_delay",                ARG_DEFAULT             },
5120   { "[titlemessage].auto_delay",                ARG_DEFAULT             },
5121
5122   { "titlemessage_initial_1.x",                 ARG_DEFAULT             },
5123   { "titlemessage_initial_1.y",                 ARG_DEFAULT             },
5124   { "titlemessage_initial_1.width",             ARG_DEFAULT             },
5125   { "titlemessage_initial_1.height",            ARG_DEFAULT             },
5126   { "titlemessage_initial_1.chars",             ARG_DEFAULT             },
5127   { "titlemessage_initial_1.lines",             ARG_DEFAULT             },
5128   { "titlemessage_initial_1.align",             ARG_DEFAULT             },
5129   { "titlemessage_initial_1.valign",            ARG_DEFAULT             },
5130   { "titlemessage_initial_1.font",              ARG_DEFAULT             },
5131   { "titlemessage_initial_1.autowrap",          ARG_DEFAULT             },
5132   { "titlemessage_initial_1.centered",          ARG_DEFAULT             },
5133   { "titlemessage_initial_1.parse_comments",    ARG_DEFAULT             },
5134   { "titlemessage_initial_1.sort_priority",     ARG_DEFAULT             },
5135   { "titlemessage_initial_1.fade_mode",         ARG_DEFAULT             },
5136   { "titlemessage_initial_1.fade_delay",        ARG_DEFAULT             },
5137   { "titlemessage_initial_1.post_delay",        ARG_DEFAULT             },
5138   { "titlemessage_initial_1.auto_delay",        ARG_DEFAULT             },
5139   { "titlemessage_initial_2.x",                 ARG_DEFAULT             },
5140   { "titlemessage_initial_2.y",                 ARG_DEFAULT             },
5141   { "titlemessage_initial_2.width",             ARG_DEFAULT             },
5142   { "titlemessage_initial_2.height",            ARG_DEFAULT             },
5143   { "titlemessage_initial_2.chars",             ARG_DEFAULT             },
5144   { "titlemessage_initial_2.lines",             ARG_DEFAULT             },
5145   { "titlemessage_initial_2.align",             ARG_DEFAULT             },
5146   { "titlemessage_initial_2.valign",            ARG_DEFAULT             },
5147   { "titlemessage_initial_2.font",              ARG_DEFAULT             },
5148   { "titlemessage_initial_2.autowrap",          ARG_DEFAULT             },
5149   { "titlemessage_initial_2.centered",          ARG_DEFAULT             },
5150   { "titlemessage_initial_2.parse_comments",    ARG_DEFAULT             },
5151   { "titlemessage_initial_2.sort_priority",     ARG_DEFAULT             },
5152   { "titlemessage_initial_2.fade_mode",         ARG_DEFAULT             },
5153   { "titlemessage_initial_2.fade_delay",        ARG_DEFAULT             },
5154   { "titlemessage_initial_2.post_delay",        ARG_DEFAULT             },
5155   { "titlemessage_initial_2.auto_delay",        ARG_DEFAULT             },
5156   { "titlemessage_initial_3.x",                 ARG_DEFAULT             },
5157   { "titlemessage_initial_3.y",                 ARG_DEFAULT             },
5158   { "titlemessage_initial_3.width",             ARG_DEFAULT             },
5159   { "titlemessage_initial_3.height",            ARG_DEFAULT             },
5160   { "titlemessage_initial_3.chars",             ARG_DEFAULT             },
5161   { "titlemessage_initial_3.lines",             ARG_DEFAULT             },
5162   { "titlemessage_initial_3.align",             ARG_DEFAULT             },
5163   { "titlemessage_initial_3.valign",            ARG_DEFAULT             },
5164   { "titlemessage_initial_3.font",              ARG_DEFAULT             },
5165   { "titlemessage_initial_3.autowrap",          ARG_DEFAULT             },
5166   { "titlemessage_initial_3.centered",          ARG_DEFAULT             },
5167   { "titlemessage_initial_3.parse_comments",    ARG_DEFAULT             },
5168   { "titlemessage_initial_3.sort_priority",     ARG_DEFAULT             },
5169   { "titlemessage_initial_3.fade_mode",         ARG_DEFAULT             },
5170   { "titlemessage_initial_3.fade_delay",        ARG_DEFAULT             },
5171   { "titlemessage_initial_3.post_delay",        ARG_DEFAULT             },
5172   { "titlemessage_initial_3.auto_delay",        ARG_DEFAULT             },
5173   { "titlemessage_initial_4.x",                 ARG_DEFAULT             },
5174   { "titlemessage_initial_4.y",                 ARG_DEFAULT             },
5175   { "titlemessage_initial_4.width",             ARG_DEFAULT             },
5176   { "titlemessage_initial_4.height",            ARG_DEFAULT             },
5177   { "titlemessage_initial_4.chars",             ARG_DEFAULT             },
5178   { "titlemessage_initial_4.lines",             ARG_DEFAULT             },
5179   { "titlemessage_initial_4.align",             ARG_DEFAULT             },
5180   { "titlemessage_initial_4.valign",            ARG_DEFAULT             },
5181   { "titlemessage_initial_4.font",              ARG_DEFAULT             },
5182   { "titlemessage_initial_4.autowrap",          ARG_DEFAULT             },
5183   { "titlemessage_initial_4.centered",          ARG_DEFAULT             },
5184   { "titlemessage_initial_4.parse_comments",    ARG_DEFAULT             },
5185   { "titlemessage_initial_4.sort_priority",     ARG_DEFAULT             },
5186   { "titlemessage_initial_4.fade_mode",         ARG_DEFAULT             },
5187   { "titlemessage_initial_4.fade_delay",        ARG_DEFAULT             },
5188   { "titlemessage_initial_4.post_delay",        ARG_DEFAULT             },
5189   { "titlemessage_initial_4.auto_delay",        ARG_DEFAULT             },
5190   { "titlemessage_initial_5.x",                 ARG_DEFAULT             },
5191   { "titlemessage_initial_5.y",                 ARG_DEFAULT             },
5192   { "titlemessage_initial_5.width",             ARG_DEFAULT             },
5193   { "titlemessage_initial_5.height",            ARG_DEFAULT             },
5194   { "titlemessage_initial_5.chars",             ARG_DEFAULT             },
5195   { "titlemessage_initial_5.lines",             ARG_DEFAULT             },
5196   { "titlemessage_initial_5.align",             ARG_DEFAULT             },
5197   { "titlemessage_initial_5.valign",            ARG_DEFAULT             },
5198   { "titlemessage_initial_5.font",              ARG_DEFAULT             },
5199   { "titlemessage_initial_5.autowrap",          ARG_DEFAULT             },
5200   { "titlemessage_initial_5.centered",          ARG_DEFAULT             },
5201   { "titlemessage_initial_5.parse_comments",    ARG_DEFAULT             },
5202   { "titlemessage_initial_5.sort_priority",     ARG_DEFAULT             },
5203   { "titlemessage_initial_5.fade_mode",         ARG_DEFAULT             },
5204   { "titlemessage_initial_5.fade_delay",        ARG_DEFAULT             },
5205   { "titlemessage_initial_5.post_delay",        ARG_DEFAULT             },
5206   { "titlemessage_initial_5.auto_delay",        ARG_DEFAULT             },
5207   { "titlemessage_1.x",                         ARG_DEFAULT             },
5208   { "titlemessage_1.y",                         ARG_DEFAULT             },
5209   { "titlemessage_1.width",                     ARG_DEFAULT             },
5210   { "titlemessage_1.height",                    ARG_DEFAULT             },
5211   { "titlemessage_1.chars",                     ARG_DEFAULT             },
5212   { "titlemessage_1.lines",                     ARG_DEFAULT             },
5213   { "titlemessage_1.align",                     ARG_DEFAULT             },
5214   { "titlemessage_1.valign",                    ARG_DEFAULT             },
5215   { "titlemessage_1.font",                      ARG_DEFAULT             },
5216   { "titlemessage_1.autowrap",                  ARG_DEFAULT             },
5217   { "titlemessage_1.centered",                  ARG_DEFAULT             },
5218   { "titlemessage_1.parse_comments",            ARG_DEFAULT             },
5219   { "titlemessage_1.sort_priority",             ARG_DEFAULT             },
5220   { "titlemessage_1.fade_mode",                 ARG_DEFAULT             },
5221   { "titlemessage_1.fade_delay",                ARG_DEFAULT             },
5222   { "titlemessage_1.post_delay",                ARG_DEFAULT             },
5223   { "titlemessage_1.auto_delay",                ARG_DEFAULT             },
5224   { "titlemessage_2.x",                         ARG_DEFAULT             },
5225   { "titlemessage_2.y",                         ARG_DEFAULT             },
5226   { "titlemessage_2.width",                     ARG_DEFAULT             },
5227   { "titlemessage_2.height",                    ARG_DEFAULT             },
5228   { "titlemessage_2.chars",                     ARG_DEFAULT             },
5229   { "titlemessage_2.lines",                     ARG_DEFAULT             },
5230   { "titlemessage_2.align",                     ARG_DEFAULT             },
5231   { "titlemessage_2.valign",                    ARG_DEFAULT             },
5232   { "titlemessage_2.font",                      ARG_DEFAULT             },
5233   { "titlemessage_2.autowrap",                  ARG_DEFAULT             },
5234   { "titlemessage_2.centered",                  ARG_DEFAULT             },
5235   { "titlemessage_2.parse_comments",            ARG_DEFAULT             },
5236   { "titlemessage_2.sort_priority",             ARG_DEFAULT             },
5237   { "titlemessage_2.fade_mode",                 ARG_DEFAULT             },
5238   { "titlemessage_2.fade_delay",                ARG_DEFAULT             },
5239   { "titlemessage_2.post_delay",                ARG_DEFAULT             },
5240   { "titlemessage_2.auto_delay",                ARG_DEFAULT             },
5241   { "titlemessage_3.x",                         ARG_DEFAULT             },
5242   { "titlemessage_3.y",                         ARG_DEFAULT             },
5243   { "titlemessage_3.width",                     ARG_DEFAULT             },
5244   { "titlemessage_3.height",                    ARG_DEFAULT             },
5245   { "titlemessage_3.chars",                     ARG_DEFAULT             },
5246   { "titlemessage_3.lines",                     ARG_DEFAULT             },
5247   { "titlemessage_3.align",                     ARG_DEFAULT             },
5248   { "titlemessage_3.valign",                    ARG_DEFAULT             },
5249   { "titlemessage_3.font",                      ARG_DEFAULT             },
5250   { "titlemessage_3.autowrap",                  ARG_DEFAULT             },
5251   { "titlemessage_3.centered",                  ARG_DEFAULT             },
5252   { "titlemessage_3.parse_comments",            ARG_DEFAULT             },
5253   { "titlemessage_3.sort_priority",             ARG_DEFAULT             },
5254   { "titlemessage_3.fade_mode",                 ARG_DEFAULT             },
5255   { "titlemessage_3.fade_delay",                ARG_DEFAULT             },
5256   { "titlemessage_3.post_delay",                ARG_DEFAULT             },
5257   { "titlemessage_3.auto_delay",                ARG_DEFAULT             },
5258   { "titlemessage_4.x",                         ARG_DEFAULT             },
5259   { "titlemessage_4.y",                         ARG_DEFAULT             },
5260   { "titlemessage_4.width",                     ARG_DEFAULT             },
5261   { "titlemessage_4.height",                    ARG_DEFAULT             },
5262   { "titlemessage_4.chars",                     ARG_DEFAULT             },
5263   { "titlemessage_4.lines",                     ARG_DEFAULT             },
5264   { "titlemessage_4.align",                     ARG_DEFAULT             },
5265   { "titlemessage_4.valign",                    ARG_DEFAULT             },
5266   { "titlemessage_4.font",                      ARG_DEFAULT             },
5267   { "titlemessage_4.autowrap",                  ARG_DEFAULT             },
5268   { "titlemessage_4.centered",                  ARG_DEFAULT             },
5269   { "titlemessage_4.parse_comments",            ARG_DEFAULT             },
5270   { "titlemessage_4.sort_priority",             ARG_DEFAULT             },
5271   { "titlemessage_4.fade_mode",                 ARG_DEFAULT             },
5272   { "titlemessage_4.fade_delay",                ARG_DEFAULT             },
5273   { "titlemessage_4.post_delay",                ARG_DEFAULT             },
5274   { "titlemessage_4.auto_delay",                ARG_DEFAULT             },
5275   { "titlemessage_5.x",                         ARG_DEFAULT             },
5276   { "titlemessage_5.y",                         ARG_DEFAULT             },
5277   { "titlemessage_5.width",                     ARG_DEFAULT             },
5278   { "titlemessage_5.height",                    ARG_DEFAULT             },
5279   { "titlemessage_5.chars",                     ARG_DEFAULT             },
5280   { "titlemessage_5.lines",                     ARG_DEFAULT             },
5281   { "titlemessage_5.align",                     ARG_DEFAULT             },
5282   { "titlemessage_5.valign",                    ARG_DEFAULT             },
5283   { "titlemessage_5.font",                      ARG_DEFAULT             },
5284   { "titlemessage_5.autowrap",                  ARG_DEFAULT             },
5285   { "titlemessage_5.centered",                  ARG_DEFAULT             },
5286   { "titlemessage_5.parse_comments",            ARG_DEFAULT             },
5287   { "titlemessage_5.sort_priority",             ARG_DEFAULT             },
5288   { "titlemessage_5.fade_mode",                 ARG_DEFAULT             },
5289   { "titlemessage_5.fade_delay",                ARG_DEFAULT             },
5290   { "titlemessage_5.post_delay",                ARG_DEFAULT             },
5291   { "titlemessage_5.auto_delay",                ARG_DEFAULT             },
5292
5293   { "readme.x",                                 "272"                   },
5294   { "readme.y",                                 "150"                   },
5295   { "readme.width",                             "480"                   },
5296   { "readme.height",                            "364"                   },
5297   { "readme.chars",                             "-1"                    },
5298   { "readme.lines",                             "-1"                    },
5299   { "readme.align",                             "center"                },
5300   { "readme.valign",                            "top"                   },
5301   { "readme.font",                              "font.info.levelset"    },
5302   { "readme.autowrap",                          "true"                  },
5303   { "readme.centered",                          "false"                 },
5304   { "readme.parse_comments",                    "true"                  },
5305   { "readme.sort_priority",                     "0"                     },
5306
5307   { "global.num_toons",                         "20"                    },
5308
5309   { "border.draw_masked.TITLE",                 "false"                 },
5310   { "border.draw_masked.MAIN",                  "false"                 },
5311   { "border.draw_masked.LEVELS",                "false"                 },
5312   { "border.draw_masked.SCORES",                "false"                 },
5313   { "border.draw_masked.EDITOR",                "false"                 },
5314   { "border.draw_masked.INFO",                  "false"                 },
5315   { "border.draw_masked.SETUP",                 "false"                 },
5316   { "border.draw_masked.PLAYING",               "false"                 },
5317   { "border.draw_masked.DOOR",                  "false"                 },
5318
5319   { "border.draw_masked_when_fading",           "true"                  },
5320
5321   { "init.busy.x",                              "336"                   },
5322   { "init.busy.y",                              "280"                   },
5323   { "init.busy.align",                          "center"                },
5324   { "init.busy.valign",                         "middle"                },
5325
5326   { "menu.enter_menu.fade_mode",                "none"                  },
5327   { "menu.enter_menu.fade_delay",               "250"                   },
5328   { "menu.enter_menu.post_delay",               "125"                   },
5329   { "menu.leave_menu.fade_mode",                "none"                  },
5330   { "menu.leave_menu.fade_delay",               "250"                   },
5331   { "menu.leave_menu.post_delay",               "125"                   },
5332   { "menu.enter_screen.fade_mode",              "fade"                  },
5333   { "menu.enter_screen.fade_delay",             "250"                   },
5334   { "menu.enter_screen.post_delay",             "125"                   },
5335   { "menu.next_screen.fade_mode",               "crossfade"             },
5336   { "menu.next_screen.fade_delay",              "250"                   },
5337   { "menu.next_screen.post_delay",              "125"                   },
5338   { "menu.leave_screen.fade_mode",              "fade"                  },
5339   { "menu.leave_screen.fade_delay",             "250"                   },
5340   { "menu.leave_screen.post_delay",             "125"                   },
5341   { "menu.enter_screen.SCORES.fade_mode",       ARG_DEFAULT             },
5342   { "menu.enter_screen.SCORES.fade_delay",      ARG_DEFAULT             },
5343   { "menu.enter_screen.SCORES.post_delay",      ARG_DEFAULT             },
5344   { "menu.enter_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
5345   { "menu.enter_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
5346   { "menu.enter_screen.EDITOR.post_delay",      ARG_DEFAULT             },
5347   { "menu.enter_screen.INFO.fade_mode",         ARG_DEFAULT             },
5348   { "menu.enter_screen.INFO.fade_delay",        ARG_DEFAULT             },
5349   { "menu.enter_screen.INFO.post_delay",        ARG_DEFAULT             },
5350   { "menu.enter_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
5351   { "menu.enter_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
5352   { "menu.enter_screen.PLAYING.post_delay",     ARG_DEFAULT             },
5353   { "menu.leave_screen.SCORES.fade_mode",       ARG_DEFAULT             },
5354   { "menu.leave_screen.SCORES.fade_delay",      ARG_DEFAULT             },
5355   { "menu.leave_screen.SCORES.post_delay",      ARG_DEFAULT             },
5356   { "menu.leave_screen.EDITOR.fade_mode",       ARG_DEFAULT             },
5357   { "menu.leave_screen.EDITOR.fade_delay",      ARG_DEFAULT             },
5358   { "menu.leave_screen.EDITOR.post_delay",      ARG_DEFAULT             },
5359   { "menu.leave_screen.INFO.fade_mode",         ARG_DEFAULT             },
5360   { "menu.leave_screen.INFO.fade_delay",        ARG_DEFAULT             },
5361   { "menu.leave_screen.INFO.post_delay",        ARG_DEFAULT             },
5362   { "menu.leave_screen.PLAYING.fade_mode",      ARG_DEFAULT             },
5363   { "menu.leave_screen.PLAYING.fade_delay",     ARG_DEFAULT             },
5364   { "menu.leave_screen.PLAYING.post_delay",     ARG_DEFAULT             },
5365
5366   { "menu.draw_xoffset",                        "0"                     },
5367   { "menu.draw_yoffset",                        "0"                     },
5368   { "menu.draw_xoffset.MAIN",                   "0"                     },
5369   { "menu.draw_yoffset.MAIN",                   "0"                     },
5370   { "menu.draw_xoffset.LEVELS",                 "0"                     },
5371   { "menu.draw_yoffset.LEVELS",                 "0"                     },
5372   { "menu.draw_xoffset.SCORES",                 "0"                     },
5373   { "menu.draw_yoffset.SCORES",                 "0"                     },
5374   { "menu.draw_xoffset.EDITOR",                 "0"                     },
5375   { "menu.draw_yoffset.EDITOR",                 "0"                     },
5376   { "menu.draw_xoffset.INFO",                   "0"                     },
5377   { "menu.draw_yoffset.INFO",                   "0"                     },
5378   { "menu.draw_xoffset.INFO[ELEMENTS]",         "0"                     },
5379   { "menu.draw_yoffset.INFO[ELEMENTS]",         "0"                     },
5380   { "menu.draw_xoffset.INFO[MUSIC]",            "0"                     },
5381   { "menu.draw_yoffset.INFO[MUSIC]",            "0"                     },
5382   { "menu.draw_xoffset.INFO[CREDITS]",          "0"                     },
5383   { "menu.draw_yoffset.INFO[CREDITS]",          "0"                     },
5384   { "menu.draw_xoffset.INFO[PROGRAM]",          "0"                     },
5385   { "menu.draw_yoffset.INFO[PROGRAM]",          "0"                     },
5386   { "menu.draw_xoffset.INFO[VERSION]",          "0"                     },
5387   { "menu.draw_yoffset.INFO[VERSION]",          "0"                     },
5388   { "menu.draw_xoffset.INFO[LEVELSET]",         "0"                     },
5389   { "menu.draw_yoffset.INFO[LEVELSET]",         "0"                     },
5390   { "menu.draw_xoffset.SETUP",                  "0"                     },
5391   { "menu.draw_yoffset.SETUP",                  "0"                     },
5392   { "menu.draw_xoffset.SETUP[GAME]",            "0"                     },
5393   { "menu.draw_yoffset.SETUP[GAME]",            "0"                     },
5394   { "menu.draw_xoffset.SETUP[EDITOR]",          "0"                     },
5395   { "menu.draw_yoffset.SETUP[EDITOR]",          "0"                     },
5396   { "menu.draw_xoffset.SETUP[GRAPHICS]",        "0"                     },
5397   { "menu.draw_yoffset.SETUP[GRAPHICS]",        "0"                     },
5398   { "menu.draw_xoffset.SETUP[SOUND]",           "0"                     },
5399   { "menu.draw_yoffset.SETUP[SOUND]",           "0"                     },
5400   { "menu.draw_xoffset.SETUP[ARTWORK]",         "0"                     },
5401   { "menu.draw_yoffset.SETUP[ARTWORK]",         "0"                     },
5402   { "menu.draw_xoffset.SETUP[INPUT]",           "0"                     },
5403   { "menu.draw_yoffset.SETUP[INPUT]",           "0"                     },
5404   { "menu.draw_xoffset.SETUP[SHORTCUTS_1]",     "0"                     },
5405   { "menu.draw_yoffset.SETUP[SHORTCUTS_1]",     "0"                     },
5406   { "menu.draw_xoffset.SETUP[SHORTCUTS_2]",     "0"                     },
5407   { "menu.draw_yoffset.SETUP[SHORTCUTS_2]",     "0"                     },
5408   { "menu.draw_xoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
5409   { "menu.draw_yoffset.SETUP[CHOOSE_ARTWORK]",  "0"                     },
5410   { "menu.draw_xoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
5411   { "menu.draw_yoffset.SETUP[CHOOSE_OTHER]",    "0"                     },
5412
5413   { "menu.scrollbar_xoffset",                   "0"                     },
5414
5415   { "menu.list_size",                           "-1"                    },
5416   { "menu.list_size.LEVELS",                    "-1"                    },
5417   { "menu.list_size.SCORES",                    "-1"                    },
5418   { "menu.list_size.INFO",                      "-1"                    },
5419   { "menu.list_size.SETUP",                     "-1"                    },
5420
5421   { "main.button.name.x",                       "0"                     },
5422   { "main.button.name.y",                       "64"                    },
5423   { "main.button.levels.x",                     "0"                     },
5424   { "main.button.levels.y",                     "96"                    },
5425   { "main.button.scores.x",                     "0"                     },
5426   { "main.button.scores.y",                     "128"                   },
5427   { "main.button.editor.x",                     "0"                     },
5428   { "main.button.editor.y",                     "160"                   },
5429   { "main.button.info.x",                       "0"                     },
5430   { "main.button.info.y",                       "192"                   },
5431   { "main.button.game.x",                       "0"                     },
5432   { "main.button.game.y",                       "224"                   },
5433   { "main.button.setup.x",                      "0"                     },
5434   { "main.button.setup.y",                      "256"                   },
5435   { "main.button.quit.x",                       "0"                     },
5436   { "main.button.quit.y",                       "288"                   },
5437
5438   { "main.button.prev_level.x",                 "320"                   },
5439   { "main.button.prev_level.y",                 "96"                    },
5440   { "main.button.next_level.x",                 "448"                   },
5441   { "main.button.next_level.y",                 "96"                    },
5442
5443   { "main.text.name.x",                         "-1"                    },
5444   { "main.text.name.y",                         "-1"                    },
5445   { "main.text.name.width",                     "-1"                    },
5446   { "main.text.name.height",                    "-1"                    },
5447   { "main.text.name.align",                     "left"                  },
5448   { "main.text.name.valign",                    "top"                   },
5449   { "main.text.name.font",                      "font.menu_1"           },
5450   { "main.text.levels.x",                       "-1"                    },
5451   { "main.text.levels.y",                       "-1"                    },
5452   { "main.text.levels.width",                   "-1"                    },
5453   { "main.text.levels.height",                  "-1"                    },
5454   { "main.text.levels.align",                   "left"                  },
5455   { "main.text.levels.valign",                  "top"                   },
5456   { "main.text.levels.font",                    "font.menu_1"           },
5457   { "main.text.scores.x",                       "-1"                    },
5458   { "main.text.scores.y",                       "-1"                    },
5459   { "main.text.scores.width",                   "-1"                    },
5460   { "main.text.scores.height",                  "-1"                    },
5461   { "main.text.scores.align",                   "left"                  },
5462   { "main.text.scores.valign",                  "top"                   },
5463   { "main.text.scores.font",                    "font.menu_1"           },
5464   { "main.text.editor.x",                       "-1"                    },
5465   { "main.text.editor.y",                       "-1"                    },
5466   { "main.text.editor.width",                   "-1"                    },
5467   { "main.text.editor.height",                  "-1"                    },
5468   { "main.text.editor.align",                   "left"                  },
5469   { "main.text.editor.valign",                  "top"                   },
5470   { "main.text.editor.font",                    "font.menu_1"           },
5471   { "main.text.info.x",                         "-1"                    },
5472   { "main.text.info.y",                         "-1"                    },
5473   { "main.text.info.width",                     "-1"                    },
5474   { "main.text.info.height",                    "-1"                    },
5475   { "main.text.info.align",                     "left"                  },
5476   { "main.text.info.valign",                    "top"                   },
5477   { "main.text.info.font",                      "font.menu_1"           },
5478   { "main.text.game.x",                         "-1"                    },
5479   { "main.text.game.y",                         "-1"                    },
5480   { "main.text.game.width",                     "-1"                    },
5481   { "main.text.game.height",                    "-1"                    },
5482   { "main.text.game.align",                     "left"                  },
5483   { "main.text.game.valign",                    "top"                   },
5484   { "main.text.game.font",                      "font.menu_1"           },
5485   { "main.text.setup.x",                        "-1"                    },
5486   { "main.text.setup.y",                        "-1"                    },
5487   { "main.text.setup.width",                    "-1"                    },
5488   { "main.text.setup.height",                   "-1"                    },
5489   { "main.text.setup.align",                    "left"                  },
5490   { "main.text.setup.valign",                   "top"                   },
5491   { "main.text.setup.font",                     "font.menu_1"           },
5492   { "main.text.quit.x",                         "-1"                    },
5493   { "main.text.quit.y",                         "-1"                    },
5494   { "main.text.quit.width",                     "-1"                    },
5495   { "main.text.quit.height",                    "-1"                    },
5496   { "main.text.quit.align",                     "left"                  },
5497   { "main.text.quit.valign",                    "top"                   },
5498   { "main.text.quit.font",                      "font.menu_1"           },
5499
5500   { "main.text.first_level.x",                  "488"                   },
5501   { "main.text.first_level.y",                  "98"                    },
5502   { "main.text.first_level.align",              "left"                  },
5503   { "main.text.first_level.valign",             "top"                   },
5504   { "main.text.first_level.digits",             "3"                     },
5505   { "main.text.first_level.font",               "font.text_3"           },
5506   { "main.text.last_level.x",                   "488"                   },
5507   { "main.text.last_level.y",                   "112"                   },
5508   { "main.text.last_level.align",               "left"                  },
5509   { "main.text.last_level.valign",              "top"                   },
5510   { "main.text.last_level.digits",              "3"                     },
5511   { "main.text.last_level.font",                "font.text_3"           },
5512   { "main.text.level_number.x",                 "352"                   },
5513   { "main.text.level_number.y",                 "96"                    },
5514   { "main.text.level_number.align",             "left"                  },
5515   { "main.text.level_number.valign",            "top"                   },
5516   { "main.text.level_number.digits",            "3"                     },
5517   { "main.text.level_number.font",              "font.value_1"          },
5518   { "main.text.level_info_1.x",                 "272"                   },
5519   { "main.text.level_info_1.y",                 "352"                   },
5520   { "main.text.level_info_1.align",             "center"                },
5521   { "main.text.level_info_1.valign",            "top"                   },
5522   { "main.text.level_info_1.chars",             "-1"                    },
5523   { "main.text.level_info_1.font",              "font.text_1"           },
5524   { "main.text.level_info_2.x",                 "272"                   },
5525   { "main.text.level_info_2.y",                 "523"                   },
5526   { "main.text.level_info_2.align",             "center"                },
5527   { "main.text.level_info_2.valign",            "top"                   },
5528   { "main.text.level_info_2.chars",             "-1"                    },
5529   { "main.text.level_info_2.font",              "font.text_2"           },
5530   { "main.text.level_info_2.font_header",       "font.text_4"           },
5531   { "main.text.level_name.x",                   "-1"                    },
5532   { "main.text.level_name.y",                   "-1"                    },
5533   { "main.text.level_name.align",               "left"                  },
5534   { "main.text.level_name.valign",              "top"                   },
5535   { "main.text.level_name.chars",               "-1"                    },
5536   { "main.text.level_name.font",                "font.text_2"           },
5537   { "main.text.level_author.x",                 "-1"                    },
5538   { "main.text.level_author.y",                 "-1"                    },
5539   { "main.text.level_author.align",             "left"                  },
5540   { "main.text.level_author.valign",            "top"                   },
5541   { "main.text.level_author.chars",             "-1"                    },
5542   { "main.text.level_author.font",              "font.text_2"           },
5543   { "main.text.level_year.x",                   "-1"                    },
5544   { "main.text.level_year.y",                   "-1"                    },
5545   { "main.text.level_year.align",               "left"                  },
5546   { "main.text.level_year.valign",              "top"                   },
5547   { "main.text.level_year.digits",              "-1"                    },
5548   { "main.text.level_year.font",                "font.text_2"           },
5549   { "main.text.level_imported_from.x",          "-1"                    },
5550   { "main.text.level_imported_from.y",          "-1"                    },
5551   { "main.text.level_imported_from.align",      "left"                  },
5552   { "main.text.level_imported_from.valign",     "top"                   },
5553   { "main.text.level_imported_from.chars",      "-1"                    },
5554   { "main.text.level_imported_from.font",       "font.text_2"           },
5555   { "main.text.level_imported_by.x",            "-1"                    },
5556   { "main.text.level_imported_by.y",            "-1"                    },
5557   { "main.text.level_imported_by.align",        "left"                  },
5558   { "main.text.level_imported_by.valign",       "top"                   },
5559   { "main.text.level_imported_by.chars",        "-1"                    },
5560   { "main.text.level_imported_by.font",         "font.text_2"           },
5561   { "main.text.level_tested_by.x",              "-1"                    },
5562   { "main.text.level_tested_by.y",              "-1"                    },
5563   { "main.text.level_tested_by.align",          "left"                  },
5564   { "main.text.level_tested_by.valign",         "top"                   },
5565   { "main.text.level_tested_by.chars",          "-1"                    },
5566   { "main.text.level_tested_by.font",           "font.text_2"           },
5567   { "main.text.title_1.x",                      "272"                   },
5568   { "main.text.title_1.y",                      "8"                     },
5569   { "main.text.title_1.align",                  "center"                },
5570   { "main.text.title_1.valign",                 "top"                   },
5571   { "main.text.title_1.font",                   "font.title_1"          },
5572   { "main.text.title_2.x",                      "272"                   },
5573   { "main.text.title_2.y",                      "46"                    },
5574   { "main.text.title_2.align",                  "center"                },
5575   { "main.text.title_2.valign",                 "top"                   },
5576   { "main.text.title_2.font",                   "font.title_2"          },
5577   { "main.text.title_3.x",                      "272"                   },
5578   { "main.text.title_3.y",                      "326"                   },
5579   { "main.text.title_3.align",                  "center"                },
5580   { "main.text.title_3.valign",                 "top"                   },
5581   { "main.text.title_3.font",                   "font.title_2"          },
5582
5583   { "main.input.name.x",                        "-1"                    },
5584   { "main.input.name.y",                        "-1"                    },
5585   { "main.input.name.align",                    "left"                  },
5586   { "main.input.name.valign",                   "top"                   },
5587   { "main.input.name.font",                     "font.input_1"          },
5588
5589   { "preview.x",                                "272"                   },
5590   { "preview.y",                                "380"                   },
5591   { "preview.align",                            "center"                },
5592   { "preview.valign",                           "top"                   },
5593   { "preview.xsize",                            "66"                    },
5594   { "preview.ysize",                            "34"                    },
5595   { "preview.xoffset",                          "0"                     },
5596   { "preview.yoffset",                          "0"                     },
5597   { "preview.tile_size",                        "4"                     },
5598   { "preview.step_offset",                      "1"                     },
5599   { "preview.step_delay",                       "50"                    },
5600   { "preview.anim_mode",                        "default"               },
5601
5602   { "door_1.width",                             "-1"                    },
5603   { "door_1.height",                            "-1"                    },
5604   { "door_1.step_offset",                       "2"                     },
5605   { "door_1.step_delay",                        "10"                    },
5606   { "door_1.anim_mode",                         "default"               },
5607
5608   { "door_2.width",                             "-1"                    },
5609   { "door_2.height",                            "-1"                    },
5610   { "door_2.step_offset",                       "2"                     },
5611   { "door_2.step_delay",                        "10"                    },
5612   { "door_2.anim_mode",                         "default"               },
5613
5614   { "game.panel.level_number.x",                "51"                    },
5615   { "game.panel.level_number.y",                "20"                    },
5616   { "game.panel.level_number.align",            "center"                },
5617   { "game.panel.level_number.valign",           "top"                   },
5618   { "game.panel.level_number.digits",           "-1"                    },
5619   { "game.panel.level_number.font",             "font.text_2"           },
5620   { "game.panel.level_number.font_narrow",      "font.text_1"           },
5621   { "game.panel.level_number.draw_masked",      "true"                  },
5622   { "game.panel.level_number.draw_order",       "0"                     },
5623
5624   { "game.panel.gems.x",                        "50"                    },
5625   { "game.panel.gems.y",                        "54"                    },
5626   { "game.panel.gems.align",                    "center"                },
5627   { "game.panel.gems.valign",                   "top"                   },
5628   { "game.panel.gems.digits",                   "3"                     },
5629   { "game.panel.gems.font",                     "font.text_2"           },
5630   { "game.panel.gems.draw_masked",              "true"                  },
5631   { "game.panel.gems.draw_order",               "0"                     },
5632
5633   { "game.panel.inventory_count.x",             "50"                    },
5634   { "game.panel.inventory_count.y",             "89"                    },
5635   { "game.panel.inventory_count.align",         "center"                },
5636   { "game.panel.inventory_count.valign",        "top"                   },
5637   { "game.panel.inventory_count.digits",        "3"                     },
5638   { "game.panel.inventory_count.font",          "font.text_2"           },
5639   { "game.panel.inventory_count.draw_masked",   "true"                  },
5640   { "game.panel.inventory_count.draw_order",    "0"                     },
5641
5642   { "game.panel.inventory_first_1.x",           "-1"                    },
5643   { "game.panel.inventory_first_1.y",           "-1"                    },
5644   { "game.panel.inventory_first_1.tile_size",   "16"                    },
5645   { "game.panel.inventory_first_1.draw_masked", "false"                 },
5646   { "game.panel.inventory_first_1.draw_order",  "0"                     },
5647   { "game.panel.inventory_first_2.x",           "-1"                    },
5648   { "game.panel.inventory_first_2.y",           "-1"                    },
5649   { "game.panel.inventory_first_2.tile_size",   "16"                    },
5650   { "game.panel.inventory_first_2.draw_masked", "false"                 },
5651   { "game.panel.inventory_first_2.draw_order",  "0"                     },
5652   { "game.panel.inventory_first_3.x",           "-1"                    },
5653   { "game.panel.inventory_first_3.y",           "-1"                    },
5654   { "game.panel.inventory_first_3.tile_size",   "16"                    },
5655   { "game.panel.inventory_first_3.draw_masked", "false"                 },
5656   { "game.panel.inventory_first_3.draw_order",  "0"                     },
5657   { "game.panel.inventory_first_4.x",           "-1"                    },
5658   { "game.panel.inventory_first_4.y",           "-1"                    },
5659   { "game.panel.inventory_first_4.tile_size",   "16"                    },
5660   { "game.panel.inventory_first_4.draw_masked", "false"                 },
5661   { "game.panel.inventory_first_4.draw_order",  "0"                     },
5662   { "game.panel.inventory_first_5.x",           "-1"                    },
5663   { "game.panel.inventory_first_5.y",           "-1"                    },
5664   { "game.panel.inventory_first_5.tile_size",   "16"                    },
5665   { "game.panel.inventory_first_5.draw_masked", "false"                 },
5666   { "game.panel.inventory_first_5.draw_order",  "0"                     },
5667   { "game.panel.inventory_first_6.x",           "-1"                    },
5668   { "game.panel.inventory_first_6.y",           "-1"                    },
5669   { "game.panel.inventory_first_6.tile_size",   "16"                    },
5670   { "game.panel.inventory_first_6.draw_masked", "false"                 },
5671   { "game.panel.inventory_first_6.draw_order",  "0"                     },
5672   { "game.panel.inventory_first_7.x",           "-1"                    },
5673   { "game.panel.inventory_first_7.y",           "-1"                    },
5674   { "game.panel.inventory_first_7.tile_size",   "16"                    },
5675   { "game.panel.inventory_first_7.draw_masked", "false"                 },
5676   { "game.panel.inventory_first_7.draw_order",  "0"                     },
5677   { "game.panel.inventory_first_8.x",           "-1"                    },
5678   { "game.panel.inventory_first_8.y",           "-1"                    },
5679   { "game.panel.inventory_first_8.tile_size",   "16"                    },
5680   { "game.panel.inventory_first_8.draw_masked", "false"                 },
5681   { "game.panel.inventory_first_8.draw_order",  "0"                     },
5682
5683   { "game.panel.inventory_last_1.x",            "-1"                    },
5684   { "game.panel.inventory_last_1.y",            "-1"                    },
5685   { "game.panel.inventory_last_1.tile_size",    "16"                    },
5686   { "game.panel.inventory_last_1.draw_masked",  "false"                 },
5687   { "game.panel.inventory_last_1.draw_order",   "0"                     },
5688   { "game.panel.inventory_last_2.x",            "-1"                    },
5689   { "game.panel.inventory_last_2.y",            "-1"                    },
5690   { "game.panel.inventory_last_2.tile_size",    "16"                    },
5691   { "game.panel.inventory_last_2.draw_masked",  "false"                 },
5692   { "game.panel.inventory_last_2.draw_order",   "0"                     },
5693   { "game.panel.inventory_last_3.x",            "-1"                    },
5694   { "game.panel.inventory_last_3.y",            "-1"                    },
5695   { "game.panel.inventory_last_3.tile_size",    "16"                    },
5696   { "game.panel.inventory_last_3.draw_masked",  "false"                 },
5697   { "game.panel.inventory_last_3.draw_order",   "0"                     },
5698   { "game.panel.inventory_last_4.x",            "-1"                    },
5699   { "game.panel.inventory_last_4.y",            "-1"                    },
5700   { "game.panel.inventory_last_4.tile_size",    "16"                    },
5701   { "game.panel.inventory_last_4.draw_masked",  "false"                 },
5702   { "game.panel.inventory_last_4.draw_order",   "0"                     },
5703   { "game.panel.inventory_last_5.x",            "-1"                    },
5704   { "game.panel.inventory_last_5.y",            "-1"                    },
5705   { "game.panel.inventory_last_5.tile_size",    "16"                    },
5706   { "game.panel.inventory_last_5.draw_masked",  "false"                 },
5707   { "game.panel.inventory_last_5.draw_order",   "0"                     },
5708   { "game.panel.inventory_last_6.x",            "-1"                    },
5709   { "game.panel.inventory_last_6.y",            "-1"                    },
5710   { "game.panel.inventory_last_6.tile_size",    "16"                    },
5711   { "game.panel.inventory_last_6.draw_masked",  "false"                 },
5712   { "game.panel.inventory_last_6.draw_order",   "0"                     },
5713   { "game.panel.inventory_last_7.x",            "-1"                    },
5714   { "game.panel.inventory_last_7.y",            "-1"                    },
5715   { "game.panel.inventory_last_7.tile_size",    "16"                    },
5716   { "game.panel.inventory_last_7.draw_masked",  "false"                 },
5717   { "game.panel.inventory_last_7.draw_order",   "0"                     },
5718   { "game.panel.inventory_last_8.x",            "-1"                    },
5719   { "game.panel.inventory_last_8.y",            "-1"                    },
5720   { "game.panel.inventory_last_8.tile_size",    "16"                    },
5721   { "game.panel.inventory_last_8.draw_masked",  "false"                 },
5722   { "game.panel.inventory_last_8.draw_order",   "0"                     },
5723
5724   { "game.panel.key_1.x",                       "18"                    },
5725   { "game.panel.key_1.y",                       "123"                   },
5726   { "game.panel.key_1.tile_size",               "16"                    },
5727   { "game.panel.key_1.draw_masked",             "false"                 },
5728   { "game.panel.key_1.draw_order",              "0"                     },
5729   { "game.panel.key_2.x",                       "34"                    },
5730   { "game.panel.key_2.y",                       "123"                   },
5731   { "game.panel.key_2.tile_size",               "16"                    },
5732   { "game.panel.key_2.draw_masked",             "false"                 },
5733   { "game.panel.key_2.draw_order",              "0"                     },
5734   { "game.panel.key_3.x",                       "50"                    },
5735   { "game.panel.key_3.y",                       "123"                   },
5736   { "game.panel.key_3.tile_size",               "16"                    },
5737   { "game.panel.key_3.draw_masked",             "false"                 },
5738   { "game.panel.key_3.draw_order",              "0"                     },
5739   { "game.panel.key_4.x",                       "66"                    },
5740   { "game.panel.key_4.y",                       "123"                   },
5741   { "game.panel.key_4.tile_size",               "16"                    },
5742   { "game.panel.key_4.draw_masked",             "false"                 },
5743   { "game.panel.key_4.draw_order",              "0"                     },
5744   { "game.panel.key_5.x",                       "-1"                    },
5745   { "game.panel.key_5.y",                       "-1"                    },
5746   { "game.panel.key_5.tile_size",               "16"                    },
5747   { "game.panel.key_5.draw_masked",             "false"                 },
5748   { "game.panel.key_5.draw_order",              "0"                     },
5749   { "game.panel.key_6.x",                       "-1"                    },
5750   { "game.panel.key_6.y",                       "-1"                    },
5751   { "game.panel.key_6.tile_size",               "16"                    },
5752   { "game.panel.key_6.draw_masked",             "false"                 },
5753   { "game.panel.key_6.draw_order",              "0"                     },
5754   { "game.panel.key_7.x",                       "-1"                    },
5755   { "game.panel.key_7.y",                       "-1"                    },
5756   { "game.panel.key_7.tile_size",               "16"                    },
5757   { "game.panel.key_7.draw_masked",             "false"                 },
5758   { "game.panel.key_7.draw_order",              "0"                     },
5759   { "game.panel.key_8.x",                       "-1"                    },
5760   { "game.panel.key_8.y",                       "-1"                    },
5761   { "game.panel.key_8.tile_size",               "16"                    },
5762   { "game.panel.key_8.draw_masked",             "false"                 },
5763   { "game.panel.key_8.draw_order",              "0"                     },
5764   { "game.panel.key_white.x",                   "-1"                    },
5765   { "game.panel.key_white.y",                   "-1"                    },
5766   { "game.panel.key_white.tile_size",           "16"                    },
5767   { "game.panel.key_white.draw_masked",         "false"                 },
5768   { "game.panel.key_white.draw_order",          "0"                     },
5769   { "game.panel.key_white_count.x",             "-1"                    },
5770   { "game.panel.key_white_count.y",             "-1"                    },
5771   { "game.panel.key_white_count.align",         "left"                  },
5772   { "game.panel.key_white_count.valign",        "top"                   },
5773   { "game.panel.key_white_count.digits",        "-1"                    },
5774   { "game.panel.key_white_count.font",          "font.text_2"           },
5775   { "game.panel.key_white_count.draw_masked",   "true"                  },
5776   { "game.panel.key_white_count.draw_order",    "0"                     },
5777
5778   { "game.panel.score.x",                       "50"                    },
5779   { "game.panel.score.y",                       "159"                   },
5780   { "game.panel.score.align",                   "center"                },
5781   { "game.panel.score.valign",                  "top"                   },
5782   { "game.panel.score.digits",                  "5"                     },
5783   { "game.panel.score.font",                    "font.text_2"           },
5784   { "game.panel.score.draw_masked",             "true"                  },
5785   { "game.panel.score.draw_order",              "0"                     },
5786
5787   { "game.panel.highscore.x",                   "-1"                    },
5788   { "game.panel.highscore.y",                   "-1"                    },
5789   { "game.panel.highscore.align",               "left"                  },
5790   { "game.panel.highscore.valign",              "top"                   },
5791   { "game.panel.highscore.digits",              "5"                     },
5792   { "game.panel.highscore.font",                "font.text_2"           },
5793   { "game.panel.highscore.draw_masked",         "true"                  },
5794   { "game.panel.highscore.draw_order",          "0"                     },
5795
5796   { "game.panel.time.x",                        "50"                    },
5797   { "game.panel.time.y",                        "194"                   },
5798   { "game.panel.time.align",                    "center"                },
5799   { "game.panel.time.valign",                   "top"                   },
5800   { "game.panel.time.digits",                   "-1"                    },
5801   { "game.panel.time.font",                     "font.text_2"           },
5802   { "game.panel.time.font_narrow",              "font.text_1"           },
5803   { "game.panel.time.draw_masked",              "true"                  },
5804   { "game.panel.time.draw_order",               "0"                     },
5805
5806   { "game.panel.time_hh.x",                     "-1"                    },
5807   { "game.panel.time_hh.y",                     "-1"                    },
5808   { "game.panel.time_hh.align",                 "left"                  },
5809   { "game.panel.time_hh.valign",                "top"                   },
5810   { "game.panel.time_hh.digits",                "2"                     },
5811   { "game.panel.time_hh.font",                  "font.text_2"           },
5812   { "game.panel.time_hh.draw_masked",           "true"                  },
5813   { "game.panel.time_hh.draw_order",            "0"                     },
5814   { "game.panel.time_mm.x",                     "-1"                    },
5815   { "game.panel.time_mm.y",                     "-1"                    },
5816   { "game.panel.time_mm.align",                 "left"                  },
5817   { "game.panel.time_mm.valign",                "top"                   },
5818   { "game.panel.time_mm.digits",                "2"                     },
5819   { "game.panel.time_mm.font",                  "font.text_2"           },
5820   { "game.panel.time_mm.draw_masked",           "true"                  },
5821   { "game.panel.time_mm.draw_order",            "0"                     },
5822   { "game.panel.time_ss.x",                     "-1"                    },
5823   { "game.panel.time_ss.y",                     "-1"                    },
5824   { "game.panel.time_ss.align",                 "left"                  },
5825   { "game.panel.time_ss.valign",                "top"                   },
5826   { "game.panel.time_ss.digits",                "2"                     },
5827   { "game.panel.time_ss.font",                  "font.text_2"           },
5828   { "game.panel.time_ss.draw_masked",           "true"                  },
5829   { "game.panel.time_ss.draw_order",            "0"                     },
5830
5831   { "game.panel.shield_normal.x",               "-1"                    },
5832   { "game.panel.shield_normal.y",               "-1"                    },
5833   { "game.panel.shield_normal.tile_size",       "16"                    },
5834   { "game.panel.shield_normal.draw_masked",     "false"                 },
5835   { "game.panel.shield_normal.draw_order",      "0"                     },
5836   { "game.panel.shield_normal_time.x",          "-1"                    },
5837   { "game.panel.shield_normal_time.y",          "-1"                    },
5838   { "game.panel.shield_normal_time.align",      "left"                  },
5839   { "game.panel.shield_normal_time.valign",     "top"                   },
5840   { "game.panel.shield_normal_time.digits",     "-1"                    },
5841   { "game.panel.shield_normal_time.font",       "font.text_2"           },
5842   { "game.panel.shield_normal_time.draw_masked", "true"                 },
5843   { "game.panel.shield_normal_time.draw_order", "0"                     },
5844   { "game.panel.shield_deadly.x",               "-1"                    },
5845   { "game.panel.shield_deadly.y",               "-1"                    },
5846   { "game.panel.shield_deadly.tile_size",       "16"                    },
5847   { "game.panel.shield_deadly.draw_masked",     "false"                 },
5848   { "game.panel.shield_deadly.draw_order",      "0"                     },
5849   { "game.panel.shield_deadly_time.x",          "-1"                    },
5850   { "game.panel.shield_deadly_time.y",          "-1"                    },
5851   { "game.panel.shield_deadly_time.align",      "left"                  },
5852   { "game.panel.shield_deadly_time.valign",     "top"                   },
5853   { "game.panel.shield_deadly_time.digits",     "-1"                    },
5854   { "game.panel.shield_deadly_time.font",       "font.text_2"           },
5855   { "game.panel.shield_deadly_time.draw_masked","true"                  },
5856   { "game.panel.shield_deadly_time.draw_order", "0"                     },
5857
5858   { "game.panel.exit.x",                        "-1"                    },
5859   { "game.panel.exit.y",                        "-1"                    },
5860   { "game.panel.exit.tile_size",                "16"                    },
5861   { "game.panel.exit.draw_masked",              "false"                 },
5862   { "game.panel.exit.draw_order",               "0"                     },
5863
5864   { "game.panel.emc_magic_ball.x",              "-1"                    },
5865   { "game.panel.emc_magic_ball.y",              "-1"                    },
5866   { "game.panel.emc_magic_ball.tile_size",      "16"                    },
5867   { "game.panel.emc_magic_ball.draw_masked",    "false"                 },
5868   { "game.panel.emc_magic_ball.draw_order",     "0"                     },
5869   { "game.panel.emc_magic_ball_switch.x",       "-1"                    },
5870   { "game.panel.emc_magic_ball_switch.y",       "-1"                    },
5871   { "game.panel.emc_magic_ball_switch.tile_size", "16"                  },
5872   { "game.panel.emc_magic_ball_switch.draw_masked", "true"              },
5873   { "game.panel.emc_magic_ball_switch.draw_order", "0"                  },
5874
5875   { "game.panel.light_switch.x",                "-1"                    },
5876   { "game.panel.light_switch.y",                "-1"                    },
5877   { "game.panel.light_switch.tile_size",        "16"                    },
5878   { "game.panel.light_switch.draw_masked",      "false"                 },
5879   { "game.panel.light_switch.draw_order",       "0"                     },
5880   { "game.panel.light_switch_time.x",           "-1"                    },
5881   { "game.panel.light_switch_time.y",           "-1"                    },
5882   { "game.panel.light_switch_time.align",       "left"                  },
5883   { "game.panel.light_switch_time.valign",      "top"                   },
5884   { "game.panel.light_switch_time.digits",      "-1"                    },
5885   { "game.panel.light_switch_time.font",        "font.text_2"           },
5886   { "game.panel.light_switch_time.draw_masked", "true"                  },
5887   { "game.panel.light_switch_time.draw_order",  "0"                     },
5888
5889   { "game.panel.timegate_switch.x",             "-1"                    },
5890   { "game.panel.timegate_switch.y",             "-1"                    },
5891   { "game.panel.timegate_switch.tile_size",     "16"                    },
5892   { "game.panel.timegate_switch.draw_masked",   "false"                 },
5893   { "game.panel.timegate_switch.draw_order",    "0"                     },
5894   { "game.panel.timegate_switch_time.x",        "-1"                    },
5895   { "game.panel.timegate_switch_time.y",        "-1"                    },
5896   { "game.panel.timegate_switch_time.align",    "left"                  },
5897   { "game.panel.timegate_switch_time.valign",   "top"                   },
5898   { "game.panel.timegate_switch_time.digits",   "-1"                    },
5899   { "game.panel.timegate_switch_time.font",     "font.text_2"           },
5900   { "game.panel.timegate_switch_time.draw_masked", "true"               },
5901   { "game.panel.timegate_switch_time.draw_order", "0"                   },
5902
5903   { "game.panel.switchgate_switch.x",           "-1"                    },
5904   { "game.panel.switchgate_switch.y",           "-1"                    },
5905   { "game.panel.switchgate_switch.tile_size",   "16"                    },
5906   { "game.panel.switchgate_switch.draw_masked", "false"                 },
5907   { "game.panel.switchgate_switch.draw_order",  "0"                     },
5908
5909   { "game.panel.emc_lenses.x",                  "-1"                    },
5910   { "game.panel.emc_lenses.y",                  "-1"                    },
5911   { "game.panel.emc_lenses.tile_size",          "16"                    },
5912   { "game.panel.emc_lenses.draw_masked",        "false"                 },
5913   { "game.panel.emc_lenses.draw_order",         "0"                     },
5914   { "game.panel.emc_lenses_time.x",             "-1"                    },
5915   { "game.panel.emc_lenses_time.y",             "-1"                    },
5916   { "game.panel.emc_lenses_time.align",         "left"                  },
5917   { "game.panel.emc_lenses_time.valign",        "top"                   },
5918   { "game.panel.emc_lenses_time.digits",        "-1"                    },
5919   { "game.panel.emc_lenses_time.font",          "font.text_2"           },
5920   { "game.panel.emc_lenses_time.draw_masked",   "true"                  },
5921   { "game.panel.emc_lenses_time.draw_order",    "0"                     },
5922
5923   { "game.panel.emc_magnifier.x",               "-1"                    },
5924   { "game.panel.emc_magnifier.y",               "-1"                    },
5925   { "game.panel.emc_magnifier.tile_size",       "16"                    },
5926   { "game.panel.emc_magnifier.draw_masked",     "false"                 },
5927   { "game.panel.emc_magnifier.draw_order",      "0"                     },
5928   { "game.panel.emc_magnifier_time.x",          "-1"                    },
5929   { "game.panel.emc_magnifier_time.y",          "-1"                    },
5930   { "game.panel.emc_magnifier_time.align",      "left"                  },
5931   { "game.panel.emc_magnifier_time.valign",     "top"                   },
5932   { "game.panel.emc_magnifier_time.digits",     "-1"                    },
5933   { "game.panel.emc_magnifier_time.font",       "font.text_2"           },
5934   { "game.panel.emc_magnifier_time.draw_masked","true"                  },
5935   { "game.panel.emc_magnifier_time.draw_order", "0"                     },
5936
5937   { "game.panel.balloon_switch.x",              "-1"                    },
5938   { "game.panel.balloon_switch.y",              "-1"                    },
5939   { "game.panel.balloon_switch.tile_size",      "16"                    },
5940   { "game.panel.balloon_switch.draw_masked",    "false"                 },
5941   { "game.panel.balloon_switch.draw_order",     "0"                     },
5942
5943   { "game.panel.dynabomb_number.x",             "-1"                    },
5944   { "game.panel.dynabomb_number.y",             "-1"                    },
5945   { "game.panel.dynabomb_number.align",         "left"                  },
5946   { "game.panel.dynabomb_number.valign",        "top"                   },
5947   { "game.panel.dynabomb_number.digits",        "-1"                    },
5948   { "game.panel.dynabomb_number.font",          "font.text_2"           },
5949   { "game.panel.dynabomb_number.draw_masked",   "true"                  },
5950   { "game.panel.dynabomb_number.draw_order",    "0"                     },
5951   { "game.panel.dynabomb_size.x",               "-1"                    },
5952   { "game.panel.dynabomb_size.y",               "-1"                    },
5953   { "game.panel.dynabomb_size.align",           "left"                  },
5954   { "game.panel.dynabomb_size.valign",          "top"                   },
5955   { "game.panel.dynabomb_size.digits",          "-1"                    },
5956   { "game.panel.dynabomb_size.font",            "font.text_2"           },
5957   { "game.panel.dynabomb_size.draw_masked",     "true"                  },
5958   { "game.panel.dynabomb_size.draw_order",      "0"                     },
5959   { "game.panel.dynabomb_power.x",              "-1"                    },
5960   { "game.panel.dynabomb_power.y",              "-1"                    },
5961   { "game.panel.dynabomb_power.tile_size",      "16"                    },
5962   { "game.panel.dynabomb_power.draw_masked",    "false"                 },
5963   { "game.panel.dynabomb_power.draw_order",     "0"                     },
5964
5965   { "game.panel.penguins.x",                    "-1"                    },
5966   { "game.panel.penguins.y",                    "-1"                    },
5967   { "game.panel.penguins.align",                "left"                  },
5968   { "game.panel.penguins.valign",               "top"                   },
5969   { "game.panel.penguins.digits",               "-1"                    },
5970   { "game.panel.penguins.font",                 "font.text_2"           },
5971   { "game.panel.penguins.draw_masked",          "true"                  },
5972   { "game.panel.penguins.draw_order",           "0"                     },
5973
5974   { "game.panel.sokoban_objects.x",             "-1"                    },
5975   { "game.panel.sokoban_objects.y",             "-1"                    },
5976   { "game.panel.sokoban_objects.align",         "left"                  },
5977   { "game.panel.sokoban_objects.valign",        "top"                   },
5978   { "game.panel.sokoban_objects.digits",        "-1"                    },
5979   { "game.panel.sokoban_objects.font",          "font.text_2"           },
5980   { "game.panel.sokoban_objects.draw_masked",   "true"                  },
5981   { "game.panel.sokoban_objects.draw_order",    "0"                     },
5982   { "game.panel.sokoban_fields.x",              "-1"                    },
5983   { "game.panel.sokoban_fields.y",              "-1"                    },
5984   { "game.panel.sokoban_fields.align",          "left"                  },
5985   { "game.panel.sokoban_fields.valign",         "top"                   },
5986   { "game.panel.sokoban_fields.digits",         "-1"                    },
5987   { "game.panel.sokoban_fields.font",           "font.text_2"           },
5988   { "game.panel.sokoban_fields.draw_masked",    "true"                  },
5989   { "game.panel.sokoban_fields.draw_order",     "0"                     },
5990
5991   { "game.panel.robot_wheel.x",                 "-1"                    },
5992   { "game.panel.robot_wheel.y",                 "-1"                    },
5993   { "game.panel.robot_wheel.tile_size",         "16"                    },
5994   { "game.panel.robot_wheel.draw_masked",       "false"                 },
5995   { "game.panel.robot_wheel.draw_order",        "0"                     },
5996
5997   { "game.panel.conveyor_belt_1.x",             "-1"                    },
5998   { "game.panel.conveyor_belt_1.y",             "-1"                    },
5999   { "game.panel.conveyor_belt_1.tile_size",     "16"                    },
6000   { "game.panel.conveyor_belt_1.draw_masked",   "false"                 },
6001   { "game.panel.conveyor_belt_1.draw_order",    "0"                     },
6002   { "game.panel.conveyor_belt_1_switch.x",      "-1"                    },
6003   { "game.panel.conveyor_belt_1_switch.y",      "-1"                    },
6004   { "game.panel.conveyor_belt_1_switch.tile_size", "16"                 },
6005   { "game.panel.conveyor_belt_1_switch.draw_masked", "false"            },
6006   { "game.panel.conveyor_belt_1_switch.draw_order", "0"                 },
6007   { "game.panel.conveyor_belt_2.x",             "-1"                    },
6008   { "game.panel.conveyor_belt_2.y",             "-1"                    },
6009   { "game.panel.conveyor_belt_2.tile_size",     "16"                    },
6010   { "game.panel.conveyor_belt_2.draw_masked",   "false"                 },
6011   { "game.panel.conveyor_belt_2.draw_order",    "0"                     },
6012   { "game.panel.conveyor_belt_2_switch.x",      "-1"                    },
6013   { "game.panel.conveyor_belt_2_switch.y",      "-1"                    },
6014   { "game.panel.conveyor_belt_2_switch.tile_size", "16"                 },
6015   { "game.panel.conveyor_belt_2_switch.draw_masked", "false"            },
6016   { "game.panel.conveyor_belt_2_switch.draw_order", "0"                 },
6017   { "game.panel.conveyor_belt_3.x",             "-1"                    },
6018   { "game.panel.conveyor_belt_3.y",             "-1"                    },
6019   { "game.panel.conveyor_belt_3.tile_size",     "16"                    },
6020   { "game.panel.conveyor_belt_3.draw_masked",   "false"                 },
6021   { "game.panel.conveyor_belt_3.draw_order",    "0"                     },
6022   { "game.panel.conveyor_belt_3_switch.x",      "-1"                    },
6023   { "game.panel.conveyor_belt_3_switch.y",      "-1"                    },
6024   { "game.panel.conveyor_belt_3_switch.tile_size", "16"                 },
6025   { "game.panel.conveyor_belt_3_switch.draw_masked", "false"            },
6026   { "game.panel.conveyor_belt_3_switch.draw_order", "0"                 },
6027   { "game.panel.conveyor_belt_4.x",             "-1"                    },
6028   { "game.panel.conveyor_belt_4.y",             "-1"                    },
6029   { "game.panel.conveyor_belt_4.tile_size",     "16"                    },
6030   { "game.panel.conveyor_belt_4.draw_masked",   "false"                 },
6031   { "game.panel.conveyor_belt_4.draw_order",    "0"                     },
6032   { "game.panel.conveyor_belt_4_switch.x",      "-1"                    },
6033   { "game.panel.conveyor_belt_4_switch.y",      "-1"                    },
6034   { "game.panel.conveyor_belt_4_switch.tile_size", "16"                 },
6035   { "game.panel.conveyor_belt_4_switch.draw_masked", "false"            },
6036   { "game.panel.conveyor_belt_4_switch.draw_order", "0"                 },
6037
6038   { "game.panel.magic_wall.x",                  "-1"                    },
6039   { "game.panel.magic_wall.y",                  "-1"                    },
6040   { "game.panel.magic_wall.tile_size",          "16"                    },
6041   { "game.panel.magic_wall.draw_masked",        "false"                 },
6042   { "game.panel.magic_wall.draw_order",         "0"                     },
6043   { "game.panel.magic_wall_time.x",             "-1"                    },
6044   { "game.panel.magic_wall_time.y",             "-1"                    },
6045   { "game.panel.magic_wall_time.align",         "left"                  },
6046   { "game.panel.magic_wall_time.valign",        "top"                   },
6047   { "game.panel.magic_wall_time.digits",        "-1"                    },
6048   { "game.panel.magic_wall_time.font",          "font.text_2"           },
6049   { "game.panel.magic_wall_time.draw_masked",   "true"                  },
6050   { "game.panel.magic_wall_time.draw_order",    "0"                     },
6051
6052   { "game.panel.gravity_state.x",               "-1"                    },
6053   { "game.panel.gravity_state.y",               "-1"                    },
6054   { "game.panel.gravity_state.align",           "left"                  },
6055   { "game.panel.gravity_state.valign",          "top"                   },
6056   { "game.panel.gravity_state.chars",           "-1"                    },
6057   { "game.panel.gravity_state.font",            "font.text_1"           },
6058   { "game.panel.gravity_state.font_active",     "font.text_2"           },
6059   { "game.panel.gravity_state.draw_masked",     "true"                  },
6060   { "game.panel.gravity_state.draw_order",      "0"                     },
6061
6062   { "game.panel.graphic_1.x",                   "-1"                    },
6063   { "game.panel.graphic_1.y",                   "-1"                    },
6064   { "game.panel.graphic_1.draw_masked",         "true"                  },
6065   { "game.panel.graphic_1.draw_order",          "0"                     },
6066   { "game.panel.graphic_2.x",                   "-1"                    },
6067   { "game.panel.graphic_2.y",                   "-1"                    },
6068   { "game.panel.graphic_2.draw_masked",         "true"                  },
6069   { "game.panel.graphic_2.draw_order",          "0"                     },
6070   { "game.panel.graphic_3.x",                   "-1"                    },
6071   { "game.panel.graphic_3.y",                   "-1"                    },
6072   { "game.panel.graphic_3.draw_masked",         "true"                  },
6073   { "game.panel.graphic_3.draw_order",          "0"                     },
6074   { "game.panel.graphic_4.x",                   "-1"                    },
6075   { "game.panel.graphic_4.y",                   "-1"                    },
6076   { "game.panel.graphic_4.draw_masked",         "true"                  },
6077   { "game.panel.graphic_4.draw_order",          "0"                     },
6078   { "game.panel.graphic_5.x",                   "-1"                    },
6079   { "game.panel.graphic_5.y",                   "-1"                    },
6080   { "game.panel.graphic_5.draw_masked",         "true"                  },
6081   { "game.panel.graphic_5.draw_order",          "0"                     },
6082   { "game.panel.graphic_6.x",                   "-1"                    },
6083   { "game.panel.graphic_6.y",                   "-1"                    },
6084   { "game.panel.graphic_6.draw_masked",         "true"                  },
6085   { "game.panel.graphic_6.draw_order",          "0"                     },
6086   { "game.panel.graphic_7.x",                   "-1"                    },
6087   { "game.panel.graphic_7.y",                   "-1"                    },
6088   { "game.panel.graphic_7.draw_masked",         "true"                  },
6089   { "game.panel.graphic_7.draw_order",          "0"                     },
6090   { "game.panel.graphic_8.x",                   "-1"                    },
6091   { "game.panel.graphic_8.y",                   "-1"                    },
6092   { "game.panel.graphic_8.draw_masked",         "true"                  },
6093   { "game.panel.graphic_8.draw_order",          "0"                     },
6094
6095   { "game.panel.element_1.x",                   "-1"                    },
6096   { "game.panel.element_1.y",                   "-1"                    },
6097   { "game.panel.element_1.tile_size",           "16"                    },
6098   { "game.panel.element_1.element",             "empty_space"           },
6099   { "game.panel.element_1.draw_masked",         "false"                 },
6100   { "game.panel.element_1.draw_order",          "0"                     },
6101   { "game.panel.element_1_count.x",             "-1"                    },
6102   { "game.panel.element_1_count.y",             "-1"                    },
6103   { "game.panel.element_1_count.align",         "left"                  },
6104   { "game.panel.element_1_count.valign",        "top"                   },
6105   { "game.panel.element_1_count.digits",        "-1"                    },
6106   { "game.panel.element_1_count.font",          "font.text_2"           },
6107   { "game.panel.element_1_count.element",       "empty_space"           },
6108   { "game.panel.element_1_count.draw_masked",   "true"                  },
6109   { "game.panel.element_1_count.draw_order",    "0"                     },
6110   { "game.panel.element_2.x",                   "-1"                    },
6111   { "game.panel.element_2.y",                   "-1"                    },
6112   { "game.panel.element_2.tile_size",           "16"                    },
6113   { "game.panel.element_2.element",             "empty_space"           },
6114   { "game.panel.element_2.draw_masked",         "false"                 },
6115   { "game.panel.element_2.draw_order",          "0"                     },
6116   { "game.panel.element_2_count.x",             "-1"                    },
6117   { "game.panel.element_2_count.y",             "-1"                    },
6118   { "game.panel.element_2_count.align",         "left"                  },
6119   { "game.panel.element_2_count.valign",        "top"                   },
6120   { "game.panel.element_2_count.digits",        "-1"                    },
6121   { "game.panel.element_2_count.font",          "font.text_2"           },
6122   { "game.panel.element_2_count.element",       "empty_space"           },
6123   { "game.panel.element_2_count.draw_masked",   "true"                  },
6124   { "game.panel.element_2_count.draw_order",    "0"                     },
6125   { "game.panel.element_3.x",                   "-1"                    },
6126   { "game.panel.element_3.y",                   "-1"                    },
6127   { "game.panel.element_3.tile_size",           "16"                    },
6128   { "game.panel.element_3.element",             "empty_space"           },
6129   { "game.panel.element_3.draw_masked",         "false"                 },
6130   { "game.panel.element_3.draw_order",          "0"                     },
6131   { "game.panel.element_3_count.x",             "-1"                    },
6132   { "game.panel.element_3_count.y",             "-1"                    },
6133   { "game.panel.element_3_count.align",         "left"                  },
6134   { "game.panel.element_3_count.valign",        "top"                   },
6135   { "game.panel.element_3_count.digits",        "-1"                    },
6136   { "game.panel.element_3_count.font",          "font.text_2"           },
6137   { "game.panel.element_3_count.element",       "empty_space"           },
6138   { "game.panel.element_3_count.draw_masked",   "true"                  },
6139   { "game.panel.element_3_count.draw_order",    "0"                     },
6140   { "game.panel.element_4.x",                   "-1"                    },
6141   { "game.panel.element_4.y",                   "-1"                    },
6142   { "game.panel.element_4.tile_size",           "16"                    },
6143   { "game.panel.element_4.element",             "empty_space"           },
6144   { "game.panel.element_4.draw_masked",         "false"                 },
6145   { "game.panel.element_4.draw_order",          "0"                     },
6146   { "game.panel.element_4_count.x",             "-1"                    },
6147   { "game.panel.element_4_count.y",             "-1"                    },
6148   { "game.panel.element_4_count.align",         "left"                  },
6149   { "game.panel.element_4_count.valign",        "top"                   },
6150   { "game.panel.element_4_count.digits",        "-1"                    },
6151   { "game.panel.element_4_count.font",          "font.text_2"           },
6152   { "game.panel.element_4_count.element",       "empty_space"           },
6153   { "game.panel.element_4_count.draw_masked",   "true"                  },
6154   { "game.panel.element_4_count.draw_order",    "0"                     },
6155   { "game.panel.element_5.x",                   "-1"                    },
6156   { "game.panel.element_5.y",                   "-1"                    },
6157   { "game.panel.element_5.tile_size",           "16"                    },
6158   { "game.panel.element_5.element",             "empty_space"           },
6159   { "game.panel.element_5.draw_masked",         "false"                 },
6160   { "game.panel.element_5.draw_order",          "0"                     },
6161   { "game.panel.element_5_count.x",             "-1"                    },
6162   { "game.panel.element_5_count.y",             "-1"                    },
6163   { "game.panel.element_5_count.align",         "left"                  },
6164   { "game.panel.element_5_count.valign",        "top"                   },
6165   { "game.panel.element_5_count.digits",        "-1"                    },
6166   { "game.panel.element_5_count.font",          "font.text_2"           },
6167   { "game.panel.element_5_count.element",       "empty_space"           },
6168   { "game.panel.element_5_count.draw_masked",   "true"                  },
6169   { "game.panel.element_5_count.draw_order",    "0"                     },
6170   { "game.panel.element_6.x",                   "-1"                    },
6171   { "game.panel.element_6.y",                   "-1"                    },
6172   { "game.panel.element_6.tile_size",           "16"                    },
6173   { "game.panel.element_6.element",             "empty_space"           },
6174   { "game.panel.element_6.draw_masked",         "false"                 },
6175   { "game.panel.element_6.draw_order",          "0"                     },
6176   { "game.panel.element_6_count.x",             "-1"                    },
6177   { "game.panel.element_6_count.y",             "-1"                    },
6178   { "game.panel.element_6_count.align",         "left"                  },
6179   { "game.panel.element_6_count.valign",        "top"                   },
6180   { "game.panel.element_6_count.digits",        "-1"                    },
6181   { "game.panel.element_6_count.font",          "font.text_2"           },
6182   { "game.panel.element_6_count.element",       "empty_space"           },
6183   { "game.panel.element_6_count.draw_masked",   "true"                  },
6184   { "game.panel.element_6_count.draw_order",    "0"                     },
6185   { "game.panel.element_7.x",                   "-1"                    },
6186   { "game.panel.element_7.y",                   "-1"                    },
6187   { "game.panel.element_7.tile_size",           "16"                    },
6188   { "game.panel.element_7.element",             "empty_space"           },
6189   { "game.panel.element_7.draw_masked",         "false"                 },
6190   { "game.panel.element_7.draw_order",          "0"                     },
6191   { "game.panel.element_7_count.x",             "-1"                    },
6192   { "game.panel.element_7_count.y",             "-1"                    },
6193   { "game.panel.element_7_count.align",         "left"                  },
6194   { "game.panel.element_7_count.valign",        "top"                   },
6195   { "game.panel.element_7_count.digits",        "-1"                    },
6196   { "game.panel.element_7_count.font",          "font.text_2"           },
6197   { "game.panel.element_7_count.element",       "empty_space"           },
6198   { "game.panel.element_7_count.draw_masked",   "true"                  },
6199   { "game.panel.element_7_count.draw_order",    "0"                     },
6200   { "game.panel.element_8.x",                   "-1"                    },
6201   { "game.panel.element_8.y",                   "-1"                    },
6202   { "game.panel.element_8.tile_size",           "16"                    },
6203   { "game.panel.element_8.element",             "empty_space"           },
6204   { "game.panel.element_8.draw_masked",         "false"                 },
6205   { "game.panel.element_8.draw_order",          "0"                     },
6206   { "game.panel.element_8_count.x",             "-1"                    },
6207   { "game.panel.element_8_count.y",             "-1"                    },
6208   { "game.panel.element_8_count.align",         "left"                  },
6209   { "game.panel.element_8_count.valign",        "top"                   },
6210   { "game.panel.element_8_count.digits",        "-1"                    },
6211   { "game.panel.element_8_count.font",          "font.text_2"           },
6212   { "game.panel.element_8_count.element",       "empty_space"           },
6213   { "game.panel.element_8_count.draw_masked",   "true"                  },
6214   { "game.panel.element_8_count.draw_order",    "0"                     },
6215
6216   { "game.panel.ce_score_1.x",                  "-1"                    },
6217   { "game.panel.ce_score_1.y",                  "-1"                    },
6218   { "game.panel.ce_score_1.align",              "left"                  },
6219   { "game.panel.ce_score_1.valign",             "top"                   },
6220   { "game.panel.ce_score_1.digits",             "-1"                    },
6221   { "game.panel.ce_score_1.font",               "font.text_2"           },
6222   { "game.panel.ce_score_1.element",            "empty_space"           },
6223   { "game.panel.ce_score_1.draw_masked",        "true"                  },
6224   { "game.panel.ce_score_1.draw_order",         "0"                     },
6225   { "game.panel.ce_score_1_element.x",          "-1"                    },
6226   { "game.panel.ce_score_1_element.y",          "-1"                    },
6227   { "game.panel.ce_score_1_element.tile_size",  "16"                    },
6228   { "game.panel.ce_score_1_element.element",    "empty_space"           },
6229   { "game.panel.ce_score_1_element.draw_masked","false"                 },
6230   { "game.panel.ce_score_1_element.draw_order", "0"                     },
6231   { "game.panel.ce_score_2.x",                  "-1"                    },
6232   { "game.panel.ce_score_2.y",                  "-1"                    },
6233   { "game.panel.ce_score_2.align",              "left"                  },
6234   { "game.panel.ce_score_2.valign",             "top"                   },
6235   { "game.panel.ce_score_2.digits",             "-1"                    },
6236   { "game.panel.ce_score_2.font",               "font.text_2"           },
6237   { "game.panel.ce_score_2.element",            "empty_space"           },
6238   { "game.panel.ce_score_2.draw_masked",        "true"                  },
6239   { "game.panel.ce_score_2.draw_order",         "0"                     },
6240   { "game.panel.ce_score_2_element.x",          "-1"                    },
6241   { "game.panel.ce_score_2_element.y",          "-1"                    },
6242   { "game.panel.ce_score_2_element.tile_size",  "16"                    },
6243   { "game.panel.ce_score_2_element.element",    "empty_space"           },
6244   { "game.panel.ce_score_2_element.draw_masked","false"                 },
6245   { "game.panel.ce_score_2_element.draw_order", "0"                     },
6246   { "game.panel.ce_score_3.x",                  "-1"                    },
6247   { "game.panel.ce_score_3.y",                  "-1"                    },
6248   { "game.panel.ce_score_3.align",              "left"                  },
6249   { "game.panel.ce_score_3.valign",             "top"                   },
6250   { "game.panel.ce_score_3.digits",             "-1"                    },
6251   { "game.panel.ce_score_3.font",               "font.text_2"           },
6252   { "game.panel.ce_score_3.element",            "empty_space"           },
6253   { "game.panel.ce_score_3.draw_masked",        "true"                  },
6254   { "game.panel.ce_score_3.draw_order",         "0"                     },
6255   { "game.panel.ce_score_3_element.x",          "-1"                    },
6256   { "game.panel.ce_score_3_element.y",          "-1"                    },
6257   { "game.panel.ce_score_3_element.tile_size",  "16"                    },
6258   { "game.panel.ce_score_3_element.element",    "empty_space"           },
6259   { "game.panel.ce_score_3_element.draw_masked","false"                 },
6260   { "game.panel.ce_score_3_element.draw_order", "0"                     },
6261   { "game.panel.ce_score_4.x",                  "-1"                    },
6262   { "game.panel.ce_score_4.y",                  "-1"                    },
6263   { "game.panel.ce_score_4.align",              "left"                  },
6264   { "game.panel.ce_score_4.valign",             "top"                   },
6265   { "game.panel.ce_score_4.digits",             "-1"                    },
6266   { "game.panel.ce_score_4.font",               "font.text_2"           },
6267   { "game.panel.ce_score_4.element",            "empty_space"           },
6268   { "game.panel.ce_score_4.draw_masked",        "true"                  },
6269   { "game.panel.ce_score_4.draw_order",         "0"                     },
6270   { "game.panel.ce_score_4_element.x",          "-1"                    },
6271   { "game.panel.ce_score_4_element.y",          "-1"                    },
6272   { "game.panel.ce_score_4_element.tile_size",  "16"                    },
6273   { "game.panel.ce_score_4_element.element",    "empty_space"           },
6274   { "game.panel.ce_score_4_element.draw_masked","false"                 },
6275   { "game.panel.ce_score_4_element.draw_order", "0"                     },
6276   { "game.panel.ce_score_5.x",                  "-1"                    },
6277   { "game.panel.ce_score_5.y",                  "-1"                    },
6278   { "game.panel.ce_score_5.align",              "left"                  },
6279   { "game.panel.ce_score_5.valign",             "top"                   },
6280   { "game.panel.ce_score_5.digits",             "-1"                    },
6281   { "game.panel.ce_score_5.font",               "font.text_2"           },
6282   { "game.panel.ce_score_5.element",            "empty_space"           },
6283   { "game.panel.ce_score_5.draw_masked",        "true"                  },
6284   { "game.panel.ce_score_5.draw_order",         "0"                     },
6285   { "game.panel.ce_score_5_element.x",          "-1"                    },
6286   { "game.panel.ce_score_5_element.y",          "-1"                    },
6287   { "game.panel.ce_score_5_element.tile_size",  "16"                    },
6288   { "game.panel.ce_score_5_element.element",    "empty_space"           },
6289   { "game.panel.ce_score_5_element.draw_masked","false"                 },
6290   { "game.panel.ce_score_5_element.draw_order", "0"                     },
6291   { "game.panel.ce_score_6.x",                  "-1"                    },
6292   { "game.panel.ce_score_6.y",                  "-1"                    },
6293   { "game.panel.ce_score_6.align",              "left"                  },
6294   { "game.panel.ce_score_6.valign",             "top"                   },
6295   { "game.panel.ce_score_6.digits",             "-1"                    },
6296   { "game.panel.ce_score_6.font",               "font.text_2"           },
6297   { "game.panel.ce_score_6.element",            "empty_space"           },
6298   { "game.panel.ce_score_6.draw_masked",        "true"                  },
6299   { "game.panel.ce_score_6.draw_order",         "0"                     },
6300   { "game.panel.ce_score_6_element.x",          "-1"                    },
6301   { "game.panel.ce_score_6_element.y",          "-1"                    },
6302   { "game.panel.ce_score_6_element.tile_size",  "16"                    },
6303   { "game.panel.ce_score_6_element.element",    "empty_space"           },
6304   { "game.panel.ce_score_6_element.draw_masked","false"                 },
6305   { "game.panel.ce_score_6_element.draw_order", "0"                     },
6306   { "game.panel.ce_score_7.x",                  "-1"                    },
6307   { "game.panel.ce_score_7.y",                  "-1"                    },
6308   { "game.panel.ce_score_7.align",              "left"                  },
6309   { "game.panel.ce_score_7.valign",             "top"                   },
6310   { "game.panel.ce_score_7.digits",             "-1"                    },
6311   { "game.panel.ce_score_7.font",               "font.text_2"           },
6312   { "game.panel.ce_score_7.element",            "empty_space"           },
6313   { "game.panel.ce_score_7.draw_masked",        "true"                  },
6314   { "game.panel.ce_score_7.draw_order",         "0"                     },
6315   { "game.panel.ce_score_7_element.x",          "-1"                    },
6316   { "game.panel.ce_score_7_element.y",          "-1"                    },
6317   { "game.panel.ce_score_7_element.tile_size",  "16"                    },
6318   { "game.panel.ce_score_7_element.element",    "empty_space"           },
6319   { "game.panel.ce_score_7_element.draw_masked","false"                 },
6320   { "game.panel.ce_score_7_element.draw_order", "0"                     },
6321   { "game.panel.ce_score_8.x",                  "-1"                    },
6322   { "game.panel.ce_score_8.y",                  "-1"                    },
6323   { "game.panel.ce_score_8.align",              "left"                  },
6324   { "game.panel.ce_score_8.valign",             "top"                   },
6325   { "game.panel.ce_score_8.digits",             "-1"                    },
6326   { "game.panel.ce_score_8.font",               "font.text_2"           },
6327   { "game.panel.ce_score_8.element",            "empty_space"           },
6328   { "game.panel.ce_score_8.draw_masked",        "true"                  },
6329   { "game.panel.ce_score_8.draw_order",         "0"                     },
6330   { "game.panel.ce_score_8_element.x",          "-1"                    },
6331   { "game.panel.ce_score_8_element.y",          "-1"                    },
6332   { "game.panel.ce_score_8_element.tile_size",  "16"                    },
6333   { "game.panel.ce_score_8_element.element",    "empty_space"           },
6334   { "game.panel.ce_score_8_element.draw_masked","false"                 },
6335   { "game.panel.ce_score_8_element.draw_order", "0"                     },
6336
6337   { "game.panel.player_name.x",                 "-1"                    },
6338   { "game.panel.player_name.y",                 "-1"                    },
6339   { "game.panel.player_name.align",             "left"                  },
6340   { "game.panel.player_name.valign",            "top"                   },
6341   { "game.panel.player_name.chars",             "-1"                    },
6342   { "game.panel.player_name.font",              "font.text_2"           },
6343   { "game.panel.player_name.draw_masked",       "true"                  },
6344   { "game.panel.player_name.draw_order",        "0"                     },
6345
6346   { "game.panel.level_name.x",                  "-1"                    },
6347   { "game.panel.level_name.y",                  "-1"                    },
6348   { "game.panel.level_name.align",              "left"                  },
6349   { "game.panel.level_name.valign",             "top"                   },
6350   { "game.panel.level_name.chars",              "-1"                    },
6351   { "game.panel.level_name.font",               "font.text_2"           },
6352   { "game.panel.level_name.draw_masked",        "true"                  },
6353   { "game.panel.level_name.draw_order",         "0"                     },
6354   { "game.panel.level_author.x",                "-1"                    },
6355   { "game.panel.level_author.y",                "-1"                    },
6356   { "game.panel.level_author.align",            "left"                  },
6357   { "game.panel.level_author.valign",           "top"                   },
6358   { "game.panel.level_author.chars",            "-1"                    },
6359   { "game.panel.level_author.font",             "font.text_2"           },
6360   { "game.panel.level_author.draw_masked",      "true"                  },
6361   { "game.panel.level_author.draw_order",       "0"                     },
6362
6363   { "game.button.stop.x",                       "5"                     },
6364   { "game.button.stop.y",                       "215"                   },
6365   { "game.button.pause.x",                      "35"                    },
6366   { "game.button.pause.y",                      "215"                   },
6367   { "game.button.play.x",                       "65"                    },
6368   { "game.button.play.y",                       "215"                   },
6369   { "game.button.sound_music.x",                "5"                     },
6370   { "game.button.sound_music.y",                "245"                   },
6371   { "game.button.sound_loops.x",                "35"                    },
6372   { "game.button.sound_loops.y",                "245"                   },
6373   { "game.button.sound_simple.x",               "65"                    },
6374   { "game.button.sound_simple.y",               "245"                   },
6375
6376   { "game.forced_scroll_delay_value",           "-1"                    },
6377   { "game.use_native_emc_graphics_engine",      "false"                 },
6378   { "game.use_native_sp_graphics_engine",       "true"                  },
6379   { "game.use_masked_pushing",                  "false"                 },
6380
6381   { "[player].boring_delay_fixed",              "1000"                  },
6382   { "[player].boring_delay_random",             "1000"                  },
6383   { "[player].sleeping_delay_fixed",            "2000"                  },
6384   { "[player].sleeping_delay_random",           "2000"                  },
6385
6386   { NULL,                                       NULL                    }
6387 };