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