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