rnd-20131212-1-src
authorHolger Schemel <info@artsoft.org>
Wed, 11 Dec 2013 23:44:23 +0000 (00:44 +0100)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Aug 2014 09:00:16 +0000 (11:00 +0200)
* removed limitation of artwork files to selected file types (this means
  that every file type supported by SDL_image and SDL_mixer can be used)
* changed default graphics vom PCX to PNG (needed for Android version to
  prevent painfully slow loading of images, although not compressing PCX
  files in the assets directory of the APK package might also work fine)
* fixed bug with SDL_BlitSurface creating garbage when source and target
  surface are the same (this bug also existed in versions of SDL 1.2.x)
* started porting Rocks'n'Diamonds to Android

19 files changed:
ChangeLog
build-scripts/create_element_defs.pl
src/conf_chr.c
src/conf_cus.c
src/conf_gfx.c
src/conf_grp.c
src/conftime.h
src/events.c
src/events.h
src/init.c
src/libgame/image.c
src/libgame/misc.c
src/libgame/misc.h
src/libgame/sdl.c
src/libgame/sdl.h
src/libgame/setup.c
src/libgame/sound.c
src/libgame/system.c
src/main.h

index 9e1d48bb531ad8bad4d4692f2594471f6706f99c..75151cfd2abc822318023f908c30307d607f973e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
+2013-12-11
+       * removed limitation of artwork files to selected file types (this means
+         that every file type supported by SDL_image and SDL_mixer can be used)
+       * changed default graphics vom PCX to PNG (needed for Android version to
+         prevent painfully slow loading of images, although not compressing PCX
+         files in the assets directory of the APK package might also work fine)
+       * fixed bug with SDL_BlitSurface creating garbage when source and target
+         surface are the same (this bug also existed in versions of SDL 1.2.x)
+
+2013-12-07
+       * started porting Rocks'n'Diamonds to Android
+
 2013-12-03
-       * ported Rocks'n'Diamonds to SDL2
+       * ported Rocks'n'Diamonds to SDL2 (first simple version that works)
 
 2013-12-01
        * version number set to 3.3.1.3
index d935b3fed230b851a37aaa27a8d21bff7084a159..02182e4ed7a1ddf3254bc027fafa70ec9ef15a32 100755 (executable)
@@ -193,7 +193,7 @@ sub contains_image_file
 {
     my ($line) = @_;
 
-    return ($line =~ /\".+\.pcx\"/ ||
+    return ($line =~ /\".+\.png\"/ ||
            $line =~ /UNDEFINED_FILENAME/);
 }
 
@@ -609,7 +609,7 @@ sub print_chars_graphics_list_line
 
        my $tabs_left = get_tabs($left, 6);
 
-       my $right = ($ext eq '' ? $basename . '.pcx' :
+       my $right = ($ext eq '' ? $basename . '.png' :
                     $ext eq '.frames' ? '1' : '0');
 
        if ($ext eq '.xpos')
@@ -748,8 +748,8 @@ sub print_custom_graphics_list
 
            my $tabs_left = get_tabs($left, 6);
 
-           # my $right = ($ext eq '' ? 'RocksElements.pcx' :
-           my $right = ($ext eq '' ? 'RocksCE.pcx' :
+           # my $right = ($ext eq '' ? 'RocksElements.png' :
+           my $right = ($ext eq '' ? 'RocksCE.png' :
                         $ext eq '.frames' ? '1' : '0');
 
            if ($ext eq '.xpos')
@@ -776,8 +776,8 @@ sub print_custom_graphics_list
 
            my $tabs_left = get_tabs($left, 6);
 
-           # my $right = ($ext eq '' ? 'RocksElements.pcx' : '0');
-           my $right = ($ext eq '' ? 'RocksCE.pcx' : '0');
+           # my $right = ($ext eq '' ? 'RocksElements.png' : '0');
+           my $right = ($ext eq '' ? 'RocksCE.png' : '0');
 
            if ($ext eq '.xpos')
            {
@@ -829,8 +829,8 @@ sub print_group_graphics_list
 
            my $tabs_left = get_tabs($left, 6);
 
-           # my $right = ($ext eq '' ? 'RocksDC.pcx' :
-           my $right = ($ext eq '' ? 'RocksCE.pcx' :
+           # my $right = ($ext eq '' ? 'RocksDC.png' :
+           my $right = ($ext eq '' ? 'RocksCE.png' :
                         $ext eq '.frames' ? '1' : '0');
 
            if ($ext eq '.xpos')
@@ -857,8 +857,8 @@ sub print_group_graphics_list
 
            my $tabs_left = get_tabs($left, 6);
 
-           # my $right = ($ext eq '' ? 'RocksDC.pcx' : '0');
-           my $right = ($ext eq '' ? 'RocksCE.pcx' : '0');
+           # my $right = ($ext eq '' ? 'RocksDC.png' : '0');
+           my $right = ($ext eq '' ? 'RocksCE.png' : '0');
 
            if ($ext eq '.xpos')
            {
index 3aa42ed0ba9499143368bb6af75996191338347c..3996019df03afa1c32ba5f5288a736c949fb6067 100644 (file)
 
 /* values for graphics configuration (character elements) */
 
-  { "char_space",                              "RocksFontEM.pcx"       },
+  { "char_space",                              "RocksFontEM.png"       },
   { "char_space.xpos",                         "0"                     },
   { "char_space.ypos",                         "0"                     },
   { "char_space.frames",                       "1"                     },
-  { "char_space.EDITOR",                       "RocksFontEM.pcx"       },
+  { "char_space.EDITOR",                       "RocksFontEM.png"       },
   { "char_space.EDITOR.xpos",                  "7"                     },
   { "char_space.EDITOR.ypos",                  "4"                     },
   { "char_space.EDITOR.frames",                        "1"                     },
 
-  { "char_exclam",                             "RocksFontEM.pcx"       },
+  { "char_exclam",                             "RocksFontEM.png"       },
   { "char_exclam.xpos",                                "1"                     },
   { "char_exclam.ypos",                                "0"                     },
   { "char_exclam.frames",                      "1"                     },
 
-  { "char_quotedbl",                           "RocksFontEM.pcx"       },
+  { "char_quotedbl",                           "RocksFontEM.png"       },
   { "char_quotedbl.xpos",                      "2"                     },
   { "char_quotedbl.ypos",                      "0"                     },
   { "char_quotedbl.frames",                    "1"                     },
 
-  { "char_numbersign",                         "RocksFontEM.pcx"       },
+  { "char_numbersign",                         "RocksFontEM.png"       },
   { "char_numbersign.xpos",                    "3"                     },
   { "char_numbersign.ypos",                    "0"                     },
   { "char_numbersign.frames",                  "1"                     },
 
-  { "char_dollar",                             "RocksFontEM.pcx"       },
+  { "char_dollar",                             "RocksFontEM.png"       },
   { "char_dollar.xpos",                                "4"                     },
   { "char_dollar.ypos",                                "0"                     },
   { "char_dollar.frames",                      "1"                     },
 
-  { "char_percent",                            "RocksFontEM.pcx"       },
+  { "char_percent",                            "RocksFontEM.png"       },
   { "char_percent.xpos",                       "5"                     },
   { "char_percent.ypos",                       "0"                     },
   { "char_percent.frames",                     "1"                     },
 
-  { "char_ampersand",                          "RocksFontEM.pcx"       },
+  { "char_ampersand",                          "RocksFontEM.png"       },
   { "char_ampersand.xpos",                     "6"                     },
   { "char_ampersand.ypos",                     "0"                     },
   { "char_ampersand.frames",                   "1"                     },
 
-  { "char_apostrophe",                         "RocksFontEM.pcx"       },
+  { "char_apostrophe",                         "RocksFontEM.png"       },
   { "char_apostrophe.xpos",                    "7"                     },
   { "char_apostrophe.ypos",                    "0"                     },
   { "char_apostrophe.frames",                  "1"                     },
 
-  { "char_parenleft",                          "RocksFontEM.pcx"       },
+  { "char_parenleft",                          "RocksFontEM.png"       },
   { "char_parenleft.xpos",                     "8"                     },
   { "char_parenleft.ypos",                     "0"                     },
   { "char_parenleft.frames",                   "1"                     },
 
-  { "char_parenright",                         "RocksFontEM.pcx"       },
+  { "char_parenright",                         "RocksFontEM.png"       },
   { "char_parenright.xpos",                    "9"                     },
   { "char_parenright.ypos",                    "0"                     },
   { "char_parenright.frames",                  "1"                     },
 
-  { "char_asterisk",                           "RocksFontEM.pcx"       },
+  { "char_asterisk",                           "RocksFontEM.png"       },
   { "char_asterisk.xpos",                      "10"                    },
   { "char_asterisk.ypos",                      "0"                     },
   { "char_asterisk.frames",                    "1"                     },
 
-  { "char_plus",                               "RocksFontEM.pcx"       },
+  { "char_plus",                               "RocksFontEM.png"       },
   { "char_plus.xpos",                          "11"                    },
   { "char_plus.ypos",                          "0"                     },
   { "char_plus.frames",                                "1"                     },
 
-  { "char_comma",                              "RocksFontEM.pcx"       },
+  { "char_comma",                              "RocksFontEM.png"       },
   { "char_comma.xpos",                         "12"                    },
   { "char_comma.ypos",                         "0"                     },
   { "char_comma.frames",                       "1"                     },
 
-  { "char_minus",                              "RocksFontEM.pcx"       },
+  { "char_minus",                              "RocksFontEM.png"       },
   { "char_minus.xpos",                         "13"                    },
   { "char_minus.ypos",                         "0"                     },
   { "char_minus.frames",                       "1"                     },
 
-  { "char_period",                             "RocksFontEM.pcx"       },
+  { "char_period",                             "RocksFontEM.png"       },
   { "char_period.xpos",                                "14"                    },
   { "char_period.ypos",                                "0"                     },
   { "char_period.frames",                      "1"                     },
 
-  { "char_slash",                              "RocksFontEM.pcx"       },
+  { "char_slash",                              "RocksFontEM.png"       },
   { "char_slash.xpos",                         "15"                    },
   { "char_slash.ypos",                         "0"                     },
   { "char_slash.frames",                       "1"                     },
 
-  { "char_0",                                  "RocksFontEM.pcx"       },
+  { "char_0",                                  "RocksFontEM.png"       },
   { "char_0.xpos",                             "0"                     },
   { "char_0.ypos",                             "1"                     },
   { "char_0.frames",                           "1"                     },
 
-  { "char_1",                                  "RocksFontEM.pcx"       },
+  { "char_1",                                  "RocksFontEM.png"       },
   { "char_1.xpos",                             "1"                     },
   { "char_1.ypos",                             "1"                     },
   { "char_1.frames",                           "1"                     },
 
-  { "char_2",                                  "RocksFontEM.pcx"       },
+  { "char_2",                                  "RocksFontEM.png"       },
   { "char_2.xpos",                             "2"                     },
   { "char_2.ypos",                             "1"                     },
   { "char_2.frames",                           "1"                     },
 
-  { "char_3",                                  "RocksFontEM.pcx"       },
+  { "char_3",                                  "RocksFontEM.png"       },
   { "char_3.xpos",                             "3"                     },
   { "char_3.ypos",                             "1"                     },
   { "char_3.frames",                           "1"                     },
 
-  { "char_4",                                  "RocksFontEM.pcx"       },
+  { "char_4",                                  "RocksFontEM.png"       },
   { "char_4.xpos",                             "4"                     },
   { "char_4.ypos",                             "1"                     },
   { "char_4.frames",                           "1"                     },
 
-  { "char_5",                                  "RocksFontEM.pcx"       },
+  { "char_5",                                  "RocksFontEM.png"       },
   { "char_5.xpos",                             "5"                     },
   { "char_5.ypos",                             "1"                     },
   { "char_5.frames",                           "1"                     },
 
-  { "char_6",                                  "RocksFontEM.pcx"       },
+  { "char_6",                                  "RocksFontEM.png"       },
   { "char_6.xpos",                             "6"                     },
   { "char_6.ypos",                             "1"                     },
   { "char_6.frames",                           "1"                     },
 
-  { "char_7",                                  "RocksFontEM.pcx"       },
+  { "char_7",                                  "RocksFontEM.png"       },
   { "char_7.xpos",                             "7"                     },
   { "char_7.ypos",                             "1"                     },
   { "char_7.frames",                           "1"                     },
 
-  { "char_8",                                  "RocksFontEM.pcx"       },
+  { "char_8",                                  "RocksFontEM.png"       },
   { "char_8.xpos",                             "8"                     },
   { "char_8.ypos",                             "1"                     },
   { "char_8.frames",                           "1"                     },
 
-  { "char_9",                                  "RocksFontEM.pcx"       },
+  { "char_9",                                  "RocksFontEM.png"       },
   { "char_9.xpos",                             "9"                     },
   { "char_9.ypos",                             "1"                     },
   { "char_9.frames",                           "1"                     },
 
-  { "char_colon",                              "RocksFontEM.pcx"       },
+  { "char_colon",                              "RocksFontEM.png"       },
   { "char_colon.xpos",                         "10"                    },
   { "char_colon.ypos",                         "1"                     },
   { "char_colon.frames",                       "1"                     },
 
-  { "char_semicolon",                          "RocksFontEM.pcx"       },
+  { "char_semicolon",                          "RocksFontEM.png"       },
   { "char_semicolon.xpos",                     "11"                    },
   { "char_semicolon.ypos",                     "1"                     },
   { "char_semicolon.frames",                   "1"                     },
 
-  { "char_less",                               "RocksFontEM.pcx"       },
+  { "char_less",                               "RocksFontEM.png"       },
   { "char_less.xpos",                          "12"                    },
   { "char_less.ypos",                          "1"                     },
   { "char_less.frames",                                "1"                     },
 
-  { "char_equal",                              "RocksFontEM.pcx"       },
+  { "char_equal",                              "RocksFontEM.png"       },
   { "char_equal.xpos",                         "13"                    },
   { "char_equal.ypos",                         "1"                     },
   { "char_equal.frames",                       "1"                     },
 
-  { "char_greater",                            "RocksFontEM.pcx"       },
+  { "char_greater",                            "RocksFontEM.png"       },
   { "char_greater.xpos",                       "14"                    },
   { "char_greater.ypos",                       "1"                     },
   { "char_greater.frames",                     "1"                     },
 
-  { "char_question",                           "RocksFontEM.pcx"       },
+  { "char_question",                           "RocksFontEM.png"       },
   { "char_question.xpos",                      "15"                    },
   { "char_question.ypos",                      "1"                     },
   { "char_question.frames",                    "1"                     },
 
-  { "char_at",                                 "RocksFontEM.pcx"       },
+  { "char_at",                                 "RocksFontEM.png"       },
   { "char_at.xpos",                            "0"                     },
   { "char_at.ypos",                            "2"                     },
   { "char_at.frames",                          "1"                     },
 
-  { "char_a",                                  "RocksFontEM.pcx"       },
+  { "char_a",                                  "RocksFontEM.png"       },
   { "char_a.xpos",                             "1"                     },
   { "char_a.ypos",                             "2"                     },
   { "char_a.frames",                           "1"                     },
 
-  { "char_b",                                  "RocksFontEM.pcx"       },
+  { "char_b",                                  "RocksFontEM.png"       },
   { "char_b.xpos",                             "2"                     },
   { "char_b.ypos",                             "2"                     },
   { "char_b.frames",                           "1"                     },
 
-  { "char_c",                                  "RocksFontEM.pcx"       },
+  { "char_c",                                  "RocksFontEM.png"       },
   { "char_c.xpos",                             "3"                     },
   { "char_c.ypos",                             "2"                     },
   { "char_c.frames",                           "1"                     },
 
-  { "char_d",                                  "RocksFontEM.pcx"       },
+  { "char_d",                                  "RocksFontEM.png"       },
   { "char_d.xpos",                             "4"                     },
   { "char_d.ypos",                             "2"                     },
   { "char_d.frames",                           "1"                     },
 
-  { "char_e",                                  "RocksFontEM.pcx"       },
+  { "char_e",                                  "RocksFontEM.png"       },
   { "char_e.xpos",                             "5"                     },
   { "char_e.ypos",                             "2"                     },
   { "char_e.frames",                           "1"                     },
 
-  { "char_f",                                  "RocksFontEM.pcx"       },
+  { "char_f",                                  "RocksFontEM.png"       },
   { "char_f.xpos",                             "6"                     },
   { "char_f.ypos",                             "2"                     },
   { "char_f.frames",                           "1"                     },
 
-  { "char_g",                                  "RocksFontEM.pcx"       },
+  { "char_g",                                  "RocksFontEM.png"       },
   { "char_g.xpos",                             "7"                     },
   { "char_g.ypos",                             "2"                     },
   { "char_g.frames",                           "1"                     },
 
-  { "char_h",                                  "RocksFontEM.pcx"       },
+  { "char_h",                                  "RocksFontEM.png"       },
   { "char_h.xpos",                             "8"                     },
   { "char_h.ypos",                             "2"                     },
   { "char_h.frames",                           "1"                     },
 
-  { "char_i",                                  "RocksFontEM.pcx"       },
+  { "char_i",                                  "RocksFontEM.png"       },
   { "char_i.xpos",                             "9"                     },
   { "char_i.ypos",                             "2"                     },
   { "char_i.frames",                           "1"                     },
 
-  { "char_j",                                  "RocksFontEM.pcx"       },
+  { "char_j",                                  "RocksFontEM.png"       },
   { "char_j.xpos",                             "10"                    },
   { "char_j.ypos",                             "2"                     },
   { "char_j.frames",                           "1"                     },
 
-  { "char_k",                                  "RocksFontEM.pcx"       },
+  { "char_k",                                  "RocksFontEM.png"       },
   { "char_k.xpos",                             "11"                    },
   { "char_k.ypos",                             "2"                     },
   { "char_k.frames",                           "1"                     },
 
-  { "char_l",                                  "RocksFontEM.pcx"       },
+  { "char_l",                                  "RocksFontEM.png"       },
   { "char_l.xpos",                             "12"                    },
   { "char_l.ypos",                             "2"                     },
   { "char_l.frames",                           "1"                     },
 
-  { "char_m",                                  "RocksFontEM.pcx"       },
+  { "char_m",                                  "RocksFontEM.png"       },
   { "char_m.xpos",                             "13"                    },
   { "char_m.ypos",                             "2"                     },
   { "char_m.frames",                           "1"                     },
 
-  { "char_n",                                  "RocksFontEM.pcx"       },
+  { "char_n",                                  "RocksFontEM.png"       },
   { "char_n.xpos",                             "14"                    },
   { "char_n.ypos",                             "2"                     },
   { "char_n.frames",                           "1"                     },
 
-  { "char_o",                                  "RocksFontEM.pcx"       },
+  { "char_o",                                  "RocksFontEM.png"       },
   { "char_o.xpos",                             "15"                    },
   { "char_o.ypos",                             "2"                     },
   { "char_o.frames",                           "1"                     },
 
-  { "char_p",                                  "RocksFontEM.pcx"       },
+  { "char_p",                                  "RocksFontEM.png"       },
   { "char_p.xpos",                             "0"                     },
   { "char_p.ypos",                             "3"                     },
   { "char_p.frames",                           "1"                     },
 
-  { "char_q",                                  "RocksFontEM.pcx"       },
+  { "char_q",                                  "RocksFontEM.png"       },
   { "char_q.xpos",                             "1"                     },
   { "char_q.ypos",                             "3"                     },
   { "char_q.frames",                           "1"                     },
 
-  { "char_r",                                  "RocksFontEM.pcx"       },
+  { "char_r",                                  "RocksFontEM.png"       },
   { "char_r.xpos",                             "2"                     },
   { "char_r.ypos",                             "3"                     },
   { "char_r.frames",                           "1"                     },
 
-  { "char_s",                                  "RocksFontEM.pcx"       },
+  { "char_s",                                  "RocksFontEM.png"       },
   { "char_s.xpos",                             "3"                     },
   { "char_s.ypos",                             "3"                     },
   { "char_s.frames",                           "1"                     },
 
-  { "char_t",                                  "RocksFontEM.pcx"       },
+  { "char_t",                                  "RocksFontEM.png"       },
   { "char_t.xpos",                             "4"                     },
   { "char_t.ypos",                             "3"                     },
   { "char_t.frames",                           "1"                     },
 
-  { "char_u",                                  "RocksFontEM.pcx"       },
+  { "char_u",                                  "RocksFontEM.png"       },
   { "char_u.xpos",                             "5"                     },
   { "char_u.ypos",                             "3"                     },
   { "char_u.frames",                           "1"                     },
 
-  { "char_v",                                  "RocksFontEM.pcx"       },
+  { "char_v",                                  "RocksFontEM.png"       },
   { "char_v.xpos",                             "6"                     },
   { "char_v.ypos",                             "3"                     },
   { "char_v.frames",                           "1"                     },
 
-  { "char_w",                                  "RocksFontEM.pcx"       },
+  { "char_w",                                  "RocksFontEM.png"       },
   { "char_w.xpos",                             "7"                     },
   { "char_w.ypos",                             "3"                     },
   { "char_w.frames",                           "1"                     },
 
-  { "char_x",                                  "RocksFontEM.pcx"       },
+  { "char_x",                                  "RocksFontEM.png"       },
   { "char_x.xpos",                             "8"                     },
   { "char_x.ypos",                             "3"                     },
   { "char_x.frames",                           "1"                     },
 
-  { "char_y",                                  "RocksFontEM.pcx"       },
+  { "char_y",                                  "RocksFontEM.png"       },
   { "char_y.xpos",                             "9"                     },
   { "char_y.ypos",                             "3"                     },
   { "char_y.frames",                           "1"                     },
 
-  { "char_z",                                  "RocksFontEM.pcx"       },
+  { "char_z",                                  "RocksFontEM.png"       },
   { "char_z.xpos",                             "10"                    },
   { "char_z.ypos",                             "3"                     },
   { "char_z.frames",                           "1"                     },
 
-  { "char_bracketleft",                                "RocksFontEM.pcx"       },
+  { "char_bracketleft",                                "RocksFontEM.png"       },
   { "char_bracketleft.xpos",                   "11"                    },
   { "char_bracketleft.ypos",                   "3"                     },
   { "char_bracketleft.frames",                 "1"                     },
 
-  { "char_backslash",                          "RocksFontEM.pcx"       },
+  { "char_backslash",                          "RocksFontEM.png"       },
   { "char_backslash.xpos",                     "12"                    },
   { "char_backslash.ypos",                     "3"                     },
   { "char_backslash.frames",                   "1"                     },
 
-  { "char_bracketright",                       "RocksFontEM.pcx"       },
+  { "char_bracketright",                       "RocksFontEM.png"       },
   { "char_bracketright.xpos",                  "13"                    },
   { "char_bracketright.ypos",                  "3"                     },
   { "char_bracketright.frames",                        "1"                     },
 
-  { "char_asciicircum",                                "RocksFontEM.pcx"       },
+  { "char_asciicircum",                                "RocksFontEM.png"       },
   { "char_asciicircum.xpos",                   "14"                    },
   { "char_asciicircum.ypos",                   "3"                     },
   { "char_asciicircum.frames",                 "1"                     },
 
-  { "char_underscore",                         "RocksFontEM.pcx"       },
+  { "char_underscore",                         "RocksFontEM.png"       },
   { "char_underscore.xpos",                    "15"                    },
   { "char_underscore.ypos",                    "3"                     },
   { "char_underscore.frames",                  "1"                     },
 
-  { "char_copyright",                          "RocksFontEM.pcx"       },
+  { "char_copyright",                          "RocksFontEM.png"       },
   { "char_copyright.xpos",                     "0"                     },
   { "char_copyright.ypos",                     "4"                     },
   { "char_copyright.frames",                   "1"                     },
 
-  { "char_aumlaut",                            "RocksFontEM.pcx"       },
+  { "char_aumlaut",                            "RocksFontEM.png"       },
   { "char_aumlaut.xpos",                       "1"                     },
   { "char_aumlaut.ypos",                       "4"                     },
   { "char_aumlaut.frames",                     "1"                     },
 
-  { "char_oumlaut",                            "RocksFontEM.pcx"       },
+  { "char_oumlaut",                            "RocksFontEM.png"       },
   { "char_oumlaut.xpos",                       "2"                     },
   { "char_oumlaut.ypos",                       "4"                     },
   { "char_oumlaut.frames",                     "1"                     },
 
-  { "char_uumlaut",                            "RocksFontEM.pcx"       },
+  { "char_uumlaut",                            "RocksFontEM.png"       },
   { "char_uumlaut.xpos",                       "3"                     },
   { "char_uumlaut.ypos",                       "4"                     },
   { "char_uumlaut.frames",                     "1"                     },
 
-  { "char_degree",                             "RocksFontEM.pcx"       },
+  { "char_degree",                             "RocksFontEM.png"       },
   { "char_degree.xpos",                                "4"                     },
   { "char_degree.ypos",                                "4"                     },
   { "char_degree.frames",                      "1"                     },
 
-  { "char_trademark",                          "RocksFontEM.pcx"       },
+  { "char_trademark",                          "RocksFontEM.png"       },
   { "char_trademark.xpos",                     "5"                     },
   { "char_trademark.ypos",                     "4"                     },
   { "char_trademark.frames",                   "1"                     },
 
-  { "char_cursor",                             "RocksFontEM.pcx"       },
+  { "char_cursor",                             "RocksFontEM.png"       },
   { "char_cursor.xpos",                                "6"                     },
   { "char_cursor.ypos",                                "4"                     },
   { "char_cursor.frames",                      "1"                     },
 
-  { "char_button",                             "RocksFontEM.pcx"       },
+  { "char_button",                             "RocksFontEM.png"       },
   { "char_button.xpos",                                "13"                    },
   { "char_button.ypos",                                "4"                     },
   { "char_button.frames",                      "1"                     },
 
-  { "char_up",                                 "RocksFontEM.pcx"       },
+  { "char_up",                                 "RocksFontEM.png"       },
   { "char_up.xpos",                            "14"                    },
   { "char_up.ypos",                            "4"                     },
   { "char_up.frames",                          "1"                     },
 
-  { "char_down",                               "RocksFontEM.pcx"       },
+  { "char_down",                               "RocksFontEM.png"       },
   { "char_down.xpos",                          "15"                    },
   { "char_down.ypos",                          "4"                     },
   { "char_down.frames",                                "1"                     },
 
-  { "steel_char_space",                                "RocksFontDC.pcx"       },
+  { "steel_char_space",                                "RocksFontDC.png"       },
   { "steel_char_space.xpos",                   "0"                     },
   { "steel_char_space.ypos",                   "0"                     },
   { "steel_char_space.frames",                 "1"                     },
-  { "steel_char_space.EDITOR",                 "RocksFontDC.pcx"       },
+  { "steel_char_space.EDITOR",                 "RocksFontDC.png"       },
   { "steel_char_space.EDITOR.xpos",            "7"                     },
   { "steel_char_space.EDITOR.ypos",            "4"                     },
   { "steel_char_space.EDITOR.frames",          "1"                     },
 
-  { "steel_char_exclam",                       "RocksFontDC.pcx"       },
+  { "steel_char_exclam",                       "RocksFontDC.png"       },
   { "steel_char_exclam.xpos",                  "1"                     },
   { "steel_char_exclam.ypos",                  "0"                     },
   { "steel_char_exclam.frames",                        "1"                     },
 
-  { "steel_char_quotedbl",                     "RocksFontDC.pcx"       },
+  { "steel_char_quotedbl",                     "RocksFontDC.png"       },
   { "steel_char_quotedbl.xpos",                        "2"                     },
   { "steel_char_quotedbl.ypos",                        "0"                     },
   { "steel_char_quotedbl.frames",              "1"                     },
 
-  { "steel_char_numbersign",                   "RocksFontDC.pcx"       },
+  { "steel_char_numbersign",                   "RocksFontDC.png"       },
   { "steel_char_numbersign.xpos",              "3"                     },
   { "steel_char_numbersign.ypos",              "0"                     },
   { "steel_char_numbersign.frames",            "1"                     },
 
-  { "steel_char_dollar",                       "RocksFontDC.pcx"       },
+  { "steel_char_dollar",                       "RocksFontDC.png"       },
   { "steel_char_dollar.xpos",                  "4"                     },
   { "steel_char_dollar.ypos",                  "0"                     },
   { "steel_char_dollar.frames",                        "1"                     },
 
-  { "steel_char_percent",                      "RocksFontDC.pcx"       },
+  { "steel_char_percent",                      "RocksFontDC.png"       },
   { "steel_char_percent.xpos",                 "5"                     },
   { "steel_char_percent.ypos",                 "0"                     },
   { "steel_char_percent.frames",               "1"                     },
 
-  { "steel_char_ampersand",                    "RocksFontDC.pcx"       },
+  { "steel_char_ampersand",                    "RocksFontDC.png"       },
   { "steel_char_ampersand.xpos",               "6"                     },
   { "steel_char_ampersand.ypos",               "0"                     },
   { "steel_char_ampersand.frames",             "1"                     },
 
-  { "steel_char_apostrophe",                   "RocksFontDC.pcx"       },
+  { "steel_char_apostrophe",                   "RocksFontDC.png"       },
   { "steel_char_apostrophe.xpos",              "7"                     },
   { "steel_char_apostrophe.ypos",              "0"                     },
   { "steel_char_apostrophe.frames",            "1"                     },
 
-  { "steel_char_parenleft",                    "RocksFontDC.pcx"       },
+  { "steel_char_parenleft",                    "RocksFontDC.png"       },
   { "steel_char_parenleft.xpos",               "8"                     },
   { "steel_char_parenleft.ypos",               "0"                     },
   { "steel_char_parenleft.frames",             "1"                     },
 
-  { "steel_char_parenright",                   "RocksFontDC.pcx"       },
+  { "steel_char_parenright",                   "RocksFontDC.png"       },
   { "steel_char_parenright.xpos",              "9"                     },
   { "steel_char_parenright.ypos",              "0"                     },
   { "steel_char_parenright.frames",            "1"                     },
 
-  { "steel_char_asterisk",                     "RocksFontDC.pcx"       },
+  { "steel_char_asterisk",                     "RocksFontDC.png"       },
   { "steel_char_asterisk.xpos",                        "10"                    },
   { "steel_char_asterisk.ypos",                        "0"                     },
   { "steel_char_asterisk.frames",              "1"                     },
 
-  { "steel_char_plus",                         "RocksFontDC.pcx"       },
+  { "steel_char_plus",                         "RocksFontDC.png"       },
   { "steel_char_plus.xpos",                    "11"                    },
   { "steel_char_plus.ypos",                    "0"                     },
   { "steel_char_plus.frames",                  "1"                     },
 
-  { "steel_char_comma",                                "RocksFontDC.pcx"       },
+  { "steel_char_comma",                                "RocksFontDC.png"       },
   { "steel_char_comma.xpos",                   "12"                    },
   { "steel_char_comma.ypos",                   "0"                     },
   { "steel_char_comma.frames",                 "1"                     },
 
-  { "steel_char_minus",                                "RocksFontDC.pcx"       },
+  { "steel_char_minus",                                "RocksFontDC.png"       },
   { "steel_char_minus.xpos",                   "13"                    },
   { "steel_char_minus.ypos",                   "0"                     },
   { "steel_char_minus.frames",                 "1"                     },
 
-  { "steel_char_period",                       "RocksFontDC.pcx"       },
+  { "steel_char_period",                       "RocksFontDC.png"       },
   { "steel_char_period.xpos",                  "14"                    },
   { "steel_char_period.ypos",                  "0"                     },
   { "steel_char_period.frames",                        "1"                     },
 
-  { "steel_char_slash",                                "RocksFontDC.pcx"       },
+  { "steel_char_slash",                                "RocksFontDC.png"       },
   { "steel_char_slash.xpos",                   "15"                    },
   { "steel_char_slash.ypos",                   "0"                     },
   { "steel_char_slash.frames",                 "1"                     },
 
-  { "steel_char_0",                            "RocksFontDC.pcx"       },
+  { "steel_char_0",                            "RocksFontDC.png"       },
   { "steel_char_0.xpos",                       "0"                     },
   { "steel_char_0.ypos",                       "1"                     },
   { "steel_char_0.frames",                     "1"                     },
 
-  { "steel_char_1",                            "RocksFontDC.pcx"       },
+  { "steel_char_1",                            "RocksFontDC.png"       },
   { "steel_char_1.xpos",                       "1"                     },
   { "steel_char_1.ypos",                       "1"                     },
   { "steel_char_1.frames",                     "1"                     },
 
-  { "steel_char_2",                            "RocksFontDC.pcx"       },
+  { "steel_char_2",                            "RocksFontDC.png"       },
   { "steel_char_2.xpos",                       "2"                     },
   { "steel_char_2.ypos",                       "1"                     },
   { "steel_char_2.frames",                     "1"                     },
 
-  { "steel_char_3",                            "RocksFontDC.pcx"       },
+  { "steel_char_3",                            "RocksFontDC.png"       },
   { "steel_char_3.xpos",                       "3"                     },
   { "steel_char_3.ypos",                       "1"                     },
   { "steel_char_3.frames",                     "1"                     },
 
-  { "steel_char_4",                            "RocksFontDC.pcx"       },
+  { "steel_char_4",                            "RocksFontDC.png"       },
   { "steel_char_4.xpos",                       "4"                     },
   { "steel_char_4.ypos",                       "1"                     },
   { "steel_char_4.frames",                     "1"                     },
 
-  { "steel_char_5",                            "RocksFontDC.pcx"       },
+  { "steel_char_5",                            "RocksFontDC.png"       },
   { "steel_char_5.xpos",                       "5"                     },
   { "steel_char_5.ypos",                       "1"                     },
   { "steel_char_5.frames",                     "1"                     },
 
-  { "steel_char_6",                            "RocksFontDC.pcx"       },
+  { "steel_char_6",                            "RocksFontDC.png"       },
   { "steel_char_6.xpos",                       "6"                     },
   { "steel_char_6.ypos",                       "1"                     },
   { "steel_char_6.frames",                     "1"                     },
 
-  { "steel_char_7",                            "RocksFontDC.pcx"       },
+  { "steel_char_7",                            "RocksFontDC.png"       },
   { "steel_char_7.xpos",                       "7"                     },
   { "steel_char_7.ypos",                       "1"                     },
   { "steel_char_7.frames",                     "1"                     },
 
-  { "steel_char_8",                            "RocksFontDC.pcx"       },
+  { "steel_char_8",                            "RocksFontDC.png"       },
   { "steel_char_8.xpos",                       "8"                     },
   { "steel_char_8.ypos",                       "1"                     },
   { "steel_char_8.frames",                     "1"                     },
 
-  { "steel_char_9",                            "RocksFontDC.pcx"       },
+  { "steel_char_9",                            "RocksFontDC.png"       },
   { "steel_char_9.xpos",                       "9"                     },
   { "steel_char_9.ypos",                       "1"                     },
   { "steel_char_9.frames",                     "1"                     },
 
-  { "steel_char_colon",                                "RocksFontDC.pcx"       },
+  { "steel_char_colon",                                "RocksFontDC.png"       },
   { "steel_char_colon.xpos",                   "10"                    },
   { "steel_char_colon.ypos",                   "1"                     },
   { "steel_char_colon.frames",                 "1"                     },
 
-  { "steel_char_semicolon",                    "RocksFontDC.pcx"       },
+  { "steel_char_semicolon",                    "RocksFontDC.png"       },
   { "steel_char_semicolon.xpos",               "11"                    },
   { "steel_char_semicolon.ypos",               "1"                     },
   { "steel_char_semicolon.frames",             "1"                     },
 
-  { "steel_char_less",                         "RocksFontDC.pcx"       },
+  { "steel_char_less",                         "RocksFontDC.png"       },
   { "steel_char_less.xpos",                    "12"                    },
   { "steel_char_less.ypos",                    "1"                     },
   { "steel_char_less.frames",                  "1"                     },
 
-  { "steel_char_equal",                                "RocksFontDC.pcx"       },
+  { "steel_char_equal",                                "RocksFontDC.png"       },
   { "steel_char_equal.xpos",                   "13"                    },
   { "steel_char_equal.ypos",                   "1"                     },
   { "steel_char_equal.frames",                 "1"                     },
 
-  { "steel_char_greater",                      "RocksFontDC.pcx"       },
+  { "steel_char_greater",                      "RocksFontDC.png"       },
   { "steel_char_greater.xpos",                 "14"                    },
   { "steel_char_greater.ypos",                 "1"                     },
   { "steel_char_greater.frames",               "1"                     },
 
-  { "steel_char_question",                     "RocksFontDC.pcx"       },
+  { "steel_char_question",                     "RocksFontDC.png"       },
   { "steel_char_question.xpos",                        "15"                    },
   { "steel_char_question.ypos",                        "1"                     },
   { "steel_char_question.frames",              "1"                     },
 
-  { "steel_char_at",                           "RocksFontDC.pcx"       },
+  { "steel_char_at",                           "RocksFontDC.png"       },
   { "steel_char_at.xpos",                      "0"                     },
   { "steel_char_at.ypos",                      "2"                     },
   { "steel_char_at.frames",                    "1"                     },
 
-  { "steel_char_a",                            "RocksFontDC.pcx"       },
+  { "steel_char_a",                            "RocksFontDC.png"       },
   { "steel_char_a.xpos",                       "1"                     },
   { "steel_char_a.ypos",                       "2"                     },
   { "steel_char_a.frames",                     "1"                     },
 
-  { "steel_char_b",                            "RocksFontDC.pcx"       },
+  { "steel_char_b",                            "RocksFontDC.png"       },
   { "steel_char_b.xpos",                       "2"                     },
   { "steel_char_b.ypos",                       "2"                     },
   { "steel_char_b.frames",                     "1"                     },
 
-  { "steel_char_c",                            "RocksFontDC.pcx"       },
+  { "steel_char_c",                            "RocksFontDC.png"       },
   { "steel_char_c.xpos",                       "3"                     },
   { "steel_char_c.ypos",                       "2"                     },
   { "steel_char_c.frames",                     "1"                     },
 
-  { "steel_char_d",                            "RocksFontDC.pcx"       },
+  { "steel_char_d",                            "RocksFontDC.png"       },
   { "steel_char_d.xpos",                       "4"                     },
   { "steel_char_d.ypos",                       "2"                     },
   { "steel_char_d.frames",                     "1"                     },
 
-  { "steel_char_e",                            "RocksFontDC.pcx"       },
+  { "steel_char_e",                            "RocksFontDC.png"       },
   { "steel_char_e.xpos",                       "5"                     },
   { "steel_char_e.ypos",                       "2"                     },
   { "steel_char_e.frames",                     "1"                     },
 
-  { "steel_char_f",                            "RocksFontDC.pcx"       },
+  { "steel_char_f",                            "RocksFontDC.png"       },
   { "steel_char_f.xpos",                       "6"                     },
   { "steel_char_f.ypos",                       "2"                     },
   { "steel_char_f.frames",                     "1"                     },
 
-  { "steel_char_g",                            "RocksFontDC.pcx"       },
+  { "steel_char_g",                            "RocksFontDC.png"       },
   { "steel_char_g.xpos",                       "7"                     },
   { "steel_char_g.ypos",                       "2"                     },
   { "steel_char_g.frames",                     "1"                     },
 
-  { "steel_char_h",                            "RocksFontDC.pcx"       },
+  { "steel_char_h",                            "RocksFontDC.png"       },
   { "steel_char_h.xpos",                       "8"                     },
   { "steel_char_h.ypos",                       "2"                     },
   { "steel_char_h.frames",                     "1"                     },
 
-  { "steel_char_i",                            "RocksFontDC.pcx"       },
+  { "steel_char_i",                            "RocksFontDC.png"       },
   { "steel_char_i.xpos",                       "9"                     },
   { "steel_char_i.ypos",                       "2"                     },
   { "steel_char_i.frames",                     "1"                     },
 
-  { "steel_char_j",                            "RocksFontDC.pcx"       },
+  { "steel_char_j",                            "RocksFontDC.png"       },
   { "steel_char_j.xpos",                       "10"                    },
   { "steel_char_j.ypos",                       "2"                     },
   { "steel_char_j.frames",                     "1"                     },
 
-  { "steel_char_k",                            "RocksFontDC.pcx"       },
+  { "steel_char_k",                            "RocksFontDC.png"       },
   { "steel_char_k.xpos",                       "11"                    },
   { "steel_char_k.ypos",                       "2"                     },
   { "steel_char_k.frames",                     "1"                     },
 
-  { "steel_char_l",                            "RocksFontDC.pcx"       },
+  { "steel_char_l",                            "RocksFontDC.png"       },
   { "steel_char_l.xpos",                       "12"                    },
   { "steel_char_l.ypos",                       "2"                     },
   { "steel_char_l.frames",                     "1"                     },
 
-  { "steel_char_m",                            "RocksFontDC.pcx"       },
+  { "steel_char_m",                            "RocksFontDC.png"       },
   { "steel_char_m.xpos",                       "13"                    },
   { "steel_char_m.ypos",                       "2"                     },
   { "steel_char_m.frames",                     "1"                     },
 
-  { "steel_char_n",                            "RocksFontDC.pcx"       },
+  { "steel_char_n",                            "RocksFontDC.png"       },
   { "steel_char_n.xpos",                       "14"                    },
   { "steel_char_n.ypos",                       "2"                     },
   { "steel_char_n.frames",                     "1"                     },
 
-  { "steel_char_o",                            "RocksFontDC.pcx"       },
+  { "steel_char_o",                            "RocksFontDC.png"       },
   { "steel_char_o.xpos",                       "15"                    },
   { "steel_char_o.ypos",                       "2"                     },
   { "steel_char_o.frames",                     "1"                     },
 
-  { "steel_char_p",                            "RocksFontDC.pcx"       },
+  { "steel_char_p",                            "RocksFontDC.png"       },
   { "steel_char_p.xpos",                       "0"                     },
   { "steel_char_p.ypos",                       "3"                     },
   { "steel_char_p.frames",                     "1"                     },
 
-  { "steel_char_q",                            "RocksFontDC.pcx"       },
+  { "steel_char_q",                            "RocksFontDC.png"       },
   { "steel_char_q.xpos",                       "1"                     },
   { "steel_char_q.ypos",                       "3"                     },
   { "steel_char_q.frames",                     "1"                     },
 
-  { "steel_char_r",                            "RocksFontDC.pcx"       },
+  { "steel_char_r",                            "RocksFontDC.png"       },
   { "steel_char_r.xpos",                       "2"                     },
   { "steel_char_r.ypos",                       "3"                     },
   { "steel_char_r.frames",                     "1"                     },
 
-  { "steel_char_s",                            "RocksFontDC.pcx"       },
+  { "steel_char_s",                            "RocksFontDC.png"       },
   { "steel_char_s.xpos",                       "3"                     },
   { "steel_char_s.ypos",                       "3"                     },
   { "steel_char_s.frames",                     "1"                     },
 
-  { "steel_char_t",                            "RocksFontDC.pcx"       },
+  { "steel_char_t",                            "RocksFontDC.png"       },
   { "steel_char_t.xpos",                       "4"                     },
   { "steel_char_t.ypos",                       "3"                     },
   { "steel_char_t.frames",                     "1"                     },
 
-  { "steel_char_u",                            "RocksFontDC.pcx"       },
+  { "steel_char_u",                            "RocksFontDC.png"       },
   { "steel_char_u.xpos",                       "5"                     },
   { "steel_char_u.ypos",                       "3"                     },
   { "steel_char_u.frames",                     "1"                     },
 
-  { "steel_char_v",                            "RocksFontDC.pcx"       },
+  { "steel_char_v",                            "RocksFontDC.png"       },
   { "steel_char_v.xpos",                       "6"                     },
   { "steel_char_v.ypos",                       "3"                     },
   { "steel_char_v.frames",                     "1"                     },
 
-  { "steel_char_w",                            "RocksFontDC.pcx"       },
+  { "steel_char_w",                            "RocksFontDC.png"       },
   { "steel_char_w.xpos",                       "7"                     },
   { "steel_char_w.ypos",                       "3"                     },
   { "steel_char_w.frames",                     "1"                     },
 
-  { "steel_char_x",                            "RocksFontDC.pcx"       },
+  { "steel_char_x",                            "RocksFontDC.png"       },
   { "steel_char_x.xpos",                       "8"                     },
   { "steel_char_x.ypos",                       "3"                     },
   { "steel_char_x.frames",                     "1"                     },
 
-  { "steel_char_y",                            "RocksFontDC.pcx"       },
+  { "steel_char_y",                            "RocksFontDC.png"       },
   { "steel_char_y.xpos",                       "9"                     },
   { "steel_char_y.ypos",                       "3"                     },
   { "steel_char_y.frames",                     "1"                     },
 
-  { "steel_char_z",                            "RocksFontDC.pcx"       },
+  { "steel_char_z",                            "RocksFontDC.png"       },
   { "steel_char_z.xpos",                       "10"                    },
   { "steel_char_z.ypos",                       "3"                     },
   { "steel_char_z.frames",                     "1"                     },
 
-  { "steel_char_bracketleft",                  "RocksFontDC.pcx"       },
+  { "steel_char_bracketleft",                  "RocksFontDC.png"       },
   { "steel_char_bracketleft.xpos",             "11"                    },
   { "steel_char_bracketleft.ypos",             "3"                     },
   { "steel_char_bracketleft.frames",           "1"                     },
 
-  { "steel_char_backslash",                    "RocksFontDC.pcx"       },
+  { "steel_char_backslash",                    "RocksFontDC.png"       },
   { "steel_char_backslash.xpos",               "12"                    },
   { "steel_char_backslash.ypos",               "3"                     },
   { "steel_char_backslash.frames",             "1"                     },
 
-  { "steel_char_bracketright",                 "RocksFontDC.pcx"       },
+  { "steel_char_bracketright",                 "RocksFontDC.png"       },
   { "steel_char_bracketright.xpos",            "13"                    },
   { "steel_char_bracketright.ypos",            "3"                     },
   { "steel_char_bracketright.frames",          "1"                     },
 
-  { "steel_char_asciicircum",                  "RocksFontDC.pcx"       },
+  { "steel_char_asciicircum",                  "RocksFontDC.png"       },
   { "steel_char_asciicircum.xpos",             "14"                    },
   { "steel_char_asciicircum.ypos",             "3"                     },
   { "steel_char_asciicircum.frames",           "1"                     },
 
-  { "steel_char_underscore",                   "RocksFontDC.pcx"       },
+  { "steel_char_underscore",                   "RocksFontDC.png"       },
   { "steel_char_underscore.xpos",              "15"                    },
   { "steel_char_underscore.ypos",              "3"                     },
   { "steel_char_underscore.frames",            "1"                     },
 
-  { "steel_char_copyright",                    "RocksFontDC.pcx"       },
+  { "steel_char_copyright",                    "RocksFontDC.png"       },
   { "steel_char_copyright.xpos",               "0"                     },
   { "steel_char_copyright.ypos",               "4"                     },
   { "steel_char_copyright.frames",             "1"                     },
 
-  { "steel_char_aumlaut",                      "RocksFontDC.pcx"       },
+  { "steel_char_aumlaut",                      "RocksFontDC.png"       },
   { "steel_char_aumlaut.xpos",                 "1"                     },
   { "steel_char_aumlaut.ypos",                 "4"                     },
   { "steel_char_aumlaut.frames",               "1"                     },
 
-  { "steel_char_oumlaut",                      "RocksFontDC.pcx"       },
+  { "steel_char_oumlaut",                      "RocksFontDC.png"       },
   { "steel_char_oumlaut.xpos",                 "2"                     },
   { "steel_char_oumlaut.ypos",                 "4"                     },
   { "steel_char_oumlaut.frames",               "1"                     },
 
-  { "steel_char_uumlaut",                      "RocksFontDC.pcx"       },
+  { "steel_char_uumlaut",                      "RocksFontDC.png"       },
   { "steel_char_uumlaut.xpos",                 "3"                     },
   { "steel_char_uumlaut.ypos",                 "4"                     },
   { "steel_char_uumlaut.frames",               "1"                     },
 
-  { "steel_char_degree",                       "RocksFontDC.pcx"       },
+  { "steel_char_degree",                       "RocksFontDC.png"       },
   { "steel_char_degree.xpos",                  "4"                     },
   { "steel_char_degree.ypos",                  "4"                     },
   { "steel_char_degree.frames",                        "1"                     },
 
-  { "steel_char_trademark",                    "RocksFontDC.pcx"       },
+  { "steel_char_trademark",                    "RocksFontDC.png"       },
   { "steel_char_trademark.xpos",               "5"                     },
   { "steel_char_trademark.ypos",               "4"                     },
   { "steel_char_trademark.frames",             "1"                     },
 
-  { "steel_char_cursor",                       "RocksFontDC.pcx"       },
+  { "steel_char_cursor",                       "RocksFontDC.png"       },
   { "steel_char_cursor.xpos",                  "6"                     },
   { "steel_char_cursor.ypos",                  "4"                     },
   { "steel_char_cursor.frames",                        "1"                     },
 
-  { "steel_char_button",                       "RocksFontDC.pcx"       },
+  { "steel_char_button",                       "RocksFontDC.png"       },
   { "steel_char_button.xpos",                  "13"                    },
   { "steel_char_button.ypos",                  "4"                     },
   { "steel_char_button.frames",                        "1"                     },
 
-  { "steel_char_up",                           "RocksFontDC.pcx"       },
+  { "steel_char_up",                           "RocksFontDC.png"       },
   { "steel_char_up.xpos",                      "14"                    },
   { "steel_char_up.ypos",                      "4"                     },
   { "steel_char_up.frames",                    "1"                     },
 
-  { "steel_char_down",                         "RocksFontDC.pcx"       },
+  { "steel_char_down",                         "RocksFontDC.png"       },
   { "steel_char_down.xpos",                    "15"                    },
   { "steel_char_down.ypos",                    "4"                     },
   { "steel_char_down.frames",                  "1"                     },
index 50d70783bb40cad7166dd459c9fe5390b9aeffb7..d64cadc508acc59bb0578323cfcd626fc95ef3b9 100644 (file)
 
 /* values for graphics configuration (custom elements) */
 
-  { "custom_1",                                        "RocksCE.pcx"           },
+  { "custom_1",                                        "RocksCE.png"           },
   { "custom_1.xpos",                           "0"                     },
   { "custom_1.ypos",                           "0"                     },
   { "custom_1.frames",                         "1"                     },
-  { "custom_1.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_1.EDITOR",                         "RocksCE.png"           },
   { "custom_1.EDITOR.xpos",                    "16"                    },
   { "custom_1.EDITOR.ypos",                    "0"                     },
 
-  { "custom_2",                                        "RocksCE.pcx"           },
+  { "custom_2",                                        "RocksCE.png"           },
   { "custom_2.xpos",                           "1"                     },
   { "custom_2.ypos",                           "0"                     },
   { "custom_2.frames",                         "1"                     },
-  { "custom_2.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_2.EDITOR",                         "RocksCE.png"           },
   { "custom_2.EDITOR.xpos",                    "17"                    },
   { "custom_2.EDITOR.ypos",                    "0"                     },
 
-  { "custom_3",                                        "RocksCE.pcx"           },
+  { "custom_3",                                        "RocksCE.png"           },
   { "custom_3.xpos",                           "2"                     },
   { "custom_3.ypos",                           "0"                     },
   { "custom_3.frames",                         "1"                     },
-  { "custom_3.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_3.EDITOR",                         "RocksCE.png"           },
   { "custom_3.EDITOR.xpos",                    "18"                    },
   { "custom_3.EDITOR.ypos",                    "0"                     },
 
-  { "custom_4",                                        "RocksCE.pcx"           },
+  { "custom_4",                                        "RocksCE.png"           },
   { "custom_4.xpos",                           "3"                     },
   { "custom_4.ypos",                           "0"                     },
   { "custom_4.frames",                         "1"                     },
-  { "custom_4.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_4.EDITOR",                         "RocksCE.png"           },
   { "custom_4.EDITOR.xpos",                    "19"                    },
   { "custom_4.EDITOR.ypos",                    "0"                     },
 
-  { "custom_5",                                        "RocksCE.pcx"           },
+  { "custom_5",                                        "RocksCE.png"           },
   { "custom_5.xpos",                           "4"                     },
   { "custom_5.ypos",                           "0"                     },
   { "custom_5.frames",                         "1"                     },
-  { "custom_5.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_5.EDITOR",                         "RocksCE.png"           },
   { "custom_5.EDITOR.xpos",                    "20"                    },
   { "custom_5.EDITOR.ypos",                    "0"                     },
 
-  { "custom_6",                                        "RocksCE.pcx"           },
+  { "custom_6",                                        "RocksCE.png"           },
   { "custom_6.xpos",                           "5"                     },
   { "custom_6.ypos",                           "0"                     },
   { "custom_6.frames",                         "1"                     },
-  { "custom_6.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_6.EDITOR",                         "RocksCE.png"           },
   { "custom_6.EDITOR.xpos",                    "21"                    },
   { "custom_6.EDITOR.ypos",                    "0"                     },
 
-  { "custom_7",                                        "RocksCE.pcx"           },
+  { "custom_7",                                        "RocksCE.png"           },
   { "custom_7.xpos",                           "6"                     },
   { "custom_7.ypos",                           "0"                     },
   { "custom_7.frames",                         "1"                     },
-  { "custom_7.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_7.EDITOR",                         "RocksCE.png"           },
   { "custom_7.EDITOR.xpos",                    "22"                    },
   { "custom_7.EDITOR.ypos",                    "0"                     },
 
-  { "custom_8",                                        "RocksCE.pcx"           },
+  { "custom_8",                                        "RocksCE.png"           },
   { "custom_8.xpos",                           "7"                     },
   { "custom_8.ypos",                           "0"                     },
   { "custom_8.frames",                         "1"                     },
-  { "custom_8.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_8.EDITOR",                         "RocksCE.png"           },
   { "custom_8.EDITOR.xpos",                    "23"                    },
   { "custom_8.EDITOR.ypos",                    "0"                     },
 
-  { "custom_9",                                        "RocksCE.pcx"           },
+  { "custom_9",                                        "RocksCE.png"           },
   { "custom_9.xpos",                           "8"                     },
   { "custom_9.ypos",                           "0"                     },
   { "custom_9.frames",                         "1"                     },
-  { "custom_9.EDITOR",                         "RocksCE.pcx"           },
+  { "custom_9.EDITOR",                         "RocksCE.png"           },
   { "custom_9.EDITOR.xpos",                    "24"                    },
   { "custom_9.EDITOR.ypos",                    "0"                     },
 
-  { "custom_10",                               "RocksCE.pcx"           },
+  { "custom_10",                               "RocksCE.png"           },
   { "custom_10.xpos",                          "9"                     },
   { "custom_10.ypos",                          "0"                     },
   { "custom_10.frames",                                "1"                     },
-  { "custom_10.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_10.EDITOR",                                "RocksCE.png"           },
   { "custom_10.EDITOR.xpos",                   "25"                    },
   { "custom_10.EDITOR.ypos",                   "0"                     },
 
-  { "custom_11",                               "RocksCE.pcx"           },
+  { "custom_11",                               "RocksCE.png"           },
   { "custom_11.xpos",                          "10"                    },
   { "custom_11.ypos",                          "0"                     },
   { "custom_11.frames",                                "1"                     },
-  { "custom_11.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_11.EDITOR",                                "RocksCE.png"           },
   { "custom_11.EDITOR.xpos",                   "26"                    },
   { "custom_11.EDITOR.ypos",                   "0"                     },
 
-  { "custom_12",                               "RocksCE.pcx"           },
+  { "custom_12",                               "RocksCE.png"           },
   { "custom_12.xpos",                          "11"                    },
   { "custom_12.ypos",                          "0"                     },
   { "custom_12.frames",                                "1"                     },
-  { "custom_12.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_12.EDITOR",                                "RocksCE.png"           },
   { "custom_12.EDITOR.xpos",                   "27"                    },
   { "custom_12.EDITOR.ypos",                   "0"                     },
 
-  { "custom_13",                               "RocksCE.pcx"           },
+  { "custom_13",                               "RocksCE.png"           },
   { "custom_13.xpos",                          "12"                    },
   { "custom_13.ypos",                          "0"                     },
   { "custom_13.frames",                                "1"                     },
-  { "custom_13.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_13.EDITOR",                                "RocksCE.png"           },
   { "custom_13.EDITOR.xpos",                   "28"                    },
   { "custom_13.EDITOR.ypos",                   "0"                     },
 
-  { "custom_14",                               "RocksCE.pcx"           },
+  { "custom_14",                               "RocksCE.png"           },
   { "custom_14.xpos",                          "13"                    },
   { "custom_14.ypos",                          "0"                     },
   { "custom_14.frames",                                "1"                     },
-  { "custom_14.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_14.EDITOR",                                "RocksCE.png"           },
   { "custom_14.EDITOR.xpos",                   "29"                    },
   { "custom_14.EDITOR.ypos",                   "0"                     },
 
-  { "custom_15",                               "RocksCE.pcx"           },
+  { "custom_15",                               "RocksCE.png"           },
   { "custom_15.xpos",                          "14"                    },
   { "custom_15.ypos",                          "0"                     },
   { "custom_15.frames",                                "1"                     },
-  { "custom_15.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_15.EDITOR",                                "RocksCE.png"           },
   { "custom_15.EDITOR.xpos",                   "30"                    },
   { "custom_15.EDITOR.ypos",                   "0"                     },
 
-  { "custom_16",                               "RocksCE.pcx"           },
+  { "custom_16",                               "RocksCE.png"           },
   { "custom_16.xpos",                          "15"                    },
   { "custom_16.ypos",                          "0"                     },
   { "custom_16.frames",                                "1"                     },
-  { "custom_16.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_16.EDITOR",                                "RocksCE.png"           },
   { "custom_16.EDITOR.xpos",                   "31"                    },
   { "custom_16.EDITOR.ypos",                   "0"                     },
 
-  { "custom_17",                               "RocksCE.pcx"           },
+  { "custom_17",                               "RocksCE.png"           },
   { "custom_17.xpos",                          "0"                     },
   { "custom_17.ypos",                          "1"                     },
   { "custom_17.frames",                                "1"                     },
-  { "custom_17.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_17.EDITOR",                                "RocksCE.png"           },
   { "custom_17.EDITOR.xpos",                   "16"                    },
   { "custom_17.EDITOR.ypos",                   "1"                     },
 
-  { "custom_18",                               "RocksCE.pcx"           },
+  { "custom_18",                               "RocksCE.png"           },
   { "custom_18.xpos",                          "1"                     },
   { "custom_18.ypos",                          "1"                     },
   { "custom_18.frames",                                "1"                     },
-  { "custom_18.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_18.EDITOR",                                "RocksCE.png"           },
   { "custom_18.EDITOR.xpos",                   "17"                    },
   { "custom_18.EDITOR.ypos",                   "1"                     },
 
-  { "custom_19",                               "RocksCE.pcx"           },
+  { "custom_19",                               "RocksCE.png"           },
   { "custom_19.xpos",                          "2"                     },
   { "custom_19.ypos",                          "1"                     },
   { "custom_19.frames",                                "1"                     },
-  { "custom_19.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_19.EDITOR",                                "RocksCE.png"           },
   { "custom_19.EDITOR.xpos",                   "18"                    },
   { "custom_19.EDITOR.ypos",                   "1"                     },
 
-  { "custom_20",                               "RocksCE.pcx"           },
+  { "custom_20",                               "RocksCE.png"           },
   { "custom_20.xpos",                          "3"                     },
   { "custom_20.ypos",                          "1"                     },
   { "custom_20.frames",                                "1"                     },
-  { "custom_20.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_20.EDITOR",                                "RocksCE.png"           },
   { "custom_20.EDITOR.xpos",                   "19"                    },
   { "custom_20.EDITOR.ypos",                   "1"                     },
 
-  { "custom_21",                               "RocksCE.pcx"           },
+  { "custom_21",                               "RocksCE.png"           },
   { "custom_21.xpos",                          "4"                     },
   { "custom_21.ypos",                          "1"                     },
   { "custom_21.frames",                                "1"                     },
-  { "custom_21.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_21.EDITOR",                                "RocksCE.png"           },
   { "custom_21.EDITOR.xpos",                   "20"                    },
   { "custom_21.EDITOR.ypos",                   "1"                     },
 
-  { "custom_22",                               "RocksCE.pcx"           },
+  { "custom_22",                               "RocksCE.png"           },
   { "custom_22.xpos",                          "5"                     },
   { "custom_22.ypos",                          "1"                     },
   { "custom_22.frames",                                "1"                     },
-  { "custom_22.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_22.EDITOR",                                "RocksCE.png"           },
   { "custom_22.EDITOR.xpos",                   "21"                    },
   { "custom_22.EDITOR.ypos",                   "1"                     },
 
-  { "custom_23",                               "RocksCE.pcx"           },
+  { "custom_23",                               "RocksCE.png"           },
   { "custom_23.xpos",                          "6"                     },
   { "custom_23.ypos",                          "1"                     },
   { "custom_23.frames",                                "1"                     },
-  { "custom_23.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_23.EDITOR",                                "RocksCE.png"           },
   { "custom_23.EDITOR.xpos",                   "22"                    },
   { "custom_23.EDITOR.ypos",                   "1"                     },
 
-  { "custom_24",                               "RocksCE.pcx"           },
+  { "custom_24",                               "RocksCE.png"           },
   { "custom_24.xpos",                          "7"                     },
   { "custom_24.ypos",                          "1"                     },
   { "custom_24.frames",                                "1"                     },
-  { "custom_24.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_24.EDITOR",                                "RocksCE.png"           },
   { "custom_24.EDITOR.xpos",                   "23"                    },
   { "custom_24.EDITOR.ypos",                   "1"                     },
 
-  { "custom_25",                               "RocksCE.pcx"           },
+  { "custom_25",                               "RocksCE.png"           },
   { "custom_25.xpos",                          "8"                     },
   { "custom_25.ypos",                          "1"                     },
   { "custom_25.frames",                                "1"                     },
-  { "custom_25.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_25.EDITOR",                                "RocksCE.png"           },
   { "custom_25.EDITOR.xpos",                   "24"                    },
   { "custom_25.EDITOR.ypos",                   "1"                     },
 
-  { "custom_26",                               "RocksCE.pcx"           },
+  { "custom_26",                               "RocksCE.png"           },
   { "custom_26.xpos",                          "9"                     },
   { "custom_26.ypos",                          "1"                     },
   { "custom_26.frames",                                "1"                     },
-  { "custom_26.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_26.EDITOR",                                "RocksCE.png"           },
   { "custom_26.EDITOR.xpos",                   "25"                    },
   { "custom_26.EDITOR.ypos",                   "1"                     },
 
-  { "custom_27",                               "RocksCE.pcx"           },
+  { "custom_27",                               "RocksCE.png"           },
   { "custom_27.xpos",                          "10"                    },
   { "custom_27.ypos",                          "1"                     },
   { "custom_27.frames",                                "1"                     },
-  { "custom_27.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_27.EDITOR",                                "RocksCE.png"           },
   { "custom_27.EDITOR.xpos",                   "26"                    },
   { "custom_27.EDITOR.ypos",                   "1"                     },
 
-  { "custom_28",                               "RocksCE.pcx"           },
+  { "custom_28",                               "RocksCE.png"           },
   { "custom_28.xpos",                          "11"                    },
   { "custom_28.ypos",                          "1"                     },
   { "custom_28.frames",                                "1"                     },
-  { "custom_28.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_28.EDITOR",                                "RocksCE.png"           },
   { "custom_28.EDITOR.xpos",                   "27"                    },
   { "custom_28.EDITOR.ypos",                   "1"                     },
 
-  { "custom_29",                               "RocksCE.pcx"           },
+  { "custom_29",                               "RocksCE.png"           },
   { "custom_29.xpos",                          "12"                    },
   { "custom_29.ypos",                          "1"                     },
   { "custom_29.frames",                                "1"                     },
-  { "custom_29.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_29.EDITOR",                                "RocksCE.png"           },
   { "custom_29.EDITOR.xpos",                   "28"                    },
   { "custom_29.EDITOR.ypos",                   "1"                     },
 
-  { "custom_30",                               "RocksCE.pcx"           },
+  { "custom_30",                               "RocksCE.png"           },
   { "custom_30.xpos",                          "13"                    },
   { "custom_30.ypos",                          "1"                     },
   { "custom_30.frames",                                "1"                     },
-  { "custom_30.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_30.EDITOR",                                "RocksCE.png"           },
   { "custom_30.EDITOR.xpos",                   "29"                    },
   { "custom_30.EDITOR.ypos",                   "1"                     },
 
-  { "custom_31",                               "RocksCE.pcx"           },
+  { "custom_31",                               "RocksCE.png"           },
   { "custom_31.xpos",                          "14"                    },
   { "custom_31.ypos",                          "1"                     },
   { "custom_31.frames",                                "1"                     },
-  { "custom_31.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_31.EDITOR",                                "RocksCE.png"           },
   { "custom_31.EDITOR.xpos",                   "30"                    },
   { "custom_31.EDITOR.ypos",                   "1"                     },
 
-  { "custom_32",                               "RocksCE.pcx"           },
+  { "custom_32",                               "RocksCE.png"           },
   { "custom_32.xpos",                          "15"                    },
   { "custom_32.ypos",                          "1"                     },
   { "custom_32.frames",                                "1"                     },
-  { "custom_32.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_32.EDITOR",                                "RocksCE.png"           },
   { "custom_32.EDITOR.xpos",                   "31"                    },
   { "custom_32.EDITOR.ypos",                   "1"                     },
 
-  { "custom_33",                               "RocksCE.pcx"           },
+  { "custom_33",                               "RocksCE.png"           },
   { "custom_33.xpos",                          "0"                     },
   { "custom_33.ypos",                          "2"                     },
   { "custom_33.frames",                                "1"                     },
-  { "custom_33.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_33.EDITOR",                                "RocksCE.png"           },
   { "custom_33.EDITOR.xpos",                   "16"                    },
   { "custom_33.EDITOR.ypos",                   "2"                     },
 
-  { "custom_34",                               "RocksCE.pcx"           },
+  { "custom_34",                               "RocksCE.png"           },
   { "custom_34.xpos",                          "1"                     },
   { "custom_34.ypos",                          "2"                     },
   { "custom_34.frames",                                "1"                     },
-  { "custom_34.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_34.EDITOR",                                "RocksCE.png"           },
   { "custom_34.EDITOR.xpos",                   "17"                    },
   { "custom_34.EDITOR.ypos",                   "2"                     },
 
-  { "custom_35",                               "RocksCE.pcx"           },
+  { "custom_35",                               "RocksCE.png"           },
   { "custom_35.xpos",                          "2"                     },
   { "custom_35.ypos",                          "2"                     },
   { "custom_35.frames",                                "1"                     },
-  { "custom_35.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_35.EDITOR",                                "RocksCE.png"           },
   { "custom_35.EDITOR.xpos",                   "18"                    },
   { "custom_35.EDITOR.ypos",                   "2"                     },
 
-  { "custom_36",                               "RocksCE.pcx"           },
+  { "custom_36",                               "RocksCE.png"           },
   { "custom_36.xpos",                          "3"                     },
   { "custom_36.ypos",                          "2"                     },
   { "custom_36.frames",                                "1"                     },
-  { "custom_36.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_36.EDITOR",                                "RocksCE.png"           },
   { "custom_36.EDITOR.xpos",                   "19"                    },
   { "custom_36.EDITOR.ypos",                   "2"                     },
 
-  { "custom_37",                               "RocksCE.pcx"           },
+  { "custom_37",                               "RocksCE.png"           },
   { "custom_37.xpos",                          "4"                     },
   { "custom_37.ypos",                          "2"                     },
   { "custom_37.frames",                                "1"                     },
-  { "custom_37.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_37.EDITOR",                                "RocksCE.png"           },
   { "custom_37.EDITOR.xpos",                   "20"                    },
   { "custom_37.EDITOR.ypos",                   "2"                     },
 
-  { "custom_38",                               "RocksCE.pcx"           },
+  { "custom_38",                               "RocksCE.png"           },
   { "custom_38.xpos",                          "5"                     },
   { "custom_38.ypos",                          "2"                     },
   { "custom_38.frames",                                "1"                     },
-  { "custom_38.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_38.EDITOR",                                "RocksCE.png"           },
   { "custom_38.EDITOR.xpos",                   "21"                    },
   { "custom_38.EDITOR.ypos",                   "2"                     },
 
-  { "custom_39",                               "RocksCE.pcx"           },
+  { "custom_39",                               "RocksCE.png"           },
   { "custom_39.xpos",                          "6"                     },
   { "custom_39.ypos",                          "2"                     },
   { "custom_39.frames",                                "1"                     },
-  { "custom_39.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_39.EDITOR",                                "RocksCE.png"           },
   { "custom_39.EDITOR.xpos",                   "22"                    },
   { "custom_39.EDITOR.ypos",                   "2"                     },
 
-  { "custom_40",                               "RocksCE.pcx"           },
+  { "custom_40",                               "RocksCE.png"           },
   { "custom_40.xpos",                          "7"                     },
   { "custom_40.ypos",                          "2"                     },
   { "custom_40.frames",                                "1"                     },
-  { "custom_40.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_40.EDITOR",                                "RocksCE.png"           },
   { "custom_40.EDITOR.xpos",                   "23"                    },
   { "custom_40.EDITOR.ypos",                   "2"                     },
 
-  { "custom_41",                               "RocksCE.pcx"           },
+  { "custom_41",                               "RocksCE.png"           },
   { "custom_41.xpos",                          "8"                     },
   { "custom_41.ypos",                          "2"                     },
   { "custom_41.frames",                                "1"                     },
-  { "custom_41.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_41.EDITOR",                                "RocksCE.png"           },
   { "custom_41.EDITOR.xpos",                   "24"                    },
   { "custom_41.EDITOR.ypos",                   "2"                     },
 
-  { "custom_42",                               "RocksCE.pcx"           },
+  { "custom_42",                               "RocksCE.png"           },
   { "custom_42.xpos",                          "9"                     },
   { "custom_42.ypos",                          "2"                     },
   { "custom_42.frames",                                "1"                     },
-  { "custom_42.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_42.EDITOR",                                "RocksCE.png"           },
   { "custom_42.EDITOR.xpos",                   "25"                    },
   { "custom_42.EDITOR.ypos",                   "2"                     },
 
-  { "custom_43",                               "RocksCE.pcx"           },
+  { "custom_43",                               "RocksCE.png"           },
   { "custom_43.xpos",                          "10"                    },
   { "custom_43.ypos",                          "2"                     },
   { "custom_43.frames",                                "1"                     },
-  { "custom_43.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_43.EDITOR",                                "RocksCE.png"           },
   { "custom_43.EDITOR.xpos",                   "26"                    },
   { "custom_43.EDITOR.ypos",                   "2"                     },
 
-  { "custom_44",                               "RocksCE.pcx"           },
+  { "custom_44",                               "RocksCE.png"           },
   { "custom_44.xpos",                          "11"                    },
   { "custom_44.ypos",                          "2"                     },
   { "custom_44.frames",                                "1"                     },
-  { "custom_44.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_44.EDITOR",                                "RocksCE.png"           },
   { "custom_44.EDITOR.xpos",                   "27"                    },
   { "custom_44.EDITOR.ypos",                   "2"                     },
 
-  { "custom_45",                               "RocksCE.pcx"           },
+  { "custom_45",                               "RocksCE.png"           },
   { "custom_45.xpos",                          "12"                    },
   { "custom_45.ypos",                          "2"                     },
   { "custom_45.frames",                                "1"                     },
-  { "custom_45.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_45.EDITOR",                                "RocksCE.png"           },
   { "custom_45.EDITOR.xpos",                   "28"                    },
   { "custom_45.EDITOR.ypos",                   "2"                     },
 
-  { "custom_46",                               "RocksCE.pcx"           },
+  { "custom_46",                               "RocksCE.png"           },
   { "custom_46.xpos",                          "13"                    },
   { "custom_46.ypos",                          "2"                     },
   { "custom_46.frames",                                "1"                     },
-  { "custom_46.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_46.EDITOR",                                "RocksCE.png"           },
   { "custom_46.EDITOR.xpos",                   "29"                    },
   { "custom_46.EDITOR.ypos",                   "2"                     },
 
-  { "custom_47",                               "RocksCE.pcx"           },
+  { "custom_47",                               "RocksCE.png"           },
   { "custom_47.xpos",                          "14"                    },
   { "custom_47.ypos",                          "2"                     },
   { "custom_47.frames",                                "1"                     },
-  { "custom_47.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_47.EDITOR",                                "RocksCE.png"           },
   { "custom_47.EDITOR.xpos",                   "30"                    },
   { "custom_47.EDITOR.ypos",                   "2"                     },
 
-  { "custom_48",                               "RocksCE.pcx"           },
+  { "custom_48",                               "RocksCE.png"           },
   { "custom_48.xpos",                          "15"                    },
   { "custom_48.ypos",                          "2"                     },
   { "custom_48.frames",                                "1"                     },
-  { "custom_48.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_48.EDITOR",                                "RocksCE.png"           },
   { "custom_48.EDITOR.xpos",                   "31"                    },
   { "custom_48.EDITOR.ypos",                   "2"                     },
 
-  { "custom_49",                               "RocksCE.pcx"           },
+  { "custom_49",                               "RocksCE.png"           },
   { "custom_49.xpos",                          "0"                     },
   { "custom_49.ypos",                          "3"                     },
   { "custom_49.frames",                                "1"                     },
-  { "custom_49.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_49.EDITOR",                                "RocksCE.png"           },
   { "custom_49.EDITOR.xpos",                   "16"                    },
   { "custom_49.EDITOR.ypos",                   "3"                     },
 
-  { "custom_50",                               "RocksCE.pcx"           },
+  { "custom_50",                               "RocksCE.png"           },
   { "custom_50.xpos",                          "1"                     },
   { "custom_50.ypos",                          "3"                     },
   { "custom_50.frames",                                "1"                     },
-  { "custom_50.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_50.EDITOR",                                "RocksCE.png"           },
   { "custom_50.EDITOR.xpos",                   "17"                    },
   { "custom_50.EDITOR.ypos",                   "3"                     },
 
-  { "custom_51",                               "RocksCE.pcx"           },
+  { "custom_51",                               "RocksCE.png"           },
   { "custom_51.xpos",                          "2"                     },
   { "custom_51.ypos",                          "3"                     },
   { "custom_51.frames",                                "1"                     },
-  { "custom_51.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_51.EDITOR",                                "RocksCE.png"           },
   { "custom_51.EDITOR.xpos",                   "18"                    },
   { "custom_51.EDITOR.ypos",                   "3"                     },
 
-  { "custom_52",                               "RocksCE.pcx"           },
+  { "custom_52",                               "RocksCE.png"           },
   { "custom_52.xpos",                          "3"                     },
   { "custom_52.ypos",                          "3"                     },
   { "custom_52.frames",                                "1"                     },
-  { "custom_52.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_52.EDITOR",                                "RocksCE.png"           },
   { "custom_52.EDITOR.xpos",                   "19"                    },
   { "custom_52.EDITOR.ypos",                   "3"                     },
 
-  { "custom_53",                               "RocksCE.pcx"           },
+  { "custom_53",                               "RocksCE.png"           },
   { "custom_53.xpos",                          "4"                     },
   { "custom_53.ypos",                          "3"                     },
   { "custom_53.frames",                                "1"                     },
-  { "custom_53.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_53.EDITOR",                                "RocksCE.png"           },
   { "custom_53.EDITOR.xpos",                   "20"                    },
   { "custom_53.EDITOR.ypos",                   "3"                     },
 
-  { "custom_54",                               "RocksCE.pcx"           },
+  { "custom_54",                               "RocksCE.png"           },
   { "custom_54.xpos",                          "5"                     },
   { "custom_54.ypos",                          "3"                     },
   { "custom_54.frames",                                "1"                     },
-  { "custom_54.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_54.EDITOR",                                "RocksCE.png"           },
   { "custom_54.EDITOR.xpos",                   "21"                    },
   { "custom_54.EDITOR.ypos",                   "3"                     },
 
-  { "custom_55",                               "RocksCE.pcx"           },
+  { "custom_55",                               "RocksCE.png"           },
   { "custom_55.xpos",                          "6"                     },
   { "custom_55.ypos",                          "3"                     },
   { "custom_55.frames",                                "1"                     },
-  { "custom_55.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_55.EDITOR",                                "RocksCE.png"           },
   { "custom_55.EDITOR.xpos",                   "22"                    },
   { "custom_55.EDITOR.ypos",                   "3"                     },
 
-  { "custom_56",                               "RocksCE.pcx"           },
+  { "custom_56",                               "RocksCE.png"           },
   { "custom_56.xpos",                          "7"                     },
   { "custom_56.ypos",                          "3"                     },
   { "custom_56.frames",                                "1"                     },
-  { "custom_56.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_56.EDITOR",                                "RocksCE.png"           },
   { "custom_56.EDITOR.xpos",                   "23"                    },
   { "custom_56.EDITOR.ypos",                   "3"                     },
 
-  { "custom_57",                               "RocksCE.pcx"           },
+  { "custom_57",                               "RocksCE.png"           },
   { "custom_57.xpos",                          "8"                     },
   { "custom_57.ypos",                          "3"                     },
   { "custom_57.frames",                                "1"                     },
-  { "custom_57.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_57.EDITOR",                                "RocksCE.png"           },
   { "custom_57.EDITOR.xpos",                   "24"                    },
   { "custom_57.EDITOR.ypos",                   "3"                     },
 
-  { "custom_58",                               "RocksCE.pcx"           },
+  { "custom_58",                               "RocksCE.png"           },
   { "custom_58.xpos",                          "9"                     },
   { "custom_58.ypos",                          "3"                     },
   { "custom_58.frames",                                "1"                     },
-  { "custom_58.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_58.EDITOR",                                "RocksCE.png"           },
   { "custom_58.EDITOR.xpos",                   "25"                    },
   { "custom_58.EDITOR.ypos",                   "3"                     },
 
-  { "custom_59",                               "RocksCE.pcx"           },
+  { "custom_59",                               "RocksCE.png"           },
   { "custom_59.xpos",                          "10"                    },
   { "custom_59.ypos",                          "3"                     },
   { "custom_59.frames",                                "1"                     },
-  { "custom_59.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_59.EDITOR",                                "RocksCE.png"           },
   { "custom_59.EDITOR.xpos",                   "26"                    },
   { "custom_59.EDITOR.ypos",                   "3"                     },
 
-  { "custom_60",                               "RocksCE.pcx"           },
+  { "custom_60",                               "RocksCE.png"           },
   { "custom_60.xpos",                          "11"                    },
   { "custom_60.ypos",                          "3"                     },
   { "custom_60.frames",                                "1"                     },
-  { "custom_60.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_60.EDITOR",                                "RocksCE.png"           },
   { "custom_60.EDITOR.xpos",                   "27"                    },
   { "custom_60.EDITOR.ypos",                   "3"                     },
 
-  { "custom_61",                               "RocksCE.pcx"           },
+  { "custom_61",                               "RocksCE.png"           },
   { "custom_61.xpos",                          "12"                    },
   { "custom_61.ypos",                          "3"                     },
   { "custom_61.frames",                                "1"                     },
-  { "custom_61.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_61.EDITOR",                                "RocksCE.png"           },
   { "custom_61.EDITOR.xpos",                   "28"                    },
   { "custom_61.EDITOR.ypos",                   "3"                     },
 
-  { "custom_62",                               "RocksCE.pcx"           },
+  { "custom_62",                               "RocksCE.png"           },
   { "custom_62.xpos",                          "13"                    },
   { "custom_62.ypos",                          "3"                     },
   { "custom_62.frames",                                "1"                     },
-  { "custom_62.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_62.EDITOR",                                "RocksCE.png"           },
   { "custom_62.EDITOR.xpos",                   "29"                    },
   { "custom_62.EDITOR.ypos",                   "3"                     },
 
-  { "custom_63",                               "RocksCE.pcx"           },
+  { "custom_63",                               "RocksCE.png"           },
   { "custom_63.xpos",                          "14"                    },
   { "custom_63.ypos",                          "3"                     },
   { "custom_63.frames",                                "1"                     },
-  { "custom_63.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_63.EDITOR",                                "RocksCE.png"           },
   { "custom_63.EDITOR.xpos",                   "30"                    },
   { "custom_63.EDITOR.ypos",                   "3"                     },
 
-  { "custom_64",                               "RocksCE.pcx"           },
+  { "custom_64",                               "RocksCE.png"           },
   { "custom_64.xpos",                          "15"                    },
   { "custom_64.ypos",                          "3"                     },
   { "custom_64.frames",                                "1"                     },
-  { "custom_64.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_64.EDITOR",                                "RocksCE.png"           },
   { "custom_64.EDITOR.xpos",                   "31"                    },
   { "custom_64.EDITOR.ypos",                   "3"                     },
 
-  { "custom_65",                               "RocksCE.pcx"           },
+  { "custom_65",                               "RocksCE.png"           },
   { "custom_65.xpos",                          "0"                     },
   { "custom_65.ypos",                          "4"                     },
   { "custom_65.frames",                                "1"                     },
-  { "custom_65.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_65.EDITOR",                                "RocksCE.png"           },
   { "custom_65.EDITOR.xpos",                   "16"                    },
   { "custom_65.EDITOR.ypos",                   "4"                     },
 
-  { "custom_66",                               "RocksCE.pcx"           },
+  { "custom_66",                               "RocksCE.png"           },
   { "custom_66.xpos",                          "1"                     },
   { "custom_66.ypos",                          "4"                     },
   { "custom_66.frames",                                "1"                     },
-  { "custom_66.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_66.EDITOR",                                "RocksCE.png"           },
   { "custom_66.EDITOR.xpos",                   "17"                    },
   { "custom_66.EDITOR.ypos",                   "4"                     },
 
-  { "custom_67",                               "RocksCE.pcx"           },
+  { "custom_67",                               "RocksCE.png"           },
   { "custom_67.xpos",                          "2"                     },
   { "custom_67.ypos",                          "4"                     },
   { "custom_67.frames",                                "1"                     },
-  { "custom_67.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_67.EDITOR",                                "RocksCE.png"           },
   { "custom_67.EDITOR.xpos",                   "18"                    },
   { "custom_67.EDITOR.ypos",                   "4"                     },
 
-  { "custom_68",                               "RocksCE.pcx"           },
+  { "custom_68",                               "RocksCE.png"           },
   { "custom_68.xpos",                          "3"                     },
   { "custom_68.ypos",                          "4"                     },
   { "custom_68.frames",                                "1"                     },
-  { "custom_68.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_68.EDITOR",                                "RocksCE.png"           },
   { "custom_68.EDITOR.xpos",                   "19"                    },
   { "custom_68.EDITOR.ypos",                   "4"                     },
 
-  { "custom_69",                               "RocksCE.pcx"           },
+  { "custom_69",                               "RocksCE.png"           },
   { "custom_69.xpos",                          "4"                     },
   { "custom_69.ypos",                          "4"                     },
   { "custom_69.frames",                                "1"                     },
-  { "custom_69.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_69.EDITOR",                                "RocksCE.png"           },
   { "custom_69.EDITOR.xpos",                   "20"                    },
   { "custom_69.EDITOR.ypos",                   "4"                     },
 
-  { "custom_70",                               "RocksCE.pcx"           },
+  { "custom_70",                               "RocksCE.png"           },
   { "custom_70.xpos",                          "5"                     },
   { "custom_70.ypos",                          "4"                     },
   { "custom_70.frames",                                "1"                     },
-  { "custom_70.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_70.EDITOR",                                "RocksCE.png"           },
   { "custom_70.EDITOR.xpos",                   "21"                    },
   { "custom_70.EDITOR.ypos",                   "4"                     },
 
-  { "custom_71",                               "RocksCE.pcx"           },
+  { "custom_71",                               "RocksCE.png"           },
   { "custom_71.xpos",                          "6"                     },
   { "custom_71.ypos",                          "4"                     },
   { "custom_71.frames",                                "1"                     },
-  { "custom_71.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_71.EDITOR",                                "RocksCE.png"           },
   { "custom_71.EDITOR.xpos",                   "22"                    },
   { "custom_71.EDITOR.ypos",                   "4"                     },
 
-  { "custom_72",                               "RocksCE.pcx"           },
+  { "custom_72",                               "RocksCE.png"           },
   { "custom_72.xpos",                          "7"                     },
   { "custom_72.ypos",                          "4"                     },
   { "custom_72.frames",                                "1"                     },
-  { "custom_72.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_72.EDITOR",                                "RocksCE.png"           },
   { "custom_72.EDITOR.xpos",                   "23"                    },
   { "custom_72.EDITOR.ypos",                   "4"                     },
 
-  { "custom_73",                               "RocksCE.pcx"           },
+  { "custom_73",                               "RocksCE.png"           },
   { "custom_73.xpos",                          "8"                     },
   { "custom_73.ypos",                          "4"                     },
   { "custom_73.frames",                                "1"                     },
-  { "custom_73.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_73.EDITOR",                                "RocksCE.png"           },
   { "custom_73.EDITOR.xpos",                   "24"                    },
   { "custom_73.EDITOR.ypos",                   "4"                     },
 
-  { "custom_74",                               "RocksCE.pcx"           },
+  { "custom_74",                               "RocksCE.png"           },
   { "custom_74.xpos",                          "9"                     },
   { "custom_74.ypos",                          "4"                     },
   { "custom_74.frames",                                "1"                     },
-  { "custom_74.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_74.EDITOR",                                "RocksCE.png"           },
   { "custom_74.EDITOR.xpos",                   "25"                    },
   { "custom_74.EDITOR.ypos",                   "4"                     },
 
-  { "custom_75",                               "RocksCE.pcx"           },
+  { "custom_75",                               "RocksCE.png"           },
   { "custom_75.xpos",                          "10"                    },
   { "custom_75.ypos",                          "4"                     },
   { "custom_75.frames",                                "1"                     },
-  { "custom_75.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_75.EDITOR",                                "RocksCE.png"           },
   { "custom_75.EDITOR.xpos",                   "26"                    },
   { "custom_75.EDITOR.ypos",                   "4"                     },
 
-  { "custom_76",                               "RocksCE.pcx"           },
+  { "custom_76",                               "RocksCE.png"           },
   { "custom_76.xpos",                          "11"                    },
   { "custom_76.ypos",                          "4"                     },
   { "custom_76.frames",                                "1"                     },
-  { "custom_76.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_76.EDITOR",                                "RocksCE.png"           },
   { "custom_76.EDITOR.xpos",                   "27"                    },
   { "custom_76.EDITOR.ypos",                   "4"                     },
 
-  { "custom_77",                               "RocksCE.pcx"           },
+  { "custom_77",                               "RocksCE.png"           },
   { "custom_77.xpos",                          "12"                    },
   { "custom_77.ypos",                          "4"                     },
   { "custom_77.frames",                                "1"                     },
-  { "custom_77.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_77.EDITOR",                                "RocksCE.png"           },
   { "custom_77.EDITOR.xpos",                   "28"                    },
   { "custom_77.EDITOR.ypos",                   "4"                     },
 
-  { "custom_78",                               "RocksCE.pcx"           },
+  { "custom_78",                               "RocksCE.png"           },
   { "custom_78.xpos",                          "13"                    },
   { "custom_78.ypos",                          "4"                     },
   { "custom_78.frames",                                "1"                     },
-  { "custom_78.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_78.EDITOR",                                "RocksCE.png"           },
   { "custom_78.EDITOR.xpos",                   "29"                    },
   { "custom_78.EDITOR.ypos",                   "4"                     },
 
-  { "custom_79",                               "RocksCE.pcx"           },
+  { "custom_79",                               "RocksCE.png"           },
   { "custom_79.xpos",                          "14"                    },
   { "custom_79.ypos",                          "4"                     },
   { "custom_79.frames",                                "1"                     },
-  { "custom_79.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_79.EDITOR",                                "RocksCE.png"           },
   { "custom_79.EDITOR.xpos",                   "30"                    },
   { "custom_79.EDITOR.ypos",                   "4"                     },
 
-  { "custom_80",                               "RocksCE.pcx"           },
+  { "custom_80",                               "RocksCE.png"           },
   { "custom_80.xpos",                          "15"                    },
   { "custom_80.ypos",                          "4"                     },
   { "custom_80.frames",                                "1"                     },
-  { "custom_80.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_80.EDITOR",                                "RocksCE.png"           },
   { "custom_80.EDITOR.xpos",                   "31"                    },
   { "custom_80.EDITOR.ypos",                   "4"                     },
 
-  { "custom_81",                               "RocksCE.pcx"           },
+  { "custom_81",                               "RocksCE.png"           },
   { "custom_81.xpos",                          "0"                     },
   { "custom_81.ypos",                          "5"                     },
   { "custom_81.frames",                                "1"                     },
-  { "custom_81.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_81.EDITOR",                                "RocksCE.png"           },
   { "custom_81.EDITOR.xpos",                   "16"                    },
   { "custom_81.EDITOR.ypos",                   "5"                     },
 
-  { "custom_82",                               "RocksCE.pcx"           },
+  { "custom_82",                               "RocksCE.png"           },
   { "custom_82.xpos",                          "1"                     },
   { "custom_82.ypos",                          "5"                     },
   { "custom_82.frames",                                "1"                     },
-  { "custom_82.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_82.EDITOR",                                "RocksCE.png"           },
   { "custom_82.EDITOR.xpos",                   "17"                    },
   { "custom_82.EDITOR.ypos",                   "5"                     },
 
-  { "custom_83",                               "RocksCE.pcx"           },
+  { "custom_83",                               "RocksCE.png"           },
   { "custom_83.xpos",                          "2"                     },
   { "custom_83.ypos",                          "5"                     },
   { "custom_83.frames",                                "1"                     },
-  { "custom_83.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_83.EDITOR",                                "RocksCE.png"           },
   { "custom_83.EDITOR.xpos",                   "18"                    },
   { "custom_83.EDITOR.ypos",                   "5"                     },
 
-  { "custom_84",                               "RocksCE.pcx"           },
+  { "custom_84",                               "RocksCE.png"           },
   { "custom_84.xpos",                          "3"                     },
   { "custom_84.ypos",                          "5"                     },
   { "custom_84.frames",                                "1"                     },
-  { "custom_84.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_84.EDITOR",                                "RocksCE.png"           },
   { "custom_84.EDITOR.xpos",                   "19"                    },
   { "custom_84.EDITOR.ypos",                   "5"                     },
 
-  { "custom_85",                               "RocksCE.pcx"           },
+  { "custom_85",                               "RocksCE.png"           },
   { "custom_85.xpos",                          "4"                     },
   { "custom_85.ypos",                          "5"                     },
   { "custom_85.frames",                                "1"                     },
-  { "custom_85.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_85.EDITOR",                                "RocksCE.png"           },
   { "custom_85.EDITOR.xpos",                   "20"                    },
   { "custom_85.EDITOR.ypos",                   "5"                     },
 
-  { "custom_86",                               "RocksCE.pcx"           },
+  { "custom_86",                               "RocksCE.png"           },
   { "custom_86.xpos",                          "5"                     },
   { "custom_86.ypos",                          "5"                     },
   { "custom_86.frames",                                "1"                     },
-  { "custom_86.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_86.EDITOR",                                "RocksCE.png"           },
   { "custom_86.EDITOR.xpos",                   "21"                    },
   { "custom_86.EDITOR.ypos",                   "5"                     },
 
-  { "custom_87",                               "RocksCE.pcx"           },
+  { "custom_87",                               "RocksCE.png"           },
   { "custom_87.xpos",                          "6"                     },
   { "custom_87.ypos",                          "5"                     },
   { "custom_87.frames",                                "1"                     },
-  { "custom_87.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_87.EDITOR",                                "RocksCE.png"           },
   { "custom_87.EDITOR.xpos",                   "22"                    },
   { "custom_87.EDITOR.ypos",                   "5"                     },
 
-  { "custom_88",                               "RocksCE.pcx"           },
+  { "custom_88",                               "RocksCE.png"           },
   { "custom_88.xpos",                          "7"                     },
   { "custom_88.ypos",                          "5"                     },
   { "custom_88.frames",                                "1"                     },
-  { "custom_88.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_88.EDITOR",                                "RocksCE.png"           },
   { "custom_88.EDITOR.xpos",                   "23"                    },
   { "custom_88.EDITOR.ypos",                   "5"                     },
 
-  { "custom_89",                               "RocksCE.pcx"           },
+  { "custom_89",                               "RocksCE.png"           },
   { "custom_89.xpos",                          "8"                     },
   { "custom_89.ypos",                          "5"                     },
   { "custom_89.frames",                                "1"                     },
-  { "custom_89.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_89.EDITOR",                                "RocksCE.png"           },
   { "custom_89.EDITOR.xpos",                   "24"                    },
   { "custom_89.EDITOR.ypos",                   "5"                     },
 
-  { "custom_90",                               "RocksCE.pcx"           },
+  { "custom_90",                               "RocksCE.png"           },
   { "custom_90.xpos",                          "9"                     },
   { "custom_90.ypos",                          "5"                     },
   { "custom_90.frames",                                "1"                     },
-  { "custom_90.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_90.EDITOR",                                "RocksCE.png"           },
   { "custom_90.EDITOR.xpos",                   "25"                    },
   { "custom_90.EDITOR.ypos",                   "5"                     },
 
-  { "custom_91",                               "RocksCE.pcx"           },
+  { "custom_91",                               "RocksCE.png"           },
   { "custom_91.xpos",                          "10"                    },
   { "custom_91.ypos",                          "5"                     },
   { "custom_91.frames",                                "1"                     },
-  { "custom_91.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_91.EDITOR",                                "RocksCE.png"           },
   { "custom_91.EDITOR.xpos",                   "26"                    },
   { "custom_91.EDITOR.ypos",                   "5"                     },
 
-  { "custom_92",                               "RocksCE.pcx"           },
+  { "custom_92",                               "RocksCE.png"           },
   { "custom_92.xpos",                          "11"                    },
   { "custom_92.ypos",                          "5"                     },
   { "custom_92.frames",                                "1"                     },
-  { "custom_92.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_92.EDITOR",                                "RocksCE.png"           },
   { "custom_92.EDITOR.xpos",                   "27"                    },
   { "custom_92.EDITOR.ypos",                   "5"                     },
 
-  { "custom_93",                               "RocksCE.pcx"           },
+  { "custom_93",                               "RocksCE.png"           },
   { "custom_93.xpos",                          "12"                    },
   { "custom_93.ypos",                          "5"                     },
   { "custom_93.frames",                                "1"                     },
-  { "custom_93.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_93.EDITOR",                                "RocksCE.png"           },
   { "custom_93.EDITOR.xpos",                   "28"                    },
   { "custom_93.EDITOR.ypos",                   "5"                     },
 
-  { "custom_94",                               "RocksCE.pcx"           },
+  { "custom_94",                               "RocksCE.png"           },
   { "custom_94.xpos",                          "13"                    },
   { "custom_94.ypos",                          "5"                     },
   { "custom_94.frames",                                "1"                     },
-  { "custom_94.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_94.EDITOR",                                "RocksCE.png"           },
   { "custom_94.EDITOR.xpos",                   "29"                    },
   { "custom_94.EDITOR.ypos",                   "5"                     },
 
-  { "custom_95",                               "RocksCE.pcx"           },
+  { "custom_95",                               "RocksCE.png"           },
   { "custom_95.xpos",                          "14"                    },
   { "custom_95.ypos",                          "5"                     },
   { "custom_95.frames",                                "1"                     },
-  { "custom_95.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_95.EDITOR",                                "RocksCE.png"           },
   { "custom_95.EDITOR.xpos",                   "30"                    },
   { "custom_95.EDITOR.ypos",                   "5"                     },
 
-  { "custom_96",                               "RocksCE.pcx"           },
+  { "custom_96",                               "RocksCE.png"           },
   { "custom_96.xpos",                          "15"                    },
   { "custom_96.ypos",                          "5"                     },
   { "custom_96.frames",                                "1"                     },
-  { "custom_96.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_96.EDITOR",                                "RocksCE.png"           },
   { "custom_96.EDITOR.xpos",                   "31"                    },
   { "custom_96.EDITOR.ypos",                   "5"                     },
 
-  { "custom_97",                               "RocksCE.pcx"           },
+  { "custom_97",                               "RocksCE.png"           },
   { "custom_97.xpos",                          "0"                     },
   { "custom_97.ypos",                          "6"                     },
   { "custom_97.frames",                                "1"                     },
-  { "custom_97.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_97.EDITOR",                                "RocksCE.png"           },
   { "custom_97.EDITOR.xpos",                   "16"                    },
   { "custom_97.EDITOR.ypos",                   "6"                     },
 
-  { "custom_98",                               "RocksCE.pcx"           },
+  { "custom_98",                               "RocksCE.png"           },
   { "custom_98.xpos",                          "1"                     },
   { "custom_98.ypos",                          "6"                     },
   { "custom_98.frames",                                "1"                     },
-  { "custom_98.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_98.EDITOR",                                "RocksCE.png"           },
   { "custom_98.EDITOR.xpos",                   "17"                    },
   { "custom_98.EDITOR.ypos",                   "6"                     },
 
-  { "custom_99",                               "RocksCE.pcx"           },
+  { "custom_99",                               "RocksCE.png"           },
   { "custom_99.xpos",                          "2"                     },
   { "custom_99.ypos",                          "6"                     },
   { "custom_99.frames",                                "1"                     },
-  { "custom_99.EDITOR",                                "RocksCE.pcx"           },
+  { "custom_99.EDITOR",                                "RocksCE.png"           },
   { "custom_99.EDITOR.xpos",                   "18"                    },
   { "custom_99.EDITOR.ypos",                   "6"                     },
 
-  { "custom_100",                              "RocksCE.pcx"           },
+  { "custom_100",                              "RocksCE.png"           },
   { "custom_100.xpos",                         "3"                     },
   { "custom_100.ypos",                         "6"                     },
   { "custom_100.frames",                       "1"                     },
-  { "custom_100.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_100.EDITOR",                       "RocksCE.png"           },
   { "custom_100.EDITOR.xpos",                  "19"                    },
   { "custom_100.EDITOR.ypos",                  "6"                     },
 
-  { "custom_101",                              "RocksCE.pcx"           },
+  { "custom_101",                              "RocksCE.png"           },
   { "custom_101.xpos",                         "4"                     },
   { "custom_101.ypos",                         "6"                     },
   { "custom_101.frames",                       "1"                     },
-  { "custom_101.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_101.EDITOR",                       "RocksCE.png"           },
   { "custom_101.EDITOR.xpos",                  "20"                    },
   { "custom_101.EDITOR.ypos",                  "6"                     },
 
-  { "custom_102",                              "RocksCE.pcx"           },
+  { "custom_102",                              "RocksCE.png"           },
   { "custom_102.xpos",                         "5"                     },
   { "custom_102.ypos",                         "6"                     },
   { "custom_102.frames",                       "1"                     },
-  { "custom_102.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_102.EDITOR",                       "RocksCE.png"           },
   { "custom_102.EDITOR.xpos",                  "21"                    },
   { "custom_102.EDITOR.ypos",                  "6"                     },
 
-  { "custom_103",                              "RocksCE.pcx"           },
+  { "custom_103",                              "RocksCE.png"           },
   { "custom_103.xpos",                         "6"                     },
   { "custom_103.ypos",                         "6"                     },
   { "custom_103.frames",                       "1"                     },
-  { "custom_103.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_103.EDITOR",                       "RocksCE.png"           },
   { "custom_103.EDITOR.xpos",                  "22"                    },
   { "custom_103.EDITOR.ypos",                  "6"                     },
 
-  { "custom_104",                              "RocksCE.pcx"           },
+  { "custom_104",                              "RocksCE.png"           },
   { "custom_104.xpos",                         "7"                     },
   { "custom_104.ypos",                         "6"                     },
   { "custom_104.frames",                       "1"                     },
-  { "custom_104.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_104.EDITOR",                       "RocksCE.png"           },
   { "custom_104.EDITOR.xpos",                  "23"                    },
   { "custom_104.EDITOR.ypos",                  "6"                     },
 
-  { "custom_105",                              "RocksCE.pcx"           },
+  { "custom_105",                              "RocksCE.png"           },
   { "custom_105.xpos",                         "8"                     },
   { "custom_105.ypos",                         "6"                     },
   { "custom_105.frames",                       "1"                     },
-  { "custom_105.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_105.EDITOR",                       "RocksCE.png"           },
   { "custom_105.EDITOR.xpos",                  "24"                    },
   { "custom_105.EDITOR.ypos",                  "6"                     },
 
-  { "custom_106",                              "RocksCE.pcx"           },
+  { "custom_106",                              "RocksCE.png"           },
   { "custom_106.xpos",                         "9"                     },
   { "custom_106.ypos",                         "6"                     },
   { "custom_106.frames",                       "1"                     },
-  { "custom_106.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_106.EDITOR",                       "RocksCE.png"           },
   { "custom_106.EDITOR.xpos",                  "25"                    },
   { "custom_106.EDITOR.ypos",                  "6"                     },
 
-  { "custom_107",                              "RocksCE.pcx"           },
+  { "custom_107",                              "RocksCE.png"           },
   { "custom_107.xpos",                         "10"                    },
   { "custom_107.ypos",                         "6"                     },
   { "custom_107.frames",                       "1"                     },
-  { "custom_107.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_107.EDITOR",                       "RocksCE.png"           },
   { "custom_107.EDITOR.xpos",                  "26"                    },
   { "custom_107.EDITOR.ypos",                  "6"                     },
 
-  { "custom_108",                              "RocksCE.pcx"           },
+  { "custom_108",                              "RocksCE.png"           },
   { "custom_108.xpos",                         "11"                    },
   { "custom_108.ypos",                         "6"                     },
   { "custom_108.frames",                       "1"                     },
-  { "custom_108.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_108.EDITOR",                       "RocksCE.png"           },
   { "custom_108.EDITOR.xpos",                  "27"                    },
   { "custom_108.EDITOR.ypos",                  "6"                     },
 
-  { "custom_109",                              "RocksCE.pcx"           },
+  { "custom_109",                              "RocksCE.png"           },
   { "custom_109.xpos",                         "12"                    },
   { "custom_109.ypos",                         "6"                     },
   { "custom_109.frames",                       "1"                     },
-  { "custom_109.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_109.EDITOR",                       "RocksCE.png"           },
   { "custom_109.EDITOR.xpos",                  "28"                    },
   { "custom_109.EDITOR.ypos",                  "6"                     },
 
-  { "custom_110",                              "RocksCE.pcx"           },
+  { "custom_110",                              "RocksCE.png"           },
   { "custom_110.xpos",                         "13"                    },
   { "custom_110.ypos",                         "6"                     },
   { "custom_110.frames",                       "1"                     },
-  { "custom_110.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_110.EDITOR",                       "RocksCE.png"           },
   { "custom_110.EDITOR.xpos",                  "29"                    },
   { "custom_110.EDITOR.ypos",                  "6"                     },
 
-  { "custom_111",                              "RocksCE.pcx"           },
+  { "custom_111",                              "RocksCE.png"           },
   { "custom_111.xpos",                         "14"                    },
   { "custom_111.ypos",                         "6"                     },
   { "custom_111.frames",                       "1"                     },
-  { "custom_111.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_111.EDITOR",                       "RocksCE.png"           },
   { "custom_111.EDITOR.xpos",                  "30"                    },
   { "custom_111.EDITOR.ypos",                  "6"                     },
 
-  { "custom_112",                              "RocksCE.pcx"           },
+  { "custom_112",                              "RocksCE.png"           },
   { "custom_112.xpos",                         "15"                    },
   { "custom_112.ypos",                         "6"                     },
   { "custom_112.frames",                       "1"                     },
-  { "custom_112.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_112.EDITOR",                       "RocksCE.png"           },
   { "custom_112.EDITOR.xpos",                  "31"                    },
   { "custom_112.EDITOR.ypos",                  "6"                     },
 
-  { "custom_113",                              "RocksCE.pcx"           },
+  { "custom_113",                              "RocksCE.png"           },
   { "custom_113.xpos",                         "0"                     },
   { "custom_113.ypos",                         "7"                     },
   { "custom_113.frames",                       "1"                     },
-  { "custom_113.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_113.EDITOR",                       "RocksCE.png"           },
   { "custom_113.EDITOR.xpos",                  "16"                    },
   { "custom_113.EDITOR.ypos",                  "7"                     },
 
-  { "custom_114",                              "RocksCE.pcx"           },
+  { "custom_114",                              "RocksCE.png"           },
   { "custom_114.xpos",                         "1"                     },
   { "custom_114.ypos",                         "7"                     },
   { "custom_114.frames",                       "1"                     },
-  { "custom_114.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_114.EDITOR",                       "RocksCE.png"           },
   { "custom_114.EDITOR.xpos",                  "17"                    },
   { "custom_114.EDITOR.ypos",                  "7"                     },
 
-  { "custom_115",                              "RocksCE.pcx"           },
+  { "custom_115",                              "RocksCE.png"           },
   { "custom_115.xpos",                         "2"                     },
   { "custom_115.ypos",                         "7"                     },
   { "custom_115.frames",                       "1"                     },
-  { "custom_115.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_115.EDITOR",                       "RocksCE.png"           },
   { "custom_115.EDITOR.xpos",                  "18"                    },
   { "custom_115.EDITOR.ypos",                  "7"                     },
 
-  { "custom_116",                              "RocksCE.pcx"           },
+  { "custom_116",                              "RocksCE.png"           },
   { "custom_116.xpos",                         "3"                     },
   { "custom_116.ypos",                         "7"                     },
   { "custom_116.frames",                       "1"                     },
-  { "custom_116.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_116.EDITOR",                       "RocksCE.png"           },
   { "custom_116.EDITOR.xpos",                  "19"                    },
   { "custom_116.EDITOR.ypos",                  "7"                     },
 
-  { "custom_117",                              "RocksCE.pcx"           },
+  { "custom_117",                              "RocksCE.png"           },
   { "custom_117.xpos",                         "4"                     },
   { "custom_117.ypos",                         "7"                     },
   { "custom_117.frames",                       "1"                     },
-  { "custom_117.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_117.EDITOR",                       "RocksCE.png"           },
   { "custom_117.EDITOR.xpos",                  "20"                    },
   { "custom_117.EDITOR.ypos",                  "7"                     },
 
-  { "custom_118",                              "RocksCE.pcx"           },
+  { "custom_118",                              "RocksCE.png"           },
   { "custom_118.xpos",                         "5"                     },
   { "custom_118.ypos",                         "7"                     },
   { "custom_118.frames",                       "1"                     },
-  { "custom_118.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_118.EDITOR",                       "RocksCE.png"           },
   { "custom_118.EDITOR.xpos",                  "21"                    },
   { "custom_118.EDITOR.ypos",                  "7"                     },
 
-  { "custom_119",                              "RocksCE.pcx"           },
+  { "custom_119",                              "RocksCE.png"           },
   { "custom_119.xpos",                         "6"                     },
   { "custom_119.ypos",                         "7"                     },
   { "custom_119.frames",                       "1"                     },
-  { "custom_119.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_119.EDITOR",                       "RocksCE.png"           },
   { "custom_119.EDITOR.xpos",                  "22"                    },
   { "custom_119.EDITOR.ypos",                  "7"                     },
 
-  { "custom_120",                              "RocksCE.pcx"           },
+  { "custom_120",                              "RocksCE.png"           },
   { "custom_120.xpos",                         "7"                     },
   { "custom_120.ypos",                         "7"                     },
   { "custom_120.frames",                       "1"                     },
-  { "custom_120.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_120.EDITOR",                       "RocksCE.png"           },
   { "custom_120.EDITOR.xpos",                  "23"                    },
   { "custom_120.EDITOR.ypos",                  "7"                     },
 
-  { "custom_121",                              "RocksCE.pcx"           },
+  { "custom_121",                              "RocksCE.png"           },
   { "custom_121.xpos",                         "8"                     },
   { "custom_121.ypos",                         "7"                     },
   { "custom_121.frames",                       "1"                     },
-  { "custom_121.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_121.EDITOR",                       "RocksCE.png"           },
   { "custom_121.EDITOR.xpos",                  "24"                    },
   { "custom_121.EDITOR.ypos",                  "7"                     },
 
-  { "custom_122",                              "RocksCE.pcx"           },
+  { "custom_122",                              "RocksCE.png"           },
   { "custom_122.xpos",                         "9"                     },
   { "custom_122.ypos",                         "7"                     },
   { "custom_122.frames",                       "1"                     },
-  { "custom_122.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_122.EDITOR",                       "RocksCE.png"           },
   { "custom_122.EDITOR.xpos",                  "25"                    },
   { "custom_122.EDITOR.ypos",                  "7"                     },
 
-  { "custom_123",                              "RocksCE.pcx"           },
+  { "custom_123",                              "RocksCE.png"           },
   { "custom_123.xpos",                         "10"                    },
   { "custom_123.ypos",                         "7"                     },
   { "custom_123.frames",                       "1"                     },
-  { "custom_123.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_123.EDITOR",                       "RocksCE.png"           },
   { "custom_123.EDITOR.xpos",                  "26"                    },
   { "custom_123.EDITOR.ypos",                  "7"                     },
 
-  { "custom_124",                              "RocksCE.pcx"           },
+  { "custom_124",                              "RocksCE.png"           },
   { "custom_124.xpos",                         "11"                    },
   { "custom_124.ypos",                         "7"                     },
   { "custom_124.frames",                       "1"                     },
-  { "custom_124.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_124.EDITOR",                       "RocksCE.png"           },
   { "custom_124.EDITOR.xpos",                  "27"                    },
   { "custom_124.EDITOR.ypos",                  "7"                     },
 
-  { "custom_125",                              "RocksCE.pcx"           },
+  { "custom_125",                              "RocksCE.png"           },
   { "custom_125.xpos",                         "12"                    },
   { "custom_125.ypos",                         "7"                     },
   { "custom_125.frames",                       "1"                     },
-  { "custom_125.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_125.EDITOR",                       "RocksCE.png"           },
   { "custom_125.EDITOR.xpos",                  "28"                    },
   { "custom_125.EDITOR.ypos",                  "7"                     },
 
-  { "custom_126",                              "RocksCE.pcx"           },
+  { "custom_126",                              "RocksCE.png"           },
   { "custom_126.xpos",                         "13"                    },
   { "custom_126.ypos",                         "7"                     },
   { "custom_126.frames",                       "1"                     },
-  { "custom_126.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_126.EDITOR",                       "RocksCE.png"           },
   { "custom_126.EDITOR.xpos",                  "29"                    },
   { "custom_126.EDITOR.ypos",                  "7"                     },
 
-  { "custom_127",                              "RocksCE.pcx"           },
+  { "custom_127",                              "RocksCE.png"           },
   { "custom_127.xpos",                         "14"                    },
   { "custom_127.ypos",                         "7"                     },
   { "custom_127.frames",                       "1"                     },
-  { "custom_127.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_127.EDITOR",                       "RocksCE.png"           },
   { "custom_127.EDITOR.xpos",                  "30"                    },
   { "custom_127.EDITOR.ypos",                  "7"                     },
 
-  { "custom_128",                              "RocksCE.pcx"           },
+  { "custom_128",                              "RocksCE.png"           },
   { "custom_128.xpos",                         "15"                    },
   { "custom_128.ypos",                         "7"                     },
   { "custom_128.frames",                       "1"                     },
-  { "custom_128.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_128.EDITOR",                       "RocksCE.png"           },
   { "custom_128.EDITOR.xpos",                  "31"                    },
   { "custom_128.EDITOR.ypos",                  "7"                     },
 
-  { "custom_129",                              "RocksCE.pcx"           },
+  { "custom_129",                              "RocksCE.png"           },
   { "custom_129.xpos",                         "0"                     },
   { "custom_129.ypos",                         "8"                     },
   { "custom_129.frames",                       "1"                     },
-  { "custom_129.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_129.EDITOR",                       "RocksCE.png"           },
   { "custom_129.EDITOR.xpos",                  "16"                    },
   { "custom_129.EDITOR.ypos",                  "8"                     },
 
-  { "custom_130",                              "RocksCE.pcx"           },
+  { "custom_130",                              "RocksCE.png"           },
   { "custom_130.xpos",                         "1"                     },
   { "custom_130.ypos",                         "8"                     },
   { "custom_130.frames",                       "1"                     },
-  { "custom_130.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_130.EDITOR",                       "RocksCE.png"           },
   { "custom_130.EDITOR.xpos",                  "17"                    },
   { "custom_130.EDITOR.ypos",                  "8"                     },
 
-  { "custom_131",                              "RocksCE.pcx"           },
+  { "custom_131",                              "RocksCE.png"           },
   { "custom_131.xpos",                         "2"                     },
   { "custom_131.ypos",                         "8"                     },
   { "custom_131.frames",                       "1"                     },
-  { "custom_131.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_131.EDITOR",                       "RocksCE.png"           },
   { "custom_131.EDITOR.xpos",                  "18"                    },
   { "custom_131.EDITOR.ypos",                  "8"                     },
 
-  { "custom_132",                              "RocksCE.pcx"           },
+  { "custom_132",                              "RocksCE.png"           },
   { "custom_132.xpos",                         "3"                     },
   { "custom_132.ypos",                         "8"                     },
   { "custom_132.frames",                       "1"                     },
-  { "custom_132.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_132.EDITOR",                       "RocksCE.png"           },
   { "custom_132.EDITOR.xpos",                  "19"                    },
   { "custom_132.EDITOR.ypos",                  "8"                     },
 
-  { "custom_133",                              "RocksCE.pcx"           },
+  { "custom_133",                              "RocksCE.png"           },
   { "custom_133.xpos",                         "4"                     },
   { "custom_133.ypos",                         "8"                     },
   { "custom_133.frames",                       "1"                     },
-  { "custom_133.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_133.EDITOR",                       "RocksCE.png"           },
   { "custom_133.EDITOR.xpos",                  "20"                    },
   { "custom_133.EDITOR.ypos",                  "8"                     },
 
-  { "custom_134",                              "RocksCE.pcx"           },
+  { "custom_134",                              "RocksCE.png"           },
   { "custom_134.xpos",                         "5"                     },
   { "custom_134.ypos",                         "8"                     },
   { "custom_134.frames",                       "1"                     },
-  { "custom_134.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_134.EDITOR",                       "RocksCE.png"           },
   { "custom_134.EDITOR.xpos",                  "21"                    },
   { "custom_134.EDITOR.ypos",                  "8"                     },
 
-  { "custom_135",                              "RocksCE.pcx"           },
+  { "custom_135",                              "RocksCE.png"           },
   { "custom_135.xpos",                         "6"                     },
   { "custom_135.ypos",                         "8"                     },
   { "custom_135.frames",                       "1"                     },
-  { "custom_135.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_135.EDITOR",                       "RocksCE.png"           },
   { "custom_135.EDITOR.xpos",                  "22"                    },
   { "custom_135.EDITOR.ypos",                  "8"                     },
 
-  { "custom_136",                              "RocksCE.pcx"           },
+  { "custom_136",                              "RocksCE.png"           },
   { "custom_136.xpos",                         "7"                     },
   { "custom_136.ypos",                         "8"                     },
   { "custom_136.frames",                       "1"                     },
-  { "custom_136.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_136.EDITOR",                       "RocksCE.png"           },
   { "custom_136.EDITOR.xpos",                  "23"                    },
   { "custom_136.EDITOR.ypos",                  "8"                     },
 
-  { "custom_137",                              "RocksCE.pcx"           },
+  { "custom_137",                              "RocksCE.png"           },
   { "custom_137.xpos",                         "8"                     },
   { "custom_137.ypos",                         "8"                     },
   { "custom_137.frames",                       "1"                     },
-  { "custom_137.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_137.EDITOR",                       "RocksCE.png"           },
   { "custom_137.EDITOR.xpos",                  "24"                    },
   { "custom_137.EDITOR.ypos",                  "8"                     },
 
-  { "custom_138",                              "RocksCE.pcx"           },
+  { "custom_138",                              "RocksCE.png"           },
   { "custom_138.xpos",                         "9"                     },
   { "custom_138.ypos",                         "8"                     },
   { "custom_138.frames",                       "1"                     },
-  { "custom_138.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_138.EDITOR",                       "RocksCE.png"           },
   { "custom_138.EDITOR.xpos",                  "25"                    },
   { "custom_138.EDITOR.ypos",                  "8"                     },
 
-  { "custom_139",                              "RocksCE.pcx"           },
+  { "custom_139",                              "RocksCE.png"           },
   { "custom_139.xpos",                         "10"                    },
   { "custom_139.ypos",                         "8"                     },
   { "custom_139.frames",                       "1"                     },
-  { "custom_139.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_139.EDITOR",                       "RocksCE.png"           },
   { "custom_139.EDITOR.xpos",                  "26"                    },
   { "custom_139.EDITOR.ypos",                  "8"                     },
 
-  { "custom_140",                              "RocksCE.pcx"           },
+  { "custom_140",                              "RocksCE.png"           },
   { "custom_140.xpos",                         "11"                    },
   { "custom_140.ypos",                         "8"                     },
   { "custom_140.frames",                       "1"                     },
-  { "custom_140.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_140.EDITOR",                       "RocksCE.png"           },
   { "custom_140.EDITOR.xpos",                  "27"                    },
   { "custom_140.EDITOR.ypos",                  "8"                     },
 
-  { "custom_141",                              "RocksCE.pcx"           },
+  { "custom_141",                              "RocksCE.png"           },
   { "custom_141.xpos",                         "12"                    },
   { "custom_141.ypos",                         "8"                     },
   { "custom_141.frames",                       "1"                     },
-  { "custom_141.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_141.EDITOR",                       "RocksCE.png"           },
   { "custom_141.EDITOR.xpos",                  "28"                    },
   { "custom_141.EDITOR.ypos",                  "8"                     },
 
-  { "custom_142",                              "RocksCE.pcx"           },
+  { "custom_142",                              "RocksCE.png"           },
   { "custom_142.xpos",                         "13"                    },
   { "custom_142.ypos",                         "8"                     },
   { "custom_142.frames",                       "1"                     },
-  { "custom_142.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_142.EDITOR",                       "RocksCE.png"           },
   { "custom_142.EDITOR.xpos",                  "29"                    },
   { "custom_142.EDITOR.ypos",                  "8"                     },
 
-  { "custom_143",                              "RocksCE.pcx"           },
+  { "custom_143",                              "RocksCE.png"           },
   { "custom_143.xpos",                         "14"                    },
   { "custom_143.ypos",                         "8"                     },
   { "custom_143.frames",                       "1"                     },
-  { "custom_143.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_143.EDITOR",                       "RocksCE.png"           },
   { "custom_143.EDITOR.xpos",                  "30"                    },
   { "custom_143.EDITOR.ypos",                  "8"                     },
 
-  { "custom_144",                              "RocksCE.pcx"           },
+  { "custom_144",                              "RocksCE.png"           },
   { "custom_144.xpos",                         "15"                    },
   { "custom_144.ypos",                         "8"                     },
   { "custom_144.frames",                       "1"                     },
-  { "custom_144.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_144.EDITOR",                       "RocksCE.png"           },
   { "custom_144.EDITOR.xpos",                  "31"                    },
   { "custom_144.EDITOR.ypos",                  "8"                     },
 
-  { "custom_145",                              "RocksCE.pcx"           },
+  { "custom_145",                              "RocksCE.png"           },
   { "custom_145.xpos",                         "0"                     },
   { "custom_145.ypos",                         "9"                     },
   { "custom_145.frames",                       "1"                     },
-  { "custom_145.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_145.EDITOR",                       "RocksCE.png"           },
   { "custom_145.EDITOR.xpos",                  "16"                    },
   { "custom_145.EDITOR.ypos",                  "9"                     },
 
-  { "custom_146",                              "RocksCE.pcx"           },
+  { "custom_146",                              "RocksCE.png"           },
   { "custom_146.xpos",                         "1"                     },
   { "custom_146.ypos",                         "9"                     },
   { "custom_146.frames",                       "1"                     },
-  { "custom_146.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_146.EDITOR",                       "RocksCE.png"           },
   { "custom_146.EDITOR.xpos",                  "17"                    },
   { "custom_146.EDITOR.ypos",                  "9"                     },
 
-  { "custom_147",                              "RocksCE.pcx"           },
+  { "custom_147",                              "RocksCE.png"           },
   { "custom_147.xpos",                         "2"                     },
   { "custom_147.ypos",                         "9"                     },
   { "custom_147.frames",                       "1"                     },
-  { "custom_147.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_147.EDITOR",                       "RocksCE.png"           },
   { "custom_147.EDITOR.xpos",                  "18"                    },
   { "custom_147.EDITOR.ypos",                  "9"                     },
 
-  { "custom_148",                              "RocksCE.pcx"           },
+  { "custom_148",                              "RocksCE.png"           },
   { "custom_148.xpos",                         "3"                     },
   { "custom_148.ypos",                         "9"                     },
   { "custom_148.frames",                       "1"                     },
-  { "custom_148.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_148.EDITOR",                       "RocksCE.png"           },
   { "custom_148.EDITOR.xpos",                  "19"                    },
   { "custom_148.EDITOR.ypos",                  "9"                     },
 
-  { "custom_149",                              "RocksCE.pcx"           },
+  { "custom_149",                              "RocksCE.png"           },
   { "custom_149.xpos",                         "4"                     },
   { "custom_149.ypos",                         "9"                     },
   { "custom_149.frames",                       "1"                     },
-  { "custom_149.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_149.EDITOR",                       "RocksCE.png"           },
   { "custom_149.EDITOR.xpos",                  "20"                    },
   { "custom_149.EDITOR.ypos",                  "9"                     },
 
-  { "custom_150",                              "RocksCE.pcx"           },
+  { "custom_150",                              "RocksCE.png"           },
   { "custom_150.xpos",                         "5"                     },
   { "custom_150.ypos",                         "9"                     },
   { "custom_150.frames",                       "1"                     },
-  { "custom_150.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_150.EDITOR",                       "RocksCE.png"           },
   { "custom_150.EDITOR.xpos",                  "21"                    },
   { "custom_150.EDITOR.ypos",                  "9"                     },
 
-  { "custom_151",                              "RocksCE.pcx"           },
+  { "custom_151",                              "RocksCE.png"           },
   { "custom_151.xpos",                         "6"                     },
   { "custom_151.ypos",                         "9"                     },
   { "custom_151.frames",                       "1"                     },
-  { "custom_151.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_151.EDITOR",                       "RocksCE.png"           },
   { "custom_151.EDITOR.xpos",                  "22"                    },
   { "custom_151.EDITOR.ypos",                  "9"                     },
 
-  { "custom_152",                              "RocksCE.pcx"           },
+  { "custom_152",                              "RocksCE.png"           },
   { "custom_152.xpos",                         "7"                     },
   { "custom_152.ypos",                         "9"                     },
   { "custom_152.frames",                       "1"                     },
-  { "custom_152.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_152.EDITOR",                       "RocksCE.png"           },
   { "custom_152.EDITOR.xpos",                  "23"                    },
   { "custom_152.EDITOR.ypos",                  "9"                     },
 
-  { "custom_153",                              "RocksCE.pcx"           },
+  { "custom_153",                              "RocksCE.png"           },
   { "custom_153.xpos",                         "8"                     },
   { "custom_153.ypos",                         "9"                     },
   { "custom_153.frames",                       "1"                     },
-  { "custom_153.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_153.EDITOR",                       "RocksCE.png"           },
   { "custom_153.EDITOR.xpos",                  "24"                    },
   { "custom_153.EDITOR.ypos",                  "9"                     },
 
-  { "custom_154",                              "RocksCE.pcx"           },
+  { "custom_154",                              "RocksCE.png"           },
   { "custom_154.xpos",                         "9"                     },
   { "custom_154.ypos",                         "9"                     },
   { "custom_154.frames",                       "1"                     },
-  { "custom_154.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_154.EDITOR",                       "RocksCE.png"           },
   { "custom_154.EDITOR.xpos",                  "25"                    },
   { "custom_154.EDITOR.ypos",                  "9"                     },
 
-  { "custom_155",                              "RocksCE.pcx"           },
+  { "custom_155",                              "RocksCE.png"           },
   { "custom_155.xpos",                         "10"                    },
   { "custom_155.ypos",                         "9"                     },
   { "custom_155.frames",                       "1"                     },
-  { "custom_155.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_155.EDITOR",                       "RocksCE.png"           },
   { "custom_155.EDITOR.xpos",                  "26"                    },
   { "custom_155.EDITOR.ypos",                  "9"                     },
 
-  { "custom_156",                              "RocksCE.pcx"           },
+  { "custom_156",                              "RocksCE.png"           },
   { "custom_156.xpos",                         "11"                    },
   { "custom_156.ypos",                         "9"                     },
   { "custom_156.frames",                       "1"                     },
-  { "custom_156.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_156.EDITOR",                       "RocksCE.png"           },
   { "custom_156.EDITOR.xpos",                  "27"                    },
   { "custom_156.EDITOR.ypos",                  "9"                     },
 
-  { "custom_157",                              "RocksCE.pcx"           },
+  { "custom_157",                              "RocksCE.png"           },
   { "custom_157.xpos",                         "12"                    },
   { "custom_157.ypos",                         "9"                     },
   { "custom_157.frames",                       "1"                     },
-  { "custom_157.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_157.EDITOR",                       "RocksCE.png"           },
   { "custom_157.EDITOR.xpos",                  "28"                    },
   { "custom_157.EDITOR.ypos",                  "9"                     },
 
-  { "custom_158",                              "RocksCE.pcx"           },
+  { "custom_158",                              "RocksCE.png"           },
   { "custom_158.xpos",                         "13"                    },
   { "custom_158.ypos",                         "9"                     },
   { "custom_158.frames",                       "1"                     },
-  { "custom_158.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_158.EDITOR",                       "RocksCE.png"           },
   { "custom_158.EDITOR.xpos",                  "29"                    },
   { "custom_158.EDITOR.ypos",                  "9"                     },
 
-  { "custom_159",                              "RocksCE.pcx"           },
+  { "custom_159",                              "RocksCE.png"           },
   { "custom_159.xpos",                         "14"                    },
   { "custom_159.ypos",                         "9"                     },
   { "custom_159.frames",                       "1"                     },
-  { "custom_159.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_159.EDITOR",                       "RocksCE.png"           },
   { "custom_159.EDITOR.xpos",                  "30"                    },
   { "custom_159.EDITOR.ypos",                  "9"                     },
 
-  { "custom_160",                              "RocksCE.pcx"           },
+  { "custom_160",                              "RocksCE.png"           },
   { "custom_160.xpos",                         "15"                    },
   { "custom_160.ypos",                         "9"                     },
   { "custom_160.frames",                       "1"                     },
-  { "custom_160.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_160.EDITOR",                       "RocksCE.png"           },
   { "custom_160.EDITOR.xpos",                  "31"                    },
   { "custom_160.EDITOR.ypos",                  "9"                     },
 
-  { "custom_161",                              "RocksCE.pcx"           },
+  { "custom_161",                              "RocksCE.png"           },
   { "custom_161.xpos",                         "0"                     },
   { "custom_161.ypos",                         "10"                    },
   { "custom_161.frames",                       "1"                     },
-  { "custom_161.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_161.EDITOR",                       "RocksCE.png"           },
   { "custom_161.EDITOR.xpos",                  "16"                    },
   { "custom_161.EDITOR.ypos",                  "10"                    },
 
-  { "custom_162",                              "RocksCE.pcx"           },
+  { "custom_162",                              "RocksCE.png"           },
   { "custom_162.xpos",                         "1"                     },
   { "custom_162.ypos",                         "10"                    },
   { "custom_162.frames",                       "1"                     },
-  { "custom_162.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_162.EDITOR",                       "RocksCE.png"           },
   { "custom_162.EDITOR.xpos",                  "17"                    },
   { "custom_162.EDITOR.ypos",                  "10"                    },
 
-  { "custom_163",                              "RocksCE.pcx"           },
+  { "custom_163",                              "RocksCE.png"           },
   { "custom_163.xpos",                         "2"                     },
   { "custom_163.ypos",                         "10"                    },
   { "custom_163.frames",                       "1"                     },
-  { "custom_163.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_163.EDITOR",                       "RocksCE.png"           },
   { "custom_163.EDITOR.xpos",                  "18"                    },
   { "custom_163.EDITOR.ypos",                  "10"                    },
 
-  { "custom_164",                              "RocksCE.pcx"           },
+  { "custom_164",                              "RocksCE.png"           },
   { "custom_164.xpos",                         "3"                     },
   { "custom_164.ypos",                         "10"                    },
   { "custom_164.frames",                       "1"                     },
-  { "custom_164.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_164.EDITOR",                       "RocksCE.png"           },
   { "custom_164.EDITOR.xpos",                  "19"                    },
   { "custom_164.EDITOR.ypos",                  "10"                    },
 
-  { "custom_165",                              "RocksCE.pcx"           },
+  { "custom_165",                              "RocksCE.png"           },
   { "custom_165.xpos",                         "4"                     },
   { "custom_165.ypos",                         "10"                    },
   { "custom_165.frames",                       "1"                     },
-  { "custom_165.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_165.EDITOR",                       "RocksCE.png"           },
   { "custom_165.EDITOR.xpos",                  "20"                    },
   { "custom_165.EDITOR.ypos",                  "10"                    },
 
-  { "custom_166",                              "RocksCE.pcx"           },
+  { "custom_166",                              "RocksCE.png"           },
   { "custom_166.xpos",                         "5"                     },
   { "custom_166.ypos",                         "10"                    },
   { "custom_166.frames",                       "1"                     },
-  { "custom_166.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_166.EDITOR",                       "RocksCE.png"           },
   { "custom_166.EDITOR.xpos",                  "21"                    },
   { "custom_166.EDITOR.ypos",                  "10"                    },
 
-  { "custom_167",                              "RocksCE.pcx"           },
+  { "custom_167",                              "RocksCE.png"           },
   { "custom_167.xpos",                         "6"                     },
   { "custom_167.ypos",                         "10"                    },
   { "custom_167.frames",                       "1"                     },
-  { "custom_167.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_167.EDITOR",                       "RocksCE.png"           },
   { "custom_167.EDITOR.xpos",                  "22"                    },
   { "custom_167.EDITOR.ypos",                  "10"                    },
 
-  { "custom_168",                              "RocksCE.pcx"           },
+  { "custom_168",                              "RocksCE.png"           },
   { "custom_168.xpos",                         "7"                     },
   { "custom_168.ypos",                         "10"                    },
   { "custom_168.frames",                       "1"                     },
-  { "custom_168.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_168.EDITOR",                       "RocksCE.png"           },
   { "custom_168.EDITOR.xpos",                  "23"                    },
   { "custom_168.EDITOR.ypos",                  "10"                    },
 
-  { "custom_169",                              "RocksCE.pcx"           },
+  { "custom_169",                              "RocksCE.png"           },
   { "custom_169.xpos",                         "8"                     },
   { "custom_169.ypos",                         "10"                    },
   { "custom_169.frames",                       "1"                     },
-  { "custom_169.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_169.EDITOR",                       "RocksCE.png"           },
   { "custom_169.EDITOR.xpos",                  "24"                    },
   { "custom_169.EDITOR.ypos",                  "10"                    },
 
-  { "custom_170",                              "RocksCE.pcx"           },
+  { "custom_170",                              "RocksCE.png"           },
   { "custom_170.xpos",                         "9"                     },
   { "custom_170.ypos",                         "10"                    },
   { "custom_170.frames",                       "1"                     },
-  { "custom_170.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_170.EDITOR",                       "RocksCE.png"           },
   { "custom_170.EDITOR.xpos",                  "25"                    },
   { "custom_170.EDITOR.ypos",                  "10"                    },
 
-  { "custom_171",                              "RocksCE.pcx"           },
+  { "custom_171",                              "RocksCE.png"           },
   { "custom_171.xpos",                         "10"                    },
   { "custom_171.ypos",                         "10"                    },
   { "custom_171.frames",                       "1"                     },
-  { "custom_171.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_171.EDITOR",                       "RocksCE.png"           },
   { "custom_171.EDITOR.xpos",                  "26"                    },
   { "custom_171.EDITOR.ypos",                  "10"                    },
 
-  { "custom_172",                              "RocksCE.pcx"           },
+  { "custom_172",                              "RocksCE.png"           },
   { "custom_172.xpos",                         "11"                    },
   { "custom_172.ypos",                         "10"                    },
   { "custom_172.frames",                       "1"                     },
-  { "custom_172.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_172.EDITOR",                       "RocksCE.png"           },
   { "custom_172.EDITOR.xpos",                  "27"                    },
   { "custom_172.EDITOR.ypos",                  "10"                    },
 
-  { "custom_173",                              "RocksCE.pcx"           },
+  { "custom_173",                              "RocksCE.png"           },
   { "custom_173.xpos",                         "12"                    },
   { "custom_173.ypos",                         "10"                    },
   { "custom_173.frames",                       "1"                     },
-  { "custom_173.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_173.EDITOR",                       "RocksCE.png"           },
   { "custom_173.EDITOR.xpos",                  "28"                    },
   { "custom_173.EDITOR.ypos",                  "10"                    },
 
-  { "custom_174",                              "RocksCE.pcx"           },
+  { "custom_174",                              "RocksCE.png"           },
   { "custom_174.xpos",                         "13"                    },
   { "custom_174.ypos",                         "10"                    },
   { "custom_174.frames",                       "1"                     },
-  { "custom_174.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_174.EDITOR",                       "RocksCE.png"           },
   { "custom_174.EDITOR.xpos",                  "29"                    },
   { "custom_174.EDITOR.ypos",                  "10"                    },
 
-  { "custom_175",                              "RocksCE.pcx"           },
+  { "custom_175",                              "RocksCE.png"           },
   { "custom_175.xpos",                         "14"                    },
   { "custom_175.ypos",                         "10"                    },
   { "custom_175.frames",                       "1"                     },
-  { "custom_175.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_175.EDITOR",                       "RocksCE.png"           },
   { "custom_175.EDITOR.xpos",                  "30"                    },
   { "custom_175.EDITOR.ypos",                  "10"                    },
 
-  { "custom_176",                              "RocksCE.pcx"           },
+  { "custom_176",                              "RocksCE.png"           },
   { "custom_176.xpos",                         "15"                    },
   { "custom_176.ypos",                         "10"                    },
   { "custom_176.frames",                       "1"                     },
-  { "custom_176.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_176.EDITOR",                       "RocksCE.png"           },
   { "custom_176.EDITOR.xpos",                  "31"                    },
   { "custom_176.EDITOR.ypos",                  "10"                    },
 
-  { "custom_177",                              "RocksCE.pcx"           },
+  { "custom_177",                              "RocksCE.png"           },
   { "custom_177.xpos",                         "0"                     },
   { "custom_177.ypos",                         "11"                    },
   { "custom_177.frames",                       "1"                     },
-  { "custom_177.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_177.EDITOR",                       "RocksCE.png"           },
   { "custom_177.EDITOR.xpos",                  "16"                    },
   { "custom_177.EDITOR.ypos",                  "11"                    },
 
-  { "custom_178",                              "RocksCE.pcx"           },
+  { "custom_178",                              "RocksCE.png"           },
   { "custom_178.xpos",                         "1"                     },
   { "custom_178.ypos",                         "11"                    },
   { "custom_178.frames",                       "1"                     },
-  { "custom_178.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_178.EDITOR",                       "RocksCE.png"           },
   { "custom_178.EDITOR.xpos",                  "17"                    },
   { "custom_178.EDITOR.ypos",                  "11"                    },
 
-  { "custom_179",                              "RocksCE.pcx"           },
+  { "custom_179",                              "RocksCE.png"           },
   { "custom_179.xpos",                         "2"                     },
   { "custom_179.ypos",                         "11"                    },
   { "custom_179.frames",                       "1"                     },
-  { "custom_179.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_179.EDITOR",                       "RocksCE.png"           },
   { "custom_179.EDITOR.xpos",                  "18"                    },
   { "custom_179.EDITOR.ypos",                  "11"                    },
 
-  { "custom_180",                              "RocksCE.pcx"           },
+  { "custom_180",                              "RocksCE.png"           },
   { "custom_180.xpos",                         "3"                     },
   { "custom_180.ypos",                         "11"                    },
   { "custom_180.frames",                       "1"                     },
-  { "custom_180.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_180.EDITOR",                       "RocksCE.png"           },
   { "custom_180.EDITOR.xpos",                  "19"                    },
   { "custom_180.EDITOR.ypos",                  "11"                    },
 
-  { "custom_181",                              "RocksCE.pcx"           },
+  { "custom_181",                              "RocksCE.png"           },
   { "custom_181.xpos",                         "4"                     },
   { "custom_181.ypos",                         "11"                    },
   { "custom_181.frames",                       "1"                     },
-  { "custom_181.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_181.EDITOR",                       "RocksCE.png"           },
   { "custom_181.EDITOR.xpos",                  "20"                    },
   { "custom_181.EDITOR.ypos",                  "11"                    },
 
-  { "custom_182",                              "RocksCE.pcx"           },
+  { "custom_182",                              "RocksCE.png"           },
   { "custom_182.xpos",                         "5"                     },
   { "custom_182.ypos",                         "11"                    },
   { "custom_182.frames",                       "1"                     },
-  { "custom_182.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_182.EDITOR",                       "RocksCE.png"           },
   { "custom_182.EDITOR.xpos",                  "21"                    },
   { "custom_182.EDITOR.ypos",                  "11"                    },
 
-  { "custom_183",                              "RocksCE.pcx"           },
+  { "custom_183",                              "RocksCE.png"           },
   { "custom_183.xpos",                         "6"                     },
   { "custom_183.ypos",                         "11"                    },
   { "custom_183.frames",                       "1"                     },
-  { "custom_183.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_183.EDITOR",                       "RocksCE.png"           },
   { "custom_183.EDITOR.xpos",                  "22"                    },
   { "custom_183.EDITOR.ypos",                  "11"                    },
 
-  { "custom_184",                              "RocksCE.pcx"           },
+  { "custom_184",                              "RocksCE.png"           },
   { "custom_184.xpos",                         "7"                     },
   { "custom_184.ypos",                         "11"                    },
   { "custom_184.frames",                       "1"                     },
-  { "custom_184.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_184.EDITOR",                       "RocksCE.png"           },
   { "custom_184.EDITOR.xpos",                  "23"                    },
   { "custom_184.EDITOR.ypos",                  "11"                    },
 
-  { "custom_185",                              "RocksCE.pcx"           },
+  { "custom_185",                              "RocksCE.png"           },
   { "custom_185.xpos",                         "8"                     },
   { "custom_185.ypos",                         "11"                    },
   { "custom_185.frames",                       "1"                     },
-  { "custom_185.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_185.EDITOR",                       "RocksCE.png"           },
   { "custom_185.EDITOR.xpos",                  "24"                    },
   { "custom_185.EDITOR.ypos",                  "11"                    },
 
-  { "custom_186",                              "RocksCE.pcx"           },
+  { "custom_186",                              "RocksCE.png"           },
   { "custom_186.xpos",                         "9"                     },
   { "custom_186.ypos",                         "11"                    },
   { "custom_186.frames",                       "1"                     },
-  { "custom_186.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_186.EDITOR",                       "RocksCE.png"           },
   { "custom_186.EDITOR.xpos",                  "25"                    },
   { "custom_186.EDITOR.ypos",                  "11"                    },
 
-  { "custom_187",                              "RocksCE.pcx"           },
+  { "custom_187",                              "RocksCE.png"           },
   { "custom_187.xpos",                         "10"                    },
   { "custom_187.ypos",                         "11"                    },
   { "custom_187.frames",                       "1"                     },
-  { "custom_187.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_187.EDITOR",                       "RocksCE.png"           },
   { "custom_187.EDITOR.xpos",                  "26"                    },
   { "custom_187.EDITOR.ypos",                  "11"                    },
 
-  { "custom_188",                              "RocksCE.pcx"           },
+  { "custom_188",                              "RocksCE.png"           },
   { "custom_188.xpos",                         "11"                    },
   { "custom_188.ypos",                         "11"                    },
   { "custom_188.frames",                       "1"                     },
-  { "custom_188.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_188.EDITOR",                       "RocksCE.png"           },
   { "custom_188.EDITOR.xpos",                  "27"                    },
   { "custom_188.EDITOR.ypos",                  "11"                    },
 
-  { "custom_189",                              "RocksCE.pcx"           },
+  { "custom_189",                              "RocksCE.png"           },
   { "custom_189.xpos",                         "12"                    },
   { "custom_189.ypos",                         "11"                    },
   { "custom_189.frames",                       "1"                     },
-  { "custom_189.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_189.EDITOR",                       "RocksCE.png"           },
   { "custom_189.EDITOR.xpos",                  "28"                    },
   { "custom_189.EDITOR.ypos",                  "11"                    },
 
-  { "custom_190",                              "RocksCE.pcx"           },
+  { "custom_190",                              "RocksCE.png"           },
   { "custom_190.xpos",                         "13"                    },
   { "custom_190.ypos",                         "11"                    },
   { "custom_190.frames",                       "1"                     },
-  { "custom_190.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_190.EDITOR",                       "RocksCE.png"           },
   { "custom_190.EDITOR.xpos",                  "29"                    },
   { "custom_190.EDITOR.ypos",                  "11"                    },
 
-  { "custom_191",                              "RocksCE.pcx"           },
+  { "custom_191",                              "RocksCE.png"           },
   { "custom_191.xpos",                         "14"                    },
   { "custom_191.ypos",                         "11"                    },
   { "custom_191.frames",                       "1"                     },
-  { "custom_191.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_191.EDITOR",                       "RocksCE.png"           },
   { "custom_191.EDITOR.xpos",                  "30"                    },
   { "custom_191.EDITOR.ypos",                  "11"                    },
 
-  { "custom_192",                              "RocksCE.pcx"           },
+  { "custom_192",                              "RocksCE.png"           },
   { "custom_192.xpos",                         "15"                    },
   { "custom_192.ypos",                         "11"                    },
   { "custom_192.frames",                       "1"                     },
-  { "custom_192.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_192.EDITOR",                       "RocksCE.png"           },
   { "custom_192.EDITOR.xpos",                  "31"                    },
   { "custom_192.EDITOR.ypos",                  "11"                    },
 
-  { "custom_193",                              "RocksCE.pcx"           },
+  { "custom_193",                              "RocksCE.png"           },
   { "custom_193.xpos",                         "0"                     },
   { "custom_193.ypos",                         "12"                    },
   { "custom_193.frames",                       "1"                     },
-  { "custom_193.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_193.EDITOR",                       "RocksCE.png"           },
   { "custom_193.EDITOR.xpos",                  "16"                    },
   { "custom_193.EDITOR.ypos",                  "12"                    },
 
-  { "custom_194",                              "RocksCE.pcx"           },
+  { "custom_194",                              "RocksCE.png"           },
   { "custom_194.xpos",                         "1"                     },
   { "custom_194.ypos",                         "12"                    },
   { "custom_194.frames",                       "1"                     },
-  { "custom_194.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_194.EDITOR",                       "RocksCE.png"           },
   { "custom_194.EDITOR.xpos",                  "17"                    },
   { "custom_194.EDITOR.ypos",                  "12"                    },
 
-  { "custom_195",                              "RocksCE.pcx"           },
+  { "custom_195",                              "RocksCE.png"           },
   { "custom_195.xpos",                         "2"                     },
   { "custom_195.ypos",                         "12"                    },
   { "custom_195.frames",                       "1"                     },
-  { "custom_195.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_195.EDITOR",                       "RocksCE.png"           },
   { "custom_195.EDITOR.xpos",                  "18"                    },
   { "custom_195.EDITOR.ypos",                  "12"                    },
 
-  { "custom_196",                              "RocksCE.pcx"           },
+  { "custom_196",                              "RocksCE.png"           },
   { "custom_196.xpos",                         "3"                     },
   { "custom_196.ypos",                         "12"                    },
   { "custom_196.frames",                       "1"                     },
-  { "custom_196.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_196.EDITOR",                       "RocksCE.png"           },
   { "custom_196.EDITOR.xpos",                  "19"                    },
   { "custom_196.EDITOR.ypos",                  "12"                    },
 
-  { "custom_197",                              "RocksCE.pcx"           },
+  { "custom_197",                              "RocksCE.png"           },
   { "custom_197.xpos",                         "4"                     },
   { "custom_197.ypos",                         "12"                    },
   { "custom_197.frames",                       "1"                     },
-  { "custom_197.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_197.EDITOR",                       "RocksCE.png"           },
   { "custom_197.EDITOR.xpos",                  "20"                    },
   { "custom_197.EDITOR.ypos",                  "12"                    },
 
-  { "custom_198",                              "RocksCE.pcx"           },
+  { "custom_198",                              "RocksCE.png"           },
   { "custom_198.xpos",                         "5"                     },
   { "custom_198.ypos",                         "12"                    },
   { "custom_198.frames",                       "1"                     },
-  { "custom_198.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_198.EDITOR",                       "RocksCE.png"           },
   { "custom_198.EDITOR.xpos",                  "21"                    },
   { "custom_198.EDITOR.ypos",                  "12"                    },
 
-  { "custom_199",                              "RocksCE.pcx"           },
+  { "custom_199",                              "RocksCE.png"           },
   { "custom_199.xpos",                         "6"                     },
   { "custom_199.ypos",                         "12"                    },
   { "custom_199.frames",                       "1"                     },
-  { "custom_199.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_199.EDITOR",                       "RocksCE.png"           },
   { "custom_199.EDITOR.xpos",                  "22"                    },
   { "custom_199.EDITOR.ypos",                  "12"                    },
 
-  { "custom_200",                              "RocksCE.pcx"           },
+  { "custom_200",                              "RocksCE.png"           },
   { "custom_200.xpos",                         "7"                     },
   { "custom_200.ypos",                         "12"                    },
   { "custom_200.frames",                       "1"                     },
-  { "custom_200.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_200.EDITOR",                       "RocksCE.png"           },
   { "custom_200.EDITOR.xpos",                  "23"                    },
   { "custom_200.EDITOR.ypos",                  "12"                    },
 
-  { "custom_201",                              "RocksCE.pcx"           },
+  { "custom_201",                              "RocksCE.png"           },
   { "custom_201.xpos",                         "8"                     },
   { "custom_201.ypos",                         "12"                    },
   { "custom_201.frames",                       "1"                     },
-  { "custom_201.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_201.EDITOR",                       "RocksCE.png"           },
   { "custom_201.EDITOR.xpos",                  "24"                    },
   { "custom_201.EDITOR.ypos",                  "12"                    },
 
-  { "custom_202",                              "RocksCE.pcx"           },
+  { "custom_202",                              "RocksCE.png"           },
   { "custom_202.xpos",                         "9"                     },
   { "custom_202.ypos",                         "12"                    },
   { "custom_202.frames",                       "1"                     },
-  { "custom_202.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_202.EDITOR",                       "RocksCE.png"           },
   { "custom_202.EDITOR.xpos",                  "25"                    },
   { "custom_202.EDITOR.ypos",                  "12"                    },
 
-  { "custom_203",                              "RocksCE.pcx"           },
+  { "custom_203",                              "RocksCE.png"           },
   { "custom_203.xpos",                         "10"                    },
   { "custom_203.ypos",                         "12"                    },
   { "custom_203.frames",                       "1"                     },
-  { "custom_203.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_203.EDITOR",                       "RocksCE.png"           },
   { "custom_203.EDITOR.xpos",                  "26"                    },
   { "custom_203.EDITOR.ypos",                  "12"                    },
 
-  { "custom_204",                              "RocksCE.pcx"           },
+  { "custom_204",                              "RocksCE.png"           },
   { "custom_204.xpos",                         "11"                    },
   { "custom_204.ypos",                         "12"                    },
   { "custom_204.frames",                       "1"                     },
-  { "custom_204.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_204.EDITOR",                       "RocksCE.png"           },
   { "custom_204.EDITOR.xpos",                  "27"                    },
   { "custom_204.EDITOR.ypos",                  "12"                    },
 
-  { "custom_205",                              "RocksCE.pcx"           },
+  { "custom_205",                              "RocksCE.png"           },
   { "custom_205.xpos",                         "12"                    },
   { "custom_205.ypos",                         "12"                    },
   { "custom_205.frames",                       "1"                     },
-  { "custom_205.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_205.EDITOR",                       "RocksCE.png"           },
   { "custom_205.EDITOR.xpos",                  "28"                    },
   { "custom_205.EDITOR.ypos",                  "12"                    },
 
-  { "custom_206",                              "RocksCE.pcx"           },
+  { "custom_206",                              "RocksCE.png"           },
   { "custom_206.xpos",                         "13"                    },
   { "custom_206.ypos",                         "12"                    },
   { "custom_206.frames",                       "1"                     },
-  { "custom_206.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_206.EDITOR",                       "RocksCE.png"           },
   { "custom_206.EDITOR.xpos",                  "29"                    },
   { "custom_206.EDITOR.ypos",                  "12"                    },
 
-  { "custom_207",                              "RocksCE.pcx"           },
+  { "custom_207",                              "RocksCE.png"           },
   { "custom_207.xpos",                         "14"                    },
   { "custom_207.ypos",                         "12"                    },
   { "custom_207.frames",                       "1"                     },
-  { "custom_207.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_207.EDITOR",                       "RocksCE.png"           },
   { "custom_207.EDITOR.xpos",                  "30"                    },
   { "custom_207.EDITOR.ypos",                  "12"                    },
 
-  { "custom_208",                              "RocksCE.pcx"           },
+  { "custom_208",                              "RocksCE.png"           },
   { "custom_208.xpos",                         "15"                    },
   { "custom_208.ypos",                         "12"                    },
   { "custom_208.frames",                       "1"                     },
-  { "custom_208.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_208.EDITOR",                       "RocksCE.png"           },
   { "custom_208.EDITOR.xpos",                  "31"                    },
   { "custom_208.EDITOR.ypos",                  "12"                    },
 
-  { "custom_209",                              "RocksCE.pcx"           },
+  { "custom_209",                              "RocksCE.png"           },
   { "custom_209.xpos",                         "0"                     },
   { "custom_209.ypos",                         "13"                    },
   { "custom_209.frames",                       "1"                     },
-  { "custom_209.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_209.EDITOR",                       "RocksCE.png"           },
   { "custom_209.EDITOR.xpos",                  "16"                    },
   { "custom_209.EDITOR.ypos",                  "13"                    },
 
-  { "custom_210",                              "RocksCE.pcx"           },
+  { "custom_210",                              "RocksCE.png"           },
   { "custom_210.xpos",                         "1"                     },
   { "custom_210.ypos",                         "13"                    },
   { "custom_210.frames",                       "1"                     },
-  { "custom_210.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_210.EDITOR",                       "RocksCE.png"           },
   { "custom_210.EDITOR.xpos",                  "17"                    },
   { "custom_210.EDITOR.ypos",                  "13"                    },
 
-  { "custom_211",                              "RocksCE.pcx"           },
+  { "custom_211",                              "RocksCE.png"           },
   { "custom_211.xpos",                         "2"                     },
   { "custom_211.ypos",                         "13"                    },
   { "custom_211.frames",                       "1"                     },
-  { "custom_211.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_211.EDITOR",                       "RocksCE.png"           },
   { "custom_211.EDITOR.xpos",                  "18"                    },
   { "custom_211.EDITOR.ypos",                  "13"                    },
 
-  { "custom_212",                              "RocksCE.pcx"           },
+  { "custom_212",                              "RocksCE.png"           },
   { "custom_212.xpos",                         "3"                     },
   { "custom_212.ypos",                         "13"                    },
   { "custom_212.frames",                       "1"                     },
-  { "custom_212.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_212.EDITOR",                       "RocksCE.png"           },
   { "custom_212.EDITOR.xpos",                  "19"                    },
   { "custom_212.EDITOR.ypos",                  "13"                    },
 
-  { "custom_213",                              "RocksCE.pcx"           },
+  { "custom_213",                              "RocksCE.png"           },
   { "custom_213.xpos",                         "4"                     },
   { "custom_213.ypos",                         "13"                    },
   { "custom_213.frames",                       "1"                     },
-  { "custom_213.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_213.EDITOR",                       "RocksCE.png"           },
   { "custom_213.EDITOR.xpos",                  "20"                    },
   { "custom_213.EDITOR.ypos",                  "13"                    },
 
-  { "custom_214",                              "RocksCE.pcx"           },
+  { "custom_214",                              "RocksCE.png"           },
   { "custom_214.xpos",                         "5"                     },
   { "custom_214.ypos",                         "13"                    },
   { "custom_214.frames",                       "1"                     },
-  { "custom_214.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_214.EDITOR",                       "RocksCE.png"           },
   { "custom_214.EDITOR.xpos",                  "21"                    },
   { "custom_214.EDITOR.ypos",                  "13"                    },
 
-  { "custom_215",                              "RocksCE.pcx"           },
+  { "custom_215",                              "RocksCE.png"           },
   { "custom_215.xpos",                         "6"                     },
   { "custom_215.ypos",                         "13"                    },
   { "custom_215.frames",                       "1"                     },
-  { "custom_215.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_215.EDITOR",                       "RocksCE.png"           },
   { "custom_215.EDITOR.xpos",                  "22"                    },
   { "custom_215.EDITOR.ypos",                  "13"                    },
 
-  { "custom_216",                              "RocksCE.pcx"           },
+  { "custom_216",                              "RocksCE.png"           },
   { "custom_216.xpos",                         "7"                     },
   { "custom_216.ypos",                         "13"                    },
   { "custom_216.frames",                       "1"                     },
-  { "custom_216.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_216.EDITOR",                       "RocksCE.png"           },
   { "custom_216.EDITOR.xpos",                  "23"                    },
   { "custom_216.EDITOR.ypos",                  "13"                    },
 
-  { "custom_217",                              "RocksCE.pcx"           },
+  { "custom_217",                              "RocksCE.png"           },
   { "custom_217.xpos",                         "8"                     },
   { "custom_217.ypos",                         "13"                    },
   { "custom_217.frames",                       "1"                     },
-  { "custom_217.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_217.EDITOR",                       "RocksCE.png"           },
   { "custom_217.EDITOR.xpos",                  "24"                    },
   { "custom_217.EDITOR.ypos",                  "13"                    },
 
-  { "custom_218",                              "RocksCE.pcx"           },
+  { "custom_218",                              "RocksCE.png"           },
   { "custom_218.xpos",                         "9"                     },
   { "custom_218.ypos",                         "13"                    },
   { "custom_218.frames",                       "1"                     },
-  { "custom_218.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_218.EDITOR",                       "RocksCE.png"           },
   { "custom_218.EDITOR.xpos",                  "25"                    },
   { "custom_218.EDITOR.ypos",                  "13"                    },
 
-  { "custom_219",                              "RocksCE.pcx"           },
+  { "custom_219",                              "RocksCE.png"           },
   { "custom_219.xpos",                         "10"                    },
   { "custom_219.ypos",                         "13"                    },
   { "custom_219.frames",                       "1"                     },
-  { "custom_219.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_219.EDITOR",                       "RocksCE.png"           },
   { "custom_219.EDITOR.xpos",                  "26"                    },
   { "custom_219.EDITOR.ypos",                  "13"                    },
 
-  { "custom_220",                              "RocksCE.pcx"           },
+  { "custom_220",                              "RocksCE.png"           },
   { "custom_220.xpos",                         "11"                    },
   { "custom_220.ypos",                         "13"                    },
   { "custom_220.frames",                       "1"                     },
-  { "custom_220.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_220.EDITOR",                       "RocksCE.png"           },
   { "custom_220.EDITOR.xpos",                  "27"                    },
   { "custom_220.EDITOR.ypos",                  "13"                    },
 
-  { "custom_221",                              "RocksCE.pcx"           },
+  { "custom_221",                              "RocksCE.png"           },
   { "custom_221.xpos",                         "12"                    },
   { "custom_221.ypos",                         "13"                    },
   { "custom_221.frames",                       "1"                     },
-  { "custom_221.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_221.EDITOR",                       "RocksCE.png"           },
   { "custom_221.EDITOR.xpos",                  "28"                    },
   { "custom_221.EDITOR.ypos",                  "13"                    },
 
-  { "custom_222",                              "RocksCE.pcx"           },
+  { "custom_222",                              "RocksCE.png"           },
   { "custom_222.xpos",                         "13"                    },
   { "custom_222.ypos",                         "13"                    },
   { "custom_222.frames",                       "1"                     },
-  { "custom_222.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_222.EDITOR",                       "RocksCE.png"           },
   { "custom_222.EDITOR.xpos",                  "29"                    },
   { "custom_222.EDITOR.ypos",                  "13"                    },
 
-  { "custom_223",                              "RocksCE.pcx"           },
+  { "custom_223",                              "RocksCE.png"           },
   { "custom_223.xpos",                         "14"                    },
   { "custom_223.ypos",                         "13"                    },
   { "custom_223.frames",                       "1"                     },
-  { "custom_223.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_223.EDITOR",                       "RocksCE.png"           },
   { "custom_223.EDITOR.xpos",                  "30"                    },
   { "custom_223.EDITOR.ypos",                  "13"                    },
 
-  { "custom_224",                              "RocksCE.pcx"           },
+  { "custom_224",                              "RocksCE.png"           },
   { "custom_224.xpos",                         "15"                    },
   { "custom_224.ypos",                         "13"                    },
   { "custom_224.frames",                       "1"                     },
-  { "custom_224.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_224.EDITOR",                       "RocksCE.png"           },
   { "custom_224.EDITOR.xpos",                  "31"                    },
   { "custom_224.EDITOR.ypos",                  "13"                    },
 
-  { "custom_225",                              "RocksCE.pcx"           },
+  { "custom_225",                              "RocksCE.png"           },
   { "custom_225.xpos",                         "0"                     },
   { "custom_225.ypos",                         "14"                    },
   { "custom_225.frames",                       "1"                     },
-  { "custom_225.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_225.EDITOR",                       "RocksCE.png"           },
   { "custom_225.EDITOR.xpos",                  "16"                    },
   { "custom_225.EDITOR.ypos",                  "14"                    },
 
-  { "custom_226",                              "RocksCE.pcx"           },
+  { "custom_226",                              "RocksCE.png"           },
   { "custom_226.xpos",                         "1"                     },
   { "custom_226.ypos",                         "14"                    },
   { "custom_226.frames",                       "1"                     },
-  { "custom_226.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_226.EDITOR",                       "RocksCE.png"           },
   { "custom_226.EDITOR.xpos",                  "17"                    },
   { "custom_226.EDITOR.ypos",                  "14"                    },
 
-  { "custom_227",                              "RocksCE.pcx"           },
+  { "custom_227",                              "RocksCE.png"           },
   { "custom_227.xpos",                         "2"                     },
   { "custom_227.ypos",                         "14"                    },
   { "custom_227.frames",                       "1"                     },
-  { "custom_227.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_227.EDITOR",                       "RocksCE.png"           },
   { "custom_227.EDITOR.xpos",                  "18"                    },
   { "custom_227.EDITOR.ypos",                  "14"                    },
 
-  { "custom_228",                              "RocksCE.pcx"           },
+  { "custom_228",                              "RocksCE.png"           },
   { "custom_228.xpos",                         "3"                     },
   { "custom_228.ypos",                         "14"                    },
   { "custom_228.frames",                       "1"                     },
-  { "custom_228.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_228.EDITOR",                       "RocksCE.png"           },
   { "custom_228.EDITOR.xpos",                  "19"                    },
   { "custom_228.EDITOR.ypos",                  "14"                    },
 
-  { "custom_229",                              "RocksCE.pcx"           },
+  { "custom_229",                              "RocksCE.png"           },
   { "custom_229.xpos",                         "4"                     },
   { "custom_229.ypos",                         "14"                    },
   { "custom_229.frames",                       "1"                     },
-  { "custom_229.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_229.EDITOR",                       "RocksCE.png"           },
   { "custom_229.EDITOR.xpos",                  "20"                    },
   { "custom_229.EDITOR.ypos",                  "14"                    },
 
-  { "custom_230",                              "RocksCE.pcx"           },
+  { "custom_230",                              "RocksCE.png"           },
   { "custom_230.xpos",                         "5"                     },
   { "custom_230.ypos",                         "14"                    },
   { "custom_230.frames",                       "1"                     },
-  { "custom_230.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_230.EDITOR",                       "RocksCE.png"           },
   { "custom_230.EDITOR.xpos",                  "21"                    },
   { "custom_230.EDITOR.ypos",                  "14"                    },
 
-  { "custom_231",                              "RocksCE.pcx"           },
+  { "custom_231",                              "RocksCE.png"           },
   { "custom_231.xpos",                         "6"                     },
   { "custom_231.ypos",                         "14"                    },
   { "custom_231.frames",                       "1"                     },
-  { "custom_231.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_231.EDITOR",                       "RocksCE.png"           },
   { "custom_231.EDITOR.xpos",                  "22"                    },
   { "custom_231.EDITOR.ypos",                  "14"                    },
 
-  { "custom_232",                              "RocksCE.pcx"           },
+  { "custom_232",                              "RocksCE.png"           },
   { "custom_232.xpos",                         "7"                     },
   { "custom_232.ypos",                         "14"                    },
   { "custom_232.frames",                       "1"                     },
-  { "custom_232.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_232.EDITOR",                       "RocksCE.png"           },
   { "custom_232.EDITOR.xpos",                  "23"                    },
   { "custom_232.EDITOR.ypos",                  "14"                    },
 
-  { "custom_233",                              "RocksCE.pcx"           },
+  { "custom_233",                              "RocksCE.png"           },
   { "custom_233.xpos",                         "8"                     },
   { "custom_233.ypos",                         "14"                    },
   { "custom_233.frames",                       "1"                     },
-  { "custom_233.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_233.EDITOR",                       "RocksCE.png"           },
   { "custom_233.EDITOR.xpos",                  "24"                    },
   { "custom_233.EDITOR.ypos",                  "14"                    },
 
-  { "custom_234",                              "RocksCE.pcx"           },
+  { "custom_234",                              "RocksCE.png"           },
   { "custom_234.xpos",                         "9"                     },
   { "custom_234.ypos",                         "14"                    },
   { "custom_234.frames",                       "1"                     },
-  { "custom_234.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_234.EDITOR",                       "RocksCE.png"           },
   { "custom_234.EDITOR.xpos",                  "25"                    },
   { "custom_234.EDITOR.ypos",                  "14"                    },
 
-  { "custom_235",                              "RocksCE.pcx"           },
+  { "custom_235",                              "RocksCE.png"           },
   { "custom_235.xpos",                         "10"                    },
   { "custom_235.ypos",                         "14"                    },
   { "custom_235.frames",                       "1"                     },
-  { "custom_235.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_235.EDITOR",                       "RocksCE.png"           },
   { "custom_235.EDITOR.xpos",                  "26"                    },
   { "custom_235.EDITOR.ypos",                  "14"                    },
 
-  { "custom_236",                              "RocksCE.pcx"           },
+  { "custom_236",                              "RocksCE.png"           },
   { "custom_236.xpos",                         "11"                    },
   { "custom_236.ypos",                         "14"                    },
   { "custom_236.frames",                       "1"                     },
-  { "custom_236.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_236.EDITOR",                       "RocksCE.png"           },
   { "custom_236.EDITOR.xpos",                  "27"                    },
   { "custom_236.EDITOR.ypos",                  "14"                    },
 
-  { "custom_237",                              "RocksCE.pcx"           },
+  { "custom_237",                              "RocksCE.png"           },
   { "custom_237.xpos",                         "12"                    },
   { "custom_237.ypos",                         "14"                    },
   { "custom_237.frames",                       "1"                     },
-  { "custom_237.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_237.EDITOR",                       "RocksCE.png"           },
   { "custom_237.EDITOR.xpos",                  "28"                    },
   { "custom_237.EDITOR.ypos",                  "14"                    },
 
-  { "custom_238",                              "RocksCE.pcx"           },
+  { "custom_238",                              "RocksCE.png"           },
   { "custom_238.xpos",                         "13"                    },
   { "custom_238.ypos",                         "14"                    },
   { "custom_238.frames",                       "1"                     },
-  { "custom_238.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_238.EDITOR",                       "RocksCE.png"           },
   { "custom_238.EDITOR.xpos",                  "29"                    },
   { "custom_238.EDITOR.ypos",                  "14"                    },
 
-  { "custom_239",                              "RocksCE.pcx"           },
+  { "custom_239",                              "RocksCE.png"           },
   { "custom_239.xpos",                         "14"                    },
   { "custom_239.ypos",                         "14"                    },
   { "custom_239.frames",                       "1"                     },
-  { "custom_239.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_239.EDITOR",                       "RocksCE.png"           },
   { "custom_239.EDITOR.xpos",                  "30"                    },
   { "custom_239.EDITOR.ypos",                  "14"                    },
 
-  { "custom_240",                              "RocksCE.pcx"           },
+  { "custom_240",                              "RocksCE.png"           },
   { "custom_240.xpos",                         "15"                    },
   { "custom_240.ypos",                         "14"                    },
   { "custom_240.frames",                       "1"                     },
-  { "custom_240.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_240.EDITOR",                       "RocksCE.png"           },
   { "custom_240.EDITOR.xpos",                  "31"                    },
   { "custom_240.EDITOR.ypos",                  "14"                    },
 
-  { "custom_241",                              "RocksCE.pcx"           },
+  { "custom_241",                              "RocksCE.png"           },
   { "custom_241.xpos",                         "0"                     },
   { "custom_241.ypos",                         "15"                    },
   { "custom_241.frames",                       "1"                     },
-  { "custom_241.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_241.EDITOR",                       "RocksCE.png"           },
   { "custom_241.EDITOR.xpos",                  "16"                    },
   { "custom_241.EDITOR.ypos",                  "15"                    },
 
-  { "custom_242",                              "RocksCE.pcx"           },
+  { "custom_242",                              "RocksCE.png"           },
   { "custom_242.xpos",                         "1"                     },
   { "custom_242.ypos",                         "15"                    },
   { "custom_242.frames",                       "1"                     },
-  { "custom_242.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_242.EDITOR",                       "RocksCE.png"           },
   { "custom_242.EDITOR.xpos",                  "17"                    },
   { "custom_242.EDITOR.ypos",                  "15"                    },
 
-  { "custom_243",                              "RocksCE.pcx"           },
+  { "custom_243",                              "RocksCE.png"           },
   { "custom_243.xpos",                         "2"                     },
   { "custom_243.ypos",                         "15"                    },
   { "custom_243.frames",                       "1"                     },
-  { "custom_243.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_243.EDITOR",                       "RocksCE.png"           },
   { "custom_243.EDITOR.xpos",                  "18"                    },
   { "custom_243.EDITOR.ypos",                  "15"                    },
 
-  { "custom_244",                              "RocksCE.pcx"           },
+  { "custom_244",                              "RocksCE.png"           },
   { "custom_244.xpos",                         "3"                     },
   { "custom_244.ypos",                         "15"                    },
   { "custom_244.frames",                       "1"                     },
-  { "custom_244.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_244.EDITOR",                       "RocksCE.png"           },
   { "custom_244.EDITOR.xpos",                  "19"                    },
   { "custom_244.EDITOR.ypos",                  "15"                    },
 
-  { "custom_245",                              "RocksCE.pcx"           },
+  { "custom_245",                              "RocksCE.png"           },
   { "custom_245.xpos",                         "4"                     },
   { "custom_245.ypos",                         "15"                    },
   { "custom_245.frames",                       "1"                     },
-  { "custom_245.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_245.EDITOR",                       "RocksCE.png"           },
   { "custom_245.EDITOR.xpos",                  "20"                    },
   { "custom_245.EDITOR.ypos",                  "15"                    },
 
-  { "custom_246",                              "RocksCE.pcx"           },
+  { "custom_246",                              "RocksCE.png"           },
   { "custom_246.xpos",                         "5"                     },
   { "custom_246.ypos",                         "15"                    },
   { "custom_246.frames",                       "1"                     },
-  { "custom_246.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_246.EDITOR",                       "RocksCE.png"           },
   { "custom_246.EDITOR.xpos",                  "21"                    },
   { "custom_246.EDITOR.ypos",                  "15"                    },
 
-  { "custom_247",                              "RocksCE.pcx"           },
+  { "custom_247",                              "RocksCE.png"           },
   { "custom_247.xpos",                         "6"                     },
   { "custom_247.ypos",                         "15"                    },
   { "custom_247.frames",                       "1"                     },
-  { "custom_247.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_247.EDITOR",                       "RocksCE.png"           },
   { "custom_247.EDITOR.xpos",                  "22"                    },
   { "custom_247.EDITOR.ypos",                  "15"                    },
 
-  { "custom_248",                              "RocksCE.pcx"           },
+  { "custom_248",                              "RocksCE.png"           },
   { "custom_248.xpos",                         "7"                     },
   { "custom_248.ypos",                         "15"                    },
   { "custom_248.frames",                       "1"                     },
-  { "custom_248.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_248.EDITOR",                       "RocksCE.png"           },
   { "custom_248.EDITOR.xpos",                  "23"                    },
   { "custom_248.EDITOR.ypos",                  "15"                    },
 
-  { "custom_249",                              "RocksCE.pcx"           },
+  { "custom_249",                              "RocksCE.png"           },
   { "custom_249.xpos",                         "8"                     },
   { "custom_249.ypos",                         "15"                    },
   { "custom_249.frames",                       "1"                     },
-  { "custom_249.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_249.EDITOR",                       "RocksCE.png"           },
   { "custom_249.EDITOR.xpos",                  "24"                    },
   { "custom_249.EDITOR.ypos",                  "15"                    },
 
-  { "custom_250",                              "RocksCE.pcx"           },
+  { "custom_250",                              "RocksCE.png"           },
   { "custom_250.xpos",                         "9"                     },
   { "custom_250.ypos",                         "15"                    },
   { "custom_250.frames",                       "1"                     },
-  { "custom_250.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_250.EDITOR",                       "RocksCE.png"           },
   { "custom_250.EDITOR.xpos",                  "25"                    },
   { "custom_250.EDITOR.ypos",                  "15"                    },
 
-  { "custom_251",                              "RocksCE.pcx"           },
+  { "custom_251",                              "RocksCE.png"           },
   { "custom_251.xpos",                         "10"                    },
   { "custom_251.ypos",                         "15"                    },
   { "custom_251.frames",                       "1"                     },
-  { "custom_251.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_251.EDITOR",                       "RocksCE.png"           },
   { "custom_251.EDITOR.xpos",                  "26"                    },
   { "custom_251.EDITOR.ypos",                  "15"                    },
 
-  { "custom_252",                              "RocksCE.pcx"           },
+  { "custom_252",                              "RocksCE.png"           },
   { "custom_252.xpos",                         "11"                    },
   { "custom_252.ypos",                         "15"                    },
   { "custom_252.frames",                       "1"                     },
-  { "custom_252.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_252.EDITOR",                       "RocksCE.png"           },
   { "custom_252.EDITOR.xpos",                  "27"                    },
   { "custom_252.EDITOR.ypos",                  "15"                    },
 
-  { "custom_253",                              "RocksCE.pcx"           },
+  { "custom_253",                              "RocksCE.png"           },
   { "custom_253.xpos",                         "12"                    },
   { "custom_253.ypos",                         "15"                    },
   { "custom_253.frames",                       "1"                     },
-  { "custom_253.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_253.EDITOR",                       "RocksCE.png"           },
   { "custom_253.EDITOR.xpos",                  "28"                    },
   { "custom_253.EDITOR.ypos",                  "15"                    },
 
-  { "custom_254",                              "RocksCE.pcx"           },
+  { "custom_254",                              "RocksCE.png"           },
   { "custom_254.xpos",                         "13"                    },
   { "custom_254.ypos",                         "15"                    },
   { "custom_254.frames",                       "1"                     },
-  { "custom_254.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_254.EDITOR",                       "RocksCE.png"           },
   { "custom_254.EDITOR.xpos",                  "29"                    },
   { "custom_254.EDITOR.ypos",                  "15"                    },
 
-  { "custom_255",                              "RocksCE.pcx"           },
+  { "custom_255",                              "RocksCE.png"           },
   { "custom_255.xpos",                         "14"                    },
   { "custom_255.ypos",                         "15"                    },
   { "custom_255.frames",                       "1"                     },
-  { "custom_255.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_255.EDITOR",                       "RocksCE.png"           },
   { "custom_255.EDITOR.xpos",                  "30"                    },
   { "custom_255.EDITOR.ypos",                  "15"                    },
 
-  { "custom_256",                              "RocksCE.pcx"           },
+  { "custom_256",                              "RocksCE.png"           },
   { "custom_256.xpos",                         "15"                    },
   { "custom_256.ypos",                         "15"                    },
   { "custom_256.frames",                       "1"                     },
-  { "custom_256.EDITOR",                       "RocksCE.pcx"           },
+  { "custom_256.EDITOR",                       "RocksCE.png"           },
   { "custom_256.EDITOR.xpos",                  "31"                    },
   { "custom_256.EDITOR.ypos",                  "15"                    },
 
index b04ca43f3539c632e0e0400c607eafa4f9df314b..c9fe38cd22a7d03356bf8e355905d250b0eb8a29 100644 (file)
@@ -81,334 +81,334 @@ struct ConfigInfo image_config[] =
 {
   /* images for Boulder Dash style elements and actions */
 
-  { "bd_wall",                                 "RocksDC.pcx"           },
+  { "bd_wall",                                 "RocksDC.png"           },
   { "bd_wall.xpos",                            "12"                    },
   { "bd_wall.ypos",                            "9"                     },
   { "bd_wall.frames",                          "1"                     },
-  { "bd_wall.EDITOR",                          "RocksDC.pcx"           },
+  { "bd_wall.EDITOR",                          "RocksDC.png"           },
   { "bd_wall.EDITOR.xpos",                     "14"                    },
   { "bd_wall.EDITOR.ypos",                     "13"                    },
 
-  { "bd_rock",                                 "RocksDC.pcx"           },
+  { "bd_rock",                                 "RocksDC.png"           },
   { "bd_rock.xpos",                            "12"                    },
   { "bd_rock.ypos",                            "10"                    },
   { "bd_rock.frames",                          "1"                     },
-  { "bd_rock.EDITOR",                          "RocksDC.pcx"           },
+  { "bd_rock.EDITOR",                          "RocksDC.png"           },
   { "bd_rock.EDITOR.xpos",                     "14"                    },
   { "bd_rock.EDITOR.ypos",                     "14"                    },
-  { "bd_rock.moving.left",                     "RocksDC.pcx"           },
+  { "bd_rock.moving.left",                     "RocksDC.png"           },
   { "bd_rock.moving.left.xpos",                        "12"                    },
   { "bd_rock.moving.left.ypos",                        "10"                    },
   { "bd_rock.moving.left.frames",              "4"                     },
   { "bd_rock.moving.left.delay",               "2"                     },
   { "bd_rock.moving.left.anim_mode",           "reverse"               },
-  { "bd_rock.moving.right",                    "RocksDC.pcx"           },
+  { "bd_rock.moving.right",                    "RocksDC.png"           },
   { "bd_rock.moving.right.xpos",               "12"                    },
   { "bd_rock.moving.right.ypos",               "10"                    },
   { "bd_rock.moving.right.frames",             "4"                     },
   { "bd_rock.moving.right.start_frame",                "1"                     },
   { "bd_rock.moving.right.delay",              "2"                     },
-  { "bd_rock.pushing.left",                    "RocksDC.pcx"           },
+  { "bd_rock.pushing.left",                    "RocksDC.png"           },
   { "bd_rock.pushing.left.xpos",               "12"                    },
   { "bd_rock.pushing.left.ypos",               "10"                    },
   { "bd_rock.pushing.left.frames",             "4"                     },
   { "bd_rock.pushing.left.delay",              "2"                     },
   { "bd_rock.pushing.left.anim_mode",          "reverse"               },
-  { "bd_rock.pushing.right",                   "RocksDC.pcx"           },
+  { "bd_rock.pushing.right",                   "RocksDC.png"           },
   { "bd_rock.pushing.right.xpos",              "12"                    },
   { "bd_rock.pushing.right.ypos",              "10"                    },
   { "bd_rock.pushing.right.frames",            "4"                     },
   { "bd_rock.pushing.right.start_frame",       "1"                     },
   { "bd_rock.pushing.right.delay",             "2"                     },
 
-  { "bd_diamond",                              "RocksElements.pcx"     },
+  { "bd_diamond",                              "RocksElements.png"     },
   { "bd_diamond.xpos",                         "0"                     },
   { "bd_diamond.ypos",                         "10"                    },
   { "bd_diamond.frames",                       "4"                     },
   { "bd_diamond.delay",                                "4"                     },
   { "bd_diamond.anim_mode",                    "reverse"               },
-  { "bd_diamond.moving",                       "RocksElements.pcx"     },
+  { "bd_diamond.moving",                       "RocksElements.png"     },
   { "bd_diamond.moving.xpos",                  "3"                     },
   { "bd_diamond.moving.ypos",                  "10"                    },
   { "bd_diamond.moving.frames",                        "2"                     },
   { "bd_diamond.moving.delay",                 "4"                     },
-  { "bd_diamond.falling",                      "RocksElements.pcx"     },
+  { "bd_diamond.falling",                      "RocksElements.png"     },
   { "bd_diamond.falling.xpos",                 "3"                     },
   { "bd_diamond.falling.ypos",                 "10"                    },
   { "bd_diamond.falling.frames",               "2"                     },
   { "bd_diamond.falling.delay",                        "4"                     },
 
-  { "bd_magic_wall",                           "RocksElements.pcx"     },
+  { "bd_magic_wall",                           "RocksElements.png"     },
   { "bd_magic_wall.xpos",                      "12"                    },
   { "bd_magic_wall.ypos",                      "10"                    },
   { "bd_magic_wall.frames",                    "1"                     },
-  { "bd_magic_wall.active",                    "RocksElements.pcx"     },
+  { "bd_magic_wall.active",                    "RocksElements.png"     },
   { "bd_magic_wall.active.xpos",               "12"                    },
   { "bd_magic_wall.active.ypos",               "10"                    },
   { "bd_magic_wall.active.frames",             "4"                     },
   { "bd_magic_wall.active.anim_mode",          "reverse"               },
   { "bd_magic_wall.active.delay",              "4"                     },
   { "bd_magic_wall.active.global_sync",                "true"                  },
-  { "bd_magic_wall.filling",                   "RocksElements.pcx"     },
+  { "bd_magic_wall.filling",                   "RocksElements.png"     },
   { "bd_magic_wall.filling.xpos",              "12"                    },
   { "bd_magic_wall.filling.ypos",              "10"                    },
   { "bd_magic_wall.filling.frames",            "4"                     },
   { "bd_magic_wall.filling.anim_mode",         "reverse"               },
   { "bd_magic_wall.filling.delay",             "4"                     },
   { "bd_magic_wall.filling.global_sync",       "true"                  },
-  { "bd_magic_wall_full",                      "RocksElements.pcx"     },
+  { "bd_magic_wall_full",                      "RocksElements.png"     },
   { "bd_magic_wall_full.xpos",                 "12"                    },
   { "bd_magic_wall_full.ypos",                 "10"                    },
   { "bd_magic_wall_full.frames",               "4"                     },
   { "bd_magic_wall_full.anim_mode",            "reverse"               },
   { "bd_magic_wall_full.delay",                        "4"                     },
   { "bd_magic_wall_full.global_sync",          "true"                  },
-  { "bd_magic_wall.emptying",                  "RocksElements.pcx"     },
+  { "bd_magic_wall.emptying",                  "RocksElements.png"     },
   { "bd_magic_wall.emptying.xpos",             "12"                    },
   { "bd_magic_wall.emptying.ypos",             "10"                    },
   { "bd_magic_wall.emptying.frames",           "4"                     },
   { "bd_magic_wall.emptying.anim_mode",                "reverse"               },
   { "bd_magic_wall.emptying.delay",            "4"                     },
   { "bd_magic_wall.emptying.global_sync",      "true"                  },
-  { "bd_magic_wall_dead",                      "RocksElements.pcx"     },
+  { "bd_magic_wall_dead",                      "RocksElements.png"     },
   { "bd_magic_wall_dead.xpos",                 "12"                    },
   { "bd_magic_wall_dead.ypos",                 "10"                    },
   { "bd_magic_wall_dead.frames",               "1"                     },
 
-  { "bd_amoeba",                               "RocksElements.pcx"     },
+  { "bd_amoeba",                               "RocksElements.png"     },
   { "bd_amoeba.xpos",                          "8"                     },
   { "bd_amoeba.ypos",                          "6"                     },
   { "bd_amoeba.frames",                                "4"                     },
   { "bd_amoeba.delay",                         "1000000"               },
   { "bd_amoeba.anim_mode",                     "random"                },
-  { "bd_amoeba.EDITOR",                                "RocksElements.pcx"     },
+  { "bd_amoeba.EDITOR",                                "RocksElements.png"     },
   { "bd_amoeba.EDITOR.xpos",                   "8"                     },
   { "bd_amoeba.EDITOR.ypos",                   "7"                     },
 
-  { "bd_butterfly",                            "RocksElements.pcx"     },
+  { "bd_butterfly",                            "RocksElements.png"     },
   { "bd_butterfly.xpos",                       "4"                     },
   { "bd_butterfly.ypos",                       "12"                    },
   { "bd_butterfly.frames",                     "2"                     },
   { "bd_butterfly.anim_mode",                  "pingpong"              },
   { "bd_butterfly.delay",                      "4"                     },
   { "bd_butterfly.global_sync",                        "true"                  },
-  { "bd_butterfly.right",                      "RocksElements.pcx"     },
+  { "bd_butterfly.right",                      "RocksElements.png"     },
   { "bd_butterfly.right.xpos",                 "4"                     },
   { "bd_butterfly.right.ypos",                 "12"                    },
   { "bd_butterfly.right.frames",               "2"                     },
   { "bd_butterfly.right.anim_mode",            "pingpong"              },
   { "bd_butterfly.right.delay",                        "4"                     },
   { "bd_butterfly.right.global_sync",          "true"                  },
-  { "bd_butterfly.right.EDITOR",               "RocksElements.pcx"     },
+  { "bd_butterfly.right.EDITOR",               "RocksElements.png"     },
   { "bd_butterfly.right.EDITOR.xpos",          "8"                     },
   { "bd_butterfly.right.EDITOR.ypos",          "12"                    },
-  { "bd_butterfly.up",                         "RocksElements.pcx"     },
+  { "bd_butterfly.up",                         "RocksElements.png"     },
   { "bd_butterfly.up.xpos",                    "4"                     },
   { "bd_butterfly.up.ypos",                    "12"                    },
   { "bd_butterfly.up.frames",                  "2"                     },
   { "bd_butterfly.up.anim_mode",               "pingpong"              },
   { "bd_butterfly.up.delay",                   "4"                     },
   { "bd_butterfly.up.global_sync",             "true"                  },
-  { "bd_butterfly.up.EDITOR",                  "RocksElements.pcx"     },
+  { "bd_butterfly.up.EDITOR",                  "RocksElements.png"     },
   { "bd_butterfly.up.EDITOR.xpos",             "9"                     },
   { "bd_butterfly.up.EDITOR.ypos",             "12"                    },
-  { "bd_butterfly.left",                       "RocksElements.pcx"     },
+  { "bd_butterfly.left",                       "RocksElements.png"     },
   { "bd_butterfly.left.xpos",                  "4"                     },
   { "bd_butterfly.left.ypos",                  "12"                    },
   { "bd_butterfly.left.frames",                        "2"                     },
   { "bd_butterfly.left.anim_mode",             "pingpong"              },
   { "bd_butterfly.left.delay",                 "4"                     },
   { "bd_butterfly.left.global_sync",           "true"                  },
-  { "bd_butterfly.left.EDITOR",                        "RocksElements.pcx"     },
+  { "bd_butterfly.left.EDITOR",                        "RocksElements.png"     },
   { "bd_butterfly.left.EDITOR.xpos",           "10"                    },
   { "bd_butterfly.left.EDITOR.ypos",           "12"                    },
-  { "bd_butterfly.down",                       "RocksElements.pcx"     },
+  { "bd_butterfly.down",                       "RocksElements.png"     },
   { "bd_butterfly.down.xpos",                  "4"                     },
   { "bd_butterfly.down.ypos",                  "12"                    },
   { "bd_butterfly.down.frames",                        "2"                     },
   { "bd_butterfly.down.anim_mode",             "pingpong"              },
   { "bd_butterfly.down.delay",                 "4"                     },
   { "bd_butterfly.down.global_sync",           "true"                  },
-  { "bd_butterfly.down.EDITOR",                        "RocksElements.pcx"     },
+  { "bd_butterfly.down.EDITOR",                        "RocksElements.png"     },
   { "bd_butterfly.down.EDITOR.xpos",           "11"                    },
   { "bd_butterfly.down.EDITOR.ypos",           "12"                    },
 
-  { "bd_firefly",                              "RocksElements.pcx"     },
+  { "bd_firefly",                              "RocksElements.png"     },
   { "bd_firefly.xpos",                         "6"                     },
   { "bd_firefly.ypos",                         "12"                    },
   { "bd_firefly.frames",                       "2"                     },
   { "bd_firefly.anim_mode",                    "pingpong"              },
   { "bd_firefly.delay",                                "4"                     },
   { "bd_firefly.global_sync",                  "true"                  },
-  { "bd_firefly.right",                                "RocksElements.pcx"     },
+  { "bd_firefly.right",                                "RocksElements.png"     },
   { "bd_firefly.right.xpos",                   "6"                     },
   { "bd_firefly.right.ypos",                   "12"                    },
   { "bd_firefly.right.frames",                 "2"                     },
   { "bd_firefly.right.anim_mode",              "pingpong"              },
   { "bd_firefly.right.delay",                  "4"                     },
   { "bd_firefly.right.global_sync",            "true"                  },
-  { "bd_firefly.right.EDITOR",                 "RocksElements.pcx"     },
+  { "bd_firefly.right.EDITOR",                 "RocksElements.png"     },
   { "bd_firefly.right.EDITOR.xpos",            "12"                    },
   { "bd_firefly.right.EDITOR.ypos",            "12"                    },
-  { "bd_firefly.up",                           "RocksElements.pcx"     },
+  { "bd_firefly.up",                           "RocksElements.png"     },
   { "bd_firefly.up.xpos",                      "6"                     },
   { "bd_firefly.up.ypos",                      "12"                    },
   { "bd_firefly.up.frames",                    "2"                     },
   { "bd_firefly.up.anim_mode",                 "pingpong"              },
   { "bd_firefly.up.delay",                     "4"                     },
   { "bd_firefly.up.global_sync",               "true"                  },
-  { "bd_firefly.up.EDITOR",                    "RocksElements.pcx"     },
+  { "bd_firefly.up.EDITOR",                    "RocksElements.png"     },
   { "bd_firefly.up.EDITOR.xpos",               "13"                    },
   { "bd_firefly.up.EDITOR.ypos",               "12"                    },
-  { "bd_firefly.left",                         "RocksElements.pcx"     },
+  { "bd_firefly.left",                         "RocksElements.png"     },
   { "bd_firefly.left.xpos",                    "6"                     },
   { "bd_firefly.left.ypos",                    "12"                    },
   { "bd_firefly.left.frames",                  "2"                     },
   { "bd_firefly.left.anim_mode",               "pingpong"              },
   { "bd_firefly.left.delay",                   "4"                     },
   { "bd_firefly.left.global_sync",             "true"                  },
-  { "bd_firefly.left.EDITOR",                  "RocksElements.pcx"     },
+  { "bd_firefly.left.EDITOR",                  "RocksElements.png"     },
   { "bd_firefly.left.EDITOR.xpos",             "14"                    },
   { "bd_firefly.left.EDITOR.ypos",             "12"                    },
-  { "bd_firefly.down",                         "RocksElements.pcx"     },
+  { "bd_firefly.down",                         "RocksElements.png"     },
   { "bd_firefly.down.xpos",                    "6"                     },
   { "bd_firefly.down.ypos",                    "12"                    },
   { "bd_firefly.down.frames",                  "2"                     },
   { "bd_firefly.down.anim_mode",               "pingpong"              },
   { "bd_firefly.down.delay",                   "4"                     },
   { "bd_firefly.down.global_sync",             "true"                  },
-  { "bd_firefly.down.EDITOR",                  "RocksElements.pcx"     },
+  { "bd_firefly.down.EDITOR",                  "RocksElements.png"     },
   { "bd_firefly.down.EDITOR.xpos",             "15"                    },
   { "bd_firefly.down.EDITOR.ypos",             "12"                    },
 
   /* images for Supaplex style elements and actions */
 
-  { "[sp_default].exploding",                  "RocksSP.pcx"           },
+  { "[sp_default].exploding",                  "RocksSP.png"           },
   { "[sp_default].exploding.xpos",             "8"                     },
   { "[sp_default].exploding.ypos",             "3"                     },
   { "[sp_default].exploding.frames",           "8"                     },
   { "[sp_default].exploding.delay",            "4"                     },
   { "[sp_default].exploding.anim_mode",                "linear"                },
 
-  { "sp_zonk",                                 "RocksSP.pcx"           },
+  { "sp_zonk",                                 "RocksSP.png"           },
   { "sp_zonk.xpos",                            "1"                     },
   { "sp_zonk.ypos",                            "0"                     },
   { "sp_zonk.frames",                          "1"                     },
-  { "sp_zonk.moving.left",                     "RocksSP.pcx"           },
+  { "sp_zonk.moving.left",                     "RocksSP.png"           },
   { "sp_zonk.moving.left.xpos",                        "0"                     },
   { "sp_zonk.moving.left.ypos",                        "6"                     },
   { "sp_zonk.moving.left.frames",              "4"                     },
   { "sp_zonk.moving.left.delay",               "1"                     },
   { "sp_zonk.moving.left.anim_mode",           "reverse"               },
-  { "sp_zonk.moving.right",                    "RocksSP.pcx"           },
+  { "sp_zonk.moving.right",                    "RocksSP.png"           },
   { "sp_zonk.moving.right.xpos",               "0"                     },
   { "sp_zonk.moving.right.ypos",               "6"                     },
   { "sp_zonk.moving.right.frames",             "4"                     },
   { "sp_zonk.moving.right.start_frame",                "1"                     },
   { "sp_zonk.moving.right.delay",              "1"                     },
-  { "sp_zonk.pushing.left",                    "RocksSP.pcx"           },
+  { "sp_zonk.pushing.left",                    "RocksSP.png"           },
   { "sp_zonk.pushing.left.xpos",               "0"                     },
   { "sp_zonk.pushing.left.ypos",               "6"                     },
   { "sp_zonk.pushing.left.frames",             "4"                     },
   { "sp_zonk.pushing.left.delay",              "1"                     },
   { "sp_zonk.pushing.left.anim_mode",          "reverse"               },
-  { "sp_zonk.pushing.right",                   "RocksSP.pcx"           },
+  { "sp_zonk.pushing.right",                   "RocksSP.png"           },
   { "sp_zonk.pushing.right.xpos",              "0"                     },
   { "sp_zonk.pushing.right.ypos",              "6"                     },
   { "sp_zonk.pushing.right.frames",            "4"                     },
   { "sp_zonk.pushing.right.start_frame",       "1"                     },
   { "sp_zonk.pushing.right.delay",             "1"                     },
 
-  { "sp_base",                                 "RocksSP.pcx"           },
+  { "sp_base",                                 "RocksSP.png"           },
   { "sp_base.xpos",                            "2"                     },
   { "sp_base.ypos",                            "0"                     },
   { "sp_base.frames",                          "1"                     },
-  { "sp_base.digging",                         "RocksSP.pcx"           },
+  { "sp_base.digging",                         "RocksSP.png"           },
   { "sp_base.digging.xpos",                    "2"                     },
   { "sp_base.digging.ypos",                    "0"                     },
   { "sp_base.digging.frames",                  "1"                     },
   { "sp_base.digging.anim_mode",               "opaque_player"         },
-  { "sp_base.snapping",                                "RocksSP.pcx"           },
+  { "sp_base.snapping",                                "RocksSP.png"           },
   { "sp_base.snapping.xpos",                   "8"                     },
   { "sp_base.snapping.ypos",                   "2"                     },
   { "sp_base.snapping.frames",                 "7"                     },
   { "sp_base.snapping.anim_mode",              "linear"                },
 
-  { "sp_murphy",                               "RocksSP.pcx"           },
+  { "sp_murphy",                               "RocksSP.png"           },
   { "sp_murphy.xpos",                          "3"                     },
   { "sp_murphy.ypos",                          "0"                     },
   { "sp_murphy.frames",                                "1"                     },
-  { "sp_murphy.moving.left",                   "RocksSP.pcx"           },
+  { "sp_murphy.moving.left",                   "RocksSP.png"           },
   { "sp_murphy.moving.left.xpos",              "8"                     },
   { "sp_murphy.moving.left.ypos",              "0"                     },
   { "sp_murphy.moving.left.frames",            "3"                     },
   { "sp_murphy.moving.left.anim_mode",         "pingpong"              },
   { "sp_murphy.moving.left.delay",             "2"                     },
   { "sp_murphy.moving.left.start_frame",       "1"                     },
-  { "sp_murphy.moving.right",                  "RocksSP.pcx"           },
+  { "sp_murphy.moving.right",                  "RocksSP.png"           },
   { "sp_murphy.moving.right.xpos",             "11"                    },
   { "sp_murphy.moving.right.ypos",             "0"                     },
   { "sp_murphy.moving.right.frames",           "3"                     },
   { "sp_murphy.moving.right.anim_mode",                "pingpong"              },
   { "sp_murphy.moving.right.delay",            "2"                     },
   { "sp_murphy.moving.right.start_frame",      "1"                     },
-  { "sp_murphy.digging.left",                  "RocksSP.pcx"           },
+  { "sp_murphy.digging.left",                  "RocksSP.png"           },
   { "sp_murphy.digging.left.xpos",             "8"                     },
   { "sp_murphy.digging.left.ypos",             "0"                     },
   { "sp_murphy.digging.left.frames",           "3"                     },
   { "sp_murphy.digging.left.anim_mode",                "pingpong"              },
   { "sp_murphy.digging.left.delay",            "2"                     },
   { "sp_murphy.digging.left.start_frame",      "1"                     },
-  { "sp_murphy.digging.right",                 "RocksSP.pcx"           },
+  { "sp_murphy.digging.right",                 "RocksSP.png"           },
   { "sp_murphy.digging.right.xpos",            "11"                    },
   { "sp_murphy.digging.right.ypos",            "0"                     },
   { "sp_murphy.digging.right.frames",          "3"                     },
   { "sp_murphy.digging.right.anim_mode",       "pingpong"              },
   { "sp_murphy.digging.right.delay",           "2"                     },
   { "sp_murphy.digging.right.start_frame",     "1"                     },
-  { "sp_murphy.collecting.left",               "RocksSP.pcx"           },
+  { "sp_murphy.collecting.left",               "RocksSP.png"           },
   { "sp_murphy.collecting.left.xpos",          "8"                     },
   { "sp_murphy.collecting.left.ypos",          "0"                     },
   { "sp_murphy.collecting.left.frames",                "3"                     },
   { "sp_murphy.collecting.left.anim_mode",     "pingpong"              },
   { "sp_murphy.collecting.left.delay",         "2"                     },
   { "sp_murphy.collecting.left.start_frame",   "1"                     },
-  { "sp_murphy.collecting.right",              "RocksSP.pcx"           },
+  { "sp_murphy.collecting.right",              "RocksSP.png"           },
   { "sp_murphy.collecting.right.xpos",         "11"                    },
   { "sp_murphy.collecting.right.ypos",         "0"                     },
   { "sp_murphy.collecting.right.frames",       "3"                     },
   { "sp_murphy.collecting.right.anim_mode",    "pingpong"              },
   { "sp_murphy.collecting.right.delay",                "2"                     },
   { "sp_murphy.collecting.right.start_frame",  "1"                     },
-  { "sp_murphy.pushing.left",                  "RocksSP.pcx"           },
+  { "sp_murphy.pushing.left",                  "RocksSP.png"           },
   { "sp_murphy.pushing.left.xpos",             "11"                    },
   { "sp_murphy.pushing.left.ypos",             "1"                     },
   { "sp_murphy.pushing.left.frames",           "1"                     },
-  { "sp_murphy.pushing.right",                 "RocksSP.pcx"           },
+  { "sp_murphy.pushing.right",                 "RocksSP.png"           },
   { "sp_murphy.pushing.right.xpos",            "10"                    },
   { "sp_murphy.pushing.right.ypos",            "1"                     },
   { "sp_murphy.pushing.right.frames",          "1"                     },
-  { "sp_murphy.snapping.left",                 "RocksSP.pcx"           },
+  { "sp_murphy.snapping.left",                 "RocksSP.png"           },
   { "sp_murphy.snapping.left.xpos",            "9"                     },
   { "sp_murphy.snapping.left.ypos",            "1"                     },
   { "sp_murphy.snapping.left.frames",          "1"                     },
-  { "sp_murphy.snapping.right",                        "RocksSP.pcx"           },
+  { "sp_murphy.snapping.right",                        "RocksSP.png"           },
   { "sp_murphy.snapping.right.xpos",           "8"                     },
   { "sp_murphy.snapping.right.ypos",           "1"                     },
   { "sp_murphy.snapping.right.frames",         "1"                     },
-  { "sp_murphy.snapping.up",                   "RocksSP.pcx"           },
+  { "sp_murphy.snapping.up",                   "RocksSP.png"           },
   { "sp_murphy.snapping.up.xpos",              "14"                    },
   { "sp_murphy.snapping.up.ypos",              "0"                     },
   { "sp_murphy.snapping.up.frames",            "1"                     },
-  { "sp_murphy.snapping.down",                 "RocksSP.pcx"           },
+  { "sp_murphy.snapping.down",                 "RocksSP.png"           },
   { "sp_murphy.snapping.down.xpos",            "15"                    },
   { "sp_murphy.snapping.down.ypos",            "0"                     },
   { "sp_murphy.snapping.down.frames",          "1"                     },
-  { "sp_murphy.boring",                                "RocksSP.pcx"           },
+  { "sp_murphy.boring",                                "RocksSP.png"           },
   { "sp_murphy.boring.xpos",                   "11"                    },
   { "sp_murphy.boring.ypos",                   "12"                    },
   { "sp_murphy.boring.frames",                 "1"                     },
-  { "sp_murphy.boring[1]",                     "RocksSP.pcx"           },
+  { "sp_murphy.boring[1]",                     "RocksSP.png"           },
   { "sp_murphy.boring[1].xpos",                        "0"                     },
   { "sp_murphy.boring[1].ypos",                        "12"                    },
   { "sp_murphy.boring[1].frames",              "12"                    },
@@ -418,327 +418,327 @@ struct ConfigInfo image_config[] =
   { "sp_murphy.boring[1].anim_delay_random",   "0"                     },
   { "sp_murphy.boring[1].post_delay_fixed",    "500"                   },
   { "sp_murphy.boring[1].post_delay_random",   "500"                   },
-  { "sp_murphy.sleeping.left",                 "RocksSP.pcx"           },
+  { "sp_murphy.sleeping.left",                 "RocksSP.png"           },
   { "sp_murphy.sleeping.left.xpos",            "4"                     },
   { "sp_murphy.sleeping.left.ypos",            "9"                     },
   { "sp_murphy.sleeping.left.frames",          "3"                     },
   { "sp_murphy.sleeping.left.delay",           "100"                   },
   { "sp_murphy.sleeping.left.anim_mode",       "linear,reverse"        },
-  { "sp_murphy.sleeping.right",                        "RocksSP.pcx"           },
+  { "sp_murphy.sleeping.right",                        "RocksSP.png"           },
   { "sp_murphy.sleeping.right.xpos",           "13"                    },
   { "sp_murphy.sleeping.right.ypos",           "12"                    },
   { "sp_murphy.sleeping.right.frames",         "3"                     },
   { "sp_murphy.sleeping.right.delay",          "100"                   },
   { "sp_murphy.sleeping.right.anim_mode",      "linear"                },
-  { "sp_murphy.dropping",                      "RocksSP.pcx"           },
+  { "sp_murphy.dropping",                      "RocksSP.png"           },
   { "sp_murphy.dropping.xpos",                 "11"                    },
   { "sp_murphy.dropping.ypos",                 "12"                    },
   { "sp_murphy.dropping.frames",               "1"                     },
-  { "sp_murphy.shrinking",                     "RocksSP.pcx"           },
+  { "sp_murphy.shrinking",                     "RocksSP.png"           },
   { "sp_murphy.shrinking.xpos",                        "8"                     },
   { "sp_murphy.shrinking.ypos",                        "14"                    },
   { "sp_murphy.shrinking.frames",              "8"                     },
   { "sp_murphy.shrinking.delay",               "4"                     },
   { "sp_murphy.shrinking.anim_mode",           "linear"                },
 
-  { "sp_murphy_clone",                         "RocksSP.pcx"           },
+  { "sp_murphy_clone",                         "RocksSP.png"           },
   { "sp_murphy_clone.xpos",                    "3"                     },
   { "sp_murphy_clone.ypos",                    "0"                     },
   { "sp_murphy_clone.frames",                  "1"                     },
 
-  { "sp_infotron",                             "RocksSP.pcx"           },
+  { "sp_infotron",                             "RocksSP.png"           },
   { "sp_infotron.xpos",                                "4"                     },
   { "sp_infotron.ypos",                                "0"                     },
   { "sp_infotron.frames",                      "1"                     },
-  { "sp_infotron.EDITOR",                      "RocksSP.pcx"           },
+  { "sp_infotron.EDITOR",                      "RocksSP.png"           },
   { "sp_infotron.EDITOR.xpos",                 "8"                     },
   { "sp_infotron.EDITOR.ypos",                 "11"                    },
-  { "sp_infotron.moving.left",                 "RocksSP.pcx"           },
+  { "sp_infotron.moving.left",                 "RocksSP.png"           },
   { "sp_infotron.moving.left.xpos",            "8"                     },
   { "sp_infotron.moving.left.ypos",            "13"                    },
   { "sp_infotron.moving.left.frames",          "8"                     },
-  { "sp_infotron.moving.right",                        "RocksSP.pcx"           },
+  { "sp_infotron.moving.right",                        "RocksSP.png"           },
   { "sp_infotron.moving.right.xpos",           "8"                     },
   { "sp_infotron.moving.right.ypos",           "13"                    },
   { "sp_infotron.moving.right.frames",         "8"                     },
   { "sp_infotron.moving.right.start_frame",    "6"                     },
   { "sp_infotron.moving.right.anim_mode",      "reverse"               },
-  { "sp_infotron.collecting",                  "RocksSP.pcx"           },
+  { "sp_infotron.collecting",                  "RocksSP.png"           },
   { "sp_infotron.collecting.xpos",             "8"                     },
   { "sp_infotron.collecting.ypos",             "7"                     },
   { "sp_infotron.collecting.frames",           "8"                     },
   { "sp_infotron.collecting.anim_mode",                "linear"                },
 
-  { "sp_chip_single",                          "RocksSP.pcx"           },
+  { "sp_chip_single",                          "RocksSP.png"           },
   { "sp_chip_single.xpos",                     "5"                     },
   { "sp_chip_single.ypos",                     "0"                     },
   { "sp_chip_single.frames",                   "1"                     },
-  { "sp_chip_left",                            "RocksSP.pcx"           },
+  { "sp_chip_left",                            "RocksSP.png"           },
   { "sp_chip_left.xpos",                       "2"                     },
   { "sp_chip_left.ypos",                       "3"                     },
   { "sp_chip_left.frames",                     "1"                     },
-  { "sp_chip_right",                           "RocksSP.pcx"           },
+  { "sp_chip_right",                           "RocksSP.png"           },
   { "sp_chip_right.xpos",                      "3"                     },
   { "sp_chip_right.ypos",                      "3"                     },
   { "sp_chip_right.frames",                    "1"                     },
-  { "sp_chip_top",                             "RocksSP.pcx"           },
+  { "sp_chip_top",                             "RocksSP.png"           },
   { "sp_chip_top.xpos",                                "6"                     },
   { "sp_chip_top.ypos",                                "4"                     },
   { "sp_chip_top.frames",                      "1"                     },
-  { "sp_chip_bottom",                          "RocksSP.pcx"           },
+  { "sp_chip_bottom",                          "RocksSP.png"           },
   { "sp_chip_bottom.xpos",                     "7"                     },
   { "sp_chip_bottom.ypos",                     "4"                     },
   { "sp_chip_bottom.frames",                   "1"                     },
 
-  { "sp_hardware_gray",                                "RocksSP.pcx"           },
+  { "sp_hardware_gray",                                "RocksSP.png"           },
   { "sp_hardware_gray.xpos",                   "6"                     },
   { "sp_hardware_gray.ypos",                   "0"                     },
   { "sp_hardware_gray.frames",                 "1"                     },
-  { "sp_hardware_green",                       "RocksSP.pcx"           },
+  { "sp_hardware_green",                       "RocksSP.png"           },
   { "sp_hardware_green.xpos",                  "5"                     },
   { "sp_hardware_green.ypos",                  "3"                     },
   { "sp_hardware_green.frames",                        "1"                     },
-  { "sp_hardware_blue",                                "RocksSP.pcx"           },
+  { "sp_hardware_blue",                                "RocksSP.png"           },
   { "sp_hardware_blue.xpos",                   "6"                     },
   { "sp_hardware_blue.ypos",                   "3"                     },
   { "sp_hardware_blue.frames",                 "1"                     },
-  { "sp_hardware_red",                         "RocksSP.pcx"           },
+  { "sp_hardware_red",                         "RocksSP.png"           },
   { "sp_hardware_red.xpos",                    "7"                     },
   { "sp_hardware_red.ypos",                    "3"                     },
   { "sp_hardware_red.frames",                  "1"                     },
-  { "sp_hardware_yellow",                      "RocksSP.pcx"           },
+  { "sp_hardware_yellow",                      "RocksSP.png"           },
   { "sp_hardware_yellow.xpos",                 "0"                     },
   { "sp_hardware_yellow.ypos",                 "4"                     },
   { "sp_hardware_yellow.frames",               "1"                     },
 
-  { "sp_exit_closed",                          "RocksSP.pcx"           },
+  { "sp_exit_closed",                          "RocksSP.png"           },
   { "sp_exit_closed.xpos",                     "7"                     },
   { "sp_exit_closed.ypos",                     "0"                     },
   { "sp_exit_closed.frames",                   "1"                     },
-  { "sp_exit.opening",                         "RocksSP.pcx"           },
+  { "sp_exit.opening",                         "RocksSP.png"           },
   { "sp_exit.opening.xpos",                    "7"                     },
   { "sp_exit.opening.ypos",                    "0"                     },
   { "sp_exit.opening.frames",                  "1"                     },
-  { "sp_exit_open",                            "RocksSP.pcx"           },
+  { "sp_exit_open",                            "RocksSP.png"           },
   { "sp_exit_open.xpos",                       "7"                     },
   { "sp_exit_open.ypos",                       "0"                     },
   { "sp_exit_open.frames",                     "1"                     },
-  { "sp_exit.closing",                         "RocksSP.pcx"           },
+  { "sp_exit.closing",                         "RocksSP.png"           },
   { "sp_exit.closing.xpos",                    "7"                     },
   { "sp_exit.closing.ypos",                    "0"                     },
   { "sp_exit.closing.frames",                  "1"                     },
 
-  { "sp_disk_orange",                          "RocksSP.pcx"           },
+  { "sp_disk_orange",                          "RocksSP.png"           },
   { "sp_disk_orange.xpos",                     "0"                     },
   { "sp_disk_orange.ypos",                     "1"                     },
   { "sp_disk_orange.frames",                   "1"                     },
 
-  { "sp_disk_yellow",                          "RocksSP.pcx"           },
+  { "sp_disk_yellow",                          "RocksSP.png"           },
   { "sp_disk_yellow.xpos",                     "2"                     },
   { "sp_disk_yellow.ypos",                     "2"                     },
   { "sp_disk_yellow.frames",                   "1"                     },
 
-  { "sp_disk_red",                             "RocksSP.pcx"           },
+  { "sp_disk_red",                             "RocksSP.png"           },
   { "sp_disk_red.xpos",                                "4"                     },
   { "sp_disk_red.ypos",                                "2"                     },
   { "sp_disk_red.frames",                      "1"                     },
-  { "sp_disk_red.collecting",                  "RocksSP.pcx"           },
+  { "sp_disk_red.collecting",                  "RocksSP.png"           },
   { "sp_disk_red.collecting.xpos",             "9"                     },
   { "sp_disk_red.collecting.ypos",             "5"                     },
   { "sp_disk_red.collecting.frames",           "7"                     },
   { "sp_disk_red.collecting.anim_mode",                "linear"                },
-  { "sp_disk_red.active",                      "RocksSP.pcx"           },
+  { "sp_disk_red.active",                      "RocksSP.png"           },
   { "sp_disk_red.active.xpos",                 "4"                     },
   { "sp_disk_red.active.ypos",                 "2"                     },
   { "sp_disk_red.active.frames",               "1"                     },
 
-  { "sp_port_right",                           "RocksSP.pcx"           },
+  { "sp_port_right",                           "RocksSP.png"           },
   { "sp_port_right.xpos",                      "1"                     },
   { "sp_port_right.ypos",                      "1"                     },
   { "sp_port_right.frames",                    "1"                     },
-  { "sp_port_down",                            "RocksSP.pcx"           },
+  { "sp_port_down",                            "RocksSP.png"           },
   { "sp_port_down.xpos",                       "2"                     },
   { "sp_port_down.ypos",                       "1"                     },
   { "sp_port_down.frames",                     "1"                     },
-  { "sp_port_left",                            "RocksSP.pcx"           },
+  { "sp_port_left",                            "RocksSP.png"           },
   { "sp_port_left.xpos",                       "3"                     },
   { "sp_port_left.ypos",                       "1"                     },
   { "sp_port_left.frames",                     "1"                     },
-  { "sp_port_up",                              "RocksSP.pcx"           },
+  { "sp_port_up",                              "RocksSP.png"           },
   { "sp_port_up.xpos",                         "4"                     },
   { "sp_port_up.ypos",                         "1"                     },
   { "sp_port_up.frames",                       "1"                     },
-  { "sp_port_horizontal",                      "RocksSP.pcx"           },
+  { "sp_port_horizontal",                      "RocksSP.png"           },
   { "sp_port_horizontal.xpos",                 "6"                     },
   { "sp_port_horizontal.ypos",                 "2"                     },
   { "sp_port_horizontal.frames",               "1"                     },
-  { "sp_port_vertical",                                "RocksSP.pcx"           },
+  { "sp_port_vertical",                                "RocksSP.png"           },
   { "sp_port_vertical.xpos",                   "5"                     },
   { "sp_port_vertical.ypos",                   "2"                     },
   { "sp_port_vertical.frames",                 "1"                     },
-  { "sp_port_any",                             "RocksSP.pcx"           },
+  { "sp_port_any",                             "RocksSP.png"           },
   { "sp_port_any.xpos",                                "7"                     },
   { "sp_port_any.ypos",                                "2"                     },
   { "sp_port_any.frames",                      "1"                     },
-  { "sp_gravity_port_right",                   "RocksSP.pcx"           },
+  { "sp_gravity_port_right",                   "RocksSP.png"           },
   { "sp_gravity_port_right.xpos",              "1"                     },
   { "sp_gravity_port_right.ypos",              "1"                     },
   { "sp_gravity_port_right.frames",            "1"                     },
-  { "sp_gravity_port_right.EDITOR",            "RocksSP.pcx"           },
+  { "sp_gravity_port_right.EDITOR",            "RocksSP.png"           },
   { "sp_gravity_port_right.EDITOR.xpos",       "0"                     },
   { "sp_gravity_port_right.EDITOR.ypos",       "14"                    },
-  { "sp_gravity_port_down",                    "RocksSP.pcx"           },
+  { "sp_gravity_port_down",                    "RocksSP.png"           },
   { "sp_gravity_port_down.xpos",               "2"                     },
   { "sp_gravity_port_down.ypos",               "1"                     },
   { "sp_gravity_port_down.frames",             "1"                     },
-  { "sp_gravity_port_down.EDITOR",             "RocksSP.pcx"           },
+  { "sp_gravity_port_down.EDITOR",             "RocksSP.png"           },
   { "sp_gravity_port_down.EDITOR.xpos",                "1"                     },
   { "sp_gravity_port_down.EDITOR.ypos",                "14"                    },
-  { "sp_gravity_port_left",                    "RocksSP.pcx"           },
+  { "sp_gravity_port_left",                    "RocksSP.png"           },
   { "sp_gravity_port_left.xpos",               "3"                     },
   { "sp_gravity_port_left.ypos",               "1"                     },
   { "sp_gravity_port_left.frames",             "1"                     },
-  { "sp_gravity_port_left.EDITOR",             "RocksSP.pcx"           },
+  { "sp_gravity_port_left.EDITOR",             "RocksSP.png"           },
   { "sp_gravity_port_left.EDITOR.xpos",                "2"                     },
   { "sp_gravity_port_left.EDITOR.ypos",                "14"                    },
-  { "sp_gravity_port_up",                      "RocksSP.pcx"           },
+  { "sp_gravity_port_up",                      "RocksSP.png"           },
   { "sp_gravity_port_up.xpos",                 "4"                     },
   { "sp_gravity_port_up.ypos",                 "1"                     },
   { "sp_gravity_port_up.frames",               "1"                     },
-  { "sp_gravity_port_up.EDITOR",               "RocksSP.pcx"           },
+  { "sp_gravity_port_up.EDITOR",               "RocksSP.png"           },
   { "sp_gravity_port_up.EDITOR.xpos",          "3"                     },
   { "sp_gravity_port_up.EDITOR.ypos",          "14"                    },
-  { "sp_gravity_on_port_right",                        "RocksSP.pcx"           },
+  { "sp_gravity_on_port_right",                        "RocksSP.png"           },
   { "sp_gravity_on_port_right.xpos",           "1"                     },
   { "sp_gravity_on_port_right.ypos",           "1"                     },
   { "sp_gravity_on_port_right.frames",         "1"                     },
-  { "sp_gravity_on_port_right.EDITOR",         "RocksSP.pcx"           },
+  { "sp_gravity_on_port_right.EDITOR",         "RocksSP.png"           },
   { "sp_gravity_on_port_right.EDITOR.xpos",    "0"                     },
   { "sp_gravity_on_port_right.EDITOR.ypos",    "13"                    },
-  { "sp_gravity_on_port_down",                 "RocksSP.pcx"           },
+  { "sp_gravity_on_port_down",                 "RocksSP.png"           },
   { "sp_gravity_on_port_down.xpos",            "2"                     },
   { "sp_gravity_on_port_down.ypos",            "1"                     },
   { "sp_gravity_on_port_down.frames",          "1"                     },
-  { "sp_gravity_on_port_down.EDITOR",          "RocksSP.pcx"           },
+  { "sp_gravity_on_port_down.EDITOR",          "RocksSP.png"           },
   { "sp_gravity_on_port_down.EDITOR.xpos",     "1"                     },
   { "sp_gravity_on_port_down.EDITOR.ypos",     "13"                    },
-  { "sp_gravity_on_port_left",                 "RocksSP.pcx"           },
+  { "sp_gravity_on_port_left",                 "RocksSP.png"           },
   { "sp_gravity_on_port_left.xpos",            "3"                     },
   { "sp_gravity_on_port_left.ypos",            "1"                     },
   { "sp_gravity_on_port_left.frames",          "1"                     },
-  { "sp_gravity_on_port_left.EDITOR",          "RocksSP.pcx"           },
+  { "sp_gravity_on_port_left.EDITOR",          "RocksSP.png"           },
   { "sp_gravity_on_port_left.EDITOR.xpos",     "2"                     },
   { "sp_gravity_on_port_left.EDITOR.ypos",     "13"                    },
-  { "sp_gravity_on_port_up",                   "RocksSP.pcx"           },
+  { "sp_gravity_on_port_up",                   "RocksSP.png"           },
   { "sp_gravity_on_port_up.xpos",              "4"                     },
   { "sp_gravity_on_port_up.ypos",              "1"                     },
   { "sp_gravity_on_port_up.frames",            "1"                     },
-  { "sp_gravity_on_port_up.EDITOR",            "RocksSP.pcx"           },
+  { "sp_gravity_on_port_up.EDITOR",            "RocksSP.png"           },
   { "sp_gravity_on_port_up.EDITOR.xpos",       "3"                     },
   { "sp_gravity_on_port_up.EDITOR.ypos",       "13"                    },
-  { "sp_gravity_off_port_right",               "RocksSP.pcx"           },
+  { "sp_gravity_off_port_right",               "RocksSP.png"           },
   { "sp_gravity_off_port_right.xpos",          "1"                     },
   { "sp_gravity_off_port_right.ypos",          "1"                     },
   { "sp_gravity_off_port_right.frames",                "1"                     },
-  { "sp_gravity_off_port_right.EDITOR",                "RocksSP.pcx"           },
+  { "sp_gravity_off_port_right.EDITOR",                "RocksSP.png"           },
   { "sp_gravity_off_port_right.EDITOR.xpos",   "4"                     },
   { "sp_gravity_off_port_right.EDITOR.ypos",   "13"                    },
-  { "sp_gravity_off_port_down",                        "RocksSP.pcx"           },
+  { "sp_gravity_off_port_down",                        "RocksSP.png"           },
   { "sp_gravity_off_port_down.xpos",           "2"                     },
   { "sp_gravity_off_port_down.ypos",           "1"                     },
   { "sp_gravity_off_port_down.frames",         "1"                     },
-  { "sp_gravity_off_port_down.EDITOR",         "RocksSP.pcx"           },
+  { "sp_gravity_off_port_down.EDITOR",         "RocksSP.png"           },
   { "sp_gravity_off_port_down.EDITOR.xpos",    "5"                     },
   { "sp_gravity_off_port_down.EDITOR.ypos",    "13"                    },
-  { "sp_gravity_off_port_left",                        "RocksSP.pcx"           },
+  { "sp_gravity_off_port_left",                        "RocksSP.png"           },
   { "sp_gravity_off_port_left.xpos",           "3"                     },
   { "sp_gravity_off_port_left.ypos",           "1"                     },
   { "sp_gravity_off_port_left.frames",         "1"                     },
-  { "sp_gravity_off_port_left.EDITOR",         "RocksSP.pcx"           },
+  { "sp_gravity_off_port_left.EDITOR",         "RocksSP.png"           },
   { "sp_gravity_off_port_left.EDITOR.xpos",    "6"                     },
   { "sp_gravity_off_port_left.EDITOR.ypos",    "13"                    },
-  { "sp_gravity_off_port_up",                  "RocksSP.pcx"           },
+  { "sp_gravity_off_port_up",                  "RocksSP.png"           },
   { "sp_gravity_off_port_up.xpos",             "4"                     },
   { "sp_gravity_off_port_up.ypos",             "1"                     },
   { "sp_gravity_off_port_up.frames",           "1"                     },
-  { "sp_gravity_off_port_up.EDITOR",           "RocksSP.pcx"           },
+  { "sp_gravity_off_port_up.EDITOR",           "RocksSP.png"           },
   { "sp_gravity_off_port_up.EDITOR.xpos",      "7"                     },
   { "sp_gravity_off_port_up.EDITOR.ypos",      "13"                    },
 
-  { "sp_sniksnak",                             "RocksSP.pcx"           },
+  { "sp_sniksnak",                             "RocksSP.png"           },
   { "sp_sniksnak.xpos",                                "1"                     },
   { "sp_sniksnak.ypos",                                "2"                     },
   { "sp_sniksnak.frames",                      "1"                     },
-  { "sp_sniksnak.left",                                "RocksSP.pcx"           },
+  { "sp_sniksnak.left",                                "RocksSP.png"           },
   { "sp_sniksnak.left.xpos",                   "8"                     },
   { "sp_sniksnak.left.ypos",                   "8"                     },
   { "sp_sniksnak.left.frames",                 "4"                     },
   { "sp_sniksnak.left.anim_mode",              "pingpong2"             },
-  { "sp_sniksnak.right",                       "RocksSP.pcx"           },
+  { "sp_sniksnak.right",                       "RocksSP.png"           },
   { "sp_sniksnak.right.xpos",                  "12"                    },
   { "sp_sniksnak.right.ypos",                  "8"                     },
   { "sp_sniksnak.right.frames",                        "4"                     },
   { "sp_sniksnak.right.anim_mode",             "pingpong2"             },
-  { "sp_sniksnak.up",                          "RocksSP.pcx"           },
+  { "sp_sniksnak.up",                          "RocksSP.png"           },
   { "sp_sniksnak.up.xpos",                     "8"                     },
   { "sp_sniksnak.up.ypos",                     "9"                     },
   { "sp_sniksnak.up.frames",                   "4"                     },
   { "sp_sniksnak.up.anim_mode",                        "pingpong2"             },
-  { "sp_sniksnak.down",                                "RocksSP.pcx"           },
+  { "sp_sniksnak.down",                                "RocksSP.png"           },
   { "sp_sniksnak.down.xpos",                   "12"                    },
   { "sp_sniksnak.down.ypos",                   "9"                     },
   { "sp_sniksnak.down.frames",                 "4"                     },
   { "sp_sniksnak.down.anim_mode",              "pingpong2"             },
-  { "sp_sniksnak.turning_from_left.up",                "RocksSP.pcx"           },
+  { "sp_sniksnak.turning_from_left.up",                "RocksSP.png"           },
   { "sp_sniksnak.turning_from_left.up.xpos",   "12"                    },
   { "sp_sniksnak.turning_from_left.up.ypos",   "6"                     },
   { "sp_sniksnak.turning_from_left.up.frames", "2"                     },
   { "sp_sniksnak.turning_from_left.up.delay",  "4"                     },
   { "sp_sniksnak.turning_from_left.up.offset", "1408"                  },
   { "sp_sniksnak.turning_from_left.up.anim_mode","linear"              },
-  { "sp_sniksnak.turning_from_left.down",      "RocksSP.pcx"           },
+  { "sp_sniksnak.turning_from_left.down",      "RocksSP.png"           },
   { "sp_sniksnak.turning_from_left.down.xpos", "13"                    },
   { "sp_sniksnak.turning_from_left.down.ypos", "6"                     },
   { "sp_sniksnak.turning_from_left.down.frames","2"                    },
   { "sp_sniksnak.turning_from_left.down.delay",        "4"                     },
   { "sp_sniksnak.turning_from_left.down.offset","1504"                 },
   { "sp_sniksnak.turning_from_left.down.anim_mode","linear"            },
-  { "sp_sniksnak.turning_from_right.up",       "RocksSP.pcx"           },
+  { "sp_sniksnak.turning_from_right.up",       "RocksSP.png"           },
   { "sp_sniksnak.turning_from_right.up.xpos",  "15"                    },
   { "sp_sniksnak.turning_from_right.up.ypos",  "6"                     },
   { "sp_sniksnak.turning_from_right.up.frames",        "2"                     },
   { "sp_sniksnak.turning_from_right.up.delay", "4"                     },
   { "sp_sniksnak.turning_from_right.up.offset",        "1312"                  },
   { "sp_sniksnak.turning_from_right.up.anim_mode","linear"             },
-  { "sp_sniksnak.turning_from_right.down",     "RocksSP.pcx"           },
+  { "sp_sniksnak.turning_from_right.down",     "RocksSP.png"           },
   { "sp_sniksnak.turning_from_right.down.xpos",        "14"                    },
   { "sp_sniksnak.turning_from_right.down.ypos",        "6"                     },
   { "sp_sniksnak.turning_from_right.down.frames","2"                   },
   { "sp_sniksnak.turning_from_right.down.delay","4"                    },
   { "sp_sniksnak.turning_from_right.down.offset","1472"                        },
   { "sp_sniksnak.turning_from_right.down.anim_mode","linear"           },
-  { "sp_sniksnak.turning_from_up.left",                "RocksSP.pcx"           },
+  { "sp_sniksnak.turning_from_up.left",                "RocksSP.png"           },
   { "sp_sniksnak.turning_from_up.left.xpos",   "12"                    },
   { "sp_sniksnak.turning_from_up.left.ypos",   "6"                     },
   { "sp_sniksnak.turning_from_up.left.frames", "2"                     },
   { "sp_sniksnak.turning_from_up.left.delay",  "4"                     },
   { "sp_sniksnak.turning_from_up.left.offset", "896"                   },
   { "sp_sniksnak.turning_from_up.left.anim_mode","linear"              },
-  { "sp_sniksnak.turning_from_up.right",       "RocksSP.pcx"           },
+  { "sp_sniksnak.turning_from_up.right",       "RocksSP.png"           },
   { "sp_sniksnak.turning_from_up.right.xpos",  "15"                    },
   { "sp_sniksnak.turning_from_up.right.ypos",  "6"                     },
   { "sp_sniksnak.turning_from_up.right.frames",        "2"                     },
   { "sp_sniksnak.turning_from_up.right.delay", "4"                     },
   { "sp_sniksnak.turning_from_up.right.offset",        "928"                   },
   { "sp_sniksnak.turning_from_up.right.anim_mode","linear"             },
-  { "sp_sniksnak.turning_from_down.left",      "RocksSP.pcx"           },
+  { "sp_sniksnak.turning_from_down.left",      "RocksSP.png"           },
   { "sp_sniksnak.turning_from_down.left.xpos", "13"                    },
   { "sp_sniksnak.turning_from_down.left.ypos", "6"                     },
   { "sp_sniksnak.turning_from_down.left.frames","2"                    },
   { "sp_sniksnak.turning_from_down.left.delay",        "4"                     },
   { "sp_sniksnak.turning_from_down.left.offset","864"                  },
   { "sp_sniksnak.turning_from_down.left.anim_mode","linear"            },
-  { "sp_sniksnak.turning_from_down.right",     "RocksSP.pcx"           },
+  { "sp_sniksnak.turning_from_down.right",     "RocksSP.png"           },
   { "sp_sniksnak.turning_from_down.right.xpos",        "14"                    },
   { "sp_sniksnak.turning_from_down.right.ypos",        "6"                     },
   { "sp_sniksnak.turning_from_down.right.frames","2"                   },
@@ -746,966 +746,966 @@ struct ConfigInfo image_config[] =
   { "sp_sniksnak.turning_from_down.right.offset","960"                 },
   { "sp_sniksnak.turning_from_down.right.anim_mode","linear"           },
 
-  { "sp_electron",                             "RocksSP.pcx"           },
+  { "sp_electron",                             "RocksSP.png"           },
   { "sp_electron.xpos",                                "8"                     },
   { "sp_electron.ypos",                                "10"                    },
   { "sp_electron.frames",                      "8"                     },
   { "sp_electron.delay",                       "4"                     },
   { "sp_electron.global_sync",                 "true"                  },
-  { "sp_electron.EDITOR",                      "RocksSP.pcx"           },
+  { "sp_electron.EDITOR",                      "RocksSP.png"           },
   { "sp_electron.EDITOR.xpos",                 "10"                    },
   { "sp_electron.EDITOR.ypos",                 "11"                    },
-  { "sp_electron.exploding",                   "RocksSP.pcx"           },
+  { "sp_electron.exploding",                   "RocksSP.png"           },
   { "sp_electron.exploding.xpos",              "8"                     },
   { "sp_electron.exploding.ypos",              "4"                     },
   { "sp_electron.exploding.frames",            "8"                     },
   { "sp_electron.exploding.delay",             "4"                     },
   { "sp_electron.exploding.anim_mode",         "linear"                },
 
-  { "sp_terminal",                             "RocksSP.pcx"           },
+  { "sp_terminal",                             "RocksSP.png"           },
   { "sp_terminal.xpos",                                "0"                     },
   { "sp_terminal.ypos",                                "10"                    },
   { "sp_terminal.frames",                      "7"                     },
   { "sp_terminal.delay",                       "12"                    },
-  { "sp_terminal.EDITOR",                      "RocksSP.pcx"           },
+  { "sp_terminal.EDITOR",                      "RocksSP.png"           },
   { "sp_terminal.EDITOR.xpos",                 "9"                     },
   { "sp_terminal.EDITOR.ypos",                 "11"                    },
-  { "sp_terminal.active",                      "RocksSP.pcx"           },
+  { "sp_terminal.active",                      "RocksSP.png"           },
   { "sp_terminal.active.xpos",                 "0"                     },
   { "sp_terminal.active.ypos",                 "11"                    },
   { "sp_terminal.active.frames",               "7"                     },
   { "sp_terminal.active.delay",                        "4"                     },
 
-  { "sp_buggy_base",                           "RocksSP.pcx"           },
+  { "sp_buggy_base",                           "RocksSP.png"           },
   { "sp_buggy_base.xpos",                      "1"                     },
   { "sp_buggy_base.ypos",                      "3"                     },
   { "sp_buggy_base.frames",                    "1"                     },
-  { "sp_buggy_base.EDITOR",                    "RocksSP.pcx"           },
+  { "sp_buggy_base.EDITOR",                    "RocksSP.png"           },
   { "sp_buggy_base.EDITOR.xpos",               "9"                     },
   { "sp_buggy_base.EDITOR.ypos",               "6"                     },
-  { "sp_buggy_base.activating",                        "RocksSP.pcx"           },
+  { "sp_buggy_base.activating",                        "RocksSP.png"           },
   { "sp_buggy_base.activating.xpos",           "15"                    },
   { "sp_buggy_base.activating.ypos",           "2"                     },
   { "sp_buggy_base.activating.frames",         "1"                     },
-  { "sp_buggy_base.active",                    "RocksSP.pcx"           },
+  { "sp_buggy_base.active",                    "RocksSP.png"           },
   { "sp_buggy_base.active.xpos",               "8"                     },
   { "sp_buggy_base.active.ypos",               "6"                     },
   { "sp_buggy_base.active.frames",             "4"                     },
   { "sp_buggy_base.active.delay",              "4"                     },
   { "sp_buggy_base.active.anim_mode",          "pingpong"              },
 
-  { "sp_hardware_base_1",                      "RocksSP.pcx"           },
+  { "sp_hardware_base_1",                      "RocksSP.png"           },
   { "sp_hardware_base_1.xpos",                 "4"                     },
   { "sp_hardware_base_1.ypos",                 "3"                     },
   { "sp_hardware_base_1.frames",               "1"                     },
-  { "sp_hardware_base_2",                      "RocksSP.pcx"           },
+  { "sp_hardware_base_2",                      "RocksSP.png"           },
   { "sp_hardware_base_2.xpos",                 "1"                     },
   { "sp_hardware_base_2.ypos",                 "4"                     },
   { "sp_hardware_base_2.frames",               "1"                     },
-  { "sp_hardware_base_3",                      "RocksSP.pcx"           },
+  { "sp_hardware_base_3",                      "RocksSP.png"           },
   { "sp_hardware_base_3.xpos",                 "2"                     },
   { "sp_hardware_base_3.ypos",                 "4"                     },
   { "sp_hardware_base_3.frames",               "1"                     },
-  { "sp_hardware_base_4",                      "RocksSP.pcx"           },
+  { "sp_hardware_base_4",                      "RocksSP.png"           },
   { "sp_hardware_base_4.xpos",                 "3"                     },
   { "sp_hardware_base_4.ypos",                 "4"                     },
   { "sp_hardware_base_4.frames",               "1"                     },
-  { "sp_hardware_base_5",                      "RocksSP.pcx"           },
+  { "sp_hardware_base_5",                      "RocksSP.png"           },
   { "sp_hardware_base_5.xpos",                 "4"                     },
   { "sp_hardware_base_5.ypos",                 "4"                     },
   { "sp_hardware_base_5.frames",               "1"                     },
-  { "sp_hardware_base_6",                      "RocksSP.pcx"           },
+  { "sp_hardware_base_6",                      "RocksSP.png"           },
   { "sp_hardware_base_6.xpos",                 "5"                     },
   { "sp_hardware_base_6.ypos",                 "4"                     },
   { "sp_hardware_base_6.frames",               "1"                     },
 
   /* images for Sokoban style elements and actions */
 
-  { "sokoban_object",                          "RocksElements.pcx"     },
+  { "sokoban_object",                          "RocksElements.png"     },
   { "sokoban_object.xpos",                     "9"                     },
   { "sokoban_object.ypos",                     "7"                     },
   { "sokoban_object.frames",                   "1"                     },
-  { "sokoban_object.EDITOR",                   "RocksElements.pcx"     },
+  { "sokoban_object.EDITOR",                   "RocksElements.png"     },
   { "sokoban_object.EDITOR.xpos",              "2"                     },
   { "sokoban_object.EDITOR.ypos",              "14"                    },
 
-  { "sokoban_field_empty",                     "RocksElements.pcx"     },
+  { "sokoban_field_empty",                     "RocksElements.png"     },
   { "sokoban_field_empty.xpos",                        "10"                    },
   { "sokoban_field_empty.ypos",                        "7"                     },
   { "sokoban_field_empty.frames",              "1"                     },
 
-  { "sokoban_field_full",                      "RocksElements.pcx"     },
+  { "sokoban_field_full",                      "RocksElements.png"     },
   { "sokoban_field_full.xpos",                 "11"                    },
   { "sokoban_field_full.ypos",                 "7"                     },
   { "sokoban_field_full.frames",               "1"                     },
 
-  { "sokoban_field_player",                    "RocksHeroes.pcx"       },
+  { "sokoban_field_player",                    "RocksHeroes.png"       },
   { "sokoban_field_player.xpos",               "0"                     },
   { "sokoban_field_player.ypos",               "15"                    },
   { "sokoban_field_player.frames",             "1"                     },
-  { "sokoban_field_player.EDITOR",             "RocksHeroes.pcx"       },
+  { "sokoban_field_player.EDITOR",             "RocksHeroes.png"       },
   { "sokoban_field_player.EDITOR.xpos",                "1"                     },
   { "sokoban_field_player.EDITOR.ypos",                "15"                    },
 
   /* images for Emerald Mine style elements and actions */
 
-  { "empty_space",                             "RocksSP.pcx"           },
+  { "empty_space",                             "RocksSP.png"           },
   { "empty_space.xpos",                                "0"                     },
   { "empty_space.ypos",                                "0"                     },
   { "empty_space.frames",                      "1"                     },
 
-  { "sand",                                    "RocksElements.pcx"     },
+  { "sand",                                    "RocksElements.png"     },
   { "sand.xpos",                               "0"                     },
   { "sand.ypos",                               "0"                     },
   { "sand.frames",                             "1"                     },
-  { "sand.CRUMBLED",                           "RocksElements.pcx"     },
+  { "sand.CRUMBLED",                           "RocksElements.png"     },
   { "sand.CRUMBLED.xpos",                      "1"                     },
   { "sand.CRUMBLED.ypos",                      "0"                     },
   { "sand.CRUMBLED.frames",                    "1"                     },
-  { "sand.digging.left",                       "RocksMore.pcx"         },
+  { "sand.digging.left",                       "RocksMore.png"         },
   { "sand.digging.left.xpos",                  "6"                     },
   { "sand.digging.left.ypos",                  "3"                     },
   { "sand.digging.left.frames",                        "3"                     },
   { "sand.digging.left.delay",                 "2"                     },
   { "sand.digging.left.anim_mode",             "linear"                },
-  { "sand.digging.right",                      "RocksMore.pcx"         },
+  { "sand.digging.right",                      "RocksMore.png"         },
   { "sand.digging.right.xpos",                 "9"                     },
   { "sand.digging.right.ypos",                 "3"                     },
   { "sand.digging.right.frames",               "3"                     },
   { "sand.digging.right.delay",                        "2"                     },
   { "sand.digging.right.anim_mode",            "linear"                },
-  { "sand.digging.up",                         "RocksMore.pcx"         },
+  { "sand.digging.up",                         "RocksMore.png"         },
   { "sand.digging.up.xpos",                    "0"                     },
   { "sand.digging.up.ypos",                    "3"                     },
   { "sand.digging.up.frames",                  "3"                     },
   { "sand.digging.up.delay",                   "2"                     },
   { "sand.digging.up.anim_mode",               "linear"                },
-  { "sand.digging.down",                       "RocksMore.pcx"         },
+  { "sand.digging.down",                       "RocksMore.png"         },
   { "sand.digging.down.xpos",                  "3"                     },
   { "sand.digging.down.ypos",                  "3"                     },
   { "sand.digging.down.frames",                        "3"                     },
   { "sand.digging.down.delay",                 "2"                     },
   { "sand.digging.down.anim_mode",             "linear"                },
-  { "sand.digging.left.CRUMBLED",              "RocksMore.pcx"         },
+  { "sand.digging.left.CRUMBLED",              "RocksMore.png"         },
   { "sand.digging.left.CRUMBLED.xpos",         "6"                     },
   { "sand.digging.left.CRUMBLED.ypos",         "0"                     },
   { "sand.digging.left.CRUMBLED.frames",       "3"                     },
   { "sand.digging.left.CRUMBLED.delay",                "2"                     },
   { "sand.digging.left.CRUMBLED.anim_mode",    "linear"                },
-  { "sand.digging.right.CRUMBLED",             "RocksMore.pcx"         },
+  { "sand.digging.right.CRUMBLED",             "RocksMore.png"         },
   { "sand.digging.right.CRUMBLED.xpos",                "9"                     },
   { "sand.digging.right.CRUMBLED.ypos",                "0"                     },
   { "sand.digging.right.CRUMBLED.frames",      "3"                     },
   { "sand.digging.right.CRUMBLED.delay",       "2"                     },
   { "sand.digging.right.CRUMBLED.anim_mode",   "linear"                },
-  { "sand.digging.up.CRUMBLED",                        "RocksMore.pcx"         },
+  { "sand.digging.up.CRUMBLED",                        "RocksMore.png"         },
   { "sand.digging.up.CRUMBLED.xpos",           "0"                     },
   { "sand.digging.up.CRUMBLED.ypos",           "0"                     },
   { "sand.digging.up.CRUMBLED.frames",         "3"                     },
   { "sand.digging.up.CRUMBLED.delay",          "2"                     },
   { "sand.digging.up.CRUMBLED.anim_mode",      "linear"                },
-  { "sand.digging.down.CRUMBLED",              "RocksMore.pcx"         },
+  { "sand.digging.down.CRUMBLED",              "RocksMore.png"         },
   { "sand.digging.down.CRUMBLED.xpos",         "3"                     },
   { "sand.digging.down.CRUMBLED.ypos",         "0"                     },
   { "sand.digging.down.CRUMBLED.frames",       "3"                     },
   { "sand.digging.down.CRUMBLED.delay",                "2"                     },
   { "sand.digging.down.CRUMBLED.anim_mode",    "linear"                },
 
-  { "wall",                                    "RocksElements.pcx"     },
+  { "wall",                                    "RocksElements.png"     },
   { "wall.xpos",                               "5"                     },
   { "wall.ypos",                               "0"                     },
   { "wall.frames",                             "1"                     },
 
-  { "wall_slippery",                           "RocksElements.pcx"     },
+  { "wall_slippery",                           "RocksElements.png"     },
   { "wall_slippery.xpos",                      "6"                     },
   { "wall_slippery.ypos",                      "0"                     },
   { "wall_slippery.frames",                    "1"                     },
 
-  { "steelwall",                               "RocksElements.pcx"     },
+  { "steelwall",                               "RocksElements.png"     },
   { "steelwall.xpos",                          "4"                     },
   { "steelwall.ypos",                          "0"                     },
   { "steelwall.frames",                                "1"                     },
 
-  { "rock",                                    "RocksElements.pcx"     },
+  { "rock",                                    "RocksElements.png"     },
   { "rock.xpos",                               "12"                    },
   { "rock.ypos",                               "0"                     },
   { "rock.frames",                             "1"                     },
-  { "rock.moving.left",                                "RocksElements.pcx"     },
+  { "rock.moving.left",                                "RocksElements.png"     },
   { "rock.moving.left.xpos",                   "12"                    },
   { "rock.moving.left.ypos",                   "0"                     },
   { "rock.moving.left.frames",                 "4"                     },
   { "rock.moving.left.delay",                  "2"                     },
   { "rock.moving.left.anim_mode",              "reverse"               },
-  { "rock.moving.right",                       "RocksElements.pcx"     },
+  { "rock.moving.right",                       "RocksElements.png"     },
   { "rock.moving.right.xpos",                  "12"                    },
   { "rock.moving.right.ypos",                  "0"                     },
   { "rock.moving.right.frames",                        "4"                     },
   { "rock.moving.right.start_frame",           "1"                     },
   { "rock.moving.right.delay",                 "2"                     },
-  { "rock.pushing.left",                       "RocksElements.pcx"     },
+  { "rock.pushing.left",                       "RocksElements.png"     },
   { "rock.pushing.left.xpos",                  "12"                    },
   { "rock.pushing.left.ypos",                  "0"                     },
   { "rock.pushing.left.frames",                        "4"                     },
   { "rock.pushing.left.delay",                 "2"                     },
   { "rock.pushing.left.anim_mode",             "reverse"               },
-  { "rock.pushing.right",                      "RocksElements.pcx"     },
+  { "rock.pushing.right",                      "RocksElements.png"     },
   { "rock.pushing.right.xpos",                 "12"                    },
   { "rock.pushing.right.ypos",                 "0"                     },
   { "rock.pushing.right.frames",               "4"                     },
   { "rock.pushing.right.start_frame",          "1"                     },
   { "rock.pushing.right.delay",                        "2"                     },
 
-  { "emerald",                                 "RocksElements.pcx"     },
+  { "emerald",                                 "RocksElements.png"     },
   { "emerald.xpos",                            "8"                     },
   { "emerald.ypos",                            "0"                     },
   { "emerald.frames",                          "1"                     },
-  { "emerald.moving",                          "RocksElements.pcx"     },
+  { "emerald.moving",                          "RocksElements.png"     },
   { "emerald.moving.xpos",                     "8"                     },
   { "emerald.moving.ypos",                     "0"                     },
   { "emerald.moving.frames",                   "2"                     },
   { "emerald.moving.delay",                    "4"                     },
-  { "emerald.falling",                         "RocksElements.pcx"     },
+  { "emerald.falling",                         "RocksElements.png"     },
   { "emerald.falling.xpos",                    "8"                     },
   { "emerald.falling.ypos",                    "0"                     },
   { "emerald.falling.frames",                  "2"                     },
   { "emerald.falling.delay",                   "4"                     },
-  { "emerald.collecting",                      "RocksMore.pcx"         },
+  { "emerald.collecting",                      "RocksMore.png"         },
   { "emerald.collecting.xpos",                 "3"                     },
   { "emerald.collecting.ypos",                 "2"                     },
   { "emerald.collecting.frames",               "3"                     },
   { "emerald.collecting.delay",                        "2"                     },
   { "emerald.collecting.anim_mode",            "linear"                },
 
-  { "diamond",                                 "RocksElements.pcx"     },
+  { "diamond",                                 "RocksElements.png"     },
   { "diamond.xpos",                            "10"                    },
   { "diamond.ypos",                            "0"                     },
   { "diamond.frames",                          "1"                     },
-  { "diamond.moving",                          "RocksElements.pcx"     },
+  { "diamond.moving",                          "RocksElements.png"     },
   { "diamond.moving.xpos",                     "10"                    },
   { "diamond.moving.ypos",                     "0"                     },
   { "diamond.moving.frames",                   "2"                     },
   { "diamond.moving.delay",                    "4"                     },
-  { "diamond.falling",                         "RocksElements.pcx"     },
+  { "diamond.falling",                         "RocksElements.png"     },
   { "diamond.falling.xpos",                    "10"                    },
   { "diamond.falling.ypos",                    "0"                     },
   { "diamond.falling.frames",                  "2"                     },
   { "diamond.falling.delay",                   "4"                     },
-  { "diamond.collecting",                      "RocksMore.pcx"         },
+  { "diamond.collecting",                      "RocksMore.png"         },
   { "diamond.collecting.xpos",                 "7"                     },
   { "diamond.collecting.ypos",                 "2"                     },
   { "diamond.collecting.frames",               "3"                     },
   { "diamond.collecting.delay",                        "2"                     },
   { "diamond.collecting.anim_mode",            "linear"                },
 
-  { "bomb",                                    "RocksElements.pcx"     },
+  { "bomb",                                    "RocksElements.png"     },
   { "bomb.xpos",                               "11"                    },
   { "bomb.ypos",                               "1"                     },
   { "bomb.frames",                             "1"                     },
 
-  { "nut",                                     "RocksElements.pcx"     },
+  { "nut",                                     "RocksElements.png"     },
   { "nut.xpos",                                        "12"                    },
   { "nut.ypos",                                        "1"                     },
   { "nut.frames",                              "1"                     },
-  { "nut.breaking",                            "RocksElements.pcx"     },
+  { "nut.breaking",                            "RocksElements.png"     },
   { "nut.breaking.xpos",                       "13"                    },
   { "nut.breaking.ypos",                       "1"                     },
   { "nut.breaking.frames",                     "3"                     },
   { "nut.breaking.delay",                      "2"                     },
   { "nut.breaking.anim_mode",                  "linear"                },
 
-  { "dynamite",                                        "RocksElements.pcx"     },
+  { "dynamite",                                        "RocksElements.png"     },
   { "dynamite.xpos",                           "0"                     },
   { "dynamite.ypos",                           "3"                     },
   { "dynamite.frames",                         "1"                     },
-  { "dynamite.EDITOR",                         "RocksElements.pcx"     },
+  { "dynamite.EDITOR",                         "RocksElements.png"     },
   { "dynamite.EDITOR.xpos",                    "0"                     },
   { "dynamite.EDITOR.ypos",                    "14"                    },
-  { "dynamite.active",                         "RocksElements.pcx"     },
+  { "dynamite.active",                         "RocksElements.png"     },
   { "dynamite.active.xpos",                    "1"                     },
   { "dynamite.active.ypos",                    "3"                     },
   { "dynamite.active.frames",                  "7"                     },
   { "dynamite.active.delay",                   "12"                    },
   { "dynamite.active.anim_mode",               "linear"                },
-  { "dynamite.active.EDITOR",                  "RocksElements.pcx"     },
+  { "dynamite.active.EDITOR",                  "RocksElements.png"     },
   { "dynamite.active.EDITOR.xpos",             "1"                     },
   { "dynamite.active.EDITOR.ypos",             "14"                    },
 
-  { "em_dynamite",                             "RocksEMC.pcx"          },
+  { "em_dynamite",                             "RocksEMC.png"          },
   { "em_dynamite.xpos",                                "0"                     },
   { "em_dynamite.ypos",                                "15"                    },
   { "em_dynamite.frames",                      "1"                     },
-  { "em_dynamite.active",                      "RocksEMC.pcx"          },
+  { "em_dynamite.active",                      "RocksEMC.png"          },
   { "em_dynamite.active.xpos",                 "1"                     },
   { "em_dynamite.active.ypos",                 "15"                    },
   { "em_dynamite.active.frames",               "4"                     },
   { "em_dynamite.active.delay",                        "8"                     },
   { "em_dynamite.active.anim_mode",            "linear"                },
-  { "em_dynamite.active.EDITOR",               "RocksEMC.pcx"          },
+  { "em_dynamite.active.EDITOR",               "RocksEMC.png"          },
   { "em_dynamite.active.EDITOR.xpos",          "2"                     },
   { "em_dynamite.active.EDITOR.ypos",          "15"                    },
 
-  { "wall_emerald",                            "RocksElements.pcx"     },
+  { "wall_emerald",                            "RocksElements.png"     },
   { "wall_emerald.xpos",                       "4"                     },
   { "wall_emerald.ypos",                       "8"                     },
   { "wall_emerald.frames",                     "1"                     },
 
-  { "wall_diamond",                            "RocksElements.pcx"     },
+  { "wall_diamond",                            "RocksElements.png"     },
   { "wall_diamond.xpos",                       "5"                     },
   { "wall_diamond.ypos",                       "8"                     },
   { "wall_diamond.frames",                     "1"                     },
 
-  { "bug",                                     "RocksElements.pcx"     },
+  { "bug",                                     "RocksElements.png"     },
   { "bug.xpos",                                        "8"                     },
   { "bug.ypos",                                        "4"                     },
   { "bug.frames",                              "4"                     },
   { "bug.delay",                               "8"                     },
-  { "bug.right",                               "RocksElements.pcx"     },
+  { "bug.right",                               "RocksElements.png"     },
   { "bug.right.xpos",                          "8"                     },
   { "bug.right.ypos",                          "4"                     },
   { "bug.right.frames",                                "1"                     },
-  { "bug.up",                                  "RocksElements.pcx"     },
+  { "bug.up",                                  "RocksElements.png"     },
   { "bug.up.xpos",                             "9"                     },
   { "bug.up.ypos",                             "4"                     },
   { "bug.up.frames",                           "1"                     },
-  { "bug.left",                                        "RocksElements.pcx"     },
+  { "bug.left",                                        "RocksElements.png"     },
   { "bug.left.xpos",                           "10"                    },
   { "bug.left.ypos",                           "4"                     },
   { "bug.left.frames",                         "1"                     },
-  { "bug.down",                                        "RocksElements.pcx"     },
+  { "bug.down",                                        "RocksElements.png"     },
   { "bug.down.xpos",                           "11"                    },
   { "bug.down.ypos",                           "4"                     },
   { "bug.down.frames",                         "1"                     },
-  { "bug.moving.right",                                "RocksElements.pcx"     },
+  { "bug.moving.right",                                "RocksElements.png"     },
   { "bug.moving.right.xpos",                   "8"                     },
   { "bug.moving.right.ypos",                   "4"                     },
   { "bug.moving.right.frames",                 "2"                     },
   { "bug.moving.right.delay",                  "4"                     },
   { "bug.moving.right.offset",                 "128"                   },
-  { "bug.moving.up",                           "RocksElements.pcx"     },
+  { "bug.moving.up",                           "RocksElements.png"     },
   { "bug.moving.up.xpos",                      "9"                     },
   { "bug.moving.up.ypos",                      "4"                     },
   { "bug.moving.up.frames",                    "2"                     },
   { "bug.moving.up.delay",                     "4"                     },
   { "bug.moving.up.offset",                    "128"                   },
-  { "bug.moving.left",                         "RocksElements.pcx"     },
+  { "bug.moving.left",                         "RocksElements.png"     },
   { "bug.moving.left.xpos",                    "10"                    },
   { "bug.moving.left.ypos",                    "4"                     },
   { "bug.moving.left.frames",                  "2"                     },
   { "bug.moving.left.delay",                   "4"                     },
   { "bug.moving.left.offset",                  "128"                   },
-  { "bug.moving.down",                         "RocksElements.pcx"     },
+  { "bug.moving.down",                         "RocksElements.png"     },
   { "bug.moving.down.xpos",                    "11"                    },
   { "bug.moving.down.ypos",                    "4"                     },
   { "bug.moving.down.frames",                  "2"                     },
   { "bug.moving.down.delay",                   "4"                     },
   { "bug.moving.down.offset",                  "128"                   },
-  { "bug.turning_from_right.up",               "RocksMore.pcx"         },
+  { "bug.turning_from_right.up",               "RocksMore.png"         },
   { "bug.turning_from_right.up.xpos",          "0"                     },
   { "bug.turning_from_right.up.ypos",          "6"                     },
   { "bug.turning_from_right.up.frames",                "4"                     },
   { "bug.turning_from_right.up.delay",         "2"                     },
   { "bug.turning_from_right.up.anim_mode",     "linear,reverse"        },
-  { "bug.turning_from_up.left",                        "RocksMore.pcx"         },
+  { "bug.turning_from_up.left",                        "RocksMore.png"         },
   { "bug.turning_from_up.left.xpos",           "12"                    },
   { "bug.turning_from_up.left.ypos",           "6"                     },
   { "bug.turning_from_up.left.frames",         "4"                     },
   { "bug.turning_from_up.left.delay",          "2"                     },
   { "bug.turning_from_up.left.anim_mode",      "linear,reverse"        },
-  { "bug.turning_from_left.down",              "RocksMore.pcx"         },
+  { "bug.turning_from_left.down",              "RocksMore.png"         },
   { "bug.turning_from_left.down.xpos",         "8"                     },
   { "bug.turning_from_left.down.ypos",         "6"                     },
   { "bug.turning_from_left.down.frames",       "4"                     },
   { "bug.turning_from_left.down.delay",                "2"                     },
   { "bug.turning_from_left.down.anim_mode",    "linear,reverse"        },
-  { "bug.turning_from_down.right",             "RocksMore.pcx"         },
+  { "bug.turning_from_down.right",             "RocksMore.png"         },
   { "bug.turning_from_down.right.xpos",                "4"                     },
   { "bug.turning_from_down.right.ypos",                "6"                     },
   { "bug.turning_from_down.right.frames",      "4"                     },
   { "bug.turning_from_down.right.delay",       "2"                     },
   { "bug.turning_from_down.right.anim_mode",   "linear,reverse"        },
-  { "bug.turning_from_right.down",             "RocksMore.pcx"         },
+  { "bug.turning_from_right.down",             "RocksMore.png"         },
   { "bug.turning_from_right.down.xpos",                "5"                     },
   { "bug.turning_from_right.down.ypos",                "6"                     },
   { "bug.turning_from_right.down.frames",      "4"                     },
   { "bug.turning_from_right.down.delay",       "2"                     },
   { "bug.turning_from_right.down.anim_mode",   "linear"                },
-  { "bug.turning_from_up.right",               "RocksMore.pcx"         },
+  { "bug.turning_from_up.right",               "RocksMore.png"         },
   { "bug.turning_from_up.right.xpos",          "1"                     },
   { "bug.turning_from_up.right.ypos",          "6"                     },
   { "bug.turning_from_up.right.frames",                "4"                     },
   { "bug.turning_from_up.right.delay",         "2"                     },
   { "bug.turning_from_up.right.anim_mode",     "linear"                },
-  { "bug.turning_from_left.up",                        "RocksMore.pcx"         },
+  { "bug.turning_from_left.up",                        "RocksMore.png"         },
   { "bug.turning_from_left.up.xpos",           "13"                    },
   { "bug.turning_from_left.up.ypos",           "6"                     },
   { "bug.turning_from_left.up.frames",         "4"                     },
   { "bug.turning_from_left.up.delay",          "2"                     },
   { "bug.turning_from_left.up.anim_mode",      "linear"                },
-  { "bug.turning_from_down.left",              "RocksMore.pcx"         },
+  { "bug.turning_from_down.left",              "RocksMore.png"         },
   { "bug.turning_from_down.left.xpos",         "9"                     },
   { "bug.turning_from_down.left.ypos",         "6"                     },
   { "bug.turning_from_down.left.frames",       "4"                     },
   { "bug.turning_from_down.left.delay",                "2"                     },
   { "bug.turning_from_down.left.anim_mode",    "linear"                },
 
-  { "spaceship",                               "RocksElements.pcx"     },
+  { "spaceship",                               "RocksElements.png"     },
   { "spaceship.xpos",                          "8"                     },
   { "spaceship.ypos",                          "3"                     },
   { "spaceship.frames",                                "4"                     },
   { "spaceship.delay",                         "8"                     },
-  { "spaceship.right",                         "RocksElements.pcx"     },
+  { "spaceship.right",                         "RocksElements.png"     },
   { "spaceship.right.xpos",                    "8"                     },
   { "spaceship.right.ypos",                    "3"                     },
   { "spaceship.right.frames",                  "1"                     },
-  { "spaceship.up",                            "RocksElements.pcx"     },
+  { "spaceship.up",                            "RocksElements.png"     },
   { "spaceship.up.xpos",                       "9"                     },
   { "spaceship.up.ypos",                       "3"                     },
   { "spaceship.up.frames",                     "1"                     },
-  { "spaceship.left",                          "RocksElements.pcx"     },
+  { "spaceship.left",                          "RocksElements.png"     },
   { "spaceship.left.xpos",                     "10"                    },
   { "spaceship.left.ypos",                     "3"                     },
   { "spaceship.left.frames",                   "1"                     },
-  { "spaceship.down",                          "RocksElements.pcx"     },
+  { "spaceship.down",                          "RocksElements.png"     },
   { "spaceship.down.xpos",                     "11"                    },
   { "spaceship.down.ypos",                     "3"                     },
   { "spaceship.down.frames",                   "1"                     },
-  { "spaceship.moving.right",                  "RocksElements.pcx"     },
+  { "spaceship.moving.right",                  "RocksElements.png"     },
   { "spaceship.moving.right.xpos",             "8"                     },
   { "spaceship.moving.right.ypos",             "3"                     },
   { "spaceship.moving.right.frames",           "2"                     },
   { "spaceship.moving.right.delay",            "4"                     },
   { "spaceship.moving.right.offset",           "128"                   },
-  { "spaceship.moving.up",                     "RocksElements.pcx"     },
+  { "spaceship.moving.up",                     "RocksElements.png"     },
   { "spaceship.moving.up.xpos",                        "9"                     },
   { "spaceship.moving.up.ypos",                        "3"                     },
   { "spaceship.moving.up.frames",              "2"                     },
   { "spaceship.moving.up.delay",               "4"                     },
   { "spaceship.moving.up.offset",              "128"                   },
-  { "spaceship.moving.left",                   "RocksElements.pcx"     },
+  { "spaceship.moving.left",                   "RocksElements.png"     },
   { "spaceship.moving.left.xpos",              "10"                    },
   { "spaceship.moving.left.ypos",              "3"                     },
   { "spaceship.moving.left.frames",            "2"                     },
   { "spaceship.moving.left.delay",             "4"                     },
   { "spaceship.moving.left.offset",            "128"                   },
-  { "spaceship.moving.down",                   "RocksElements.pcx"     },
+  { "spaceship.moving.down",                   "RocksElements.png"     },
   { "spaceship.moving.down.xpos",              "11"                    },
   { "spaceship.moving.down.ypos",              "3"                     },
   { "spaceship.moving.down.frames",            "2"                     },
   { "spaceship.moving.down.delay",             "4"                     },
   { "spaceship.moving.down.offset",            "128"                   },
-  { "spaceship.turning_from_right.up",         "RocksMore.pcx"         },
+  { "spaceship.turning_from_right.up",         "RocksMore.png"         },
   { "spaceship.turning_from_right.up.xpos",    "0"                     },
   { "spaceship.turning_from_right.up.ypos",    "5"                     },
   { "spaceship.turning_from_right.up.frames",  "4"                     },
   { "spaceship.turning_from_right.up.delay",   "2"                     },
   { "spaceship.turning_from_right.up.anim_mode","linear,reverse"       },
-  { "spaceship.turning_from_up.left",          "RocksMore.pcx"         },
+  { "spaceship.turning_from_up.left",          "RocksMore.png"         },
   { "spaceship.turning_from_up.left.xpos",     "12"                    },
   { "spaceship.turning_from_up.left.ypos",     "5"                     },
   { "spaceship.turning_from_up.left.frames",   "4"                     },
   { "spaceship.turning_from_up.left.delay",    "2"                     },
   { "spaceship.turning_from_up.left.anim_mode",        "linear,reverse"        },
-  { "spaceship.turning_from_left.down",                "RocksMore.pcx"         },
+  { "spaceship.turning_from_left.down",                "RocksMore.png"         },
   { "spaceship.turning_from_left.down.xpos",   "8"                     },
   { "spaceship.turning_from_left.down.ypos",   "5"                     },
   { "spaceship.turning_from_left.down.frames", "4"                     },
   { "spaceship.turning_from_left.down.delay",  "2"                     },
   { "spaceship.turning_from_left.down.anim_mode","linear,reverse"      },
-  { "spaceship.turning_from_down.right",       "RocksMore.pcx"         },
+  { "spaceship.turning_from_down.right",       "RocksMore.png"         },
   { "spaceship.turning_from_down.right.xpos",  "4"                     },
   { "spaceship.turning_from_down.right.ypos",  "5"                     },
   { "spaceship.turning_from_down.right.frames",        "4"                     },
   { "spaceship.turning_from_down.right.delay", "2"                     },
   { "spaceship.turning_from_down.right.anim_mode","linear,reverse"     },
-  { "spaceship.turning_from_right.down",       "RocksMore.pcx"         },
+  { "spaceship.turning_from_right.down",       "RocksMore.png"         },
   { "spaceship.turning_from_right.down.xpos",  "5"                     },
   { "spaceship.turning_from_right.down.ypos",  "5"                     },
   { "spaceship.turning_from_right.down.frames",        "4"                     },
   { "spaceship.turning_from_right.down.delay", "2"                     },
   { "spaceship.turning_from_right.down.anim_mode","linear"             },
-  { "spaceship.turning_from_up.right",         "RocksMore.pcx"         },
+  { "spaceship.turning_from_up.right",         "RocksMore.png"         },
   { "spaceship.turning_from_up.right.xpos",    "1"                     },
   { "spaceship.turning_from_up.right.ypos",    "5"                     },
   { "spaceship.turning_from_up.right.frames",  "4"                     },
   { "spaceship.turning_from_up.right.delay",   "2"                     },
   { "spaceship.turning_from_up.right.anim_mode","linear"               },
-  { "spaceship.turning_from_left.up",          "RocksMore.pcx"         },
+  { "spaceship.turning_from_left.up",          "RocksMore.png"         },
   { "spaceship.turning_from_left.up.xpos",     "13"                    },
   { "spaceship.turning_from_left.up.ypos",     "5"                     },
   { "spaceship.turning_from_left.up.frames",   "4"                     },
   { "spaceship.turning_from_left.up.delay",    "2"                     },
   { "spaceship.turning_from_left.up.anim_mode",        "linear"                },
-  { "spaceship.turning_from_down.left",                "RocksMore.pcx"         },
+  { "spaceship.turning_from_down.left",                "RocksMore.png"         },
   { "spaceship.turning_from_down.left.xpos",   "9"                     },
   { "spaceship.turning_from_down.left.ypos",   "5"                     },
   { "spaceship.turning_from_down.left.frames", "4"                     },
   { "spaceship.turning_from_down.left.delay",  "2"                     },
   { "spaceship.turning_from_down.left.anim_mode","linear"              },
 
-  { "yamyam",                                  "RocksElements.pcx"     },
+  { "yamyam",                                  "RocksElements.png"     },
   { "yamyam.xpos",                             "0"                     },
   { "yamyam.ypos",                             "5"                     },
   { "yamyam.frames",                           "4"                     },
   { "yamyam.anim_mode",                                "pingpong2"             },
-  { "yamyam.left",                             "RocksElements.pcx"     },
+  { "yamyam.left",                             "RocksElements.png"     },
   { "yamyam.left.xpos",                                "0"                     },
   { "yamyam.left.ypos",                                "5"                     },
   { "yamyam.left.frames",                      "4"                     },
   { "yamyam.left.anim_mode",                   "pingpong2"             },
-  { "yamyam.left.EDITOR",                      "RocksEMC.pcx"          },
+  { "yamyam.left.EDITOR",                      "RocksEMC.png"          },
   { "yamyam.left.EDITOR.xpos",                 "7"                     },
   { "yamyam.left.EDITOR.ypos",                 "15"                    },
-  { "yamyam.right",                            "RocksElements.pcx"     },
+  { "yamyam.right",                            "RocksElements.png"     },
   { "yamyam.right.xpos",                       "0"                     },
   { "yamyam.right.ypos",                       "5"                     },
   { "yamyam.right.frames",                     "4"                     },
   { "yamyam.right.anim_mode",                  "pingpong2"             },
-  { "yamyam.right.EDITOR",                     "RocksEMC.pcx"          },
+  { "yamyam.right.EDITOR",                     "RocksEMC.png"          },
   { "yamyam.right.EDITOR.xpos",                        "8"                     },
   { "yamyam.right.EDITOR.ypos",                        "15"                    },
-  { "yamyam.up",                               "RocksElements.pcx"     },
+  { "yamyam.up",                               "RocksElements.png"     },
   { "yamyam.up.xpos",                          "0"                     },
   { "yamyam.up.ypos",                          "5"                     },
   { "yamyam.up.frames",                                "4"                     },
   { "yamyam.up.anim_mode",                     "pingpong2"             },
-  { "yamyam.up.EDITOR",                                "RocksEMC.pcx"          },
+  { "yamyam.up.EDITOR",                                "RocksEMC.png"          },
   { "yamyam.up.EDITOR.xpos",                   "5"                     },
   { "yamyam.up.EDITOR.ypos",                   "15"                    },
-  { "yamyam.down",                             "RocksElements.pcx"     },
+  { "yamyam.down",                             "RocksElements.png"     },
   { "yamyam.down.xpos",                                "0"                     },
   { "yamyam.down.ypos",                                "5"                     },
   { "yamyam.down.frames",                      "4"                     },
   { "yamyam.down.anim_mode",                   "pingpong2"             },
-  { "yamyam.down.EDITOR",                      "RocksEMC.pcx"          },
+  { "yamyam.down.EDITOR",                      "RocksEMC.png"          },
   { "yamyam.down.EDITOR.xpos",                 "6"                     },
   { "yamyam.down.EDITOR.ypos",                 "15"                    },
-  { "yamyam.moving",                           "RocksElements.pcx"     },
+  { "yamyam.moving",                           "RocksElements.png"     },
   { "yamyam.moving.xpos",                      "0"                     },
   { "yamyam.moving.ypos",                      "5"                     },
   { "yamyam.moving.frames",                    "1"                     },
 
-  { "robot",                                   "RocksElements.pcx"     },
+  { "robot",                                   "RocksElements.png"     },
   { "robot.xpos",                              "4"                     },
   { "robot.ypos",                              "5"                     },
   { "robot.frames",                            "4"                     },
   { "robot.anim_mode",                         "pingpong2"             },
-  { "robot.moving",                            "RocksElements.pcx"     },
+  { "robot.moving",                            "RocksElements.png"     },
   { "robot.moving.xpos",                       "4"                     },
   { "robot.moving.ypos",                       "5"                     },
   { "robot.moving.frames",                     "1"                     },
 
-  { "robot_wheel",                             "RocksElements.pcx"     },
+  { "robot_wheel",                             "RocksElements.png"     },
   { "robot_wheel.xpos",                                "0"                     },
   { "robot_wheel.ypos",                                "6"                     },
   { "robot_wheel.frames",                      "1"                     },
-  { "robot_wheel.active",                      "RocksElements.pcx"     },
+  { "robot_wheel.active",                      "RocksElements.png"     },
   { "robot_wheel.active.xpos",                 "0"                     },
   { "robot_wheel.active.ypos",                 "6"                     },
   { "robot_wheel.active.frames",               "4"                     },
 
-  { "magic_wall",                              "RocksElements.pcx"     },
+  { "magic_wall",                              "RocksElements.png"     },
   { "magic_wall.xpos",                         "0"                     },
   { "magic_wall.ypos",                         "8"                     },
   { "magic_wall.frames",                       "1"                     },
-  { "magic_wall.active",                       "RocksElements.pcx"     },
+  { "magic_wall.active",                       "RocksElements.png"     },
   { "magic_wall.active.xpos",                  "0"                     },
   { "magic_wall.active.ypos",                  "8"                     },
   { "magic_wall.active.frames",                        "4"                     },
   { "magic_wall.active.anim_mode",             "reverse"               },
   { "magic_wall.active.delay",                 "4"                     },
   { "magic_wall.active.global_sync",           "true"                  },
-  { "magic_wall.filling",                      "RocksElements.pcx"     },
+  { "magic_wall.filling",                      "RocksElements.png"     },
   { "magic_wall.filling.xpos",                 "0"                     },
   { "magic_wall.filling.ypos",                 "8"                     },
   { "magic_wall.filling.frames",               "4"                     },
   { "magic_wall.filling.anim_mode",            "reverse"               },
   { "magic_wall.filling.delay",                        "4"                     },
   { "magic_wall.filling.global_sync",          "true"                  },
-  { "magic_wall_full",                         "RocksElements.pcx"     },
+  { "magic_wall_full",                         "RocksElements.png"     },
   { "magic_wall_full.xpos",                    "0"                     },
   { "magic_wall_full.ypos",                    "8"                     },
   { "magic_wall_full.frames",                  "4"                     },
   { "magic_wall_full.anim_mode",               "reverse"               },
   { "magic_wall_full.delay",                   "4"                     },
   { "magic_wall_full.global_sync",             "true"                  },
-  { "magic_wall.emptying",                     "RocksElements.pcx"     },
+  { "magic_wall.emptying",                     "RocksElements.png"     },
   { "magic_wall.emptying.xpos",                        "0"                     },
   { "magic_wall.emptying.ypos",                        "8"                     },
   { "magic_wall.emptying.frames",              "4"                     },
   { "magic_wall.emptying.anim_mode",           "reverse"               },
   { "magic_wall.emptying.delay",               "4"                     },
   { "magic_wall.emptying.global_sync",         "true"                  },
-  { "magic_wall_dead",                         "RocksElements.pcx"     },
+  { "magic_wall_dead",                         "RocksElements.png"     },
   { "magic_wall_dead.xpos",                    "0"                     },
   { "magic_wall_dead.ypos",                    "8"                     },
   { "magic_wall_dead.frames",                  "1"                     },
 
-  { "dc_magic_wall",                           "RocksDC2.pcx"          },
+  { "dc_magic_wall",                           "RocksDC2.png"          },
   { "dc_magic_wall.xpos",                      "0"                     },
   { "dc_magic_wall.ypos",                      "3"                     },
   { "dc_magic_wall.frames",                    "1"                     },
-  { "dc_magic_wall.active",                    "RocksDC2.pcx"          },
+  { "dc_magic_wall.active",                    "RocksDC2.png"          },
   { "dc_magic_wall.active.xpos",               "0"                     },
   { "dc_magic_wall.active.ypos",               "3"                     },
   { "dc_magic_wall.active.frames",             "4"                     },
   { "dc_magic_wall.active.anim_mode",          "reverse"               },
   { "dc_magic_wall.active.delay",              "4"                     },
   { "dc_magic_wall.active.global_sync",                "true"                  },
-  { "dc_magic_wall.filling",                   "RocksDC2.pcx"          },
+  { "dc_magic_wall.filling",                   "RocksDC2.png"          },
   { "dc_magic_wall.filling.xpos",              "0"                     },
   { "dc_magic_wall.filling.ypos",              "3"                     },
   { "dc_magic_wall.filling.frames",            "4"                     },
   { "dc_magic_wall.filling.anim_mode",         "reverse"               },
   { "dc_magic_wall.filling.delay",             "4"                     },
   { "dc_magic_wall.filling.global_sync",       "true"                  },
-  { "dc_magic_wall_full",                      "RocksDC2.pcx"          },
+  { "dc_magic_wall_full",                      "RocksDC2.png"          },
   { "dc_magic_wall_full.xpos",                 "0"                     },
   { "dc_magic_wall_full.ypos",                 "3"                     },
   { "dc_magic_wall_full.frames",               "4"                     },
   { "dc_magic_wall_full.anim_mode",            "reverse"               },
   { "dc_magic_wall_full.delay",                        "4"                     },
   { "dc_magic_wall_full.global_sync",          "true"                  },
-  { "dc_magic_wall.emptying",                  "RocksDC2.pcx"          },
+  { "dc_magic_wall.emptying",                  "RocksDC2.png"          },
   { "dc_magic_wall.emptying.xpos",             "0"                     },
   { "dc_magic_wall.emptying.ypos",             "3"                     },
   { "dc_magic_wall.emptying.frames",           "4"                     },
   { "dc_magic_wall.emptying.anim_mode",                "reverse"               },
   { "dc_magic_wall.emptying.delay",            "4"                     },
   { "dc_magic_wall.emptying.global_sync",      "true"                  },
-  { "dc_magic_wall_dead",                      "RocksDC2.pcx"          },
+  { "dc_magic_wall_dead",                      "RocksDC2.png"          },
   { "dc_magic_wall_dead.xpos",                 "0"                     },
   { "dc_magic_wall_dead.ypos",                 "3"                     },
   { "dc_magic_wall_dead.frames",               "1"                     },
 
-  { "quicksand_empty",                         "RocksElements.pcx"     },
+  { "quicksand_empty",                         "RocksElements.png"     },
   { "quicksand_empty.xpos",                    "2"                     },
   { "quicksand_empty.ypos",                    "0"                     },
   { "quicksand_empty.frames",                  "1"                     },
-  { "quicksand.filling",                       "RocksElements.pcx"     },
+  { "quicksand.filling",                       "RocksElements.png"     },
   { "quicksand.filling.xpos",                  "3"                     },
   { "quicksand.filling.ypos",                  "0"                     },
   { "quicksand.filling.frames",                        "1"                     },
-  { "quicksand_full",                          "RocksElements.pcx"     },
+  { "quicksand_full",                          "RocksElements.png"     },
   { "quicksand_full.xpos",                     "3"                     },
   { "quicksand_full.ypos",                     "0"                     },
   { "quicksand_full.frames",                   "1"                     },
-  { "quicksand_full.EDITOR",                   "RocksElements.pcx"     },
+  { "quicksand_full.EDITOR",                   "RocksElements.png"     },
   { "quicksand_full.EDITOR.xpos",              "3"                     },
   { "quicksand_full.EDITOR.ypos",              "14"                    },
-  { "quicksand.emptying",                      "RocksElements.pcx"     },
+  { "quicksand.emptying",                      "RocksElements.png"     },
   { "quicksand.emptying.xpos",                 "3"                     },
   { "quicksand.emptying.ypos",                 "0"                     },
   { "quicksand.emptying.frames",               "1"                     },
 
-  { "quicksand_fast_empty",                    "RocksDC2.pcx"          },
+  { "quicksand_fast_empty",                    "RocksDC2.png"          },
   { "quicksand_fast_empty.xpos",               "4"                     },
   { "quicksand_fast_empty.ypos",               "3"                     },
   { "quicksand_fast_empty.frames",             "1"                     },
-  { "quicksand_fast.filling",                  "RocksDC2.pcx"          },
+  { "quicksand_fast.filling",                  "RocksDC2.png"          },
   { "quicksand_fast.filling.xpos",             "4"                     },
   { "quicksand_fast.filling.ypos",             "3"                     },
   { "quicksand_fast.filling.frames",           "1"                     },
-  { "quicksand_fast_full",                     "RocksDC2.pcx"          },
+  { "quicksand_fast_full",                     "RocksDC2.png"          },
   { "quicksand_fast_full.xpos",                        "4"                     },
   { "quicksand_fast_full.ypos",                        "3"                     },
   { "quicksand_fast_full.frames",              "1"                     },
-  { "quicksand_fast_full.EDITOR",              "RocksDC2.pcx"          },
+  { "quicksand_fast_full.EDITOR",              "RocksDC2.png"          },
   { "quicksand_fast_full.EDITOR.xpos",         "5"                     },
   { "quicksand_fast_full.EDITOR.ypos",         "3"                     },
-  { "quicksand_fast.emptying",                 "RocksDC2.pcx"          },
+  { "quicksand_fast.emptying",                 "RocksDC2.png"          },
   { "quicksand_fast.emptying.xpos",            "4"                     },
   { "quicksand_fast.emptying.ypos",            "3"                     },
   { "quicksand_fast.emptying.frames",          "1"                     },
 
-  { "acid_pool_topleft",                       "RocksElements.pcx"     },
+  { "acid_pool_topleft",                       "RocksElements.png"     },
   { "acid_pool_topleft.xpos",                  "0"                     },
   { "acid_pool_topleft.ypos",                  "1"                     },
   { "acid_pool_topleft.frames",                        "1"                     },
-  { "acid_pool_topright",                      "RocksElements.pcx"     },
+  { "acid_pool_topright",                      "RocksElements.png"     },
   { "acid_pool_topright.xpos",                 "2"                     },
   { "acid_pool_topright.ypos",                 "1"                     },
   { "acid_pool_topright.frames",               "1"                     },
-  { "acid_pool_bottomleft",                    "RocksElements.pcx"     },
+  { "acid_pool_bottomleft",                    "RocksElements.png"     },
   { "acid_pool_bottomleft.xpos",               "0"                     },
   { "acid_pool_bottomleft.ypos",               "2"                     },
   { "acid_pool_bottomleft.frames",             "1"                     },
-  { "acid_pool_bottom",                                "RocksElements.pcx"     },
+  { "acid_pool_bottom",                                "RocksElements.png"     },
   { "acid_pool_bottom.xpos",                   "1"                     },
   { "acid_pool_bottom.ypos",                   "2"                     },
   { "acid_pool_bottom.frames",                 "1"                     },
-  { "acid_pool_bottomright",                   "RocksElements.pcx"     },
+  { "acid_pool_bottomright",                   "RocksElements.png"     },
   { "acid_pool_bottomright.xpos",              "2"                     },
   { "acid_pool_bottomright.ypos",              "2"                     },
   { "acid_pool_bottomright.frames",            "1"                     },
 
-  { "acid",                                    "RocksElements.pcx"     },
+  { "acid",                                    "RocksElements.png"     },
   { "acid.xpos",                               "12"                    },
   { "acid.ypos",                               "7"                     },
   { "acid.frames",                             "4"                     },
   { "acid.delay",                              "10"                    },
   { "acid.global_sync",                                "true"                  },
 
-  { "acid_splash_left",                                "RocksHeroes.pcx"       },
+  { "acid_splash_left",                                "RocksHeroes.png"       },
   { "acid_splash_left.xpos",                   "8"                     },
   { "acid_splash_left.ypos",                   "10"                    },
   { "acid_splash_left.frames",                 "4"                     },
   { "acid_splash_left.delay",                  "2"                     },
   { "acid_splash_left.anim_mode",              "linear"                },
-  { "acid_splash_right",                       "RocksHeroes.pcx"       },
+  { "acid_splash_right",                       "RocksHeroes.png"       },
   { "acid_splash_right.xpos",                  "12"                    },
   { "acid_splash_right.ypos",                  "10"                    },
   { "acid_splash_right.frames",                        "4"                     },
   { "acid_splash_right.delay",                 "2"                     },
   { "acid_splash_right.anim_mode",             "linear"                },
 
-  { "amoeba_drop",                             "RocksElements.pcx"     },
+  { "amoeba_drop",                             "RocksElements.png"     },
   { "amoeba_drop.xpos",                                "5"                     },
   { "amoeba_drop.ypos",                                "6"                     },
   { "amoeba_drop.frames",                      "1"                     },
-  { "amoeba.growing",                          "RocksElements.pcx"     },
+  { "amoeba.growing",                          "RocksElements.png"     },
   { "amoeba.growing.xpos",                     "5"                     },
   { "amoeba.growing.ypos",                     "6"                     },
   { "amoeba.growing.frames",                   "3"                     },
   { "amoeba.growing.delay",                    "2"                     },
   { "amoeba.growing.anim_mode",                        "linear"                },
-  { "amoeba.shrinking",                                "RocksElements.pcx"     },
+  { "amoeba.shrinking",                                "RocksElements.png"     },
   { "amoeba.shrinking.xpos",                   "5"                     },
   { "amoeba.shrinking.ypos",                   "6"                     },
   { "amoeba.shrinking.frames",                 "3"                     },
   { "amoeba.shrinking.delay",                  "2"                     },
   { "amoeba.shrinking.anim_mode",              "linear,reverse"        },
-  { "amoeba_wet",                              "RocksElements.pcx"     },
+  { "amoeba_wet",                              "RocksElements.png"     },
   { "amoeba_wet.xpos",                         "8"                     },
   { "amoeba_wet.ypos",                         "6"                     },
   { "amoeba_wet.frames",                       "4"                     },
   { "amoeba_wet.delay",                                "1000000"               },
   { "amoeba_wet.anim_mode",                    "random"                },
-  { "amoeba_wet.EDITOR",                       "RocksElements.pcx"     },
+  { "amoeba_wet.EDITOR",                       "RocksElements.png"     },
   { "amoeba_wet.EDITOR.xpos",                  "4"                     },
   { "amoeba_wet.EDITOR.ypos",                  "6"                     },
-  { "amoeba.dropping",                         "RocksElements.pcx"     },
+  { "amoeba.dropping",                         "RocksElements.png"     },
   { "amoeba.dropping.xpos",                    "8"                     },
   { "amoeba.dropping.ypos",                    "6"                     },
   { "amoeba.dropping.frames",                  "4"                     },
   { "amoeba.dropping.delay",                   "1000000"               },
   { "amoeba.dropping.anim_mode",               "random"                },
-  { "amoeba_dry",                              "RocksElements.pcx"     },
+  { "amoeba_dry",                              "RocksElements.png"     },
   { "amoeba_dry.xpos",                         "8"                     },
   { "amoeba_dry.ypos",                         "6"                     },
   { "amoeba_dry.frames",                       "4"                     },
   { "amoeba_dry.delay",                                "1000000"               },
   { "amoeba_dry.anim_mode",                    "random"                },
-  { "amoeba_full",                             "RocksElements.pcx"     },
+  { "amoeba_full",                             "RocksElements.png"     },
   { "amoeba_full.xpos",                                "8"                     },
   { "amoeba_full.ypos",                                "6"                     },
   { "amoeba_full.frames",                      "4"                     },
   { "amoeba_full.delay",                       "1000000"               },
   { "amoeba_full.anim_mode",                   "random"                },
-  { "amoeba_full.EDITOR",                      "RocksElements.pcx"     },
+  { "amoeba_full.EDITOR",                      "RocksElements.png"     },
   { "amoeba_full.EDITOR.xpos",                 "8"                     },
   { "amoeba_full.EDITOR.ypos",                 "7"                     },
-  { "amoeba_dead",                             "RocksElements.pcx"     },
+  { "amoeba_dead",                             "RocksElements.png"     },
   { "amoeba_dead.xpos",                                "12"                    },
   { "amoeba_dead.ypos",                                "6"                     },
   { "amoeba_dead.frames",                      "4"                     },
   { "amoeba_dead.delay",                       "1000000"               },
   { "amoeba_dead.anim_mode",                   "random"                },
-  { "amoeba_dead.EDITOR",                      "RocksElements.pcx"     },
+  { "amoeba_dead.EDITOR",                      "RocksElements.png"     },
   { "amoeba_dead.EDITOR.xpos",                 "12"                    },
   { "amoeba_dead.EDITOR.ypos",                 "6"                     },
 
-  { "em_key_1",                                        "RocksSP.pcx"           },
+  { "em_key_1",                                        "RocksSP.png"           },
   { "em_key_1.xpos",                           "4"                     },
   { "em_key_1.ypos",                           "6"                     },
   { "em_key_1.frames",                         "1"                     },
-  { "em_key_2",                                        "RocksSP.pcx"           },
+  { "em_key_2",                                        "RocksSP.png"           },
   { "em_key_2.xpos",                           "5"                     },
   { "em_key_2.ypos",                           "6"                     },
   { "em_key_2.frames",                         "1"                     },
-  { "em_key_3",                                        "RocksSP.pcx"           },
+  { "em_key_3",                                        "RocksSP.png"           },
   { "em_key_3.xpos",                           "6"                     },
   { "em_key_3.ypos",                           "6"                     },
   { "em_key_3.frames",                         "1"                     },
-  { "em_key_4",                                        "RocksSP.pcx"           },
+  { "em_key_4",                                        "RocksSP.png"           },
   { "em_key_4.xpos",                           "7"                     },
   { "em_key_4.ypos",                           "6"                     },
   { "em_key_4.frames",                         "1"                     },
 
-  { "dc_key_white",                            "RocksSP.pcx"           },
+  { "dc_key_white",                            "RocksSP.png"           },
   { "dc_key_white.xpos",                       "13"                    },
   { "dc_key_white.ypos",                       "1"                     },
   { "dc_key_white.frames",                     "1"                     },
 
-  { "em_gate_1",                               "RocksSP.pcx"           },
+  { "em_gate_1",                               "RocksSP.png"           },
   { "em_gate_1.xpos",                          "0"                     },
   { "em_gate_1.ypos",                          "7"                     },
   { "em_gate_1.frames",                                "1"                     },
-  { "em_gate_2",                               "RocksSP.pcx"           },
+  { "em_gate_2",                               "RocksSP.png"           },
   { "em_gate_2.xpos",                          "1"                     },
   { "em_gate_2.ypos",                          "7"                     },
   { "em_gate_2.frames",                                "1"                     },
-  { "em_gate_3",                               "RocksSP.pcx"           },
+  { "em_gate_3",                               "RocksSP.png"           },
   { "em_gate_3.xpos",                          "2"                     },
   { "em_gate_3.ypos",                          "7"                     },
   { "em_gate_3.frames",                                "1"                     },
-  { "em_gate_4",                               "RocksSP.pcx"           },
+  { "em_gate_4",                               "RocksSP.png"           },
   { "em_gate_4.xpos",                          "3"                     },
   { "em_gate_4.ypos",                          "7"                     },
   { "em_gate_4.frames",                                "1"                     },
 
-  { "dc_gate_white",                           "RocksSP.pcx"           },
+  { "dc_gate_white",                           "RocksSP.png"           },
   { "dc_gate_white.xpos",                      "14"                    },
   { "dc_gate_white.ypos",                      "1"                     },
   { "dc_gate_white.frames",                    "1"                     },
 
-  { "em_gate_1_gray",                          "RocksSP.pcx"           },
+  { "em_gate_1_gray",                          "RocksSP.png"           },
   { "em_gate_1_gray.xpos",                     "4"                     },
   { "em_gate_1_gray.ypos",                     "7"                     },
   { "em_gate_1_gray.frames",                   "1"                     },
-  { "em_gate_1_gray.EDITOR",                   "RocksSP.pcx"           },
+  { "em_gate_1_gray.EDITOR",                   "RocksSP.png"           },
   { "em_gate_1_gray.EDITOR.xpos",              "12"                    },
   { "em_gate_1_gray.EDITOR.ypos",              "11"                    },
-  { "em_gate_1_gray.active",                   "RocksSP.pcx"           },
+  { "em_gate_1_gray.active",                   "RocksSP.png"           },
   { "em_gate_1_gray.active.xpos",              "0"                     },
   { "em_gate_1_gray.active.ypos",              "7"                     },
   { "em_gate_1_gray.active.frames",            "1"                     },
-  { "em_gate_2_gray",                          "RocksSP.pcx"           },
+  { "em_gate_2_gray",                          "RocksSP.png"           },
   { "em_gate_2_gray.xpos",                     "5"                     },
   { "em_gate_2_gray.ypos",                     "7"                     },
   { "em_gate_2_gray.frames",                   "1"                     },
-  { "em_gate_2_gray.EDITOR",                   "RocksSP.pcx"           },
+  { "em_gate_2_gray.EDITOR",                   "RocksSP.png"           },
   { "em_gate_2_gray.EDITOR.xpos",              "13"                    },
   { "em_gate_2_gray.EDITOR.ypos",              "11"                    },
-  { "em_gate_2_gray.active",                   "RocksSP.pcx"           },
+  { "em_gate_2_gray.active",                   "RocksSP.png"           },
   { "em_gate_2_gray.active.xpos",              "1"                     },
   { "em_gate_2_gray.active.ypos",              "7"                     },
   { "em_gate_2_gray.active.frames",            "1"                     },
-  { "em_gate_3_gray",                          "RocksSP.pcx"           },
+  { "em_gate_3_gray",                          "RocksSP.png"           },
   { "em_gate_3_gray.xpos",                     "6"                     },
   { "em_gate_3_gray.ypos",                     "7"                     },
   { "em_gate_3_gray.frames",                   "1"                     },
-  { "em_gate_3_gray.EDITOR",                   "RocksSP.pcx"           },
+  { "em_gate_3_gray.EDITOR",                   "RocksSP.png"           },
   { "em_gate_3_gray.EDITOR.xpos",              "14"                    },
   { "em_gate_3_gray.EDITOR.ypos",              "11"                    },
-  { "em_gate_3_gray.active",                   "RocksSP.pcx"           },
+  { "em_gate_3_gray.active",                   "RocksSP.png"           },
   { "em_gate_3_gray.active.xpos",              "2"                     },
   { "em_gate_3_gray.active.ypos",              "7"                     },
   { "em_gate_3_gray.active.frames",            "1"                     },
-  { "em_gate_4_gray",                          "RocksSP.pcx"           },
+  { "em_gate_4_gray",                          "RocksSP.png"           },
   { "em_gate_4_gray.xpos",                     "7"                     },
   { "em_gate_4_gray.ypos",                     "7"                     },
   { "em_gate_4_gray.frames",                   "1"                     },
-  { "em_gate_4_gray.EDITOR",                   "RocksSP.pcx"           },
+  { "em_gate_4_gray.EDITOR",                   "RocksSP.png"           },
   { "em_gate_4_gray.EDITOR.xpos",              "15"                    },
   { "em_gate_4_gray.EDITOR.ypos",              "11"                    },
-  { "em_gate_4_gray.active",                   "RocksSP.pcx"           },
+  { "em_gate_4_gray.active",                   "RocksSP.png"           },
   { "em_gate_4_gray.active.xpos",              "3"                     },
   { "em_gate_4_gray.active.ypos",              "7"                     },
   { "em_gate_4_gray.active.frames",            "1"                     },
 
-  { "dc_gate_white_gray",                      "RocksSP.pcx"           },
+  { "dc_gate_white_gray",                      "RocksSP.png"           },
   { "dc_gate_white_gray.xpos",                 "7"                     },
   { "dc_gate_white_gray.ypos",                 "7"                     },
   { "dc_gate_white_gray.frames",               "1"                     },
-  { "dc_gate_white_gray.EDITOR",               "RocksSP.pcx"           },
+  { "dc_gate_white_gray.EDITOR",               "RocksSP.png"           },
   { "dc_gate_white_gray.EDITOR.xpos",          "15"                    },
   { "dc_gate_white_gray.EDITOR.ypos",          "1"                     },
-  { "dc_gate_white_gray.active",               "RocksSP.pcx"           },
+  { "dc_gate_white_gray.active",               "RocksSP.png"           },
   { "dc_gate_white_gray.active.xpos",          "14"                    },
   { "dc_gate_white_gray.active.ypos",          "1"                     },
   { "dc_gate_white_gray.active.frames",                "1"                     },
 
-  { "dc_gate_fake_gray",                       "RocksSP.pcx"           },
+  { "dc_gate_fake_gray",                       "RocksSP.png"           },
   { "dc_gate_fake_gray.xpos",                  "7"                     },
   { "dc_gate_fake_gray.ypos",                  "7"                     },
   { "dc_gate_fake_gray.frames",                        "1"                     },
 
-  { "exit_closed",                             "RocksElements.pcx"     },
+  { "exit_closed",                             "RocksElements.png"     },
   { "exit_closed.xpos",                                "0"                     },
   { "exit_closed.ypos",                                "11"                    },
   { "exit_closed.frames",                      "1"                     },
-  { "exit.opening",                            "RocksElements.pcx"     },
+  { "exit.opening",                            "RocksElements.png"     },
   { "exit.opening.xpos",                       "0"                     },
   { "exit.opening.ypos",                       "11"                    },
   { "exit.opening.frames",                     "5"                     },
   { "exit.opening.delay",                      "6"                     },
   { "exit.opening.anim_mode",                  "linear"                },
-  { "exit_open",                               "RocksElements.pcx"     },
+  { "exit_open",                               "RocksElements.png"     },
   { "exit_open.xpos",                          "4"                     },
   { "exit_open.ypos",                          "11"                    },
   { "exit_open.frames",                                "4"                     },
   { "exit_open.delay",                         "4"                     },
   { "exit_open.anim_mode",                     "pingpong"              },
-  { "exit.closing",                            "RocksElements.pcx"     },
+  { "exit.closing",                            "RocksElements.png"     },
   { "exit.closing.xpos",                       "0"                     },
   { "exit.closing.ypos",                       "11"                    },
   { "exit.closing.frames",                     "5"                     },
   { "exit.closing.delay",                      "6"                     },
   { "exit.closing.anim_mode",                  "linear,reverse"        },
 
-  { "steel_exit_closed",                       "RocksDC2.pcx"  },
+  { "steel_exit_closed",                       "RocksDC2.png"  },
   { "steel_exit_closed.xpos",                  "8"                     },
   { "steel_exit_closed.ypos",                  "0"                     },
   { "steel_exit_closed.frames",                        "1"                     },
-  { "steel_exit.opening",                      "RocksDC2.pcx"  },
+  { "steel_exit.opening",                      "RocksDC2.png"  },
   { "steel_exit.opening.xpos",                 "8"                     },
   { "steel_exit.opening.ypos",                 "0"                     },
   { "steel_exit.opening.frames",               "5"                     },
   { "steel_exit.opening.delay",                        "6"                     },
   { "steel_exit.opening.anim_mode",            "linear"                },
-  { "steel_exit_open",                         "RocksDC2.pcx"  },
+  { "steel_exit_open",                         "RocksDC2.png"  },
   { "steel_exit_open.xpos",                    "12"                    },
   { "steel_exit_open.ypos",                    "0"                     },
   { "steel_exit_open.frames",                  "4"                     },
   { "steel_exit_open.delay",                   "4"                     },
   { "steel_exit_open.anim_mode",               "pingpong"              },
-  { "steel_exit.closing",                      "RocksDC2.pcx"  },
+  { "steel_exit.closing",                      "RocksDC2.png"  },
   { "steel_exit.closing.xpos",                 "8"                     },
   { "steel_exit.closing.ypos",                 "0"                     },
   { "steel_exit.closing.frames",               "5"                     },
   { "steel_exit.closing.delay",                        "6"                     },
   { "steel_exit.closing.anim_mode",            "linear,reverse"        },
 
-  { "em_exit_closed",                          "RocksDC2.pcx"  },
+  { "em_exit_closed",                          "RocksDC2.png"  },
   { "em_exit_closed.xpos",                     "0"                     },
   { "em_exit_closed.ypos",                     "4"                     },
   { "em_exit_closed.frames",                   "1"                     },
-  { "em_exit.opening",                         "RocksDC2.pcx"  },
+  { "em_exit.opening",                         "RocksDC2.png"  },
   { "em_exit.opening.xpos",                    "0"                     },
   { "em_exit.opening.ypos",                    "4"                     },
   { "em_exit.opening.frames",                  "5"                     },
   { "em_exit.opening.delay",                   "6"                     },
   { "em_exit.opening.anim_mode",               "linear"                },
-  { "em_exit_open",                            "RocksDC2.pcx"  },
+  { "em_exit_open",                            "RocksDC2.png"  },
   { "em_exit_open.xpos",                       "4"                     },
   { "em_exit_open.ypos",                       "4"                     },
   { "em_exit_open.frames",                     "4"                     },
   { "em_exit_open.delay",                      "4"                     },
   { "em_exit_open.anim_mode",                  "pingpong"              },
-  { "em_exit.closing",                         "RocksDC2.pcx"  },
+  { "em_exit.closing",                         "RocksDC2.png"  },
   { "em_exit.closing.xpos",                    "0"                     },
   { "em_exit.closing.ypos",                    "6"                     },
   { "em_exit.closing.frames",                  "5"                     },
   { "em_exit.closing.delay",                   "6"                     },
   { "em_exit.closing.anim_mode",               "linear"                },
 
-  { "em_steel_exit_closed",                    "RocksDC2.pcx"  },
+  { "em_steel_exit_closed",                    "RocksDC2.png"  },
   { "em_steel_exit_closed.xpos",               "0"                     },
   { "em_steel_exit_closed.ypos",               "5"                     },
   { "em_steel_exit_closed.frames",             "1"                     },
-  { "em_steel_exit.opening",                   "RocksDC2.pcx"  },
+  { "em_steel_exit.opening",                   "RocksDC2.png"  },
   { "em_steel_exit.opening.xpos",              "0"                     },
   { "em_steel_exit.opening.ypos",              "5"                     },
   { "em_steel_exit.opening.frames",            "5"                     },
   { "em_steel_exit.opening.delay",             "6"                     },
   { "em_steel_exit.opening.anim_mode",         "linear"                },
-  { "em_steel_exit_open",                      "RocksDC2.pcx"  },
+  { "em_steel_exit_open",                      "RocksDC2.png"  },
   { "em_steel_exit_open.xpos",                 "4"                     },
   { "em_steel_exit_open.ypos",                 "5"                     },
   { "em_steel_exit_open.frames",               "4"                     },
   { "em_steel_exit_open.delay",                        "4"                     },
   { "em_steel_exit_open.anim_mode",            "pingpong"              },
-  { "em_steel_exit.closing",                   "RocksDC2.pcx"  },
+  { "em_steel_exit.closing",                   "RocksDC2.png"  },
   { "em_steel_exit.closing.xpos",              "0"                     },
   { "em_steel_exit.closing.ypos",              "7"                     },
   { "em_steel_exit.closing.frames",            "5"                     },
@@ -1714,805 +1714,805 @@ struct ConfigInfo image_config[] =
 
   /* images for Emerald Mine Club style elements and actions */
 
-  { "balloon",                                 "RocksDC.pcx"           },
+  { "balloon",                                 "RocksDC.png"           },
   { "balloon.xpos",                            "12"                    },
   { "balloon.ypos",                            "7"                     },
   { "balloon.frames",                          "1"                     },
-  { "balloon.moving",                          "RocksDC.pcx"           },
+  { "balloon.moving",                          "RocksDC.png"           },
   { "balloon.moving.xpos",                     "12"                    },
   { "balloon.moving.ypos",                     "7"                     },
   { "balloon.moving.frames",                   "4"                     },
   { "balloon.moving.anim_mode",                        "pingpong"              },
   { "balloon.moving.delay",                    "2"                     },
-  { "balloon.pushing",                         "RocksDC.pcx"           },
+  { "balloon.pushing",                         "RocksDC.png"           },
   { "balloon.pushing.xpos",                    "12"                    },
   { "balloon.pushing.ypos",                    "7"                     },
   { "balloon.pushing.frames",                  "4"                     },
   { "balloon.pushing.anim_mode",               "pingpong"              },
   { "balloon.pushing.delay",                   "2"                     },
-  { "balloon_switch_left",                     "RocksDC.pcx"           },
+  { "balloon_switch_left",                     "RocksDC.png"           },
   { "balloon_switch_left.xpos",                        "8"                     },
   { "balloon_switch_left.ypos",                        "7"                     },
   { "balloon_switch_left.frames",              "1"                     },
-  { "balloon_switch_right",                    "RocksDC.pcx"           },
+  { "balloon_switch_right",                    "RocksDC.png"           },
   { "balloon_switch_right.xpos",               "9"                     },
   { "balloon_switch_right.ypos",               "7"                     },
   { "balloon_switch_right.frames",             "1"                     },
-  { "balloon_switch_up",                       "RocksDC.pcx"           },
+  { "balloon_switch_up",                       "RocksDC.png"           },
   { "balloon_switch_up.xpos",                  "10"                    },
   { "balloon_switch_up.ypos",                  "7"                     },
   { "balloon_switch_up.frames",                        "1"                     },
-  { "balloon_switch_down",                     "RocksDC.pcx"           },
+  { "balloon_switch_down",                     "RocksDC.png"           },
   { "balloon_switch_down.xpos",                        "11"                    },
   { "balloon_switch_down.ypos",                        "7"                     },
   { "balloon_switch_down.frames",              "1"                     },
-  { "balloon_switch_any",                      "RocksDC.pcx"           },
+  { "balloon_switch_any",                      "RocksDC.png"           },
   { "balloon_switch_any.xpos",                 "15"                    },
   { "balloon_switch_any.ypos",                 "0"                     },
   { "balloon_switch_any.frames",               "1"                     },
-  { "balloon_switch_none",                     "RocksDC.pcx"           },
+  { "balloon_switch_none",                     "RocksDC.png"           },
   { "balloon_switch_none.xpos",                        "13"                    },
   { "balloon_switch_none.ypos",                        "5"                     },
   { "balloon_switch_none.frames",              "1"                     },
 
-  { "spring",                                  "RocksDC.pcx"           },
+  { "spring",                                  "RocksDC.png"           },
   { "spring.xpos",                             "8"                     },
   { "spring.ypos",                             "13"                    },
   { "spring.frames",                           "1"                     },
 
-  { "emc_steelwall_1",                         "RocksDC.pcx"           },
+  { "emc_steelwall_1",                         "RocksDC.png"           },
   { "emc_steelwall_1.xpos",                    "14"                    },
   { "emc_steelwall_1.ypos",                    "0"                     },
   { "emc_steelwall_1.frames",                  "1"                     },
-  { "emc_steelwall_2",                         "RocksEMC.pcx"          },
+  { "emc_steelwall_2",                         "RocksEMC.png"          },
   { "emc_steelwall_2.xpos",                    "9"                     },
   { "emc_steelwall_2.ypos",                    "8"                     },
   { "emc_steelwall_2.frames",                  "1"                     },
-  { "emc_steelwall_3",                         "RocksEMC.pcx"          },
+  { "emc_steelwall_3",                         "RocksEMC.png"          },
   { "emc_steelwall_3.xpos",                    "9"                     },
   { "emc_steelwall_3.ypos",                    "9"                     },
   { "emc_steelwall_3.frames",                  "1"                     },
-  { "emc_steelwall_4",                         "RocksEMC.pcx"          },
+  { "emc_steelwall_4",                         "RocksEMC.png"          },
   { "emc_steelwall_4.xpos",                    "9"                     },
   { "emc_steelwall_4.ypos",                    "10"                    },
   { "emc_steelwall_4.frames",                  "1"                     },
 
-  { "emc_wall_1",                              "RocksDC.pcx"           },
+  { "emc_wall_1",                              "RocksDC.png"           },
   { "emc_wall_1.xpos",                         "13"                    },
   { "emc_wall_1.ypos",                         "6"                     },
   { "emc_wall_1.frames",                       "1"                     },
-  { "emc_wall_2",                              "RocksDC.pcx"           },
+  { "emc_wall_2",                              "RocksDC.png"           },
   { "emc_wall_2.xpos",                         "14"                    },
   { "emc_wall_2.ypos",                         "6"                     },
   { "emc_wall_2.frames",                       "1"                     },
-  { "emc_wall_3",                              "RocksDC.pcx"           },
+  { "emc_wall_3",                              "RocksDC.png"           },
   { "emc_wall_3.xpos",                         "15"                    },
   { "emc_wall_3.ypos",                         "6"                     },
   { "emc_wall_3.frames",                       "1"                     },
-  { "emc_wall_4",                              "RocksDC.pcx"           },
+  { "emc_wall_4",                              "RocksDC.png"           },
   { "emc_wall_4.xpos",                         "14"                    },
   { "emc_wall_4.ypos",                         "1"                     },
   { "emc_wall_4.frames",                       "1"                     },
-  { "emc_wall_5",                              "RocksDC.pcx"           },
+  { "emc_wall_5",                              "RocksDC.png"           },
   { "emc_wall_5.xpos",                         "15"                    },
   { "emc_wall_5.ypos",                         "1"                     },
   { "emc_wall_5.frames",                       "1"                     },
-  { "emc_wall_6",                              "RocksDC.pcx"           },
+  { "emc_wall_6",                              "RocksDC.png"           },
   { "emc_wall_6.xpos",                         "14"                    },
   { "emc_wall_6.ypos",                         "2"                     },
   { "emc_wall_6.frames",                       "1"                     },
-  { "emc_wall_7",                              "RocksDC.pcx"           },
+  { "emc_wall_7",                              "RocksDC.png"           },
   { "emc_wall_7.xpos",                         "15"                    },
   { "emc_wall_7.ypos",                         "2"                     },
   { "emc_wall_7.frames",                       "1"                     },
-  { "emc_wall_8",                              "RocksEMC.pcx"          },
+  { "emc_wall_8",                              "RocksEMC.png"          },
   { "emc_wall_8.xpos",                         "8"                     },
   { "emc_wall_8.ypos",                         "7"                     },
   { "emc_wall_8.frames",                       "1"                     },
 
   /* images for Diamond Caves style elements and actions */
 
-  { "invisible_steelwall",                     "RocksSP.pcx"           },
+  { "invisible_steelwall",                     "RocksSP.png"           },
   { "invisible_steelwall.xpos",                        "3"                     },
   { "invisible_steelwall.ypos",                        "5"                     },
   { "invisible_steelwall.frames",              "1"                     },
-  { "invisible_steelwall.EDITOR",              "RocksSP.pcx"           },
+  { "invisible_steelwall.EDITOR",              "RocksSP.png"           },
   { "invisible_steelwall.EDITOR.xpos",         "1"                     },
   { "invisible_steelwall.EDITOR.ypos",         "5"                     },
-  { "invisible_steelwall.active",              "RocksSP.pcx"           },
+  { "invisible_steelwall.active",              "RocksSP.png"           },
   { "invisible_steelwall.active.xpos",         "1"                     },
   { "invisible_steelwall.active.ypos",         "5"                     },
   { "invisible_steelwall.active.frames",       "1"                     },
 
-  { "invisible_wall",                          "RocksSP.pcx"           },
+  { "invisible_wall",                          "RocksSP.png"           },
   { "invisible_wall.xpos",                     "7"                     },
   { "invisible_wall.ypos",                     "5"                     },
   { "invisible_wall.frames",                   "1"                     },
-  { "invisible_wall.EDITOR",                   "RocksSP.pcx"           },
+  { "invisible_wall.EDITOR",                   "RocksSP.png"           },
   { "invisible_wall.EDITOR.xpos",              "5"                     },
   { "invisible_wall.EDITOR.ypos",              "5"                     },
-  { "invisible_wall.active",                   "RocksSP.pcx"           },
+  { "invisible_wall.active",                   "RocksSP.png"           },
   { "invisible_wall.active.xpos",              "5"                     },
   { "invisible_wall.active.ypos",              "5"                     },
   { "invisible_wall.active.frames",            "1"                     },
 
-  { "invisible_sand",                          "RocksSP.pcx"           },
+  { "invisible_sand",                          "RocksSP.png"           },
   { "invisible_sand.xpos",                     "0"                     },
   { "invisible_sand.ypos",                     "0"                     },
   { "invisible_sand.frames",                   "1"                     },
-  { "invisible_sand.EDITOR",                   "RocksEMC.pcx"          },
+  { "invisible_sand.EDITOR",                   "RocksEMC.png"          },
   { "invisible_sand.EDITOR.xpos",              "2"                     },
   { "invisible_sand.EDITOR.ypos",              "4"                     },
-  { "invisible_sand.active",                   "RocksEMC.pcx"          },
+  { "invisible_sand.active",                   "RocksEMC.png"          },
   { "invisible_sand.active.xpos",              "2"                     },
   { "invisible_sand.active.ypos",              "4"                     },
   { "invisible_sand.active.frames",            "1"                     },
-  { "invisible_sand.active.CRUMBLED",          "RocksEMC.pcx"          },
+  { "invisible_sand.active.CRUMBLED",          "RocksEMC.png"          },
   { "invisible_sand.active.CRUMBLED.xpos",     "3"                     },
   { "invisible_sand.active.CRUMBLED.ypos",     "4"                     },
   { "invisible_sand.active.CRUMBLED.frames",   "1"                     },
-  { "invisible_sand.active.digging.left",      "RocksEMC.pcx"          },
+  { "invisible_sand.active.digging.left",      "RocksEMC.png"          },
   { "invisible_sand.active.digging.left.xpos", "6"                     },
   { "invisible_sand.active.digging.left.ypos", "2"                     },
   { "invisible_sand.active.digging.left.frames","3"                    },
   { "invisible_sand.active.digging.left.delay",        "2"                     },
   { "invisible_sand.active.digging.left.anim_mode","linear"            },
-  { "invisible_sand.active.digging.right",     "RocksEMC.pcx"          },
+  { "invisible_sand.active.digging.right",     "RocksEMC.png"          },
   { "invisible_sand.active.digging.right.xpos",        "9"                     },
   { "invisible_sand.active.digging.right.ypos",        "2"                     },
   { "invisible_sand.active.digging.right.frames","3"                   },
   { "invisible_sand.active.digging.right.delay","2"                    },
   { "invisible_sand.active.digging.right.anim_mode","linear"           },
-  { "invisible_sand.active.digging.up",                "RocksEMC.pcx"          },
+  { "invisible_sand.active.digging.up",                "RocksEMC.png"          },
   { "invisible_sand.active.digging.up.xpos",   "0"                     },
   { "invisible_sand.active.digging.up.ypos",   "2"                     },
   { "invisible_sand.active.digging.up.frames", "3"                     },
   { "invisible_sand.active.digging.up.delay",  "2"                     },
   { "invisible_sand.active.digging.up.anim_mode","linear"              },
-  { "invisible_sand.active.digging.down",      "RocksEMC.pcx"          },
+  { "invisible_sand.active.digging.down",      "RocksEMC.png"          },
   { "invisible_sand.active.digging.down.xpos", "3"                     },
   { "invisible_sand.active.digging.down.ypos", "2"                     },
   { "invisible_sand.active.digging.down.frames","3"                    },
   { "invisible_sand.active.digging.down.delay",        "2"                     },
   { "invisible_sand.active.digging.down.anim_mode","linear"            },
-  { "invisible_sand.active.digging.left.CRUMBLED",     "RocksEMC.pcx"  },
+  { "invisible_sand.active.digging.left.CRUMBLED",     "RocksEMC.png"  },
   { "invisible_sand.active.digging.left.CRUMBLED.xpos",        "6"             },
   { "invisible_sand.active.digging.left.CRUMBLED.ypos",        "3"             },
   { "invisible_sand.active.digging.left.CRUMBLED.frames","3"           },
   { "invisible_sand.active.digging.left.CRUMBLED.delay","2"            },
   { "invisible_sand.active.digging.left.CRUMBLED.anim_mode","linear"   },
-  { "invisible_sand.active.digging.right.CRUMBLED",    "RocksEMC.pcx"  },
+  { "invisible_sand.active.digging.right.CRUMBLED",    "RocksEMC.png"  },
   { "invisible_sand.active.digging.right.CRUMBLED.xpos","9"            },
   { "invisible_sand.active.digging.right.CRUMBLED.ypos","3"            },
   { "invisible_sand.active.digging.right.CRUMBLED.frames","3"          },
   { "invisible_sand.active.digging.right.CRUMBLED.delay","2"           },
   { "invisible_sand.active.digging.right.CRUMBLED.anim_mode","linear"  },
-  { "invisible_sand.active.digging.up.CRUMBLED",       "RocksEMC.pcx"  },
+  { "invisible_sand.active.digging.up.CRUMBLED",       "RocksEMC.png"  },
   { "invisible_sand.active.digging.up.CRUMBLED.xpos",  "0"             },
   { "invisible_sand.active.digging.up.CRUMBLED.ypos",  "3"             },
   { "invisible_sand.active.digging.up.CRUMBLED.frames",        "3"             },
   { "invisible_sand.active.digging.up.CRUMBLED.delay", "2"             },
   { "invisible_sand.active.digging.up.CRUMBLED.anim_mode","linear"     },
-  { "invisible_sand.active.digging.down.CRUMBLED",     "RocksEMC.pcx"  },
+  { "invisible_sand.active.digging.down.CRUMBLED",     "RocksEMC.png"  },
   { "invisible_sand.active.digging.down.CRUMBLED.xpos",        "3"             },
   { "invisible_sand.active.digging.down.CRUMBLED.ypos",        "3"             },
   { "invisible_sand.active.digging.down.CRUMBLED.frames","3"           },
   { "invisible_sand.active.digging.down.CRUMBLED.delay","2"            },
   { "invisible_sand.active.digging.down.CRUMBLED.anim_mode","linear"   },
 
-  { "conveyor_belt_1_middle",                  "RocksDC.pcx"           },
+  { "conveyor_belt_1_middle",                  "RocksDC.png"           },
   { "conveyor_belt_1_middle.xpos",             "0"                     },
   { "conveyor_belt_1_middle.ypos",             "0"                     },
   { "conveyor_belt_1_middle.frames",           "1"                     },
-  { "conveyor_belt_1_middle.active",           "RocksDC.pcx"           },
+  { "conveyor_belt_1_middle.active",           "RocksDC.png"           },
   { "conveyor_belt_1_middle.active.xpos",      "0"                     },
   { "conveyor_belt_1_middle.active.ypos",      "0"                     },
   { "conveyor_belt_1_middle.active.frames",    "8"                     },
   { "conveyor_belt_1_middle.active.delay",     "2"                     },
-  { "conveyor_belt_1_left",                    "RocksDC.pcx"           },
+  { "conveyor_belt_1_left",                    "RocksDC.png"           },
   { "conveyor_belt_1_left.xpos",               "0"                     },
   { "conveyor_belt_1_left.ypos",               "1"                     },
   { "conveyor_belt_1_left.frames",             "1"                     },
-  { "conveyor_belt_1_left.active",             "RocksDC.pcx"           },
+  { "conveyor_belt_1_left.active",             "RocksDC.png"           },
   { "conveyor_belt_1_left.active.xpos",                "0"                     },
   { "conveyor_belt_1_left.active.ypos",                "1"                     },
   { "conveyor_belt_1_left.active.frames",      "8"                     },
   { "conveyor_belt_1_left.active.delay",       "2"                     },
-  { "conveyor_belt_1_right",                   "RocksDC.pcx"           },
+  { "conveyor_belt_1_right",                   "RocksDC.png"           },
   { "conveyor_belt_1_right.xpos",              "0"                     },
   { "conveyor_belt_1_right.ypos",              "2"                     },
   { "conveyor_belt_1_right.frames",            "1"                     },
-  { "conveyor_belt_1_right.active",            "RocksDC.pcx"           },
+  { "conveyor_belt_1_right.active",            "RocksDC.png"           },
   { "conveyor_belt_1_right.active.xpos",       "0"                     },
   { "conveyor_belt_1_right.active.ypos",       "2"                     },
   { "conveyor_belt_1_right.active.frames",     "8"                     },
   { "conveyor_belt_1_right.active.delay",      "2"                     },
-  { "conveyor_belt_1_switch_left",             "RocksDC.pcx"           },
+  { "conveyor_belt_1_switch_left",             "RocksDC.png"           },
   { "conveyor_belt_1_switch_left.xpos",                "0"                     },
   { "conveyor_belt_1_switch_left.ypos",                "12"                    },
   { "conveyor_belt_1_switch_left.frames",      "1"                     },
-  { "conveyor_belt_1_switch_middle",           "RocksDC.pcx"           },
+  { "conveyor_belt_1_switch_middle",           "RocksDC.png"           },
   { "conveyor_belt_1_switch_middle.xpos",      "0"                     },
   { "conveyor_belt_1_switch_middle.ypos",      "13"                    },
   { "conveyor_belt_1_switch_middle.frames",    "1"                     },
-  { "conveyor_belt_1_switch_right",            "RocksDC.pcx"           },
+  { "conveyor_belt_1_switch_right",            "RocksDC.png"           },
   { "conveyor_belt_1_switch_right.xpos",       "0"                     },
   { "conveyor_belt_1_switch_right.ypos",       "14"                    },
   { "conveyor_belt_1_switch_right.frames",     "1"                     },
 
-  { "conveyor_belt_2_middle",                  "RocksDC.pcx"           },
+  { "conveyor_belt_2_middle",                  "RocksDC.png"           },
   { "conveyor_belt_2_middle.xpos",             "0"                     },
   { "conveyor_belt_2_middle.ypos",             "3"                     },
   { "conveyor_belt_2_middle.frames",           "1"                     },
-  { "conveyor_belt_2_middle.active",           "RocksDC.pcx"           },
+  { "conveyor_belt_2_middle.active",           "RocksDC.png"           },
   { "conveyor_belt_2_middle.active.xpos",      "0"                     },
   { "conveyor_belt_2_middle.active.ypos",      "3"                     },
   { "conveyor_belt_2_middle.active.frames",    "8"                     },
   { "conveyor_belt_2_middle.active.delay",     "2"                     },
-  { "conveyor_belt_2_left",                    "RocksDC.pcx"           },
+  { "conveyor_belt_2_left",                    "RocksDC.png"           },
   { "conveyor_belt_2_left.xpos",               "0"                     },
   { "conveyor_belt_2_left.ypos",               "4"                     },
   { "conveyor_belt_2_left.frames",             "1"                     },
-  { "conveyor_belt_2_left.active",             "RocksDC.pcx"           },
+  { "conveyor_belt_2_left.active",             "RocksDC.png"           },
   { "conveyor_belt_2_left.active.xpos",                "0"                     },
   { "conveyor_belt_2_left.active.ypos",                "4"                     },
   { "conveyor_belt_2_left.active.frames",      "8"                     },
   { "conveyor_belt_2_left.active.delay",       "2"                     },
-  { "conveyor_belt_2_right",                   "RocksDC.pcx"           },
+  { "conveyor_belt_2_right",                   "RocksDC.png"           },
   { "conveyor_belt_2_right.xpos",              "0"                     },
   { "conveyor_belt_2_right.ypos",              "5"                     },
   { "conveyor_belt_2_right.frames",            "1"                     },
-  { "conveyor_belt_2_right.active",            "RocksDC.pcx"           },
+  { "conveyor_belt_2_right.active",            "RocksDC.png"           },
   { "conveyor_belt_2_right.active.xpos",       "0"                     },
   { "conveyor_belt_2_right.active.ypos",       "5"                     },
   { "conveyor_belt_2_right.active.frames",     "8"                     },
   { "conveyor_belt_2_right.active.delay",      "2"                     },
-  { "conveyor_belt_2_switch_left",             "RocksDC.pcx"           },
+  { "conveyor_belt_2_switch_left",             "RocksDC.png"           },
   { "conveyor_belt_2_switch_left.xpos",                "1"                     },
   { "conveyor_belt_2_switch_left.ypos",                "12"                    },
   { "conveyor_belt_2_switch_left.frames",      "1"                     },
-  { "conveyor_belt_2_switch_middle",           "RocksDC.pcx"           },
+  { "conveyor_belt_2_switch_middle",           "RocksDC.png"           },
   { "conveyor_belt_2_switch_middle.xpos",      "1"                     },
   { "conveyor_belt_2_switch_middle.ypos",      "13"                    },
   { "conveyor_belt_2_switch_middle.frames",    "1"                     },
-  { "conveyor_belt_2_switch_right",            "RocksDC.pcx"           },
+  { "conveyor_belt_2_switch_right",            "RocksDC.png"           },
   { "conveyor_belt_2_switch_right.xpos",       "1"                     },
   { "conveyor_belt_2_switch_right.ypos",       "14"                    },
   { "conveyor_belt_2_switch_right.frames",     "1"                     },
 
-  { "conveyor_belt_3_middle",                  "RocksDC.pcx"           },
+  { "conveyor_belt_3_middle",                  "RocksDC.png"           },
   { "conveyor_belt_3_middle.xpos",             "0"                     },
   { "conveyor_belt_3_middle.ypos",             "6"                     },
   { "conveyor_belt_3_middle.frames",           "1"                     },
-  { "conveyor_belt_3_middle.active",           "RocksDC.pcx"           },
+  { "conveyor_belt_3_middle.active",           "RocksDC.png"           },
   { "conveyor_belt_3_middle.active.xpos",      "0"                     },
   { "conveyor_belt_3_middle.active.ypos",      "6"                     },
   { "conveyor_belt_3_middle.active.frames",    "8"                     },
   { "conveyor_belt_3_middle.active.delay",     "2"                     },
-  { "conveyor_belt_3_left",                    "RocksDC.pcx"           },
+  { "conveyor_belt_3_left",                    "RocksDC.png"           },
   { "conveyor_belt_3_left.xpos",               "0"                     },
   { "conveyor_belt_3_left.ypos",               "7"                     },
   { "conveyor_belt_3_left.frames",             "1"                     },
-  { "conveyor_belt_3_left.active",             "RocksDC.pcx"           },
+  { "conveyor_belt_3_left.active",             "RocksDC.png"           },
   { "conveyor_belt_3_left.active.xpos",                "0"                     },
   { "conveyor_belt_3_left.active.ypos",                "7"                     },
   { "conveyor_belt_3_left.active.frames",      "8"                     },
   { "conveyor_belt_3_left.active.delay",       "2"                     },
-  { "conveyor_belt_3_right",                   "RocksDC.pcx"           },
+  { "conveyor_belt_3_right",                   "RocksDC.png"           },
   { "conveyor_belt_3_right.xpos",              "0"                     },
   { "conveyor_belt_3_right.ypos",              "8"                     },
   { "conveyor_belt_3_right.frames",            "1"                     },
-  { "conveyor_belt_3_right.active",            "RocksDC.pcx"           },
+  { "conveyor_belt_3_right.active",            "RocksDC.png"           },
   { "conveyor_belt_3_right.active.xpos",       "0"                     },
   { "conveyor_belt_3_right.active.ypos",       "8"                     },
   { "conveyor_belt_3_right.active.frames",     "8"                     },
   { "conveyor_belt_3_right.active.delay",      "2"                     },
-  { "conveyor_belt_3_switch_left",             "RocksDC.pcx"           },
+  { "conveyor_belt_3_switch_left",             "RocksDC.png"           },
   { "conveyor_belt_3_switch_left.xpos",                "2"                     },
   { "conveyor_belt_3_switch_left.ypos",                "12"                    },
   { "conveyor_belt_3_switch_left.frames",      "1"                     },
-  { "conveyor_belt_3_switch_middle",           "RocksDC.pcx"           },
+  { "conveyor_belt_3_switch_middle",           "RocksDC.png"           },
   { "conveyor_belt_3_switch_middle.xpos",      "2"                     },
   { "conveyor_belt_3_switch_middle.ypos",      "13"                    },
   { "conveyor_belt_3_switch_middle.frames",    "1"                     },
-  { "conveyor_belt_3_switch_right",            "RocksDC.pcx"           },
+  { "conveyor_belt_3_switch_right",            "RocksDC.png"           },
   { "conveyor_belt_3_switch_right.xpos",       "2"                     },
   { "conveyor_belt_3_switch_right.ypos",       "14"                    },
   { "conveyor_belt_3_switch_right.frames",     "1"                     },
 
-  { "conveyor_belt_4_middle",                  "RocksDC.pcx"           },
+  { "conveyor_belt_4_middle",                  "RocksDC.png"           },
   { "conveyor_belt_4_middle.xpos",             "0"                     },
   { "conveyor_belt_4_middle.ypos",             "9"                     },
   { "conveyor_belt_4_middle.frames",           "1"                     },
-  { "conveyor_belt_4_middle.active",           "RocksDC.pcx"           },
+  { "conveyor_belt_4_middle.active",           "RocksDC.png"           },
   { "conveyor_belt_4_middle.active.xpos",      "0"                     },
   { "conveyor_belt_4_middle.active.ypos",      "9"                     },
   { "conveyor_belt_4_middle.active.frames",    "8"                     },
   { "conveyor_belt_4_middle.active.delay",     "2"                     },
-  { "conveyor_belt_4_left",                    "RocksDC.pcx"           },
+  { "conveyor_belt_4_left",                    "RocksDC.png"           },
   { "conveyor_belt_4_left.xpos",               "0"                     },
   { "conveyor_belt_4_left.ypos",               "10"                    },
   { "conveyor_belt_4_left.frames",             "1"                     },
-  { "conveyor_belt_4_left.active",             "RocksDC.pcx"           },
+  { "conveyor_belt_4_left.active",             "RocksDC.png"           },
   { "conveyor_belt_4_left.active.xpos",                "0"                     },
   { "conveyor_belt_4_left.active.ypos",                "10"                    },
   { "conveyor_belt_4_left.active.frames",      "8"                     },
   { "conveyor_belt_4_left.active.delay",       "2"                     },
-  { "conveyor_belt_4_right",                   "RocksDC.pcx"           },
+  { "conveyor_belt_4_right",                   "RocksDC.png"           },
   { "conveyor_belt_4_right.xpos",              "0"                     },
   { "conveyor_belt_4_right.ypos",              "11"                    },
   { "conveyor_belt_4_right.frames",            "1"                     },
-  { "conveyor_belt_4_right.active",            "RocksDC.pcx"           },
+  { "conveyor_belt_4_right.active",            "RocksDC.png"           },
   { "conveyor_belt_4_right.active.xpos",       "0"                     },
   { "conveyor_belt_4_right.active.ypos",       "11"                    },
   { "conveyor_belt_4_right.active.frames",     "8"                     },
   { "conveyor_belt_4_right.active.delay",      "2"                     },
-  { "conveyor_belt_4_switch_left",             "RocksDC.pcx"           },
+  { "conveyor_belt_4_switch_left",             "RocksDC.png"           },
   { "conveyor_belt_4_switch_left.xpos",                "3"                     },
   { "conveyor_belt_4_switch_left.ypos",                "12"                    },
   { "conveyor_belt_4_switch_left.frames",      "1"                     },
-  { "conveyor_belt_4_switch_middle",           "RocksDC.pcx"           },
+  { "conveyor_belt_4_switch_middle",           "RocksDC.png"           },
   { "conveyor_belt_4_switch_middle.xpos",      "3"                     },
   { "conveyor_belt_4_switch_middle.ypos",      "13"                    },
   { "conveyor_belt_4_switch_middle.frames",    "1"                     },
-  { "conveyor_belt_4_switch_right",            "RocksDC.pcx"           },
+  { "conveyor_belt_4_switch_right",            "RocksDC.png"           },
   { "conveyor_belt_4_switch_right.xpos",       "3"                     },
   { "conveyor_belt_4_switch_right.ypos",       "14"                    },
   { "conveyor_belt_4_switch_right.frames",     "1"                     },
 
-  { "switchgate_switch_up",                    "RocksDC.pcx"           },
+  { "switchgate_switch_up",                    "RocksDC.png"           },
   { "switchgate_switch_up.xpos",               "4"                     },
   { "switchgate_switch_up.ypos",               "12"                    },
   { "switchgate_switch_up.frames",             "1"                     },
-  { "switchgate_switch_down",                  "RocksDC.pcx"           },
+  { "switchgate_switch_down",                  "RocksDC.png"           },
   { "switchgate_switch_down.xpos",             "5"                     },
   { "switchgate_switch_down.ypos",             "12"                    },
   { "switchgate_switch_down.frames",           "1"                     },
 
-  { "dc_switchgate_switch_up",                 "RocksDC2.pcx"          },
+  { "dc_switchgate_switch_up",                 "RocksDC2.png"          },
   { "dc_switchgate_switch_up.xpos",            "10"                    },
   { "dc_switchgate_switch_up.ypos",            "1"                     },
   { "dc_switchgate_switch_up.frames",          "1"                     },
-  { "dc_switchgate_switch_down",               "RocksDC2.pcx"          },
+  { "dc_switchgate_switch_down",               "RocksDC2.png"          },
   { "dc_switchgate_switch_down.xpos",          "11"                    },
   { "dc_switchgate_switch_down.ypos",          "1"                     },
   { "dc_switchgate_switch_down.frames",                "1"                     },
 
-  { "light_switch",                            "RocksDC.pcx"           },
+  { "light_switch",                            "RocksDC.png"           },
   { "light_switch.xpos",                       "6"                     },
   { "light_switch.ypos",                       "12"                    },
   { "light_switch.frames",                     "1"                     },
-  { "light_switch.active",                     "RocksDC.pcx"           },
+  { "light_switch.active",                     "RocksDC.png"           },
   { "light_switch.active.xpos",                        "7"                     },
   { "light_switch.active.ypos",                        "12"                    },
   { "light_switch.active.frames",              "1"                     },
 
-  { "timegate_switch",                         "RocksDC.pcx"           },
+  { "timegate_switch",                         "RocksDC.png"           },
   { "timegate_switch.xpos",                    "0"                     },
   { "timegate_switch.ypos",                    "15"                    },
   { "timegate_switch.frames",                  "1"                     },
-  { "timegate_switch.active",                  "RocksDC.pcx"           },
+  { "timegate_switch.active",                  "RocksDC.png"           },
   { "timegate_switch.active.xpos",             "0"                     },
   { "timegate_switch.active.ypos",             "15"                    },
   { "timegate_switch.active.frames",           "4"                     },
 
-  { "dc_timegate_switch",                      "RocksDC2.pcx"          },
+  { "dc_timegate_switch",                      "RocksDC2.png"          },
   { "dc_timegate_switch.xpos",                 "12"                    },
   { "dc_timegate_switch.ypos",                 "1"                     },
   { "dc_timegate_switch.frames",               "1"                     },
-  { "dc_timegate_switch.active",               "RocksDC2.pcx"          },
+  { "dc_timegate_switch.active",               "RocksDC2.png"          },
   { "dc_timegate_switch.active.xpos",          "12"                    },
   { "dc_timegate_switch.active.ypos",          "1"                     },
   { "dc_timegate_switch.active.frames",                "4"                     },
 
-  { "envelope_1",                              "RocksMore.pcx"         },
+  { "envelope_1",                              "RocksMore.png"         },
   { "envelope_1.xpos",                         "0"                     },
   { "envelope_1.ypos",                         "4"                     },
   { "envelope_1.frames",                       "1"                     },
-  { "envelope_1.collecting",                   "RocksMore.pcx"         },
+  { "envelope_1.collecting",                   "RocksMore.png"         },
   { "envelope_1.collecting.xpos",              "5"                     },
   { "envelope_1.collecting.ypos",              "4"                     },
   { "envelope_1.collecting.frames",            "3"                     },
   { "envelope_1.collecting.delay",             "2"                     },
   { "envelope_1.collecting.anim_mode",         "linear"                },
-  { "envelope_2",                              "RocksMore.pcx"         },
+  { "envelope_2",                              "RocksMore.png"         },
   { "envelope_2.xpos",                         "1"                     },
   { "envelope_2.ypos",                         "4"                     },
   { "envelope_2.frames",                       "1"                     },
-  { "envelope_2.collecting",                   "RocksMore.pcx"         },
+  { "envelope_2.collecting",                   "RocksMore.png"         },
   { "envelope_2.collecting.xpos",              "5"                     },
   { "envelope_2.collecting.ypos",              "4"                     },
   { "envelope_2.collecting.frames",            "3"                     },
   { "envelope_2.collecting.delay",             "2"                     },
   { "envelope_2.collecting.anim_mode",         "linear"                },
-  { "envelope_3",                              "RocksMore.pcx"         },
+  { "envelope_3",                              "RocksMore.png"         },
   { "envelope_3.xpos",                         "2"                     },
   { "envelope_3.ypos",                         "4"                     },
   { "envelope_3.frames",                       "1"                     },
-  { "envelope_3.collecting",                   "RocksMore.pcx"         },
+  { "envelope_3.collecting",                   "RocksMore.png"         },
   { "envelope_3.collecting.xpos",              "5"                     },
   { "envelope_3.collecting.ypos",              "4"                     },
   { "envelope_3.collecting.frames",            "3"                     },
   { "envelope_3.collecting.delay",             "2"                     },
   { "envelope_3.collecting.anim_mode",         "linear"                },
-  { "envelope_4",                              "RocksMore.pcx"         },
+  { "envelope_4",                              "RocksMore.png"         },
   { "envelope_4.xpos",                         "3"                     },
   { "envelope_4.ypos",                         "4"                     },
   { "envelope_4.frames",                       "1"                     },
-  { "envelope_4.collecting",                   "RocksMore.pcx"         },
+  { "envelope_4.collecting",                   "RocksMore.png"         },
   { "envelope_4.collecting.xpos",              "5"                     },
   { "envelope_4.collecting.ypos",              "4"                     },
   { "envelope_4.collecting.frames",            "3"                     },
   { "envelope_4.collecting.delay",             "2"                     },
   { "envelope_4.collecting.anim_mode",         "linear"                },
 
-  { "sign_radioactivity",                      "RocksDC.pcx"           },
+  { "sign_radioactivity",                      "RocksDC.png"           },
   { "sign_radioactivity.xpos",                 "4"                     },
   { "sign_radioactivity.ypos",                 "13"                    },
   { "sign_radioactivity.frames",               "1"                     },
 
-  { "sign_give_way",                           "RocksDC.pcx"           },
+  { "sign_give_way",                           "RocksDC.png"           },
   { "sign_give_way.xpos",                      "5"                     },
   { "sign_give_way.ypos",                      "13"                    },
   { "sign_give_way.frames",                    "1"                     },
 
-  { "sign_no_entry",                           "RocksDC.pcx"           },
+  { "sign_no_entry",                           "RocksDC.png"           },
   { "sign_no_entry.xpos",                      "6"                     },
   { "sign_no_entry.ypos",                      "13"                    },
   { "sign_no_entry.frames",                    "1"                     },
 
-  { "sign_emergency_exit",                     "RocksDC.pcx"           },
+  { "sign_emergency_exit",                     "RocksDC.png"           },
   { "sign_emergency_exit.xpos",                        "7"                     },
   { "sign_emergency_exit.ypos",                        "13"                    },
   { "sign_emergency_exit.frames",              "1"                     },
 
-  { "sign_yin_yang",                           "RocksDC.pcx"           },
+  { "sign_yin_yang",                           "RocksDC.png"           },
   { "sign_yin_yang.xpos",                      "4"                     },
   { "sign_yin_yang.ypos",                      "14"                    },
   { "sign_yin_yang.frames",                    "1"                     },
 
-  { "sign_exclamation",                                "RocksDC.pcx"           },
+  { "sign_exclamation",                                "RocksDC.png"           },
   { "sign_exclamation.xpos",                   "5"                     },
   { "sign_exclamation.ypos",                   "14"                    },
   { "sign_exclamation.frames",                 "1"                     },
 
-  { "sign_stop",                               "RocksDC.pcx"           },
+  { "sign_stop",                               "RocksDC.png"           },
   { "sign_stop.xpos",                          "6"                     },
   { "sign_stop.ypos",                          "14"                    },
   { "sign_stop.frames",                                "1"                     },
 
-  { "sign_parking",                            "RocksDC.pcx"           },
+  { "sign_parking",                            "RocksDC.png"           },
   { "sign_parking.xpos",                       "6"                     },
   { "sign_parking.ypos",                       "15"                    },
   { "sign_parking.frames",                     "1"                     },
 
-  { "sign_wheelchair",                         "RocksDC.pcx"           },
+  { "sign_wheelchair",                         "RocksDC.png"           },
   { "sign_wheelchair.xpos",                    "7"                     },
   { "sign_wheelchair.ypos",                    "15"                    },
   { "sign_wheelchair.frames",                  "1"                     },
 
-  { "sign_entry_forbidden",                    "RocksDC.pcx"           },
+  { "sign_entry_forbidden",                    "RocksDC.png"           },
   { "sign_entry_forbidden.xpos",               "12"                    },
   { "sign_entry_forbidden.ypos",               "15"                    },
   { "sign_entry_forbidden.frames",             "1"                     },
 
-  { "sperms",                                  "RocksDC2.pcx"          },
+  { "sperms",                                  "RocksDC2.png"          },
   { "sperms.xpos",                             "11"                    },
   { "sperms.ypos",                             "3"                     },
   { "sperms.frames",                           "1"                     },
 
-  { "bullet",                                  "RocksDC2.pcx"          },
+  { "bullet",                                  "RocksDC2.png"          },
   { "bullet.xpos",                             "12"                    },
   { "bullet.ypos",                             "3"                     },
   { "bullet.frames",                           "1"                     },
 
-  { "heart",                                   "RocksDC2.pcx"          },
+  { "heart",                                   "RocksDC2.png"          },
   { "heart.xpos",                              "13"                    },
   { "heart.ypos",                              "3"                     },
   { "heart.frames",                            "1"                     },
 
-  { "cross",                                   "RocksDC2.pcx"          },
+  { "cross",                                   "RocksDC2.png"          },
   { "cross.xpos",                              "14"                    },
   { "cross.ypos",                              "3"                     },
   { "cross.frames",                            "1"                     },
 
-  { "frankie",                                 "RocksDC2.pcx"          },
+  { "frankie",                                 "RocksDC2.png"          },
   { "frankie.xpos",                            "15"                    },
   { "frankie.ypos",                            "3"                     },
   { "frankie.frames",                          "1"                     },
 
-  { "sign_sperms",                             "RocksDC2.pcx"          },
+  { "sign_sperms",                             "RocksDC2.png"          },
   { "sign_sperms.xpos",                                "11"                    },
   { "sign_sperms.ypos",                                "2"                     },
   { "sign_sperms.frames",                      "1"                     },
 
-  { "sign_bullet",                             "RocksDC2.pcx"          },
+  { "sign_bullet",                             "RocksDC2.png"          },
   { "sign_bullet.xpos",                                "12"                    },
   { "sign_bullet.ypos",                                "2"                     },
   { "sign_bullet.frames",                      "1"                     },
 
-  { "sign_heart",                              "RocksDC2.pcx"          },
+  { "sign_heart",                              "RocksDC2.png"          },
   { "sign_heart.xpos",                         "13"                    },
   { "sign_heart.ypos",                         "2"                     },
   { "sign_heart.frames",                       "1"                     },
 
-  { "sign_cross",                              "RocksDC2.pcx"          },
+  { "sign_cross",                              "RocksDC2.png"          },
   { "sign_cross.xpos",                         "14"                    },
   { "sign_cross.ypos",                         "2"                     },
   { "sign_cross.frames",                       "1"                     },
 
-  { "sign_frankie",                            "RocksDC2.pcx"          },
+  { "sign_frankie",                            "RocksDC2.png"          },
   { "sign_frankie.xpos",                       "15"                    },
   { "sign_frankie.ypos",                       "2"                     },
   { "sign_frankie.frames",                     "1"                     },
 
-  { "landmine",                                        "RocksDC.pcx"           },
+  { "landmine",                                        "RocksDC.png"           },
   { "landmine.xpos",                           "7"                     },
   { "landmine.ypos",                           "14"                    },
   { "landmine.frames",                         "1"                     },
   { "landmine.crumbled_like",                  "sand"                  },
 
-  { "dc_landmine",                             "RocksDC.pcx"           },
+  { "dc_landmine",                             "RocksDC.png"           },
   { "dc_landmine.xpos",                                "14"                    },
   { "dc_landmine.ypos",                                "5"                     },
   { "dc_landmine.frames",                      "1"                     },
   { "dc_landmine.crumbled_like",               "sand"                  },
 
-  { "steelwall_slippery",                      "RocksDC.pcx"           },
+  { "steelwall_slippery",                      "RocksDC.png"           },
   { "steelwall_slippery.xpos",                 "5"                     },
   { "steelwall_slippery.ypos",                 "15"                    },
   { "steelwall_slippery.frames",               "1"                     },
 
-  { "extra_time",                              "RocksDC.pcx"           },
+  { "extra_time",                              "RocksDC.png"           },
   { "extra_time.xpos",                         "8"                     },
   { "extra_time.ypos",                         "0"                     },
   { "extra_time.frames",                       "6"                     },
   { "extra_time.delay",                                "4"                     },
 
-  { "shield_normal",                           "RocksDC.pcx"           },
+  { "shield_normal",                           "RocksDC.png"           },
   { "shield_normal.xpos",                      "8"                     },
   { "shield_normal.ypos",                      "2"                     },
   { "shield_normal.frames",                    "6"                     },
   { "shield_normal.delay",                     "4"                     },
-  { "shield_normal.active",                    "RocksHeroes.pcx"       },
+  { "shield_normal.active",                    "RocksHeroes.png"       },
   { "shield_normal.active.xpos",               "1"                     },
   { "shield_normal.active.ypos",               "13"                    },
   { "shield_normal.active.frames",             "3"                     },
   { "shield_normal.active.delay",              "8"                     },
   { "shield_normal.active.anim_mode",          "pingpong"              },
 
-  { "shield_deadly",                           "RocksDC.pcx"           },
+  { "shield_deadly",                           "RocksDC.png"           },
   { "shield_deadly.xpos",                      "8"                     },
   { "shield_deadly.ypos",                      "1"                     },
   { "shield_deadly.frames",                    "6"                     },
   { "shield_deadly.delay",                     "4"                     },
-  { "shield_deadly.active",                    "RocksHeroes.pcx"       },
+  { "shield_deadly.active",                    "RocksHeroes.png"       },
   { "shield_deadly.active.xpos",               "5"                     },
   { "shield_deadly.active.ypos",               "13"                    },
   { "shield_deadly.active.frames",             "3"                     },
   { "shield_deadly.active.delay",              "8"                     },
   { "shield_deadly.active.anim_mode",          "pingpong"              },
 
-  { "switchgate_closed",                       "RocksDC.pcx"           },
+  { "switchgate_closed",                       "RocksDC.png"           },
   { "switchgate_closed.xpos",                  "8"                     },
   { "switchgate_closed.ypos",                  "5"                     },
   { "switchgate_closed.frames",                        "1"                     },
-  { "switchgate.opening",                      "RocksDC.pcx"           },
+  { "switchgate.opening",                      "RocksDC.png"           },
   { "switchgate.opening.xpos",                 "8"                     },
   { "switchgate.opening.ypos",                 "5"                     },
   { "switchgate.opening.frames",               "5"                     },
   { "switchgate.opening.delay",                        "6"                     },
-  { "switchgate_open",                         "RocksDC.pcx"           },
+  { "switchgate_open",                         "RocksDC.png"           },
   { "switchgate_open.xpos",                    "12"                    },
   { "switchgate_open.ypos",                    "5"                     },
   { "switchgate_open.frames",                  "1"                     },
-  { "switchgate.closing",                      "RocksDC.pcx"           },
+  { "switchgate.closing",                      "RocksDC.png"           },
   { "switchgate.closing.xpos",                 "8"                     },
   { "switchgate.closing.ypos",                 "5"                     },
   { "switchgate.closing.frames",               "5"                     },
   { "switchgate.closing.delay",                        "6"                     },
   { "switchgate.closing.anim_mode",            "reverse"               },
 
-  { "timegate_closed",                         "RocksDC.pcx"           },
+  { "timegate_closed",                         "RocksDC.png"           },
   { "timegate_closed.xpos",                    "8"                     },
   { "timegate_closed.ypos",                    "6"                     },
   { "timegate_closed.frames",                  "1"                     },
-  { "timegate.opening",                                "RocksDC.pcx"           },
+  { "timegate.opening",                                "RocksDC.png"           },
   { "timegate.opening.xpos",                   "8"                     },
   { "timegate.opening.ypos",                   "6"                     },
   { "timegate.opening.frames",                 "5"                     },
   { "timegate.opening.delay",                  "6"                     },
-  { "timegate_open",                           "RocksDC.pcx"           },
+  { "timegate_open",                           "RocksDC.png"           },
   { "timegate_open.xpos",                      "12"                    },
   { "timegate_open.ypos",                      "6"                     },
   { "timegate_open.frames",                    "1"                     },
-  { "timegate.closing",                                "RocksDC.pcx"           },
+  { "timegate.closing",                                "RocksDC.png"           },
   { "timegate.closing.xpos",                   "8"                     },
   { "timegate.closing.ypos",                   "6"                     },
   { "timegate.closing.frames",                 "5"                     },
   { "timegate.closing.delay",                  "6"                     },
   { "timegate.closing.anim_mode",              "reverse"               },
 
-  { "pearl",                                   "RocksDC.pcx"           },
+  { "pearl",                                   "RocksDC.png"           },
   { "pearl.xpos",                              "8"                     },
   { "pearl.ypos",                              "11"                    },
   { "pearl.frames",                            "1"                     },
-  { "pearl.breaking",                          "RocksDC.pcx"           },
+  { "pearl.breaking",                          "RocksDC.png"           },
   { "pearl.breaking.xpos",                     "8"                     },
   { "pearl.breaking.ypos",                     "12"                    },
   { "pearl.breaking.frames",                   "4"                     },
   { "pearl.breaking.delay",                    "2"                     },
   { "pearl.breaking.anim_mode",                        "linear"                },
 
-  { "crystal",                                 "RocksDC.pcx"           },
+  { "crystal",                                 "RocksDC.png"           },
   { "crystal.xpos",                            "9"                     },
   { "crystal.ypos",                            "11"                    },
   { "crystal.frames",                          "1"                     },
 
-  { "wall_pearl",                              "RocksDC.pcx"           },
+  { "wall_pearl",                              "RocksDC.png"           },
   { "wall_pearl.xpos",                         "10"                    },
   { "wall_pearl.ypos",                         "11"                    },
   { "wall_pearl.frames",                       "1"                     },
 
-  { "wall_crystal",                            "RocksDC.pcx"           },
+  { "wall_crystal",                            "RocksDC.png"           },
   { "wall_crystal.xpos",                       "11"                    },
   { "wall_crystal.ypos",                       "11"                    },
   { "wall_crystal.frames",                     "1"                     },
 
-  { "dc_steelwall_1_left",                     "RocksDC2.pcx"          },
+  { "dc_steelwall_1_left",                     "RocksDC2.png"          },
   { "dc_steelwall_1_left.xpos",                        "5"                     },
   { "dc_steelwall_1_left.ypos",                        "1"                     },
   { "dc_steelwall_1_left.frames",              "1"                     },
-  { "dc_steelwall_1_right",                    "RocksDC2.pcx"          },
+  { "dc_steelwall_1_right",                    "RocksDC2.png"          },
   { "dc_steelwall_1_right.xpos",               "3"                     },
   { "dc_steelwall_1_right.ypos",               "1"                     },
   { "dc_steelwall_1_right.frames",             "1"                     },
-  { "dc_steelwall_1_top",                      "RocksDC2.pcx"          },
+  { "dc_steelwall_1_top",                      "RocksDC2.png"          },
   { "dc_steelwall_1_top.xpos",                 "4"                     },
   { "dc_steelwall_1_top.ypos",                 "2"                     },
   { "dc_steelwall_1_top.frames",               "1"                     },
-  { "dc_steelwall_1_bottom",                   "RocksDC2.pcx"          },
+  { "dc_steelwall_1_bottom",                   "RocksDC2.png"          },
   { "dc_steelwall_1_bottom.xpos",              "4"                     },
   { "dc_steelwall_1_bottom.ypos",              "0"                     },
   { "dc_steelwall_1_bottom.frames",            "1"                     },
-  { "dc_steelwall_1_horizontal",               "RocksDC2.pcx"          },
+  { "dc_steelwall_1_horizontal",               "RocksDC2.png"          },
   { "dc_steelwall_1_horizontal.xpos",          "1"                     },
   { "dc_steelwall_1_horizontal.ypos",          "0"                     },
   { "dc_steelwall_1_horizontal.frames",                "1"                     },
-  { "dc_steelwall_1_vertical",                 "RocksDC2.pcx"          },
+  { "dc_steelwall_1_vertical",                 "RocksDC2.png"          },
   { "dc_steelwall_1_vertical.xpos",            "0"                     },
   { "dc_steelwall_1_vertical.ypos",            "1"                     },
   { "dc_steelwall_1_vertical.frames",          "1"                     },
-  { "dc_steelwall_1_topleft",                  "RocksDC2.pcx"          },
+  { "dc_steelwall_1_topleft",                  "RocksDC2.png"          },
   { "dc_steelwall_1_topleft.xpos",             "0"                     },
   { "dc_steelwall_1_topleft.ypos",             "0"                     },
   { "dc_steelwall_1_topleft.frames",           "1"                     },
-  { "dc_steelwall_1_topright",                 "RocksDC2.pcx"          },
+  { "dc_steelwall_1_topright",                 "RocksDC2.png"          },
   { "dc_steelwall_1_topright.xpos",            "2"                     },
   { "dc_steelwall_1_topright.ypos",            "0"                     },
   { "dc_steelwall_1_topright.frames",          "1"                     },
-  { "dc_steelwall_1_bottomleft",               "RocksDC2.pcx"          },
+  { "dc_steelwall_1_bottomleft",               "RocksDC2.png"          },
   { "dc_steelwall_1_bottomleft.xpos",          "0"                     },
   { "dc_steelwall_1_bottomleft.ypos",          "2"                     },
   { "dc_steelwall_1_bottomleft.frames",                "1"                     },
-  { "dc_steelwall_1_bottomright",              "RocksDC2.pcx"          },
+  { "dc_steelwall_1_bottomright",              "RocksDC2.png"          },
   { "dc_steelwall_1_bottomright.xpos",         "2"                     },
   { "dc_steelwall_1_bottomright.ypos",         "2"                     },
   { "dc_steelwall_1_bottomright.frames",       "1"                     },
-  { "dc_steelwall_1_topleft_2",                        "RocksDC2.pcx"          },
+  { "dc_steelwall_1_topleft_2",                        "RocksDC2.png"          },
   { "dc_steelwall_1_topleft_2.xpos",           "5"                     },
   { "dc_steelwall_1_topleft_2.ypos",           "2"                     },
   { "dc_steelwall_1_topleft_2.frames",         "1"                     },
-  { "dc_steelwall_1_topright_2",               "RocksDC2.pcx"          },
+  { "dc_steelwall_1_topright_2",               "RocksDC2.png"          },
   { "dc_steelwall_1_topright_2.xpos",          "3"                     },
   { "dc_steelwall_1_topright_2.ypos",          "2"                     },
   { "dc_steelwall_1_topright_2.frames",                "1"                     },
-  { "dc_steelwall_1_bottomleft_2",             "RocksDC2.pcx"          },
+  { "dc_steelwall_1_bottomleft_2",             "RocksDC2.png"          },
   { "dc_steelwall_1_bottomleft_2.xpos",                "5"                     },
   { "dc_steelwall_1_bottomleft_2.ypos",                "0"                     },
   { "dc_steelwall_1_bottomleft_2.frames",      "1"                     },
-  { "dc_steelwall_1_bottomright_2",            "RocksDC2.pcx"          },
+  { "dc_steelwall_1_bottomright_2",            "RocksDC2.png"          },
   { "dc_steelwall_1_bottomright_2.xpos",       "3"                     },
   { "dc_steelwall_1_bottomright_2.ypos",       "0"                     },
   { "dc_steelwall_1_bottomright_2.frames",     "1"                     },
 
-  { "dc_steelwall_2_left",                     "RocksDC2.pcx"          },
+  { "dc_steelwall_2_left",                     "RocksDC2.png"          },
   { "dc_steelwall_2_left.xpos",                        "6"                     },
   { "dc_steelwall_2_left.ypos",                        "1"                     },
   { "dc_steelwall_2_left.frames",              "1"                     },
-  { "dc_steelwall_2_right",                    "RocksDC2.pcx"          },
+  { "dc_steelwall_2_right",                    "RocksDC2.png"          },
   { "dc_steelwall_2_right.xpos",               "9"                     },
   { "dc_steelwall_2_right.ypos",               "1"                     },
   { "dc_steelwall_2_right.frames",             "1"                     },
-  { "dc_steelwall_2_top",                      "RocksDC2.pcx"          },
+  { "dc_steelwall_2_top",                      "RocksDC2.png"          },
   { "dc_steelwall_2_top.xpos",                 "7"                     },
   { "dc_steelwall_2_top.ypos",                 "0"                     },
   { "dc_steelwall_2_top.frames",               "1"                     },
-  { "dc_steelwall_2_bottom",                   "RocksDC2.pcx"          },
+  { "dc_steelwall_2_bottom",                   "RocksDC2.png"          },
   { "dc_steelwall_2_bottom.xpos",              "7"                     },
   { "dc_steelwall_2_bottom.ypos",              "3"                     },
   { "dc_steelwall_2_bottom.frames",            "1"                     },
-  { "dc_steelwall_2_horizontal",               "RocksDC2.pcx"          },
+  { "dc_steelwall_2_horizontal",               "RocksDC2.png"          },
   { "dc_steelwall_2_horizontal.xpos",          "8"                     },
   { "dc_steelwall_2_horizontal.ypos",          "1"                     },
   { "dc_steelwall_2_horizontal.frames",                "1"                     },
-  { "dc_steelwall_2_vertical",                 "RocksDC2.pcx"          },
+  { "dc_steelwall_2_vertical",                 "RocksDC2.png"          },
   { "dc_steelwall_2_vertical.xpos",            "7"                     },
   { "dc_steelwall_2_vertical.ypos",            "2"                     },
   { "dc_steelwall_2_vertical.frames",          "1"                     },
-  { "dc_steelwall_2_middle",                   "RocksDC2.pcx"          },
+  { "dc_steelwall_2_middle",                   "RocksDC2.png"          },
   { "dc_steelwall_2_middle.xpos",              "7"                     },
   { "dc_steelwall_2_middle.ypos",              "1"                     },
   { "dc_steelwall_2_middle.frames",            "1"                     },
-  { "dc_steelwall_2_single",                   "RocksDC2.pcx"          },
+  { "dc_steelwall_2_single",                   "RocksDC2.png"          },
   { "dc_steelwall_2_single.xpos",              "6"                     },
   { "dc_steelwall_2_single.ypos",              "0"                     },
   { "dc_steelwall_2_single.frames",            "1"                     },
 
   /* images for DX Boulderdash style elements and actions */
 
-  { "tube_right_down",                         "RocksDC.pcx"           },
+  { "tube_right_down",                         "RocksDC.png"           },
   { "tube_right_down.xpos",                    "9"                     },
   { "tube_right_down.ypos",                    "13"                    },
   { "tube_right_down.frames",                  "1"                     },
 
-  { "tube_horizontal_down",                    "RocksDC.pcx"           },
+  { "tube_horizontal_down",                    "RocksDC.png"           },
   { "tube_horizontal_down.xpos",               "10"                    },
   { "tube_horizontal_down.ypos",               "13"                    },
   { "tube_horizontal_down.frames",             "1"                     },
 
-  { "tube_left_down",                          "RocksDC.pcx"           },
+  { "tube_left_down",                          "RocksDC.png"           },
   { "tube_left_down.xpos",                     "11"                    },
   { "tube_left_down.ypos",                     "13"                    },
   { "tube_left_down.frames",                   "1"                     },
 
-  { "tube_horizontal",                         "RocksDC.pcx"           },
+  { "tube_horizontal",                         "RocksDC.png"           },
   { "tube_horizontal.xpos",                    "8"                     },
   { "tube_horizontal.ypos",                    "14"                    },
   { "tube_horizontal.frames",                  "1"                     },
 
-  { "tube_vertical_right",                     "RocksDC.pcx"           },
+  { "tube_vertical_right",                     "RocksDC.png"           },
   { "tube_vertical_right.xpos",                        "9"                     },
   { "tube_vertical_right.ypos",                        "14"                    },
   { "tube_vertical_right.frames",              "1"                     },
 
-  { "tube_any",                                        "RocksDC.pcx"           },
+  { "tube_any",                                        "RocksDC.png"           },
   { "tube_any.xpos",                           "10"                    },
   { "tube_any.ypos",                           "14"                    },
   { "tube_any.frames",                         "1"                     },
 
-  { "tube_vertical_left",                      "RocksDC.pcx"           },
+  { "tube_vertical_left",                      "RocksDC.png"           },
   { "tube_vertical_left.xpos",                 "11"                    },
   { "tube_vertical_left.ypos",                 "14"                    },
   { "tube_vertical_left.frames",               "1"                     },
 
-  { "tube_vertical",                           "RocksDC.pcx"           },
+  { "tube_vertical",                           "RocksDC.png"           },
   { "tube_vertical.xpos",                      "8"                     },
   { "tube_vertical.ypos",                      "15"                    },
   { "tube_vertical.frames",                    "1"                     },
 
-  { "tube_right_up",                           "RocksDC.pcx"           },
+  { "tube_right_up",                           "RocksDC.png"           },
   { "tube_right_up.xpos",                      "9"                     },
   { "tube_right_up.ypos",                      "15"                    },
   { "tube_right_up.frames",                    "1"                     },
 
-  { "tube_horizontal_up",                      "RocksDC.pcx"           },
+  { "tube_horizontal_up",                      "RocksDC.png"           },
   { "tube_horizontal_up.xpos",                 "10"                    },
   { "tube_horizontal_up.ypos",                 "15"                    },
   { "tube_horizontal_up.frames",               "1"                     },
 
-  { "tube_left_up",                            "RocksDC.pcx"           },
+  { "tube_left_up",                            "RocksDC.png"           },
   { "tube_left_up.xpos",                       "11"                    },
   { "tube_left_up.ypos",                       "15"                    },
   { "tube_left_up.frames",                     "1"                     },
 
-  { "trap",                                    "RocksDC.pcx"           },
+  { "trap",                                    "RocksDC.png"           },
   { "trap.xpos",                               "12"                    },
   { "trap.ypos",                               "8"                     },
   { "trap.frames",                             "1"                     },
   { "trap.crumbled_like",                      "sand"                  },
   { "trap.diggable_like",                      "sand"                  },
-  { "trap.active",                             "RocksDC.pcx"           },
+  { "trap.active",                             "RocksDC.png"           },
   { "trap.active.xpos",                                "12"                    },
   { "trap.active.ypos",                                "8"                     },
   { "trap.active.frames",                      "4"                     },
@@ -2520,1268 +2520,1268 @@ struct ConfigInfo image_config[] =
   { "trap.active.anim_mode",                   "pingpong2"             },
   { "trap.active.crumbled_like",               "sand"                  },
 
-  { "dx_supabomb",                             "RocksDC.pcx"           },
+  { "dx_supabomb",                             "RocksDC.png"           },
   { "dx_supabomb.xpos",                                "15"                    },
   { "dx_supabomb.ypos",                                "9"                     },
   { "dx_supabomb.frames",                      "1"                     },
 
   /* images for Rocks'n'Diamonds style elements and actions */
 
-  { "key_1",                                   "RocksElements.pcx"     },
+  { "key_1",                                   "RocksElements.png"     },
   { "key_1.xpos",                              "4"                     },
   { "key_1.ypos",                              "1"                     },
   { "key_1.frames",                            "1"                     },
-  { "key_1.EDITOR",                            "RocksElements.pcx"     },
+  { "key_1.EDITOR",                            "RocksElements.png"     },
   { "key_1.EDITOR.xpos",                       "4"                     },
   { "key_1.EDITOR.ypos",                       "14"                    },
-  { "key_2",                                   "RocksElements.pcx"     },
+  { "key_2",                                   "RocksElements.png"     },
   { "key_2.xpos",                              "5"                     },
   { "key_2.ypos",                              "1"                     },
   { "key_2.frames",                            "1"                     },
-  { "key_2.EDITOR",                            "RocksElements.pcx"     },
+  { "key_2.EDITOR",                            "RocksElements.png"     },
   { "key_2.EDITOR.xpos",                       "5"                     },
   { "key_2.EDITOR.ypos",                       "14"                    },
-  { "key_3",                                   "RocksElements.pcx"     },
+  { "key_3",                                   "RocksElements.png"     },
   { "key_3.xpos",                              "6"                     },
   { "key_3.ypos",                              "1"                     },
   { "key_3.frames",                            "1"                     },
-  { "key_3.EDITOR",                            "RocksElements.pcx"     },
+  { "key_3.EDITOR",                            "RocksElements.png"     },
   { "key_3.EDITOR.xpos",                       "6"                     },
   { "key_3.EDITOR.ypos",                       "14"                    },
-  { "key_4",                                   "RocksElements.pcx"     },
+  { "key_4",                                   "RocksElements.png"     },
   { "key_4.xpos",                              "7"                     },
   { "key_4.ypos",                              "1"                     },
   { "key_4.frames",                            "1"                     },
-  { "key_4.EDITOR",                            "RocksElements.pcx"     },
+  { "key_4.EDITOR",                            "RocksElements.png"     },
   { "key_4.EDITOR.xpos",                       "7"                     },
   { "key_4.EDITOR.ypos",                       "14"                    },
 
-  { "gate_1",                                  "RocksElements.pcx"     },
+  { "gate_1",                                  "RocksElements.png"     },
   { "gate_1.xpos",                             "4"                     },
   { "gate_1.ypos",                             "2"                     },
   { "gate_1.frames",                           "1"                     },
-  { "gate_2",                                  "RocksElements.pcx"     },
+  { "gate_2",                                  "RocksElements.png"     },
   { "gate_2.xpos",                             "5"                     },
   { "gate_2.ypos",                             "2"                     },
   { "gate_2.frames",                           "1"                     },
-  { "gate_3",                                  "RocksElements.pcx"     },
+  { "gate_3",                                  "RocksElements.png"     },
   { "gate_3.xpos",                             "6"                     },
   { "gate_3.ypos",                             "2"                     },
   { "gate_3.frames",                           "1"                     },
-  { "gate_4",                                  "RocksElements.pcx"     },
+  { "gate_4",                                  "RocksElements.png"     },
   { "gate_4.xpos",                             "7"                     },
   { "gate_4.ypos",                             "2"                     },
   { "gate_4.frames",                           "1"                     },
-  { "gate_1_gray",                             "RocksElements.pcx"     },
+  { "gate_1_gray",                             "RocksElements.png"     },
   { "gate_1_gray.xpos",                                "8"                     },
   { "gate_1_gray.ypos",                                "2"                     },
   { "gate_1_gray.frames",                      "1"                     },
-  { "gate_1_gray.EDITOR",                      "RocksElements.pcx"     },
+  { "gate_1_gray.EDITOR",                      "RocksElements.png"     },
   { "gate_1_gray.EDITOR.xpos",                 "8"                     },
   { "gate_1_gray.EDITOR.ypos",                 "14"                    },
-  { "gate_1_gray.active",                      "RocksElements.pcx"     },
+  { "gate_1_gray.active",                      "RocksElements.png"     },
   { "gate_1_gray.active.xpos",                 "4"                     },
   { "gate_1_gray.active.ypos",                 "2"                     },
   { "gate_1_gray.active.frames",               "1"                     },
-  { "gate_2_gray",                             "RocksElements.pcx"     },
+  { "gate_2_gray",                             "RocksElements.png"     },
   { "gate_2_gray.xpos",                                "9"                     },
   { "gate_2_gray.ypos",                                "2"                     },
   { "gate_2_gray.frames",                      "1"                     },
-  { "gate_2_gray.EDITOR",                      "RocksElements.pcx"     },
+  { "gate_2_gray.EDITOR",                      "RocksElements.png"     },
   { "gate_2_gray.EDITOR.xpos",                 "9"                     },
   { "gate_2_gray.EDITOR.ypos",                 "14"                    },
-  { "gate_2_gray.active",                      "RocksElements.pcx"     },
+  { "gate_2_gray.active",                      "RocksElements.png"     },
   { "gate_2_gray.active.xpos",                 "5"                     },
   { "gate_2_gray.active.ypos",                 "2"                     },
   { "gate_2_gray.active.frames",               "1"                     },
-  { "gate_3_gray",                             "RocksElements.pcx"     },
+  { "gate_3_gray",                             "RocksElements.png"     },
   { "gate_3_gray.xpos",                                "10"                    },
   { "gate_3_gray.ypos",                                "2"                     },
   { "gate_3_gray.frames",                      "1"                     },
-  { "gate_3_gray.EDITOR",                      "RocksElements.pcx"     },
+  { "gate_3_gray.EDITOR",                      "RocksElements.png"     },
   { "gate_3_gray.EDITOR.xpos",                 "10"                    },
   { "gate_3_gray.EDITOR.ypos",                 "14"                    },
-  { "gate_3_gray.active",                      "RocksElements.pcx"     },
+  { "gate_3_gray.active",                      "RocksElements.png"     },
   { "gate_3_gray.active.xpos",                 "6"                     },
   { "gate_3_gray.active.ypos",                 "2"                     },
   { "gate_3_gray.active.frames",               "1"                     },
-  { "gate_4_gray",                             "RocksElements.pcx"     },
+  { "gate_4_gray",                             "RocksElements.png"     },
   { "gate_4_gray.xpos",                                "11"                    },
   { "gate_4_gray.ypos",                                "2"                     },
   { "gate_4_gray.frames",                      "1"                     },
-  { "gate_4_gray.EDITOR",                      "RocksElements.pcx"     },
+  { "gate_4_gray.EDITOR",                      "RocksElements.png"     },
   { "gate_4_gray.EDITOR.xpos",                 "11"                    },
   { "gate_4_gray.EDITOR.ypos",                 "14"                    },
-  { "gate_4_gray.active",                      "RocksElements.pcx"     },
+  { "gate_4_gray.active",                      "RocksElements.png"     },
   { "gate_4_gray.active.xpos",                 "7"                     },
   { "gate_4_gray.active.ypos",                 "2"                     },
   { "gate_4_gray.active.frames",               "1"                     },
 
-  { "game_of_life",                            "RocksElements.pcx"     },
+  { "game_of_life",                            "RocksElements.png"     },
   { "game_of_life.xpos",                       "8"                     },
   { "game_of_life.ypos",                       "1"                     },
   { "game_of_life.frames",                     "1"                     },
 
-  { "biomaze",                                 "RocksElements.pcx"     },
+  { "biomaze",                                 "RocksElements.png"     },
   { "biomaze.xpos",                            "9"                     },
   { "biomaze.ypos",                            "1"                     },
   { "biomaze.frames",                          "1"                     },
 
-  { "pacman",                                  "RocksElements.pcx"     },
+  { "pacman",                                  "RocksElements.png"     },
   { "pacman.xpos",                             "8"                     },
   { "pacman.ypos",                             "5"                     },
   { "pacman.frames",                           "1"                     },
-  { "pacman.right",                            "RocksElements.pcx"     },
+  { "pacman.right",                            "RocksElements.png"     },
   { "pacman.right.xpos",                       "8"                     },
   { "pacman.right.ypos",                       "5"                     },
   { "pacman.right.frames",                     "2"                     },
   { "pacman.right.delay",                      "4"                     },
   { "pacman.right.offset",                     "128"                   },
-  { "pacman.up",                               "RocksElements.pcx"     },
+  { "pacman.up",                               "RocksElements.png"     },
   { "pacman.up.xpos",                          "9"                     },
   { "pacman.up.ypos",                          "5"                     },
   { "pacman.up.frames",                                "2"                     },
   { "pacman.up.delay",                         "4"                     },
   { "pacman.up.offset",                                "128"                   },
-  { "pacman.left",                             "RocksElements.pcx"     },
+  { "pacman.left",                             "RocksElements.png"     },
   { "pacman.left.xpos",                                "10"                    },
   { "pacman.left.ypos",                                "5"                     },
   { "pacman.left.frames",                      "2"                     },
   { "pacman.left.delay",                       "4"                     },
   { "pacman.left.offset",                      "128"                   },
-  { "pacman.down",                             "RocksElements.pcx"     },
+  { "pacman.down",                             "RocksElements.png"     },
   { "pacman.down.xpos",                                "11"                    },
   { "pacman.down.ypos",                                "5"                     },
   { "pacman.down.frames",                      "2"                     },
   { "pacman.down.delay",                       "4"                     },
   { "pacman.down.offset",                      "128"                   },
-  { "pacman.turning_from_right",               "RocksElements.pcx"     },
+  { "pacman.turning_from_right",               "RocksElements.png"     },
   { "pacman.turning_from_right.xpos",          "12"                    },
   { "pacman.turning_from_right.ypos",          "5"                     },
   { "pacman.turning_from_right.frames",                "1"                     },
-  { "pacman.turning_from_up",                  "RocksElements.pcx"     },
+  { "pacman.turning_from_up",                  "RocksElements.png"     },
   { "pacman.turning_from_up.xpos",             "13"                    },
   { "pacman.turning_from_up.ypos",             "5"                     },
   { "pacman.turning_from_up.frames",           "1"                     },
-  { "pacman.turning_from_left",                        "RocksElements.pcx"     },
+  { "pacman.turning_from_left",                        "RocksElements.png"     },
   { "pacman.turning_from_left.xpos",           "14"                    },
   { "pacman.turning_from_left.ypos",           "5"                     },
   { "pacman.turning_from_left.frames",         "1"                     },
-  { "pacman.turning_from_down",                        "RocksElements.pcx"     },
+  { "pacman.turning_from_down",                        "RocksElements.png"     },
   { "pacman.turning_from_down.xpos",           "15"                    },
   { "pacman.turning_from_down.ypos",           "5"                     },
   { "pacman.turning_from_down.frames",         "1"                     },
 
-  { "lamp",                                    "RocksElements.pcx"     },
+  { "lamp",                                    "RocksElements.png"     },
   { "lamp.xpos",                               "0"                     },
   { "lamp.ypos",                               "7"                     },
   { "lamp.frames",                             "1"                     },
-  { "lamp.EDITOR",                             "RocksElements.pcx"     },
+  { "lamp.EDITOR",                             "RocksElements.png"     },
   { "lamp.EDITOR.xpos",                                "2"                     },
   { "lamp.EDITOR.ypos",                                "14"                    },
-  { "lamp.active",                             "RocksElements.pcx"     },
+  { "lamp.active",                             "RocksElements.png"     },
   { "lamp.active.xpos",                                "1"                     },
   { "lamp.active.ypos",                                "7"                     },
   { "lamp.active.frames",                      "1"                     },
 
-  { "time_orb_full",                           "RocksElements.pcx"     },
+  { "time_orb_full",                           "RocksElements.png"     },
   { "time_orb_full.xpos",                      "2"                     },
   { "time_orb_full.ypos",                      "7"                     },
   { "time_orb_full.frames",                    "1"                     },
-  { "time_orb_empty",                          "RocksElements.pcx"     },
+  { "time_orb_empty",                          "RocksElements.png"     },
   { "time_orb_empty.xpos",                     "3"                     },
   { "time_orb_empty.ypos",                     "7"                     },
   { "time_orb_empty.frames",                   "1"                     },
 
-  { "emerald_yellow",                          "RocksElements.pcx"     },
+  { "emerald_yellow",                          "RocksElements.png"     },
   { "emerald_yellow.xpos",                     "10"                    },
   { "emerald_yellow.ypos",                     "8"                     },
   { "emerald_yellow.frames",                   "1"                     },
-  { "emerald_yellow.moving",                   "RocksElements.pcx"     },
+  { "emerald_yellow.moving",                   "RocksElements.png"     },
   { "emerald_yellow.moving.xpos",              "10"                    },
   { "emerald_yellow.moving.ypos",              "8"                     },
   { "emerald_yellow.moving.frames",            "2"                     },
   { "emerald_yellow.moving.delay",             "4"                     },
-  { "emerald_yellow.falling",                  "RocksElements.pcx"     },
+  { "emerald_yellow.falling",                  "RocksElements.png"     },
   { "emerald_yellow.falling.xpos",             "10"                    },
   { "emerald_yellow.falling.ypos",             "8"                     },
   { "emerald_yellow.falling.frames",           "2"                     },
   { "emerald_yellow.falling.delay",            "4"                     },
-  { "emerald_red",                             "RocksElements.pcx"     },
+  { "emerald_red",                             "RocksElements.png"     },
   { "emerald_red.xpos",                                "8"                     },
   { "emerald_red.ypos",                                "9"                     },
   { "emerald_red.frames",                      "1"                     },
-  { "emerald_red.moving",                      "RocksElements.pcx"     },
+  { "emerald_red.moving",                      "RocksElements.png"     },
   { "emerald_red.moving.xpos",                 "8"                     },
   { "emerald_red.moving.ypos",                 "9"                     },
   { "emerald_red.moving.frames",               "2"                     },
   { "emerald_red.moving.delay",                        "4"                     },
-  { "emerald_red.falling",                     "RocksElements.pcx"     },
+  { "emerald_red.falling",                     "RocksElements.png"     },
   { "emerald_red.falling.xpos",                        "8"                     },
   { "emerald_red.falling.ypos",                        "9"                     },
   { "emerald_red.falling.frames",              "2"                     },
   { "emerald_red.falling.delay",               "4"                     },
-  { "emerald_purple",                          "RocksElements.pcx"     },
+  { "emerald_purple",                          "RocksElements.png"     },
   { "emerald_purple.xpos",                     "10"                    },
   { "emerald_purple.ypos",                     "9"                     },
   { "emerald_purple.frames",                   "1"                     },
-  { "emerald_purple.moving",                   "RocksElements.pcx"     },
+  { "emerald_purple.moving",                   "RocksElements.png"     },
   { "emerald_purple.moving.xpos",              "10"                    },
   { "emerald_purple.moving.ypos",              "9"                     },
   { "emerald_purple.moving.frames",            "2"                     },
   { "emerald_purple.moving.delay",             "4"                     },
-  { "emerald_purple.falling",                  "RocksElements.pcx"     },
+  { "emerald_purple.falling",                  "RocksElements.png"     },
   { "emerald_purple.falling.xpos",             "10"                    },
   { "emerald_purple.falling.ypos",             "9"                     },
   { "emerald_purple.falling.frames",           "2"                     },
   { "emerald_purple.falling.delay",            "4"                     },
 
-  { "wall_emerald_yellow",                     "RocksElements.pcx"     },
+  { "wall_emerald_yellow",                     "RocksElements.png"     },
   { "wall_emerald_yellow.xpos",                        "8"                     },
   { "wall_emerald_yellow.ypos",                        "8"                     },
   { "wall_emerald_yellow.frames",              "1"                     },
-  { "wall_emerald_red",                                "RocksElements.pcx"     },
+  { "wall_emerald_red",                                "RocksElements.png"     },
   { "wall_emerald_red.xpos",                   "6"                     },
   { "wall_emerald_red.ypos",                   "8"                     },
   { "wall_emerald_red.frames",                 "1"                     },
-  { "wall_emerald_purple",                     "RocksElements.pcx"     },
+  { "wall_emerald_purple",                     "RocksElements.png"     },
   { "wall_emerald_purple.xpos",                        "7"                     },
   { "wall_emerald_purple.ypos",                        "8"                     },
   { "wall_emerald_purple.frames",              "1"                     },
-  { "wall_bd_diamond",                         "RocksElements.pcx"     },
+  { "wall_bd_diamond",                         "RocksElements.png"     },
   { "wall_bd_diamond.xpos",                    "9"                     },
   { "wall_bd_diamond.ypos",                    "8"                     },
   { "wall_bd_diamond.frames",                  "1"                     },
 
-  { "expandable_wall",                         "RocksElements.pcx"     },
+  { "expandable_wall",                         "RocksElements.png"     },
   { "expandable_wall.xpos",                    "11"                    },
   { "expandable_wall.ypos",                    "10"                    },
   { "expandable_wall.frames",                  "1"                     },
-  { "expandable_wall_horizontal",              "RocksElements.pcx"     },
+  { "expandable_wall_horizontal",              "RocksElements.png"     },
   { "expandable_wall_horizontal.xpos",         "5"                     },
   { "expandable_wall_horizontal.ypos",         "9"                     },
   { "expandable_wall_horizontal.frames",       "1"                     },
-  { "expandable_wall_horizontal.EDITOR",       "RocksElements.pcx"     },
+  { "expandable_wall_horizontal.EDITOR",       "RocksElements.png"     },
   { "expandable_wall_horizontal.EDITOR.xpos",  "13"                    },
   { "expandable_wall_horizontal.EDITOR.ypos",  "13"                    },
-  { "expandable_wall_vertical",                        "RocksElements.pcx"     },
+  { "expandable_wall_vertical",                        "RocksElements.png"     },
   { "expandable_wall_vertical.xpos",           "6"                     },
   { "expandable_wall_vertical.ypos",           "9"                     },
   { "expandable_wall_vertical.frames",         "1"                     },
-  { "expandable_wall_vertical.EDITOR",         "RocksElements.pcx"     },
+  { "expandable_wall_vertical.EDITOR",         "RocksElements.png"     },
   { "expandable_wall_vertical.EDITOR.xpos",    "14"                    },
   { "expandable_wall_vertical.EDITOR.ypos",    "13"                    },
-  { "expandable_wall_any",                     "RocksElements.pcx"     },
+  { "expandable_wall_any",                     "RocksElements.png"     },
   { "expandable_wall_any.xpos",                        "4"                     },
   { "expandable_wall_any.ypos",                        "9"                     },
   { "expandable_wall_any.frames",              "1"                     },
-  { "expandable_wall_any.EDITOR",              "RocksElements.pcx"     },
+  { "expandable_wall_any.EDITOR",              "RocksElements.png"     },
   { "expandable_wall_any.EDITOR.xpos",         "12"                    },
   { "expandable_wall_any.EDITOR.ypos",         "13"                    },
 
-  { "expandable_steelwall_horizontal",         "RocksDC2.pcx"          },
+  { "expandable_steelwall_horizontal",         "RocksDC2.png"          },
   { "expandable_steelwall_horizontal.xpos",    "6"                     },
   { "expandable_steelwall_horizontal.ypos",    "2"                     },
   { "expandable_steelwall_horizontal.frames",  "1"                     },
-  { "expandable_steelwall_horizontal.EDITOR",  "RocksDC2.pcx"          },
+  { "expandable_steelwall_horizontal.EDITOR",  "RocksDC2.png"          },
   { "expandable_steelwall_horizontal.EDITOR.xpos","9"                  },
   { "expandable_steelwall_horizontal.EDITOR.ypos","2"                  },
-  { "expandable_steelwall_vertical",           "RocksDC2.pcx"          },
+  { "expandable_steelwall_vertical",           "RocksDC2.png"          },
   { "expandable_steelwall_vertical.xpos",      "6"                     },
   { "expandable_steelwall_vertical.ypos",      "2"                     },
   { "expandable_steelwall_vertical.frames",    "1"                     },
-  { "expandable_steelwall_vertical.EDITOR",    "RocksDC2.pcx"          },
+  { "expandable_steelwall_vertical.EDITOR",    "RocksDC2.png"          },
   { "expandable_steelwall_vertical.EDITOR.xpos","10"                   },
   { "expandable_steelwall_vertical.EDITOR.ypos","2"                    },
-  { "expandable_steelwall_any",                        "RocksDC2.pcx"          },
+  { "expandable_steelwall_any",                        "RocksDC2.png"          },
   { "expandable_steelwall_any.xpos",           "6"                     },
   { "expandable_steelwall_any.ypos",           "2"                     },
   { "expandable_steelwall_any.frames",         "1"                     },
-  { "expandable_steelwall_any.EDITOR",         "RocksDC2.pcx"          },
+  { "expandable_steelwall_any.EDITOR",         "RocksDC2.png"          },
   { "expandable_steelwall_any.EDITOR.xpos",    "8"                     },
   { "expandable_steelwall_any.EDITOR.ypos",    "2"                     },
 
-  { "bd_expandable_wall",                      "RocksElements.pcx"     },
+  { "bd_expandable_wall",                      "RocksElements.png"     },
   { "bd_expandable_wall.xpos",                 "5"                     },
   { "bd_expandable_wall.ypos",                 "9"                     },
   { "bd_expandable_wall.frames",               "1"                     },
-  { "bd_expandable_wall.EDITOR",               "RocksDC.pcx"           },
+  { "bd_expandable_wall.EDITOR",               "RocksDC.png"           },
   { "bd_expandable_wall.EDITOR.xpos",          "15"                    },
   { "bd_expandable_wall.EDITOR.ypos",          "15"                    },
 
-  { "expandable_wall.growing.left",            "RocksElements.pcx"     },
+  { "expandable_wall.growing.left",            "RocksElements.png"     },
   { "expandable_wall.growing.left.xpos",       "8"                     },
   { "expandable_wall.growing.left.ypos",       "10"                    },
   { "expandable_wall.growing.left.frames",     "3"                     },
   { "expandable_wall.growing.left.delay",      "6"                     },
   { "expandable_wall.growing.left.anim_mode",  "linear"                },
-  { "expandable_wall.growing.right",           "RocksElements.pcx"     },
+  { "expandable_wall.growing.right",           "RocksElements.png"     },
   { "expandable_wall.growing.right.xpos",      "5"                     },
   { "expandable_wall.growing.right.ypos",      "10"                    },
   { "expandable_wall.growing.right.frames",    "3"                     },
   { "expandable_wall.growing.right.delay",     "6"                     },
   { "expandable_wall.growing.right.anim_mode", "linear"                },
-  { "expandable_wall.growing.up",              "RocksHeroes.pcx"       },
+  { "expandable_wall.growing.up",              "RocksHeroes.png"       },
   { "expandable_wall.growing.up.xpos",         "3"                     },
   { "expandable_wall.growing.up.ypos",         "12"                    },
   { "expandable_wall.growing.up.frames",       "3"                     },
   { "expandable_wall.growing.up.delay",                "6"                     },
   { "expandable_wall.growing.up.anim_mode",    "linear"                },
-  { "expandable_wall.growing.down",            "RocksHeroes.pcx"       },
+  { "expandable_wall.growing.down",            "RocksHeroes.png"       },
   { "expandable_wall.growing.down.xpos",       "0"                     },
   { "expandable_wall.growing.down.ypos",       "12"                    },
   { "expandable_wall.growing.down.frames",     "3"                     },
   { "expandable_wall.growing.down.delay",      "6"                     },
   { "expandable_wall.growing.down.anim_mode",  "linear"                },
 
-  { "expandable_steelwall.growing.left",       "RocksDC2.pcx"          },
+  { "expandable_steelwall.growing.left",       "RocksDC2.png"          },
   { "expandable_steelwall.growing.left.xpos",  "8"                     },
   { "expandable_steelwall.growing.left.ypos",  "4"                     },
   { "expandable_steelwall.growing.left.frames",        "4"                     },
   { "expandable_steelwall.growing.left.delay", "4"                     },
   { "expandable_steelwall.growing.left.anim_mode","linear"             },
-  { "expandable_steelwall.growing.right",      "RocksDC2.pcx"          },
+  { "expandable_steelwall.growing.right",      "RocksDC2.png"          },
   { "expandable_steelwall.growing.right.xpos", "12"                    },
   { "expandable_steelwall.growing.right.ypos", "4"                     },
   { "expandable_steelwall.growing.right.frames","4"                    },
   { "expandable_steelwall.growing.right.delay",        "4"                     },
   { "expandable_steelwall.growing.right.anim_mode","linear"            },
-  { "expandable_steelwall.growing.up",         "RocksDC2.pcx"          },
+  { "expandable_steelwall.growing.up",         "RocksDC2.png"          },
   { "expandable_steelwall.growing.up.xpos",    "8"                     },
   { "expandable_steelwall.growing.up.ypos",    "5"                     },
   { "expandable_steelwall.growing.up.frames",  "4"                     },
   { "expandable_steelwall.growing.up.delay",   "4"                     },
   { "expandable_steelwall.growing.up.anim_mode","linear"               },
-  { "expandable_steelwall.growing.down",       "RocksDC2.pcx"          },
+  { "expandable_steelwall.growing.down",       "RocksDC2.png"          },
   { "expandable_steelwall.growing.down.xpos",  "12"                    },
   { "expandable_steelwall.growing.down.ypos",  "5"                     },
   { "expandable_steelwall.growing.down.frames",        "4"                     },
   { "expandable_steelwall.growing.down.delay", "4"                     },
   { "expandable_steelwall.growing.down.anim_mode","linear"             },
 
-  { "black_orb",                               "RocksElements.pcx"     },
+  { "black_orb",                               "RocksElements.png"     },
   { "black_orb.xpos",                          "13"                    },
   { "black_orb.ypos",                          "9"                     },
   { "black_orb.frames",                                "1"                     },
 
-  { "speed_pill",                              "RocksElements.pcx"     },
+  { "speed_pill",                              "RocksElements.png"     },
   { "speed_pill.xpos",                         "14"                    },
   { "speed_pill.ypos",                         "9"                     },
   { "speed_pill.frames",                       "1"                     },
 
-  { "dark_yamyam",                             "RocksElements.pcx"     },
+  { "dark_yamyam",                             "RocksElements.png"     },
   { "dark_yamyam.xpos",                                "8"                     },
   { "dark_yamyam.ypos",                                "11"                    },
   { "dark_yamyam.frames",                      "4"                     },
   { "dark_yamyam.anim_mode",                   "pingpong2"             },
 
-  { "dynabomb",                                        "RocksElements.pcx"     },
+  { "dynabomb",                                        "RocksElements.png"     },
   { "dynabomb.xpos",                           "12"                    },
   { "dynabomb.ypos",                           "11"                    },
   { "dynabomb.frames",                         "1"                     },
-  { "dynabomb.active",                         "RocksElements.pcx"     },
+  { "dynabomb.active",                         "RocksElements.png"     },
   { "dynabomb.active.xpos",                    "12"                    },
   { "dynabomb.active.ypos",                    "11"                    },
   { "dynabomb.active.frames",                  "4"                     },
   { "dynabomb.active.delay",                   "6"                     },
   { "dynabomb.active.anim_mode",               "pingpong"              },
-  { "dynabomb_player_1",                       "RocksElements.pcx"     },
+  { "dynabomb_player_1",                       "RocksElements.png"     },
   { "dynabomb_player_1.xpos",                  "12"                    },
   { "dynabomb_player_1.ypos",                  "11"                    },
   { "dynabomb_player_1.frames",                        "1"                     },
-  { "dynabomb_player_1.active",                        "RocksElements.pcx"     },
+  { "dynabomb_player_1.active",                        "RocksElements.png"     },
   { "dynabomb_player_1.active.xpos",           "12"                    },
   { "dynabomb_player_1.active.ypos",           "11"                    },
   { "dynabomb_player_1.active.frames",         "4"                     },
   { "dynabomb_player_1.active.delay",          "6"                     },
   { "dynabomb_player_1.active.anim_mode",      "pingpong"              },
-  { "dynabomb_player_2",                       "RocksElements.pcx"     },
+  { "dynabomb_player_2",                       "RocksElements.png"     },
   { "dynabomb_player_2.xpos",                  "12"                    },
   { "dynabomb_player_2.ypos",                  "11"                    },
   { "dynabomb_player_2.frames",                        "1"                     },
-  { "dynabomb_player_2.active",                        "RocksElements.pcx"     },
+  { "dynabomb_player_2.active",                        "RocksElements.png"     },
   { "dynabomb_player_2.active.xpos",           "12"                    },
   { "dynabomb_player_2.active.ypos",           "11"                    },
   { "dynabomb_player_2.active.frames",         "4"                     },
   { "dynabomb_player_2.active.delay",          "6"                     },
   { "dynabomb_player_2.active.anim_mode",      "pingpong"              },
-  { "dynabomb_player_3",                       "RocksElements.pcx"     },
+  { "dynabomb_player_3",                       "RocksElements.png"     },
   { "dynabomb_player_3.xpos",                  "12"                    },
   { "dynabomb_player_3.ypos",                  "11"                    },
   { "dynabomb_player_3.frames",                        "1"                     },
-  { "dynabomb_player_3.active",                        "RocksElements.pcx"     },
+  { "dynabomb_player_3.active",                        "RocksElements.png"     },
   { "dynabomb_player_3.active.xpos",           "12"                    },
   { "dynabomb_player_3.active.ypos",           "11"                    },
   { "dynabomb_player_3.active.frames",         "4"                     },
   { "dynabomb_player_3.active.delay",          "6"                     },
   { "dynabomb_player_3.active.anim_mode",      "pingpong"              },
-  { "dynabomb_player_4",                       "RocksElements.pcx"     },
+  { "dynabomb_player_4",                       "RocksElements.png"     },
   { "dynabomb_player_4.xpos",                  "12"                    },
   { "dynabomb_player_4.ypos",                  "11"                    },
   { "dynabomb_player_4.frames",                        "1"                     },
-  { "dynabomb_player_4.active",                        "RocksElements.pcx"     },
+  { "dynabomb_player_4.active",                        "RocksElements.png"     },
   { "dynabomb_player_4.active.xpos",           "12"                    },
   { "dynabomb_player_4.active.ypos",           "11"                    },
   { "dynabomb_player_4.active.frames",         "4"                     },
   { "dynabomb_player_4.active.delay",          "6"                     },
   { "dynabomb_player_4.active.anim_mode",      "pingpong"              },
-  { "dynabomb_increase_number",                        "RocksElements.pcx"     },
+  { "dynabomb_increase_number",                        "RocksElements.png"     },
   { "dynabomb_increase_number.xpos",           "12"                    },
   { "dynabomb_increase_number.ypos",           "11"                    },
   { "dynabomb_increase_number.frames",         "1"                     },
-  { "dynabomb_increase_size",                  "RocksElements.pcx"     },
+  { "dynabomb_increase_size",                  "RocksElements.png"     },
   { "dynabomb_increase_size.xpos",             "15"                    },
   { "dynabomb_increase_size.ypos",             "11"                    },
   { "dynabomb_increase_size.frames",           "1"                     },
-  { "dynabomb_increase_power",                 "RocksElements.pcx"     },
+  { "dynabomb_increase_power",                 "RocksElements.png"     },
   { "dynabomb_increase_power.xpos",            "12"                    },
   { "dynabomb_increase_power.ypos",            "9"                     },
   { "dynabomb_increase_power.frames",          "1"                     },
 
-  { "pig",                                     "RocksHeroes.pcx"       },
+  { "pig",                                     "RocksHeroes.png"       },
   { "pig.xpos",                                        "8"                     },
   { "pig.ypos",                                        "0"                     },
   { "pig.frames",                              "1"                     },
-  { "pig.down",                                        "RocksHeroes.pcx"       },
+  { "pig.down",                                        "RocksHeroes.png"       },
   { "pig.down.xpos",                           "8"                     },
   { "pig.down.ypos",                           "0"                     },
   { "pig.down.frames",                         "1"                     },
-  { "pig.up",                                  "RocksHeroes.pcx"       },
+  { "pig.up",                                  "RocksHeroes.png"       },
   { "pig.up.xpos",                             "12"                    },
   { "pig.up.ypos",                             "0"                     },
   { "pig.up.frames",                           "1"                     },
-  { "pig.left",                                        "RocksHeroes.pcx"       },
+  { "pig.left",                                        "RocksHeroes.png"       },
   { "pig.left.xpos",                           "8"                     },
   { "pig.left.ypos",                           "1"                     },
   { "pig.left.frames",                         "1"                     },
-  { "pig.right",                               "RocksHeroes.pcx"       },
+  { "pig.right",                               "RocksHeroes.png"       },
   { "pig.right.xpos",                          "12"                    },
   { "pig.right.ypos",                          "1"                     },
   { "pig.right.frames",                                "1"                     },
-  { "pig.moving.down",                         "RocksHeroes.pcx"       },
+  { "pig.moving.down",                         "RocksHeroes.png"       },
   { "pig.moving.down.xpos",                    "8"                     },
   { "pig.moving.down.ypos",                    "0"                     },
   { "pig.moving.down.frames",                  "4"                     },
   { "pig.moving.down.delay",                   "2"                     },
-  { "pig.moving.up",                           "RocksHeroes.pcx"       },
+  { "pig.moving.up",                           "RocksHeroes.png"       },
   { "pig.moving.up.xpos",                      "12"                    },
   { "pig.moving.up.ypos",                      "0"                     },
   { "pig.moving.up.frames",                    "4"                     },
   { "pig.moving.up.delay",                     "2"                     },
-  { "pig.moving.left",                         "RocksHeroes.pcx"       },
+  { "pig.moving.left",                         "RocksHeroes.png"       },
   { "pig.moving.left.xpos",                    "8"                     },
   { "pig.moving.left.ypos",                    "1"                     },
   { "pig.moving.left.frames",                  "4"                     },
   { "pig.moving.left.delay",                   "2"                     },
-  { "pig.moving.right",                                "RocksHeroes.pcx"       },
+  { "pig.moving.right",                                "RocksHeroes.png"       },
   { "pig.moving.right.xpos",                   "12"                    },
   { "pig.moving.right.ypos",                   "1"                     },
   { "pig.moving.right.frames",                 "4"                     },
   { "pig.moving.right.delay",                  "2"                     },
-  { "pig.digging.down",                                "RocksHeroes.pcx"       },
+  { "pig.digging.down",                                "RocksHeroes.png"       },
   { "pig.digging.down.xpos",                   "8"                     },
   { "pig.digging.down.ypos",                   "0"                     },
   { "pig.digging.down.frames",                 "4"                     },
   { "pig.digging.down.delay",                  "2"                     },
-  { "pig.digging.up",                          "RocksHeroes.pcx"       },
+  { "pig.digging.up",                          "RocksHeroes.png"       },
   { "pig.digging.up.xpos",                     "12"                    },
   { "pig.digging.up.ypos",                     "0"                     },
   { "pig.digging.up.frames",                   "4"                     },
   { "pig.digging.up.delay",                    "2"                     },
-  { "pig.digging.left",                                "RocksHeroes.pcx"       },
+  { "pig.digging.left",                                "RocksHeroes.png"       },
   { "pig.digging.left.xpos",                   "8"                     },
   { "pig.digging.left.ypos",                   "1"                     },
   { "pig.digging.left.frames",                 "4"                     },
   { "pig.digging.left.delay",                  "2"                     },
-  { "pig.digging.right",                       "RocksHeroes.pcx"       },
+  { "pig.digging.right",                       "RocksHeroes.png"       },
   { "pig.digging.right.xpos",                  "12"                    },
   { "pig.digging.right.ypos",                  "1"                     },
   { "pig.digging.right.frames",                        "4"                     },
   { "pig.digging.right.delay",                 "2"                     },
 
-  { "dragon",                                  "RocksHeroes.pcx"       },
+  { "dragon",                                  "RocksHeroes.png"       },
   { "dragon.xpos",                             "8"                     },
   { "dragon.ypos",                             "2"                     },
   { "dragon.frames",                           "1"                     },
-  { "dragon.down",                             "RocksHeroes.pcx"       },
+  { "dragon.down",                             "RocksHeroes.png"       },
   { "dragon.down.xpos",                                "8"                     },
   { "dragon.down.ypos",                                "2"                     },
   { "dragon.down.frames",                      "1"                     },
-  { "dragon.up",                               "RocksHeroes.pcx"       },
+  { "dragon.up",                               "RocksHeroes.png"       },
   { "dragon.up.xpos",                          "12"                    },
   { "dragon.up.ypos",                          "2"                     },
   { "dragon.up.frames",                                "1"                     },
-  { "dragon.left",                             "RocksHeroes.pcx"       },
+  { "dragon.left",                             "RocksHeroes.png"       },
   { "dragon.left.xpos",                                "8"                     },
   { "dragon.left.ypos",                                "3"                     },
   { "dragon.left.frames",                      "1"                     },
-  { "dragon.right",                            "RocksHeroes.pcx"       },
+  { "dragon.right",                            "RocksHeroes.png"       },
   { "dragon.right.xpos",                       "12"                    },
   { "dragon.right.ypos",                       "3"                     },
   { "dragon.right.frames",                     "1"                     },
-  { "dragon.moving.down",                      "RocksHeroes.pcx"       },
+  { "dragon.moving.down",                      "RocksHeroes.png"       },
   { "dragon.moving.down.xpos",                 "8"                     },
   { "dragon.moving.down.ypos",                 "2"                     },
   { "dragon.moving.down.frames",               "4"                     },
   { "dragon.moving.down.delay",                        "2"                     },
-  { "dragon.moving.up",                                "RocksHeroes.pcx"       },
+  { "dragon.moving.up",                                "RocksHeroes.png"       },
   { "dragon.moving.up.xpos",                   "12"                    },
   { "dragon.moving.up.ypos",                   "2"                     },
   { "dragon.moving.up.frames",                 "4"                     },
   { "dragon.moving.up.delay",                  "2"                     },
-  { "dragon.moving.left",                      "RocksHeroes.pcx"       },
+  { "dragon.moving.left",                      "RocksHeroes.png"       },
   { "dragon.moving.left.xpos",                 "8"                     },
   { "dragon.moving.left.ypos",                 "3"                     },
   { "dragon.moving.left.frames",               "4"                     },
   { "dragon.moving.left.delay",                        "2"                     },
-  { "dragon.moving.right",                     "RocksHeroes.pcx"       },
+  { "dragon.moving.right",                     "RocksHeroes.png"       },
   { "dragon.moving.right.xpos",                        "12"                    },
   { "dragon.moving.right.ypos",                        "3"                     },
   { "dragon.moving.right.frames",              "4"                     },
   { "dragon.moving.right.delay",               "2"                     },
-  { "dragon.attacking.down",                   "RocksHeroes.pcx"       },
+  { "dragon.attacking.down",                   "RocksHeroes.png"       },
   { "dragon.attacking.down.xpos",              "8"                     },
   { "dragon.attacking.down.ypos",              "2"                     },
   { "dragon.attacking.down.frames",            "1"                     },
-  { "dragon.attacking.up",                     "RocksHeroes.pcx"       },
+  { "dragon.attacking.up",                     "RocksHeroes.png"       },
   { "dragon.attacking.up.xpos",                        "12"                    },
   { "dragon.attacking.up.ypos",                        "2"                     },
   { "dragon.attacking.up.frames",              "1"                     },
-  { "dragon.attacking.left",                   "RocksHeroes.pcx"       },
+  { "dragon.attacking.left",                   "RocksHeroes.png"       },
   { "dragon.attacking.left.xpos",              "8"                     },
   { "dragon.attacking.left.ypos",              "3"                     },
   { "dragon.attacking.left.frames",            "1"                     },
-  { "dragon.attacking.right",                  "RocksHeroes.pcx"       },
+  { "dragon.attacking.right",                  "RocksHeroes.png"       },
   { "dragon.attacking.right.xpos",             "12"                    },
   { "dragon.attacking.right.ypos",             "3"                     },
   { "dragon.attacking.right.frames",           "1"                     },
 
-  { "mole",                                    "RocksHeroes.pcx"       },
+  { "mole",                                    "RocksHeroes.png"       },
   { "mole.xpos",                               "8"                     },
   { "mole.ypos",                               "4"                     },
   { "mole.frames",                             "1"                     },
-  { "mole.down",                               "RocksHeroes.pcx"       },
+  { "mole.down",                               "RocksHeroes.png"       },
   { "mole.down.xpos",                          "8"                     },
   { "mole.down.ypos",                          "4"                     },
   { "mole.down.frames",                                "1"                     },
-  { "mole.up",                                 "RocksHeroes.pcx"       },
+  { "mole.up",                                 "RocksHeroes.png"       },
   { "mole.up.xpos",                            "12"                    },
   { "mole.up.ypos",                            "4"                     },
   { "mole.up.frames",                          "1"                     },
-  { "mole.left",                               "RocksHeroes.pcx"       },
+  { "mole.left",                               "RocksHeroes.png"       },
   { "mole.left.xpos",                          "8"                     },
   { "mole.left.ypos",                          "5"                     },
   { "mole.left.frames",                                "1"                     },
-  { "mole.right",                              "RocksHeroes.pcx"       },
+  { "mole.right",                              "RocksHeroes.png"       },
   { "mole.right.xpos",                         "12"                    },
   { "mole.right.ypos",                         "5"                     },
   { "mole.right.frames",                       "1"                     },
-  { "mole.moving.down",                                "RocksHeroes.pcx"       },
+  { "mole.moving.down",                                "RocksHeroes.png"       },
   { "mole.moving.down.xpos",                   "8"                     },
   { "mole.moving.down.ypos",                   "4"                     },
   { "mole.moving.down.frames",                 "4"                     },
   { "mole.moving.down.delay",                  "2"                     },
-  { "mole.moving.up",                          "RocksHeroes.pcx"       },
+  { "mole.moving.up",                          "RocksHeroes.png"       },
   { "mole.moving.up.xpos",                     "12"                    },
   { "mole.moving.up.ypos",                     "4"                     },
   { "mole.moving.up.frames",                   "4"                     },
   { "mole.moving.up.delay",                    "2"                     },
-  { "mole.moving.left",                                "RocksHeroes.pcx"       },
+  { "mole.moving.left",                                "RocksHeroes.png"       },
   { "mole.moving.left.xpos",                   "8"                     },
   { "mole.moving.left.ypos",                   "5"                     },
   { "mole.moving.left.frames",                 "4"                     },
   { "mole.moving.left.delay",                  "2"                     },
-  { "mole.moving.right",                       "RocksHeroes.pcx"       },
+  { "mole.moving.right",                       "RocksHeroes.png"       },
   { "mole.moving.right.xpos",                  "12"                    },
   { "mole.moving.right.ypos",                  "5"                     },
   { "mole.moving.right.frames",                        "4"                     },
   { "mole.moving.right.delay",                 "2"                     },
-  { "mole.digging.down",                       "RocksHeroes.pcx"       },
+  { "mole.digging.down",                       "RocksHeroes.png"       },
   { "mole.digging.down.xpos",                  "8"                     },
   { "mole.digging.down.ypos",                  "4"                     },
   { "mole.digging.down.frames",                        "4"                     },
   { "mole.digging.down.delay",                 "2"                     },
-  { "mole.digging.up",                         "RocksHeroes.pcx"       },
+  { "mole.digging.up",                         "RocksHeroes.png"       },
   { "mole.digging.up.xpos",                    "12"                    },
   { "mole.digging.up.ypos",                    "4"                     },
   { "mole.digging.up.frames",                  "4"                     },
   { "mole.digging.up.delay",                   "2"                     },
-  { "mole.digging.left",                       "RocksHeroes.pcx"       },
+  { "mole.digging.left",                       "RocksHeroes.png"       },
   { "mole.digging.left.xpos",                  "8"                     },
   { "mole.digging.left.ypos",                  "5"                     },
   { "mole.digging.left.frames",                        "4"                     },
   { "mole.digging.left.delay",                 "2"                     },
-  { "mole.digging.right",                      "RocksHeroes.pcx"       },
+  { "mole.digging.right",                      "RocksHeroes.png"       },
   { "mole.digging.right.xpos",                 "12"                    },
   { "mole.digging.right.ypos",                 "5"                     },
   { "mole.digging.right.frames",               "4"                     },
   { "mole.digging.right.delay",                        "2"                     },
 
-  { "penguin",                                 "RocksHeroes.pcx"       },
+  { "penguin",                                 "RocksHeroes.png"       },
   { "penguin.xpos",                            "8"                     },
   { "penguin.ypos",                            "6"                     },
   { "penguin.frames",                          "1"                     },
-  { "penguin.EDITOR",                          "RocksElements.pcx"     },
+  { "penguin.EDITOR",                          "RocksElements.png"     },
   { "penguin.EDITOR.xpos",                     "12"                    },
   { "penguin.EDITOR.ypos",                     "14"                    },
-  { "penguin.down",                            "RocksHeroes.pcx"       },
+  { "penguin.down",                            "RocksHeroes.png"       },
   { "penguin.down.xpos",                       "8"                     },
   { "penguin.down.ypos",                       "6"                     },
   { "penguin.down.frames",                     "1"                     },
-  { "penguin.up",                              "RocksHeroes.pcx"       },
+  { "penguin.up",                              "RocksHeroes.png"       },
   { "penguin.up.xpos",                         "12"                    },
   { "penguin.up.ypos",                         "6"                     },
   { "penguin.up.frames",                       "1"                     },
-  { "penguin.left",                            "RocksHeroes.pcx"       },
+  { "penguin.left",                            "RocksHeroes.png"       },
   { "penguin.left.xpos",                       "8"                     },
   { "penguin.left.ypos",                       "7"                     },
   { "penguin.left.frames",                     "1"                     },
-  { "penguin.right",                           "RocksHeroes.pcx"       },
+  { "penguin.right",                           "RocksHeroes.png"       },
   { "penguin.right.xpos",                      "12"                    },
   { "penguin.right.ypos",                      "7"                     },
   { "penguin.right.frames",                    "1"                     },
-  { "penguin.moving.down",                     "RocksHeroes.pcx"       },
+  { "penguin.moving.down",                     "RocksHeroes.png"       },
   { "penguin.moving.down.xpos",                        "8"                     },
   { "penguin.moving.down.ypos",                        "6"                     },
   { "penguin.moving.down.frames",              "4"                     },
   { "penguin.moving.down.delay",               "2"                     },
-  { "penguin.moving.up",                       "RocksHeroes.pcx"       },
+  { "penguin.moving.up",                       "RocksHeroes.png"       },
   { "penguin.moving.up.xpos",                  "12"                    },
   { "penguin.moving.up.ypos",                  "6"                     },
   { "penguin.moving.up.frames",                        "4"                     },
   { "penguin.moving.up.delay",                 "2"                     },
-  { "penguin.moving.left",                     "RocksHeroes.pcx"       },
+  { "penguin.moving.left",                     "RocksHeroes.png"       },
   { "penguin.moving.left.xpos",                        "8"                     },
   { "penguin.moving.left.ypos",                        "7"                     },
   { "penguin.moving.left.frames",              "4"                     },
   { "penguin.moving.left.delay",               "2"                     },
-  { "penguin.moving.right",                    "RocksHeroes.pcx"       },
+  { "penguin.moving.right",                    "RocksHeroes.png"       },
   { "penguin.moving.right.xpos",               "12"                    },
   { "penguin.moving.right.ypos",               "7"                     },
   { "penguin.moving.right.frames",             "4"                     },
   { "penguin.moving.right.delay",              "2"                     },
 
-  { "satellite",                               "RocksHeroes.pcx"       },
+  { "satellite",                               "RocksHeroes.png"       },
   { "satellite.xpos",                          "8"                     },
   { "satellite.ypos",                          "9"                     },
   { "satellite.frames",                                "8"                     },
   { "satellite.delay",                         "2"                     },
   { "satellite.global_sync",                   "true"                  },
 
-  { "flames_1_left",                           "RocksHeroes.pcx"       },
+  { "flames_1_left",                           "RocksHeroes.png"       },
   { "flames_1_left.xpos",                      "8"                     },
   { "flames_1_left.ypos",                      "12"                    },
   { "flames_1_left.frames",                    "2"                     },
   { "flames_1_left.offset",                    "96"                    },
-  { "flames_2_left",                           "RocksHeroes.pcx"       },
+  { "flames_2_left",                           "RocksHeroes.png"       },
   { "flames_2_left.xpos",                      "9"                     },
   { "flames_2_left.ypos",                      "12"                    },
   { "flames_2_left.frames",                    "2"                     },
   { "flames_2_left.offset",                    "96"                    },
-  { "flames_3_left",                           "RocksHeroes.pcx"       },
+  { "flames_3_left",                           "RocksHeroes.png"       },
   { "flames_3_left.xpos",                      "10"                    },
   { "flames_3_left.ypos",                      "12"                    },
   { "flames_3_left.frames",                    "2"                     },
   { "flames_3_left.offset",                    "96"                    },
 
-  { "flames_1_right",                          "RocksHeroes.pcx"       },
+  { "flames_1_right",                          "RocksHeroes.png"       },
   { "flames_1_right.xpos",                     "8"                     },
   { "flames_1_right.ypos",                     "13"                    },
   { "flames_1_right.frames",                   "2"                     },
   { "flames_1_right.offset",                   "96"                    },
-  { "flames_2_right",                          "RocksHeroes.pcx"       },
+  { "flames_2_right",                          "RocksHeroes.png"       },
   { "flames_2_right.xpos",                     "9"                     },
   { "flames_2_right.ypos",                     "13"                    },
   { "flames_2_right.frames",                   "2"                     },
   { "flames_2_right.offset",                   "96"                    },
-  { "flames_3_right",                          "RocksHeroes.pcx"       },
+  { "flames_3_right",                          "RocksHeroes.png"       },
   { "flames_3_right.xpos",                     "10"                    },
   { "flames_3_right.ypos",                     "13"                    },
   { "flames_3_right.frames",                   "2"                     },
   { "flames_3_right.offset",                   "96"                    },
 
-  { "flames_1_up",                             "RocksHeroes.pcx"       },
+  { "flames_1_up",                             "RocksHeroes.png"       },
   { "flames_1_up.xpos",                                "8"                     },
   { "flames_1_up.ypos",                                "14"                    },
   { "flames_1_up.frames",                      "2"                     },
   { "flames_1_up.offset",                      "96"                    },
-  { "flames_2_up",                             "RocksHeroes.pcx"       },
+  { "flames_2_up",                             "RocksHeroes.png"       },
   { "flames_2_up.xpos",                                "9"                     },
   { "flames_2_up.ypos",                                "14"                    },
   { "flames_2_up.frames",                      "2"                     },
   { "flames_2_up.offset",                      "96"                    },
-  { "flames_3_up",                             "RocksHeroes.pcx"       },
+  { "flames_3_up",                             "RocksHeroes.png"       },
   { "flames_3_up.xpos",                                "10"                    },
   { "flames_3_up.ypos",                                "14"                    },
   { "flames_3_up.frames",                      "2"                     },
   { "flames_3_up.offset",                      "96"                    },
 
-  { "flames_1_down",                           "RocksHeroes.pcx"       },
+  { "flames_1_down",                           "RocksHeroes.png"       },
   { "flames_1_down.xpos",                      "8"                     },
   { "flames_1_down.ypos",                      "15"                    },
   { "flames_1_down.frames",                    "2"                     },
   { "flames_1_down.offset",                    "96"                    },
-  { "flames_2_down",                           "RocksHeroes.pcx"       },
+  { "flames_2_down",                           "RocksHeroes.png"       },
   { "flames_2_down.xpos",                      "9"                     },
   { "flames_2_down.ypos",                      "15"                    },
   { "flames_2_down.frames",                    "2"                     },
   { "flames_2_down.offset",                    "96"                    },
-  { "flames_3_down",                           "RocksHeroes.pcx"       },
+  { "flames_3_down",                           "RocksHeroes.png"       },
   { "flames_3_down.xpos",                      "10"                    },
   { "flames_3_down.ypos",                      "15"                    },
   { "flames_3_down.frames",                    "2"                     },
   { "flames_3_down.offset",                    "96"                    },
 
-  { "stoneblock",                              "RocksElements.pcx"     },
+  { "stoneblock",                              "RocksElements.png"     },
   { "stoneblock.xpos",                         "10"                    },
   { "stoneblock.ypos",                         "1"                     },
   { "stoneblock.frames",                       "1"                     },
 
   /* images for other elements and actions */
 
-  { "player_1",                                        "RocksHeroes.pcx"       },
+  { "player_1",                                        "RocksHeroes.png"       },
   { "player_1.xpos",                           "0"                     },
   { "player_1.ypos",                           "0"                     },
   { "player_1.frames",                         "1"                     },
-  { "player_1.EDITOR",                         "RocksElements.pcx"     },
+  { "player_1.EDITOR",                         "RocksElements.png"     },
   { "player_1.EDITOR.xpos",                    "4"                     },
   { "player_1.EDITOR.ypos",                    "7"                     },
-  { "player_1.down",                           "RocksHeroes.pcx"       },
+  { "player_1.down",                           "RocksHeroes.png"       },
   { "player_1.down.xpos",                      "0"                     },
   { "player_1.down.ypos",                      "0"                     },
   { "player_1.down.frames",                    "1"                     },
-  { "player_1.up",                             "RocksHeroes.pcx"       },
+  { "player_1.up",                             "RocksHeroes.png"       },
   { "player_1.up.xpos",                                "4"                     },
   { "player_1.up.ypos",                                "0"                     },
   { "player_1.up.frames",                      "1"                     },
-  { "player_1.left",                           "RocksHeroes.pcx"       },
+  { "player_1.left",                           "RocksHeroes.png"       },
   { "player_1.left.xpos",                      "0"                     },
   { "player_1.left.ypos",                      "1"                     },
   { "player_1.left.frames",                    "1"                     },
-  { "player_1.right",                          "RocksHeroes.pcx"       },
+  { "player_1.right",                          "RocksHeroes.png"       },
   { "player_1.right.xpos",                     "4"                     },
   { "player_1.right.ypos",                     "1"                     },
   { "player_1.right.frames",                   "1"                     },
-  { "player_1.moving.down",                    "RocksHeroes.pcx"       },
+  { "player_1.moving.down",                    "RocksHeroes.png"       },
   { "player_1.moving.down.xpos",               "0"                     },
   { "player_1.moving.down.ypos",               "0"                     },
   { "player_1.moving.down.frames",             "4"                     },
   { "player_1.moving.down.start_frame",                "1"                     },
   { "player_1.moving.down.delay",              "4"                     },
-  { "player_1.moving.up",                      "RocksHeroes.pcx"       },
+  { "player_1.moving.up",                      "RocksHeroes.png"       },
   { "player_1.moving.up.xpos",                 "4"                     },
   { "player_1.moving.up.ypos",                 "0"                     },
   { "player_1.moving.up.frames",               "4"                     },
   { "player_1.moving.up.start_frame",          "1"                     },
   { "player_1.moving.up.delay",                        "4"                     },
-  { "player_1.moving.left",                    "RocksHeroes.pcx"       },
+  { "player_1.moving.left",                    "RocksHeroes.png"       },
   { "player_1.moving.left.xpos",               "0"                     },
   { "player_1.moving.left.ypos",               "1"                     },
   { "player_1.moving.left.frames",             "4"                     },
   { "player_1.moving.left.start_frame",                "1"                     },
   { "player_1.moving.left.delay",              "4"                     },
-  { "player_1.moving.right",                   "RocksHeroes.pcx"       },
+  { "player_1.moving.right",                   "RocksHeroes.png"       },
   { "player_1.moving.right.xpos",              "4"                     },
   { "player_1.moving.right.ypos",              "1"                     },
   { "player_1.moving.right.frames",            "4"                     },
   { "player_1.moving.right.start_frame",       "1"                     },
   { "player_1.moving.right.delay",             "4"                     },
-  { "player_1.digging.down",                   "RocksHeroes.pcx"       },
+  { "player_1.digging.down",                   "RocksHeroes.png"       },
   { "player_1.digging.down.xpos",              "0"                     },
   { "player_1.digging.down.ypos",              "0"                     },
   { "player_1.digging.down.frames",            "4"                     },
   { "player_1.digging.down.start_frame",       "1"                     },
   { "player_1.digging.down.delay",             "4"                     },
-  { "player_1.digging.up",                     "RocksHeroes.pcx"       },
+  { "player_1.digging.up",                     "RocksHeroes.png"       },
   { "player_1.digging.up.xpos",                        "4"                     },
   { "player_1.digging.up.ypos",                        "0"                     },
   { "player_1.digging.up.frames",              "4"                     },
   { "player_1.digging.up.start_frame",         "1"                     },
   { "player_1.digging.up.delay",               "4"                     },
-  { "player_1.digging.left",                   "RocksHeroes.pcx"       },
+  { "player_1.digging.left",                   "RocksHeroes.png"       },
   { "player_1.digging.left.xpos",              "0"                     },
   { "player_1.digging.left.ypos",              "1"                     },
   { "player_1.digging.left.frames",            "4"                     },
   { "player_1.digging.left.start_frame",       "1"                     },
   { "player_1.digging.left.delay",             "4"                     },
-  { "player_1.digging.right",                  "RocksHeroes.pcx"       },
+  { "player_1.digging.right",                  "RocksHeroes.png"       },
   { "player_1.digging.right.xpos",             "4"                     },
   { "player_1.digging.right.ypos",             "1"                     },
   { "player_1.digging.right.frames",           "4"                     },
   { "player_1.digging.right.start_frame",      "1"                     },
   { "player_1.digging.right.delay",            "4"                     },
-  { "player_1.collecting.down",                        "RocksHeroes.pcx"       },
+  { "player_1.collecting.down",                        "RocksHeroes.png"       },
   { "player_1.collecting.down.xpos",           "0"                     },
   { "player_1.collecting.down.ypos",           "0"                     },
   { "player_1.collecting.down.frames",         "4"                     },
   { "player_1.collecting.down.start_frame",    "1"                     },
   { "player_1.collecting.down.delay",          "4"                     },
-  { "player_1.collecting.up",                  "RocksHeroes.pcx"       },
+  { "player_1.collecting.up",                  "RocksHeroes.png"       },
   { "player_1.collecting.up.xpos",             "4"                     },
   { "player_1.collecting.up.ypos",             "0"                     },
   { "player_1.collecting.up.frames",           "4"                     },
   { "player_1.collecting.up.start_frame",      "1"                     },
   { "player_1.collecting.up.delay",            "4"                     },
-  { "player_1.collecting.left",                        "RocksHeroes.pcx"       },
+  { "player_1.collecting.left",                        "RocksHeroes.png"       },
   { "player_1.collecting.left.xpos",           "0"                     },
   { "player_1.collecting.left.ypos",           "1"                     },
   { "player_1.collecting.left.frames",         "4"                     },
   { "player_1.collecting.left.start_frame",    "1"                     },
   { "player_1.collecting.left.delay",          "4"                     },
-  { "player_1.collecting.right",               "RocksHeroes.pcx"       },
+  { "player_1.collecting.right",               "RocksHeroes.png"       },
   { "player_1.collecting.right.xpos",          "4"                     },
   { "player_1.collecting.right.ypos",          "1"                     },
   { "player_1.collecting.right.frames",                "4"                     },
   { "player_1.collecting.right.start_frame",   "1"                     },
   { "player_1.collecting.right.delay",         "4"                     },
-  { "player_1.pushing.down",                   "RocksHeroes.pcx"       },
+  { "player_1.pushing.down",                   "RocksHeroes.png"       },
   { "player_1.pushing.down.xpos",              "0"                     },
   { "player_1.pushing.down.ypos",              "0"                     },
   { "player_1.pushing.down.frames",            "4"                     },
   { "player_1.pushing.down.delay",             "4"                     },
-  { "player_1.pushing.up",                     "RocksHeroes.pcx"       },
+  { "player_1.pushing.up",                     "RocksHeroes.png"       },
   { "player_1.pushing.up.xpos",                        "4"                     },
   { "player_1.pushing.up.ypos",                        "0"                     },
   { "player_1.pushing.up.frames",              "4"                     },
   { "player_1.pushing.up.delay",               "4"                     },
-  { "player_1.pushing.left",                   "RocksHeroes.pcx"       },
+  { "player_1.pushing.left",                   "RocksHeroes.png"       },
   { "player_1.pushing.left.xpos",              "4"                     },
   { "player_1.pushing.left.ypos",              "2"                     },
   { "player_1.pushing.left.frames",            "4"                     },
   { "player_1.pushing.left.delay",             "4"                     },
-  { "player_1.pushing.right",                  "RocksHeroes.pcx"       },
+  { "player_1.pushing.right",                  "RocksHeroes.png"       },
   { "player_1.pushing.right.xpos",             "0"                     },
   { "player_1.pushing.right.ypos",             "2"                     },
   { "player_1.pushing.right.frames",           "4"                     },
   { "player_1.pushing.right.delay",            "4"                     },
-  { "player_1.snapping.down",                  "RocksHeroes.pcx"       },
+  { "player_1.snapping.down",                  "RocksHeroes.png"       },
   { "player_1.snapping.down.xpos",             "0"                     },
   { "player_1.snapping.down.ypos",             "0"                     },
   { "player_1.snapping.down.frames",           "1"                     },
-  { "player_1.snapping.up",                    "RocksHeroes.pcx"       },
+  { "player_1.snapping.up",                    "RocksHeroes.png"       },
   { "player_1.snapping.up.xpos",               "4"                     },
   { "player_1.snapping.up.ypos",               "0"                     },
   { "player_1.snapping.up.frames",             "1"                     },
-  { "player_1.snapping.left",                  "RocksHeroes.pcx"       },
+  { "player_1.snapping.left",                  "RocksHeroes.png"       },
   { "player_1.snapping.left.xpos",             "0"                     },
   { "player_1.snapping.left.ypos",             "1"                     },
   { "player_1.snapping.left.frames",           "1"                     },
-  { "player_1.snapping.right",                 "RocksHeroes.pcx"       },
+  { "player_1.snapping.right",                 "RocksHeroes.png"       },
   { "player_1.snapping.right.xpos",            "4"                     },
   { "player_1.snapping.right.ypos",            "1"                     },
   { "player_1.snapping.right.frames",          "1"                     },
 
-  { "player_2",                                        "RocksHeroes.pcx"       },
+  { "player_2",                                        "RocksHeroes.png"       },
   { "player_2.xpos",                           "0"                     },
   { "player_2.ypos",                           "3"                     },
   { "player_2.frames",                         "1"                     },
-  { "player_2.EDITOR",                         "RocksElements.pcx"     },
+  { "player_2.EDITOR",                         "RocksElements.png"     },
   { "player_2.EDITOR.xpos",                    "5"                     },
   { "player_2.EDITOR.ypos",                    "7"                     },
-  { "player_2.down",                           "RocksHeroes.pcx"       },
+  { "player_2.down",                           "RocksHeroes.png"       },
   { "player_2.down.xpos",                      "0"                     },
   { "player_2.down.ypos",                      "3"                     },
   { "player_2.down.frames",                    "1"                     },
-  { "player_2.up",                             "RocksHeroes.pcx"       },
+  { "player_2.up",                             "RocksHeroes.png"       },
   { "player_2.up.xpos",                                "4"                     },
   { "player_2.up.ypos",                                "3"                     },
   { "player_2.up.frames",                      "1"                     },
-  { "player_2.left",                           "RocksHeroes.pcx"       },
+  { "player_2.left",                           "RocksHeroes.png"       },
   { "player_2.left.xpos",                      "0"                     },
   { "player_2.left.ypos",                      "4"                     },
   { "player_2.left.frames",                    "1"                     },
-  { "player_2.right",                          "RocksHeroes.pcx"       },
+  { "player_2.right",                          "RocksHeroes.png"       },
   { "player_2.right.xpos",                     "4"                     },
   { "player_2.right.ypos",                     "4"                     },
   { "player_2.right.frames",                   "1"                     },
-  { "player_2.moving.down",                    "RocksHeroes.pcx"       },
+  { "player_2.moving.down",                    "RocksHeroes.png"       },
   { "player_2.moving.down.xpos",               "0"                     },
   { "player_2.moving.down.ypos",               "3"                     },
   { "player_2.moving.down.frames",             "4"                     },
   { "player_2.moving.down.start_frame",                "1"                     },
   { "player_2.moving.down.delay",              "4"                     },
-  { "player_2.moving.up",                      "RocksHeroes.pcx"       },
+  { "player_2.moving.up",                      "RocksHeroes.png"       },
   { "player_2.moving.up.xpos",                 "4"                     },
   { "player_2.moving.up.ypos",                 "3"                     },
   { "player_2.moving.up.frames",               "4"                     },
   { "player_2.moving.up.start_frame",          "1"                     },
   { "player_2.moving.up.delay",                        "4"                     },
-  { "player_2.moving.left",                    "RocksHeroes.pcx"       },
+  { "player_2.moving.left",                    "RocksHeroes.png"       },
   { "player_2.moving.left.xpos",               "0"                     },
   { "player_2.moving.left.ypos",               "4"                     },
   { "player_2.moving.left.frames",             "4"                     },
   { "player_2.moving.left.start_frame",                "1"                     },
   { "player_2.moving.left.delay",              "4"                     },
-  { "player_2.moving.right",                   "RocksHeroes.pcx"       },
+  { "player_2.moving.right",                   "RocksHeroes.png"       },
   { "player_2.moving.right.xpos",              "4"                     },
   { "player_2.moving.right.ypos",              "4"                     },
   { "player_2.moving.right.frames",            "4"                     },
   { "player_2.moving.right.start_frame",       "1"                     },
   { "player_2.moving.right.delay",             "4"                     },
-  { "player_2.digging.down",                   "RocksHeroes.pcx"       },
+  { "player_2.digging.down",                   "RocksHeroes.png"       },
   { "player_2.digging.down.xpos",              "0"                     },
   { "player_2.digging.down.ypos",              "3"                     },
   { "player_2.digging.down.frames",            "4"                     },
   { "player_2.digging.down.start_frame",       "1"                     },
   { "player_2.digging.down.delay",             "4"                     },
-  { "player_2.digging.up",                     "RocksHeroes.pcx"       },
+  { "player_2.digging.up",                     "RocksHeroes.png"       },
   { "player_2.digging.up.xpos",                        "4"                     },
   { "player_2.digging.up.ypos",                        "3"                     },
   { "player_2.digging.up.frames",              "4"                     },
   { "player_2.digging.up.start_frame",         "1"                     },
   { "player_2.digging.up.delay",               "4"                     },
-  { "player_2.digging.left",                   "RocksHeroes.pcx"       },
+  { "player_2.digging.left",                   "RocksHeroes.png"       },
   { "player_2.digging.left.xpos",              "0"                     },
   { "player_2.digging.left.ypos",              "4"                     },
   { "player_2.digging.left.frames",            "4"                     },
   { "player_2.digging.left.start_frame",       "1"                     },
   { "player_2.digging.left.delay",             "4"                     },
-  { "player_2.digging.right",                  "RocksHeroes.pcx"       },
+  { "player_2.digging.right",                  "RocksHeroes.png"       },
   { "player_2.digging.right.xpos",             "4"                     },
   { "player_2.digging.right.ypos",             "4"                     },
   { "player_2.digging.right.frames",           "4"                     },
   { "player_2.digging.right.start_frame",      "1"                     },
   { "player_2.digging.right.delay",            "4"                     },
-  { "player_2.collecting.down",                        "RocksHeroes.pcx"       },
+  { "player_2.collecting.down",                        "RocksHeroes.png"       },
   { "player_2.collecting.down.xpos",           "0"                     },
   { "player_2.collecting.down.ypos",           "3"                     },
   { "player_2.collecting.down.frames",         "4"                     },
   { "player_2.collecting.down.start_frame",    "1"                     },
   { "player_2.collecting.down.delay",          "4"                     },
-  { "player_2.collecting.up",                  "RocksHeroes.pcx"       },
+  { "player_2.collecting.up",                  "RocksHeroes.png"       },
   { "player_2.collecting.up.xpos",             "4"                     },
   { "player_2.collecting.up.ypos",             "3"                     },
   { "player_2.collecting.up.frames",           "4"                     },
   { "player_2.collecting.up.start_frame",      "1"                     },
   { "player_2.collecting.up.delay",            "4"                     },
-  { "player_2.collecting.left",                        "RocksHeroes.pcx"       },
+  { "player_2.collecting.left",                        "RocksHeroes.png"       },
   { "player_2.collecting.left.xpos",           "0"                     },
   { "player_2.collecting.left.ypos",           "4"                     },
   { "player_2.collecting.left.frames",         "4"                     },
   { "player_2.collecting.left.start_frame",    "1"                     },
   { "player_2.collecting.left.delay",          "4"                     },
-  { "player_2.collecting.right",               "RocksHeroes.pcx"       },
+  { "player_2.collecting.right",               "RocksHeroes.png"       },
   { "player_2.collecting.right.xpos",          "4"                     },
   { "player_2.collecting.right.ypos",          "4"                     },
   { "player_2.collecting.right.frames",                "4"                     },
   { "player_2.collecting.right.start_frame",   "1"                     },
   { "player_2.collecting.right.delay",         "4"                     },
-  { "player_2.pushing.down",                   "RocksHeroes.pcx"       },
+  { "player_2.pushing.down",                   "RocksHeroes.png"       },
   { "player_2.pushing.down.xpos",              "0"                     },
   { "player_2.pushing.down.ypos",              "3"                     },
   { "player_2.pushing.down.frames",            "4"                     },
   { "player_2.pushing.down.delay",             "4"                     },
-  { "player_2.pushing.up",                     "RocksHeroes.pcx"       },
+  { "player_2.pushing.up",                     "RocksHeroes.png"       },
   { "player_2.pushing.up.xpos",                        "4"                     },
   { "player_2.pushing.up.ypos",                        "3"                     },
   { "player_2.pushing.up.frames",              "4"                     },
   { "player_2.pushing.up.delay",               "4"                     },
-  { "player_2.pushing.left",                   "RocksHeroes.pcx"       },
+  { "player_2.pushing.left",                   "RocksHeroes.png"       },
   { "player_2.pushing.left.xpos",              "4"                     },
   { "player_2.pushing.left.ypos",              "5"                     },
   { "player_2.pushing.left.frames",            "4"                     },
   { "player_2.pushing.left.delay",             "4"                     },
-  { "player_2.pushing.right",                  "RocksHeroes.pcx"       },
+  { "player_2.pushing.right",                  "RocksHeroes.png"       },
   { "player_2.pushing.right.xpos",             "0"                     },
   { "player_2.pushing.right.ypos",             "5"                     },
   { "player_2.pushing.right.frames",           "4"                     },
   { "player_2.pushing.right.delay",            "4"                     },
-  { "player_2.snapping.down",                  "RocksHeroes.pcx"       },
+  { "player_2.snapping.down",                  "RocksHeroes.png"       },
   { "player_2.snapping.down.xpos",             "0"                     },
   { "player_2.snapping.down.ypos",             "3"                     },
   { "player_2.snapping.down.frames",           "1"                     },
-  { "player_2.snapping.up",                    "RocksHeroes.pcx"       },
+  { "player_2.snapping.up",                    "RocksHeroes.png"       },
   { "player_2.snapping.up.xpos",               "4"                     },
   { "player_2.snapping.up.ypos",               "3"                     },
   { "player_2.snapping.up.frames",             "1"                     },
-  { "player_2.snapping.left",                  "RocksHeroes.pcx"       },
+  { "player_2.snapping.left",                  "RocksHeroes.png"       },
   { "player_2.snapping.left.xpos",             "0"                     },
   { "player_2.snapping.left.ypos",             "4"                     },
   { "player_2.snapping.left.frames",           "1"                     },
-  { "player_2.snapping.right",                 "RocksHeroes.pcx"       },
+  { "player_2.snapping.right",                 "RocksHeroes.png"       },
   { "player_2.snapping.right.xpos",            "4"                     },
   { "player_2.snapping.right.ypos",            "4"                     },
   { "player_2.snapping.right.frames",          "1"                     },
 
-  { "player_3",                                        "RocksHeroes.pcx"       },
+  { "player_3",                                        "RocksHeroes.png"       },
   { "player_3.xpos",                           "0"                     },
   { "player_3.ypos",                           "6"                     },
   { "player_3.frames",                         "1"                     },
-  { "player_3.EDITOR",                         "RocksElements.pcx"     },
+  { "player_3.EDITOR",                         "RocksElements.png"     },
   { "player_3.EDITOR.xpos",                    "6"                     },
   { "player_3.EDITOR.ypos",                    "7"                     },
-  { "player_3.down",                           "RocksHeroes.pcx"       },
+  { "player_3.down",                           "RocksHeroes.png"       },
   { "player_3.down.xpos",                      "0"                     },
   { "player_3.down.ypos",                      "6"                     },
   { "player_3.down.frames",                    "1"                     },
-  { "player_3.up",                             "RocksHeroes.pcx"       },
+  { "player_3.up",                             "RocksHeroes.png"       },
   { "player_3.up.xpos",                                "4"                     },
   { "player_3.up.ypos",                                "6"                     },
   { "player_3.up.frames",                      "1"                     },
-  { "player_3.left",                           "RocksHeroes.pcx"       },
+  { "player_3.left",                           "RocksHeroes.png"       },
   { "player_3.left.xpos",                      "0"                     },
   { "player_3.left.ypos",                      "7"                     },
   { "player_3.left.frames",                    "1"                     },
-  { "player_3.right",                          "RocksHeroes.pcx"       },
+  { "player_3.right",                          "RocksHeroes.png"       },
   { "player_3.right.xpos",                     "4"                     },
   { "player_3.right.ypos",                     "7"                     },
   { "player_3.right.frames",                   "1"                     },
-  { "player_3.moving.down",                    "RocksHeroes.pcx"       },
+  { "player_3.moving.down",                    "RocksHeroes.png"       },
   { "player_3.moving.down.xpos",               "0"                     },
   { "player_3.moving.down.ypos",               "6"                     },
   { "player_3.moving.down.frames",             "4"                     },
   { "player_3.moving.down.start_frame",                "1"                     },
   { "player_3.moving.down.delay",              "4"                     },
-  { "player_3.moving.up",                      "RocksHeroes.pcx"       },
+  { "player_3.moving.up",                      "RocksHeroes.png"       },
   { "player_3.moving.up.xpos",                 "4"                     },
   { "player_3.moving.up.ypos",                 "6"                     },
   { "player_3.moving.up.frames",               "4"                     },
   { "player_3.moving.up.start_frame",          "1"                     },
   { "player_3.moving.up.delay",                        "4"                     },
-  { "player_3.moving.left",                    "RocksHeroes.pcx"       },
+  { "player_3.moving.left",                    "RocksHeroes.png"       },
   { "player_3.moving.left.xpos",               "0"                     },
   { "player_3.moving.left.ypos",               "7"                     },
   { "player_3.moving.left.frames",             "4"                     },
   { "player_3.moving.left.start_frame",                "1"                     },
   { "player_3.moving.left.delay",              "4"                     },
-  { "player_3.moving.right",                   "RocksHeroes.pcx"       },
+  { "player_3.moving.right",                   "RocksHeroes.png"       },
   { "player_3.moving.right.xpos",              "4"                     },
   { "player_3.moving.right.ypos",              "7"                     },
   { "player_3.moving.right.frames",            "4"                     },
   { "player_3.moving.right.start_frame",       "1"                     },
   { "player_3.moving.right.delay",             "4"                     },
-  { "player_3.digging.down",                   "RocksHeroes.pcx"       },
+  { "player_3.digging.down",                   "RocksHeroes.png"       },
   { "player_3.digging.down.xpos",              "0"                     },
   { "player_3.digging.down.ypos",              "6"                     },
   { "player_3.digging.down.frames",            "4"                     },
   { "player_3.digging.down.start_frame",       "1"                     },
   { "player_3.digging.down.delay",             "4"                     },
-  { "player_3.digging.up",                     "RocksHeroes.pcx"       },
+  { "player_3.digging.up",                     "RocksHeroes.png"       },
   { "player_3.digging.up.xpos",                        "4"                     },
   { "player_3.digging.up.ypos",                        "6"                     },
   { "player_3.digging.up.frames",              "4"                     },
   { "player_3.digging.up.start_frame",         "1"                     },
   { "player_3.digging.up.delay",               "4"                     },
-  { "player_3.digging.left",                   "RocksHeroes.pcx"       },
+  { "player_3.digging.left",                   "RocksHeroes.png"       },
   { "player_3.digging.left.xpos",              "0"                     },
   { "player_3.digging.left.ypos",              "7"                     },
   { "player_3.digging.left.frames",            "4"                     },
   { "player_3.digging.left.start_frame",       "1"                     },
   { "player_3.digging.left.delay",             "4"                     },
-  { "player_3.digging.right",                  "RocksHeroes.pcx"       },
+  { "player_3.digging.right",                  "RocksHeroes.png"       },
   { "player_3.digging.right.xpos",             "4"                     },
   { "player_3.digging.right.ypos",             "7"                     },
   { "player_3.digging.right.frames",           "4"                     },
   { "player_3.digging.right.start_frame",      "1"                     },
   { "player_3.digging.right.delay",            "4"                     },
-  { "player_3.collecting.down",                        "RocksHeroes.pcx"       },
+  { "player_3.collecting.down",                        "RocksHeroes.png"       },
   { "player_3.collecting.down.xpos",           "0"                     },
   { "player_3.collecting.down.ypos",           "6"                     },
   { "player_3.collecting.down.frames",         "4"                     },
   { "player_3.collecting.down.start_frame",    "1"                     },
   { "player_3.collecting.down.delay",          "4"                     },
-  { "player_3.collecting.up",                  "RocksHeroes.pcx"       },
+  { "player_3.collecting.up",                  "RocksHeroes.png"       },
   { "player_3.collecting.up.xpos",             "4"                     },
   { "player_3.collecting.up.ypos",             "6"                     },
   { "player_3.collecting.up.frames",           "4"                     },
   { "player_3.collecting.up.start_frame",      "1"                     },
   { "player_3.collecting.up.delay",            "4"                     },
-  { "player_3.collecting.left",                        "RocksHeroes.pcx"       },
+  { "player_3.collecting.left",                        "RocksHeroes.png"       },
   { "player_3.collecting.left.xpos",           "0"                     },
   { "player_3.collecting.left.ypos",           "7"                     },
   { "player_3.collecting.left.frames",         "4"                     },
   { "player_3.collecting.left.start_frame",    "1"                     },
   { "player_3.collecting.left.delay",          "4"                     },
-  { "player_3.collecting.right",               "RocksHeroes.pcx"       },
+  { "player_3.collecting.right",               "RocksHeroes.png"       },
   { "player_3.collecting.right.xpos",          "4"                     },
   { "player_3.collecting.right.ypos",          "7"                     },
   { "player_3.collecting.right.frames",                "4"                     },
   { "player_3.collecting.right.start_frame",   "1"                     },
   { "player_3.collecting.right.delay",         "4"                     },
-  { "player_3.pushing.down",                   "RocksHeroes.pcx"       },
+  { "player_3.pushing.down",                   "RocksHeroes.png"       },
   { "player_3.pushing.down.xpos",              "0"                     },
   { "player_3.pushing.down.ypos",              "6"                     },
   { "player_3.pushing.down.frames",            "4"                     },
   { "player_3.pushing.down.delay",             "4"                     },
-  { "player_3.pushing.up",                     "RocksHeroes.pcx"       },
+  { "player_3.pushing.up",                     "RocksHeroes.png"       },
   { "player_3.pushing.up.xpos",                        "4"                     },
   { "player_3.pushing.up.ypos",                        "6"                     },
   { "player_3.pushing.up.frames",              "4"                     },
   { "player_3.pushing.up.delay",               "4"                     },
-  { "player_3.pushing.left",                   "RocksHeroes.pcx"       },
+  { "player_3.pushing.left",                   "RocksHeroes.png"       },
   { "player_3.pushing.left.xpos",              "4"                     },
   { "player_3.pushing.left.ypos",              "8"                     },
   { "player_3.pushing.left.frames",            "4"                     },
   { "player_3.pushing.left.delay",             "4"                     },
-  { "player_3.pushing.right",                  "RocksHeroes.pcx"       },
+  { "player_3.pushing.right",                  "RocksHeroes.png"       },
   { "player_3.pushing.right.xpos",             "0"                     },
   { "player_3.pushing.right.ypos",             "8"                     },
   { "player_3.pushing.right.frames",           "4"                     },
   { "player_3.pushing.right.delay",            "4"                     },
-  { "player_3.snapping.down",                  "RocksHeroes.pcx"       },
+  { "player_3.snapping.down",                  "RocksHeroes.png"       },
   { "player_3.snapping.down.xpos",             "0"                     },
   { "player_3.snapping.down.ypos",             "6"                     },
   { "player_3.snapping.down.frames",           "1"                     },
-  { "player_3.snapping.up",                    "RocksHeroes.pcx"       },
+  { "player_3.snapping.up",                    "RocksHeroes.png"       },
   { "player_3.snapping.up.xpos",               "4"                     },
   { "player_3.snapping.up.ypos",               "6"                     },
   { "player_3.snapping.up.frames",             "1"                     },
-  { "player_3.snapping.left",                  "RocksHeroes.pcx"       },
+  { "player_3.snapping.left",                  "RocksHeroes.png"       },
   { "player_3.snapping.left.xpos",             "0"                     },
   { "player_3.snapping.left.ypos",             "7"                     },
   { "player_3.snapping.left.frames",           "1"                     },
-  { "player_3.snapping.right",                 "RocksHeroes.pcx"       },
+  { "player_3.snapping.right",                 "RocksHeroes.png"       },
   { "player_3.snapping.right.xpos",            "4"                     },
   { "player_3.snapping.right.ypos",            "7"                     },
   { "player_3.snapping.right.frames",          "1"                     },
 
-  { "player_4",                                        "RocksHeroes.pcx"       },
+  { "player_4",                                        "RocksHeroes.png"       },
   { "player_4.xpos",                           "0"                     },
   { "player_4.ypos",                           "9"                     },
   { "player_4.frames",                         "1"                     },
-  { "player_4.EDITOR",                         "RocksElements.pcx"     },
+  { "player_4.EDITOR",                         "RocksElements.png"     },
   { "player_4.EDITOR.xpos",                    "7"                     },
   { "player_4.EDITOR.ypos",                    "7"                     },
-  { "player_4.down",                           "RocksHeroes.pcx"       },
+  { "player_4.down",                           "RocksHeroes.png"       },
   { "player_4.down.xpos",                      "0"                     },
   { "player_4.down.ypos",                      "9"                     },
   { "player_4.down.frames",                    "1"                     },
-  { "player_4.up",                             "RocksHeroes.pcx"       },
+  { "player_4.up",                             "RocksHeroes.png"       },
   { "player_4.up.xpos",                                "4"                     },
   { "player_4.up.ypos",                                "9"                     },
   { "player_4.up.frames",                      "1"                     },
-  { "player_4.left",                           "RocksHeroes.pcx"       },
+  { "player_4.left",                           "RocksHeroes.png"       },
   { "player_4.left.xpos",                      "0"                     },
   { "player_4.left.ypos",                      "10"                    },
   { "player_4.left.frames",                    "1"                     },
-  { "player_4.right",                          "RocksHeroes.pcx"       },
+  { "player_4.right",                          "RocksHeroes.png"       },
   { "player_4.right.xpos",                     "4"                     },
   { "player_4.right.ypos",                     "10"                    },
   { "player_4.right.frames",                   "1"                     },
-  { "player_4.moving.down",                    "RocksHeroes.pcx"       },
+  { "player_4.moving.down",                    "RocksHeroes.png"       },
   { "player_4.moving.down.xpos",               "0"                     },
   { "player_4.moving.down.ypos",               "9"                     },
   { "player_4.moving.down.frames",             "4"                     },
   { "player_4.moving.down.start_frame",                "1"                     },
   { "player_4.moving.down.delay",              "4"                     },
-  { "player_4.moving.up",                      "RocksHeroes.pcx"       },
+  { "player_4.moving.up",                      "RocksHeroes.png"       },
   { "player_4.moving.up.xpos",                 "4"                     },
   { "player_4.moving.up.ypos",                 "9"                     },
   { "player_4.moving.up.frames",               "4"                     },
   { "player_4.moving.up.start_frame",          "1"                     },
   { "player_4.moving.up.delay",                        "4"                     },
-  { "player_4.moving.left",                    "RocksHeroes.pcx"       },
+  { "player_4.moving.left",                    "RocksHeroes.png"       },
   { "player_4.moving.left.xpos",               "0"                     },
   { "player_4.moving.left.ypos",               "10"                    },
   { "player_4.moving.left.frames",             "4"                     },
   { "player_4.moving.left.start_frame",                "1"                     },
   { "player_4.moving.left.delay",              "4"                     },
-  { "player_4.moving.right",                   "RocksHeroes.pcx"       },
+  { "player_4.moving.right",                   "RocksHeroes.png"       },
   { "player_4.moving.right.xpos",              "4"                     },
   { "player_4.moving.right.ypos",              "10"                    },
   { "player_4.moving.right.frames",            "4"                     },
   { "player_4.moving.right.start_frame",       "1"                     },
   { "player_4.moving.right.delay",             "4"                     },
-  { "player_4.digging.down",                   "RocksHeroes.pcx"       },
+  { "player_4.digging.down",                   "RocksHeroes.png"       },
   { "player_4.digging.down.xpos",              "0"                     },
   { "player_4.digging.down.ypos",              "9"                     },
   { "player_4.digging.down.frames",            "4"                     },
   { "player_4.digging.down.start_frame",       "1"                     },
   { "player_4.digging.down.delay",             "4"                     },
-  { "player_4.digging.up",                     "RocksHeroes.pcx"       },
+  { "player_4.digging.up",                     "RocksHeroes.png"       },
   { "player_4.digging.up.xpos",                        "4"                     },
   { "player_4.digging.up.ypos",                        "9"                     },
   { "player_4.digging.up.frames",              "4"                     },
   { "player_4.digging.up.start_frame",         "1"                     },
   { "player_4.digging.up.delay",               "4"                     },
-  { "player_4.digging.left",                   "RocksHeroes.pcx"       },
+  { "player_4.digging.left",                   "RocksHeroes.png"       },
   { "player_4.digging.left.xpos",              "0"                     },
   { "player_4.digging.left.ypos",              "10"                    },
   { "player_4.digging.left.frames",            "4"                     },
   { "player_4.digging.left.start_frame",       "1"                     },
   { "player_4.digging.left.delay",             "4"                     },
-  { "player_4.digging.right",                  "RocksHeroes.pcx"       },
+  { "player_4.digging.right",                  "RocksHeroes.png"       },
   { "player_4.digging.right.xpos",             "4"                     },
   { "player_4.digging.right.ypos",             "10"                    },
   { "player_4.digging.right.frames",           "4"                     },
   { "player_4.digging.right.start_frame",      "1"                     },
   { "player_4.digging.right.delay",            "4"                     },
-  { "player_4.collecting.down",                        "RocksHeroes.pcx"       },
+  { "player_4.collecting.down",                        "RocksHeroes.png"       },
   { "player_4.collecting.down.xpos",           "0"                     },
   { "player_4.collecting.down.ypos",           "9"                     },
   { "player_4.collecting.down.frames",         "4"                     },
   { "player_4.collecting.down.start_frame",    "1"                     },
   { "player_4.collecting.down.delay",          "4"                     },
-  { "player_4.collecting.up",                  "RocksHeroes.pcx"       },
+  { "player_4.collecting.up",                  "RocksHeroes.png"       },
   { "player_4.collecting.up.xpos",             "4"                     },
   { "player_4.collecting.up.ypos",             "9"                     },
   { "player_4.collecting.up.frames",           "4"                     },
   { "player_4.collecting.up.start_frame",      "1"                     },
   { "player_4.collecting.up.delay",            "4"                     },
-  { "player_4.collecting.left",                        "RocksHeroes.pcx"       },
+  { "player_4.collecting.left",                        "RocksHeroes.png"       },
   { "player_4.collecting.left.xpos",           "0"                     },
   { "player_4.collecting.left.ypos",           "10"                    },
   { "player_4.collecting.left.frames",         "4"                     },
   { "player_4.collecting.left.start_frame",    "1"                     },
   { "player_4.collecting.left.delay",          "4"                     },
-  { "player_4.collecting.right",               "RocksHeroes.pcx"       },
+  { "player_4.collecting.right",               "RocksHeroes.png"       },
   { "player_4.collecting.right.xpos",          "4"                     },
   { "player_4.collecting.right.ypos",          "10"                    },
   { "player_4.collecting.right.frames",                "4"                     },
   { "player_4.collecting.right.start_frame",   "1"                     },
   { "player_4.collecting.right.delay",         "4"                     },
-  { "player_4.pushing.down",                   "RocksHeroes.pcx"       },
+  { "player_4.pushing.down",                   "RocksHeroes.png"       },
   { "player_4.pushing.down.xpos",              "0"                     },
   { "player_4.pushing.down.ypos",              "9"                     },
   { "player_4.pushing.down.frames",            "4"                     },
   { "player_4.pushing.down.delay",             "4"                     },
-  { "player_4.pushing.up",                     "RocksHeroes.pcx"       },
+  { "player_4.pushing.up",                     "RocksHeroes.png"       },
   { "player_4.pushing.up.xpos",                        "4"                     },
   { "player_4.pushing.up.ypos",                        "9"                     },
   { "player_4.pushing.up.frames",              "4"                     },
   { "player_4.pushing.up.delay",               "4"                     },
-  { "player_4.pushing.left",                   "RocksHeroes.pcx"       },
+  { "player_4.pushing.left",                   "RocksHeroes.png"       },
   { "player_4.pushing.left.xpos",              "4"                     },
   { "player_4.pushing.left.ypos",              "11"                    },
   { "player_4.pushing.left.frames",            "4"                     },
   { "player_4.pushing.left.delay",             "4"                     },
-  { "player_4.pushing.right",                  "RocksHeroes.pcx"       },
+  { "player_4.pushing.right",                  "RocksHeroes.png"       },
   { "player_4.pushing.right.xpos",             "0"                     },
   { "player_4.pushing.right.ypos",             "11"                    },
   { "player_4.pushing.right.frames",           "4"                     },
   { "player_4.pushing.right.delay",            "4"                     },
-  { "player_4.snapping.down",                  "RocksHeroes.pcx"       },
+  { "player_4.snapping.down",                  "RocksHeroes.png"       },
   { "player_4.snapping.down.xpos",             "0"                     },
   { "player_4.snapping.down.ypos",             "9"                     },
   { "player_4.snapping.down.frames",           "1"                     },
-  { "player_4.snapping.up",                    "RocksHeroes.pcx"       },
+  { "player_4.snapping.up",                    "RocksHeroes.png"       },
   { "player_4.snapping.up.xpos",               "4"                     },
   { "player_4.snapping.up.ypos",               "9"                     },
   { "player_4.snapping.up.frames",             "1"                     },
-  { "player_4.snapping.left",                  "RocksHeroes.pcx"       },
+  { "player_4.snapping.left",                  "RocksHeroes.png"       },
   { "player_4.snapping.left.xpos",             "0"                     },
   { "player_4.snapping.left.ypos",             "10"                    },
   { "player_4.snapping.left.frames",           "1"                     },
-  { "player_4.snapping.right",                 "RocksHeroes.pcx"       },
+  { "player_4.snapping.right",                 "RocksHeroes.png"       },
   { "player_4.snapping.right.xpos",            "4"                     },
   { "player_4.snapping.right.ypos",            "10"                    },
   { "player_4.snapping.right.frames",          "1"                     },
 
-  { "[default].exploding",                     "RocksElements.pcx"     },
+  { "[default].exploding",                     "RocksElements.png"     },
   { "[default].exploding.xpos",                        "0"                     },
   { "[default].exploding.ypos",                        "4"                     },
   { "[default].exploding.frames",              "8"                     },
   { "[default].exploding.delay",               "2"                     },
   { "[default].exploding.anim_mode",           "linear"                },
 
-  { "twinkle_blue",                            "RocksHeroes.pcx"       },
+  { "twinkle_blue",                            "RocksHeroes.png"       },
   { "twinkle_blue.xpos",                       "9"                     },
   { "twinkle_blue.ypos",                       "11"                    },
   { "twinkle_blue.frames",                     "3"                     },
   { "twinkle_blue.delay",                      "2"                     },
   { "twinkle_blue.anim_mode",                  "pingpong"              },
   { "twinkle_blue.global_sync",                        "false"                 },
-  { "twinkle_white",                           "RocksHeroes.pcx"       },
+  { "twinkle_white",                           "RocksHeroes.png"       },
   { "twinkle_white.xpos",                      "13"                    },
   { "twinkle_white.ypos",                      "11"                    },
   { "twinkle_white.frames",                    "3"                     },
@@ -3789,565 +3789,565 @@ struct ConfigInfo image_config[] =
   { "twinkle_white.anim_mode",                 "pingpong"              },
   { "twinkle_white.global_sync",               "false"                 },
 
-  { "steelwall_topleft",                       "RocksElements.pcx"     },
+  { "steelwall_topleft",                       "RocksElements.png"     },
   { "steelwall_topleft.xpos",                  "4"                     },
   { "steelwall_topleft.ypos",                  "0"                     },
   { "steelwall_topleft.frames",                        "1"                     },
-  { "steelwall_topright",                      "RocksElements.pcx"     },
+  { "steelwall_topright",                      "RocksElements.png"     },
   { "steelwall_topright.xpos",                 "4"                     },
   { "steelwall_topright.ypos",                 "0"                     },
   { "steelwall_topright.frames",               "1"                     },
-  { "steelwall_bottomleft",                    "RocksElements.pcx"     },
+  { "steelwall_bottomleft",                    "RocksElements.png"     },
   { "steelwall_bottomleft.xpos",               "4"                     },
   { "steelwall_bottomleft.ypos",               "0"                     },
   { "steelwall_bottomleft.frames",             "1"                     },
-  { "steelwall_bottomright",                   "RocksElements.pcx"     },
+  { "steelwall_bottomright",                   "RocksElements.png"     },
   { "steelwall_bottomright.xpos",              "4"                     },
   { "steelwall_bottomright.ypos",              "0"                     },
   { "steelwall_bottomright.frames",            "1"                     },
-  { "steelwall_horizontal",                    "RocksElements.pcx"     },
+  { "steelwall_horizontal",                    "RocksElements.png"     },
   { "steelwall_horizontal.xpos",               "4"                     },
   { "steelwall_horizontal.ypos",               "0"                     },
   { "steelwall_horizontal.frames",             "1"                     },
-  { "steelwall_vertical",                      "RocksElements.pcx"     },
+  { "steelwall_vertical",                      "RocksElements.png"     },
   { "steelwall_vertical.xpos",                 "4"                     },
   { "steelwall_vertical.ypos",                 "0"                     },
   { "steelwall_vertical.frames",               "1"                     },
 
-  { "steelwall_topleft.EDITOR",                        "RocksElements.pcx"     },
+  { "steelwall_topleft.EDITOR",                        "RocksElements.png"     },
   { "steelwall_topleft.EDITOR.xpos",           "0"                     },
   { "steelwall_topleft.EDITOR.ypos",           "13"                    },
-  { "steelwall_topright.EDITOR",               "RocksElements.pcx"     },
+  { "steelwall_topright.EDITOR",               "RocksElements.png"     },
   { "steelwall_topright.EDITOR.xpos",          "1"                     },
   { "steelwall_topright.EDITOR.ypos",          "13"                    },
-  { "steelwall_bottomleft.EDITOR",             "RocksElements.pcx"     },
+  { "steelwall_bottomleft.EDITOR",             "RocksElements.png"     },
   { "steelwall_bottomleft.EDITOR.xpos",                "2"                     },
   { "steelwall_bottomleft.EDITOR.ypos",                "13"                    },
-  { "steelwall_bottomright.EDITOR",            "RocksElements.pcx"     },
+  { "steelwall_bottomright.EDITOR",            "RocksElements.png"     },
   { "steelwall_bottomright.EDITOR.xpos",       "3"                     },
   { "steelwall_bottomright.EDITOR.ypos",       "13"                    },
-  { "steelwall_horizontal.EDITOR",             "RocksElements.pcx"     },
+  { "steelwall_horizontal.EDITOR",             "RocksElements.png"     },
   { "steelwall_horizontal.EDITOR.xpos",                "4"                     },
   { "steelwall_horizontal.EDITOR.ypos",                "13"                    },
-  { "steelwall_vertical.EDITOR",               "RocksElements.pcx"     },
+  { "steelwall_vertical.EDITOR",               "RocksElements.png"     },
   { "steelwall_vertical.EDITOR.xpos",          "5"                     },
   { "steelwall_vertical.EDITOR.ypos",          "13"                    },
 
-  { "invisible_steelwall_topleft",             "RocksSP.pcx"           },
+  { "invisible_steelwall_topleft",             "RocksSP.png"           },
   { "invisible_steelwall_topleft.xpos",                "0"                     },
   { "invisible_steelwall_topleft.ypos",                "0"                     },
   { "invisible_steelwall_topleft.frames",      "1"                     },
-  { "invisible_steelwall_topright",            "RocksSP.pcx"           },
+  { "invisible_steelwall_topright",            "RocksSP.png"           },
   { "invisible_steelwall_topright.xpos",       "0"                     },
   { "invisible_steelwall_topright.ypos",       "0"                     },
   { "invisible_steelwall_topright.frames",     "1"                     },
-  { "invisible_steelwall_bottomleft",          "RocksSP.pcx"           },
+  { "invisible_steelwall_bottomleft",          "RocksSP.png"           },
   { "invisible_steelwall_bottomleft.xpos",     "0"                     },
   { "invisible_steelwall_bottomleft.ypos",     "0"                     },
   { "invisible_steelwall_bottomleft.frames",   "1"                     },
-  { "invisible_steelwall_bottomright",         "RocksSP.pcx"           },
+  { "invisible_steelwall_bottomright",         "RocksSP.png"           },
   { "invisible_steelwall_bottomright.xpos",    "0"                     },
   { "invisible_steelwall_bottomright.ypos",    "0"                     },
   { "invisible_steelwall_bottomright.frames",  "1"                     },
-  { "invisible_steelwall_horizontal",          "RocksSP.pcx"           },
+  { "invisible_steelwall_horizontal",          "RocksSP.png"           },
   { "invisible_steelwall_horizontal.xpos",     "0"                     },
   { "invisible_steelwall_horizontal.ypos",     "0"                     },
   { "invisible_steelwall_horizontal.frames",   "1"                     },
-  { "invisible_steelwall_vertical",            "RocksSP.pcx"           },
+  { "invisible_steelwall_vertical",            "RocksSP.png"           },
   { "invisible_steelwall_vertical.xpos",       "0"                     },
   { "invisible_steelwall_vertical.ypos",       "0"                     },
   { "invisible_steelwall_vertical.frames",     "1"                     },
 
-  { "invisible_steelwall_topleft.EDITOR",      "RocksElements.pcx"     },
+  { "invisible_steelwall_topleft.EDITOR",      "RocksElements.png"     },
   { "invisible_steelwall_topleft.EDITOR.xpos", "6"                     },
   { "invisible_steelwall_topleft.EDITOR.ypos", "13"                    },
-  { "invisible_steelwall_topright.EDITOR",     "RocksElements.pcx"     },
+  { "invisible_steelwall_topright.EDITOR",     "RocksElements.png"     },
   { "invisible_steelwall_topright.EDITOR.xpos",        "7"                     },
   { "invisible_steelwall_topright.EDITOR.ypos",        "13"                    },
-  { "invisible_steelwall_bottomleft.EDITOR",   "RocksElements.pcx"     },
+  { "invisible_steelwall_bottomleft.EDITOR",   "RocksElements.png"     },
   { "invisible_steelwall_bottomleft.EDITOR.xpos","8"                   },
   { "invisible_steelwall_bottomleft.EDITOR.ypos","13"                  },
-  { "invisible_steelwall_bottomright.EDITOR",  "RocksElements.pcx"     },
+  { "invisible_steelwall_bottomright.EDITOR",  "RocksElements.png"     },
   { "invisible_steelwall_bottomright.EDITOR.xpos","9"                  },
   { "invisible_steelwall_bottomright.EDITOR.ypos","13"                 },
-  { "invisible_steelwall_horizontal.EDITOR",   "RocksElements.pcx"     },
+  { "invisible_steelwall_horizontal.EDITOR",   "RocksElements.png"     },
   { "invisible_steelwall_horizontal.EDITOR.xpos","10"                  },
   { "invisible_steelwall_horizontal.EDITOR.ypos","13"                  },
-  { "invisible_steelwall_vertical.EDITOR",     "RocksElements.pcx"     },
+  { "invisible_steelwall_vertical.EDITOR",     "RocksElements.png"     },
   { "invisible_steelwall_vertical.EDITOR.xpos",        "11"                    },
   { "invisible_steelwall_vertical.EDITOR.ypos",        "13"                    },
 
-  { "arrow_left",                              "RocksDC.pcx"           },
+  { "arrow_left",                              "RocksDC.png"           },
   { "arrow_left.xpos",                         "8"                     },
   { "arrow_left.ypos",                         "8"                     },
   { "arrow_left.frames",                       "1"                     },
-  { "arrow_right",                             "RocksDC.pcx"           },
+  { "arrow_right",                             "RocksDC.png"           },
   { "arrow_right.xpos",                                "9"                     },
   { "arrow_right.ypos",                                "8"                     },
   { "arrow_right.frames",                      "1"                     },
-  { "arrow_up",                                        "RocksDC.pcx"           },
+  { "arrow_up",                                        "RocksDC.png"           },
   { "arrow_up.xpos",                           "10"                    },
   { "arrow_up.ypos",                           "8"                     },
   { "arrow_up.frames",                         "1"                     },
-  { "arrow_down",                              "RocksDC.pcx"           },
+  { "arrow_down",                              "RocksDC.png"           },
   { "arrow_down.xpos",                         "11"                    },
   { "arrow_down.ypos",                         "8"                     },
   { "arrow_down.frames",                       "1"                     },
 
-  { "unknown",                                 "RocksFontEM.pcx"       },
+  { "unknown",                                 "RocksFontEM.png"       },
   { "unknown.xpos",                            "15"                    },
   { "unknown.ypos",                            "1"                     },
   { "unknown.frames",                          "1"                     },
 
-  { "trigger_element",                         "RocksDC.pcx"           },
+  { "trigger_element",                         "RocksDC.png"           },
   { "trigger_element.xpos",                    "15"                    },
   { "trigger_element.ypos",                    "14"                    },
   { "trigger_element.frames",                  "1"                     },
 
-  { "trigger_player",                          "RocksDC.pcx"           },
+  { "trigger_player",                          "RocksDC.png"           },
   { "trigger_player.xpos",                     "15"                    },
   { "trigger_player.ypos",                     "13"                    },
   { "trigger_player.frames",                   "1"                     },
 
-  { "trigger_ce_value",                                "RocksDC.pcx"           },
+  { "trigger_ce_value",                                "RocksDC.png"           },
   { "trigger_ce_value.xpos",                   "15"                    },
   { "trigger_ce_value.ypos",                   "11"                    },
   { "trigger_ce_value.frames",                 "1"                     },
 
-  { "trigger_ce_score",                                "RocksDC.pcx"           },
+  { "trigger_ce_score",                                "RocksDC.png"           },
   { "trigger_ce_score.xpos",                   "15"                    },
   { "trigger_ce_score.ypos",                   "12"                    },
   { "trigger_ce_score.frames",                 "1"                     },
 
-  { "current_ce_value",                                "RocksDC.pcx"           },
+  { "current_ce_value",                                "RocksDC.png"           },
   { "current_ce_value.xpos",                   "14"                    },
   { "current_ce_value.ypos",                   "11"                    },
   { "current_ce_value.frames",                 "1"                     },
 
-  { "current_ce_score",                                "RocksDC.pcx"           },
+  { "current_ce_score",                                "RocksDC.png"           },
   { "current_ce_score.xpos",                   "14"                    },
   { "current_ce_score.ypos",                   "12"                    },
   { "current_ce_score.frames",                 "1"                     },
 
-  { "prev_ce_1",                               "RocksMore.pcx"         },
+  { "prev_ce_1",                               "RocksMore.png"         },
   { "prev_ce_1.xpos",                          "0"                     },
   { "prev_ce_1.ypos",                          "7"                     },
   { "prev_ce_1.frames",                                "1"                     },
 
-  { "prev_ce_2",                               "RocksMore.pcx"         },
+  { "prev_ce_2",                               "RocksMore.png"         },
   { "prev_ce_2.xpos",                          "1"                     },
   { "prev_ce_2.ypos",                          "7"                     },
   { "prev_ce_2.frames",                                "1"                     },
 
-  { "prev_ce_3",                               "RocksMore.pcx"         },
+  { "prev_ce_3",                               "RocksMore.png"         },
   { "prev_ce_3.xpos",                          "2"                     },
   { "prev_ce_3.ypos",                          "7"                     },
   { "prev_ce_3.frames",                                "1"                     },
 
-  { "prev_ce_4",                               "RocksMore.pcx"         },
+  { "prev_ce_4",                               "RocksMore.png"         },
   { "prev_ce_4.xpos",                          "3"                     },
   { "prev_ce_4.ypos",                          "7"                     },
   { "prev_ce_4.frames",                                "1"                     },
 
-  { "prev_ce_5",                               "RocksMore.pcx"         },
+  { "prev_ce_5",                               "RocksMore.png"         },
   { "prev_ce_5.xpos",                          "4"                     },
   { "prev_ce_5.ypos",                          "7"                     },
   { "prev_ce_5.frames",                                "1"                     },
 
-  { "prev_ce_6",                               "RocksMore.pcx"         },
+  { "prev_ce_6",                               "RocksMore.png"         },
   { "prev_ce_6.xpos",                          "5"                     },
   { "prev_ce_6.ypos",                          "7"                     },
   { "prev_ce_6.frames",                                "1"                     },
 
-  { "prev_ce_7",                               "RocksMore.pcx"         },
+  { "prev_ce_7",                               "RocksMore.png"         },
   { "prev_ce_7.xpos",                          "6"                     },
   { "prev_ce_7.ypos",                          "7"                     },
   { "prev_ce_7.frames",                                "1"                     },
 
-  { "prev_ce_8",                               "RocksMore.pcx"         },
+  { "prev_ce_8",                               "RocksMore.png"         },
   { "prev_ce_8.xpos",                          "7"                     },
   { "prev_ce_8.ypos",                          "7"                     },
   { "prev_ce_8.frames",                                "1"                     },
 
-  { "next_ce_1",                               "RocksMore.pcx"         },
+  { "next_ce_1",                               "RocksMore.png"         },
   { "next_ce_1.xpos",                          "0"                     },
   { "next_ce_1.ypos",                          "8"                     },
   { "next_ce_1.frames",                                "1"                     },
 
-  { "next_ce_2",                               "RocksMore.pcx"         },
+  { "next_ce_2",                               "RocksMore.png"         },
   { "next_ce_2.xpos",                          "1"                     },
   { "next_ce_2.ypos",                          "8"                     },
   { "next_ce_2.frames",                                "1"                     },
 
-  { "next_ce_3",                               "RocksMore.pcx"         },
+  { "next_ce_3",                               "RocksMore.png"         },
   { "next_ce_3.xpos",                          "2"                     },
   { "next_ce_3.ypos",                          "8"                     },
   { "next_ce_3.frames",                                "1"                     },
 
-  { "next_ce_4",                               "RocksMore.pcx"         },
+  { "next_ce_4",                               "RocksMore.png"         },
   { "next_ce_4.xpos",                          "3"                     },
   { "next_ce_4.ypos",                          "8"                     },
   { "next_ce_4.frames",                                "1"                     },
 
-  { "next_ce_5",                               "RocksMore.pcx"         },
+  { "next_ce_5",                               "RocksMore.png"         },
   { "next_ce_5.xpos",                          "4"                     },
   { "next_ce_5.ypos",                          "8"                     },
   { "next_ce_5.frames",                                "1"                     },
 
-  { "next_ce_6",                               "RocksMore.pcx"         },
+  { "next_ce_6",                               "RocksMore.png"         },
   { "next_ce_6.xpos",                          "5"                     },
   { "next_ce_6.ypos",                          "8"                     },
   { "next_ce_6.frames",                                "1"                     },
 
-  { "next_ce_7",                               "RocksMore.pcx"         },
+  { "next_ce_7",                               "RocksMore.png"         },
   { "next_ce_7.xpos",                          "6"                     },
   { "next_ce_7.ypos",                          "8"                     },
   { "next_ce_7.frames",                                "1"                     },
 
-  { "next_ce_8",                               "RocksMore.pcx"         },
+  { "next_ce_8",                               "RocksMore.png"         },
   { "next_ce_8.xpos",                          "7"                     },
   { "next_ce_8.ypos",                          "8"                     },
   { "next_ce_8.frames",                                "1"                     },
 
-  { "self",                                    "RocksMore.pcx"         },
+  { "self",                                    "RocksMore.png"         },
   { "self.xpos",                               "8"                     },
   { "self.ypos",                               "7"                     },
   { "self.frames",                             "1"                     },
 
-  { "any_element",                             "RocksMore.pcx"         },
+  { "any_element",                             "RocksMore.png"         },
   { "any_element.xpos",                                "9"                     },
   { "any_element.ypos",                                "7"                     },
   { "any_element.frames",                      "1"                     },
 
-  { "emc_key_5",                               "RocksEMC.pcx"          },
+  { "emc_key_5",                               "RocksEMC.png"          },
   { "emc_key_5.xpos",                          "0"                     },
   { "emc_key_5.ypos",                          "5"                     },
   { "emc_key_5.frames",                                "1"                     },
-  { "emc_key_6",                               "RocksEMC.pcx"          },
+  { "emc_key_6",                               "RocksEMC.png"          },
   { "emc_key_6.xpos",                          "1"                     },
   { "emc_key_6.ypos",                          "5"                     },
   { "emc_key_6.frames",                                "1"                     },
-  { "emc_key_7",                               "RocksEMC.pcx"          },
+  { "emc_key_7",                               "RocksEMC.png"          },
   { "emc_key_7.xpos",                          "2"                     },
   { "emc_key_7.ypos",                          "5"                     },
   { "emc_key_7.frames",                                "1"                     },
-  { "emc_key_8",                               "RocksEMC.pcx"          },
+  { "emc_key_8",                               "RocksEMC.png"          },
   { "emc_key_8.xpos",                          "3"                     },
   { "emc_key_8.ypos",                          "5"                     },
   { "emc_key_8.frames",                                "1"                     },
 
-  { "emc_gate_5",                              "RocksEMC.pcx"          },
+  { "emc_gate_5",                              "RocksEMC.png"          },
   { "emc_gate_5.xpos",                         "0"                     },
   { "emc_gate_5.ypos",                         "6"                     },
   { "emc_gate_5.frames",                       "1"                     },
-  { "emc_gate_6",                              "RocksEMC.pcx"          },
+  { "emc_gate_6",                              "RocksEMC.png"          },
   { "emc_gate_6.xpos",                         "1"                     },
   { "emc_gate_6.ypos",                         "6"                     },
   { "emc_gate_6.frames",                       "1"                     },
-  { "emc_gate_7",                              "RocksEMC.pcx"          },
+  { "emc_gate_7",                              "RocksEMC.png"          },
   { "emc_gate_7.xpos",                         "2"                     },
   { "emc_gate_7.ypos",                         "6"                     },
   { "emc_gate_7.frames",                       "1"                     },
-  { "emc_gate_8",                              "RocksEMC.pcx"          },
+  { "emc_gate_8",                              "RocksEMC.png"          },
   { "emc_gate_8.xpos",                         "3"                     },
   { "emc_gate_8.ypos",                         "6"                     },
   { "emc_gate_8.frames",                       "1"                     },
-  { "emc_gate_5_gray",                         "RocksEMC.pcx"          },
+  { "emc_gate_5_gray",                         "RocksEMC.png"          },
   { "emc_gate_5_gray.xpos",                    "4"                     },
   { "emc_gate_5_gray.ypos",                    "7"                     },
   { "emc_gate_5_gray.frames",                  "1"                     },
-  { "emc_gate_5_gray.EDITOR",                  "RocksEMC.pcx"          },
+  { "emc_gate_5_gray.EDITOR",                  "RocksEMC.png"          },
   { "emc_gate_5_gray.EDITOR.xpos",             "0"                     },
   { "emc_gate_5_gray.EDITOR.ypos",             "7"                     },
-  { "emc_gate_5_gray.active",                  "RocksEMC.pcx"          },
+  { "emc_gate_5_gray.active",                  "RocksEMC.png"          },
   { "emc_gate_5_gray.active.xpos",             "0"                     },
   { "emc_gate_5_gray.active.ypos",             "6"                     },
   { "emc_gate_5_gray.active.frames",           "1"                     },
-  { "emc_gate_6_gray",                         "RocksEMC.pcx"          },
+  { "emc_gate_6_gray",                         "RocksEMC.png"          },
   { "emc_gate_6_gray.xpos",                    "4"                     },
   { "emc_gate_6_gray.ypos",                    "7"                     },
   { "emc_gate_6_gray.frames",                  "1"                     },
-  { "emc_gate_6_gray.EDITOR",                  "RocksEMC.pcx"          },
+  { "emc_gate_6_gray.EDITOR",                  "RocksEMC.png"          },
   { "emc_gate_6_gray.EDITOR.xpos",             "1"                     },
   { "emc_gate_6_gray.EDITOR.ypos",             "7"                     },
-  { "emc_gate_6_gray.active",                  "RocksEMC.pcx"          },
+  { "emc_gate_6_gray.active",                  "RocksEMC.png"          },
   { "emc_gate_6_gray.active.xpos",             "1"                     },
   { "emc_gate_6_gray.active.ypos",             "6"                     },
   { "emc_gate_6_gray.active.frames",           "1"                     },
-  { "emc_gate_7_gray",                         "RocksEMC.pcx"          },
+  { "emc_gate_7_gray",                         "RocksEMC.png"          },
   { "emc_gate_7_gray.xpos",                    "4"                     },
   { "emc_gate_7_gray.ypos",                    "7"                     },
   { "emc_gate_7_gray.frames",                  "1"                     },
-  { "emc_gate_7_gray.EDITOR",                  "RocksEMC.pcx"          },
+  { "emc_gate_7_gray.EDITOR",                  "RocksEMC.png"          },
   { "emc_gate_7_gray.EDITOR.xpos",             "2"                     },
   { "emc_gate_7_gray.EDITOR.ypos",             "7"                     },
-  { "emc_gate_7_gray.active",                  "RocksEMC.pcx"          },
+  { "emc_gate_7_gray.active",                  "RocksEMC.png"          },
   { "emc_gate_7_gray.active.xpos",             "2"                     },
   { "emc_gate_7_gray.active.ypos",             "6"                     },
   { "emc_gate_7_gray.active.frames",           "1"                     },
-  { "emc_gate_8_gray",                         "RocksEMC.pcx"          },
+  { "emc_gate_8_gray",                         "RocksEMC.png"          },
   { "emc_gate_8_gray.xpos",                    "4"                     },
   { "emc_gate_8_gray.ypos",                    "7"                     },
   { "emc_gate_8_gray.frames",                  "1"                     },
-  { "emc_gate_8_gray.EDITOR",                  "RocksEMC.pcx"          },
+  { "emc_gate_8_gray.EDITOR",                  "RocksEMC.png"          },
   { "emc_gate_8_gray.EDITOR.xpos",             "3"                     },
   { "emc_gate_8_gray.EDITOR.ypos",             "7"                     },
-  { "emc_gate_8_gray.active",                  "RocksEMC.pcx"          },
+  { "emc_gate_8_gray.active",                  "RocksEMC.png"          },
   { "emc_gate_8_gray.active.xpos",             "3"                     },
   { "emc_gate_8_gray.active.ypos",             "6"                     },
   { "emc_gate_8_gray.active.frames",           "1"                     },
 
-  { "emc_android",                             "RocksEMC.pcx"          },
+  { "emc_android",                             "RocksEMC.png"          },
   { "emc_android.xpos",                                "0"                     },
   { "emc_android.ypos",                                "8"                     },
   { "emc_android.frames",                      "8"                     },
   { "emc_android.delay",                       "2"                     },
 
-  { "emc_android.shrinking.upleft",            "RocksEMC.pcx"          },
+  { "emc_android.shrinking.upleft",            "RocksEMC.png"          },
   { "emc_android.shrinking.upleft.xpos",       "1"                     },
   { "emc_android.shrinking.upleft.ypos",       "11"                    },
   { "emc_android.shrinking.upleft.frames",     "8"                     },
   { "emc_android.shrinking.upleft.anim_mode",  "linear"                },
 
-  { "emc_android.growing.downright",           "RocksEMC.pcx"          },
+  { "emc_android.growing.downright",           "RocksEMC.png"          },
   { "emc_android.growing.downright.xpos",      "0"                     },
   { "emc_android.growing.downright.ypos",      "11"                    },
   { "emc_android.growing.downright.frames",    "8"                     },
   { "emc_android.growing.downright.anim_mode", "linear,reverse"        },
 
-  { "emc_android.shrinking.downleft",          "RocksEMC.pcx"          },
+  { "emc_android.shrinking.downleft",          "RocksEMC.png"          },
   { "emc_android.shrinking.downleft.xpos",     "1"                     },
   { "emc_android.shrinking.downleft.ypos",     "12"                    },
   { "emc_android.shrinking.downleft.frames",   "8"                     },
   { "emc_android.shrinking.downleft.anim_mode",        "linear"                },
 
-  { "emc_android.growing.upright",             "RocksEMC.pcx"          },
+  { "emc_android.growing.upright",             "RocksEMC.png"          },
   { "emc_android.growing.upright.xpos",                "0"                     },
   { "emc_android.growing.upright.ypos",                "12"                    },
   { "emc_android.growing.upright.frames",      "8"                     },
   { "emc_android.growing.upright.anim_mode",   "linear,reverse"        },
 
-  { "emc_android.shrinking.upright",           "RocksEMC.pcx"          },
+  { "emc_android.shrinking.upright",           "RocksEMC.png"          },
   { "emc_android.shrinking.upright.xpos",      "1"                     },
   { "emc_android.shrinking.upright.ypos",      "13"                    },
   { "emc_android.shrinking.upright.frames",    "8"                     },
   { "emc_android.shrinking.upright.anim_mode", "linear"                },
 
-  { "emc_android.growing.downleft",            "RocksEMC.pcx"          },
+  { "emc_android.growing.downleft",            "RocksEMC.png"          },
   { "emc_android.growing.downleft.xpos",       "0"                     },
   { "emc_android.growing.downleft.ypos",       "13"                    },
   { "emc_android.growing.downleft.frames",     "8"                     },
   { "emc_android.growing.downleft.anim_mode",  "linear,reverse"        },
 
-  { "emc_android.shrinking.downright",         "RocksEMC.pcx"          },
+  { "emc_android.shrinking.downright",         "RocksEMC.png"          },
   { "emc_android.shrinking.downright.xpos",    "1"                     },
   { "emc_android.shrinking.downright.ypos",    "14"                    },
   { "emc_android.shrinking.downright.frames",  "8"                     },
   { "emc_android.shrinking.downright.anim_mode","linear"               },
 
-  { "emc_android.growing.upleft",              "RocksEMC.pcx"          },
+  { "emc_android.growing.upleft",              "RocksEMC.png"          },
   { "emc_android.growing.upleft.xpos",         "0"                     },
   { "emc_android.growing.upleft.ypos",         "14"                    },
   { "emc_android.growing.upleft.frames",       "8"                     },
   { "emc_android.growing.upleft.anim_mode",    "linear,reverse"        },
 
-  { "emc_grass",                               "RocksEMC.pcx"          },
+  { "emc_grass",                               "RocksEMC.png"          },
   { "emc_grass.xpos",                          "0"                     },
   { "emc_grass.ypos",                          "4"                     },
   { "emc_grass.frames",                                "1"                     },
-  { "emc_grass.CRUMBLED",                      "RocksEMC.pcx"          },
+  { "emc_grass.CRUMBLED",                      "RocksEMC.png"          },
   { "emc_grass.CRUMBLED.xpos",                 "1"                     },
   { "emc_grass.CRUMBLED.ypos",                 "4"                     },
   { "emc_grass.CRUMBLED.frames",               "1"                     },
-  { "emc_grass.digging.left",                  "RocksEMC.pcx"          },
+  { "emc_grass.digging.left",                  "RocksEMC.png"          },
   { "emc_grass.digging.left.xpos",             "6"                     },
   { "emc_grass.digging.left.ypos",             "0"                     },
   { "emc_grass.digging.left.frames",           "3"                     },
   { "emc_grass.digging.left.delay",            "2"                     },
   { "emc_grass.digging.left.anim_mode",                "linear"                },
-  { "emc_grass.digging.right",                 "RocksEMC.pcx"          },
+  { "emc_grass.digging.right",                 "RocksEMC.png"          },
   { "emc_grass.digging.right.xpos",            "9"                     },
   { "emc_grass.digging.right.ypos",            "0"                     },
   { "emc_grass.digging.right.frames",          "3"                     },
   { "emc_grass.digging.right.delay",           "2"                     },
   { "emc_grass.digging.right.anim_mode",       "linear"                },
-  { "emc_grass.digging.up",                    "RocksEMC.pcx"          },
+  { "emc_grass.digging.up",                    "RocksEMC.png"          },
   { "emc_grass.digging.up.xpos",               "0"                     },
   { "emc_grass.digging.up.ypos",               "0"                     },
   { "emc_grass.digging.up.frames",             "3"                     },
   { "emc_grass.digging.up.delay",              "2"                     },
   { "emc_grass.digging.up.anim_mode",          "linear"                },
-  { "emc_grass.digging.down",                  "RocksEMC.pcx"          },
+  { "emc_grass.digging.down",                  "RocksEMC.png"          },
   { "emc_grass.digging.down.xpos",             "3"                     },
   { "emc_grass.digging.down.ypos",             "0"                     },
   { "emc_grass.digging.down.frames",           "3"                     },
   { "emc_grass.digging.down.delay",            "2"                     },
   { "emc_grass.digging.down.anim_mode",                "linear"                },
-  { "emc_grass.digging.left.CRUMBLED",         "RocksEMC.pcx"          },
+  { "emc_grass.digging.left.CRUMBLED",         "RocksEMC.png"          },
   { "emc_grass.digging.left.CRUMBLED.xpos",    "6"                     },
   { "emc_grass.digging.left.CRUMBLED.ypos",    "1"                     },
   { "emc_grass.digging.left.CRUMBLED.frames",  "3"                     },
   { "emc_grass.digging.left.CRUMBLED.delay",   "2"                     },
   { "emc_grass.digging.left.CRUMBLED.anim_mode","linear"               },
-  { "emc_grass.digging.right.CRUMBLED",                "RocksEMC.pcx"          },
+  { "emc_grass.digging.right.CRUMBLED",                "RocksEMC.png"          },
   { "emc_grass.digging.right.CRUMBLED.xpos",   "9"                     },
   { "emc_grass.digging.right.CRUMBLED.ypos",   "1"                     },
   { "emc_grass.digging.right.CRUMBLED.frames", "3"                     },
   { "emc_grass.digging.right.CRUMBLED.delay",  "2"                     },
   { "emc_grass.digging.right.CRUMBLED.anim_mode","linear"              },
-  { "emc_grass.digging.up.CRUMBLED",           "RocksEMC.pcx"          },
+  { "emc_grass.digging.up.CRUMBLED",           "RocksEMC.png"          },
   { "emc_grass.digging.up.CRUMBLED.xpos",      "0"                     },
   { "emc_grass.digging.up.CRUMBLED.ypos",      "1"                     },
   { "emc_grass.digging.up.CRUMBLED.frames",    "3"                     },
   { "emc_grass.digging.up.CRUMBLED.delay",     "2"                     },
   { "emc_grass.digging.up.CRUMBLED.anim_mode", "linear"                },
-  { "emc_grass.digging.down.CRUMBLED",         "RocksEMC.pcx"          },
+  { "emc_grass.digging.down.CRUMBLED",         "RocksEMC.png"          },
   { "emc_grass.digging.down.CRUMBLED.xpos",    "3"                     },
   { "emc_grass.digging.down.CRUMBLED.ypos",    "1"                     },
   { "emc_grass.digging.down.CRUMBLED.frames",  "3"                     },
   { "emc_grass.digging.down.CRUMBLED.delay",   "2"                     },
   { "emc_grass.digging.down.CRUMBLED.anim_mode","linear"               },
 
-  { "emc_magic_ball",                          "RocksEMC.pcx"          },
+  { "emc_magic_ball",                          "RocksEMC.png"          },
   { "emc_magic_ball.xpos",                     "0"                     },
   { "emc_magic_ball.ypos",                     "9"                     },
   { "emc_magic_ball.frames",                   "1"                     },
-  { "emc_magic_ball.active",                   "RocksEMC.pcx"          },
+  { "emc_magic_ball.active",                   "RocksEMC.png"          },
   { "emc_magic_ball.active.xpos",              "0"                     },
   { "emc_magic_ball.active.ypos",              "9"                     },
   { "emc_magic_ball.active.frames",            "16"                    },
   { "emc_magic_ball.active.frames_per_line",   "8"                     },
-  { "emc_magic_ball.dropping",                 "RocksElements.pcx"     },
+  { "emc_magic_ball.dropping",                 "RocksElements.png"     },
   { "emc_magic_ball.dropping.xpos",            "0"                     },
   { "emc_magic_ball.dropping.ypos",            "4"                     },
   { "emc_magic_ball.dropping.frames",          "8"                     },
   { "emc_magic_ball.dropping.anim_mode",       "linear"                },
 
-  { "emc_magic_ball_switch",                   "RocksEMC.pcx"          },
+  { "emc_magic_ball_switch",                   "RocksEMC.png"          },
   { "emc_magic_ball_switch.xpos",              "8"                     },
   { "emc_magic_ball_switch.ypos",              "10"                    },
   { "emc_magic_ball_switch.frames",            "1"                     },
-  { "emc_magic_ball_switch.active",            "RocksEMC.pcx"          },
+  { "emc_magic_ball_switch.active",            "RocksEMC.png"          },
   { "emc_magic_ball_switch.active.xpos",       "8"                     },
   { "emc_magic_ball_switch.active.ypos",       "9"                     },
   { "emc_magic_ball_switch.active.frames",     "1"                     },
 
-  { "emc_spring_bumper",                       "RocksEMC.pcx"          },
+  { "emc_spring_bumper",                       "RocksEMC.png"          },
   { "emc_spring_bumper.xpos",                  "8"                     },
   { "emc_spring_bumper.ypos",                  "4"                     },
   { "emc_spring_bumper.frames",                        "1"                     },
 
-  { "emc_spring_bumper.active",                        "RocksEMC.pcx"          },
+  { "emc_spring_bumper.active",                        "RocksEMC.png"          },
   { "emc_spring_bumper.active.xpos",           "8"                     },
   { "emc_spring_bumper.active.ypos",           "4"                     },
   { "emc_spring_bumper.active.frames",         "4"                     },
   { "emc_spring_bumper.active.anim_mode",      "pingpong2"             },
 
-  { "emc_plant",                               "RocksEMC.pcx"          },
+  { "emc_plant",                               "RocksEMC.png"          },
   { "emc_plant.xpos",                          "4"                     },
   { "emc_plant.ypos",                          "4"                     },
   { "emc_plant.frames",                                "1"                     },
-  { "emc_plant.CRUMBLED",                      "RocksEMC.pcx"          },
+  { "emc_plant.CRUMBLED",                      "RocksEMC.png"          },
   { "emc_plant.CRUMBLED.xpos",                 "5"                     },
   { "emc_plant.CRUMBLED.ypos",                 "4"                     },
   { "emc_plant.CRUMBLED.frames",               "1"                     },
 
-  { "emc_lenses",                              "RocksEMC.pcx"          },
+  { "emc_lenses",                              "RocksEMC.png"          },
   { "emc_lenses.xpos",                         "6"                     },
   { "emc_lenses.ypos",                         "4"                     },
   { "emc_lenses.frames",                       "1"                     },
 
-  { "emc_magnifier",                           "RocksEMC.pcx"          },
+  { "emc_magnifier",                           "RocksEMC.png"          },
   { "emc_magnifier.xpos",                      "7"                     },
   { "emc_magnifier.ypos",                      "4"                     },
   { "emc_magnifier.frames",                    "1"                     },
 
-  { "emc_wall_9",                              "RocksEMC.pcx"          },
+  { "emc_wall_9",                              "RocksEMC.png"          },
   { "emc_wall_9.xpos",                         "10"                    },
   { "emc_wall_9.ypos",                         "5"                     },
   { "emc_wall_9.frames",                       "1"                     },
-  { "emc_wall_10",                             "RocksEMC.pcx"          },
+  { "emc_wall_10",                             "RocksEMC.png"          },
   { "emc_wall_10.xpos",                                "10"                    },
   { "emc_wall_10.ypos",                                "6"                     },
   { "emc_wall_10.frames",                      "1"                     },
-  { "emc_wall_11",                             "RocksEMC.pcx"          },
+  { "emc_wall_11",                             "RocksEMC.png"          },
   { "emc_wall_11.xpos",                                "11"                    },
   { "emc_wall_11.ypos",                                "5"                     },
   { "emc_wall_11.frames",                      "1"                     },
-  { "emc_wall_12",                             "RocksEMC.pcx"          },
+  { "emc_wall_12",                             "RocksEMC.png"          },
   { "emc_wall_12.xpos",                                "11"                    },
   { "emc_wall_12.ypos",                                "6"                     },
   { "emc_wall_12.frames",                      "1"                     },
-  { "emc_wall_13",                             "RocksEMC.pcx"          },
+  { "emc_wall_13",                             "RocksEMC.png"          },
   { "emc_wall_13.xpos",                                "10"                    },
   { "emc_wall_13.ypos",                                "7"                     },
   { "emc_wall_13.frames",                      "1"                     },
-  { "emc_wall_14",                             "RocksEMC.pcx"          },
+  { "emc_wall_14",                             "RocksEMC.png"          },
   { "emc_wall_14.xpos",                                "10"                    },
   { "emc_wall_14.ypos",                                "8"                     },
   { "emc_wall_14.frames",                      "1"                     },
-  { "emc_wall_15",                             "RocksEMC.pcx"          },
+  { "emc_wall_15",                             "RocksEMC.png"          },
   { "emc_wall_15.xpos",                                "10"                    },
   { "emc_wall_15.ypos",                                "9"                     },
   { "emc_wall_15.frames",                      "1"                     },
-  { "emc_wall_16",                             "RocksEMC.pcx"          },
+  { "emc_wall_16",                             "RocksEMC.png"          },
   { "emc_wall_16.xpos",                                "10"                    },
   { "emc_wall_16.ypos",                                "10"                    },
   { "emc_wall_16.frames",                      "1"                     },
 
-  { "emc_wall_slippery_1",                     "RocksEMC.pcx"          },
+  { "emc_wall_slippery_1",                     "RocksEMC.png"          },
   { "emc_wall_slippery_1.xpos",                        "11"                    },
   { "emc_wall_slippery_1.ypos",                        "7"                     },
   { "emc_wall_slippery_1.frames",              "1"                     },
-  { "emc_wall_slippery_2",                     "RocksEMC.pcx"          },
+  { "emc_wall_slippery_2",                     "RocksEMC.png"          },
   { "emc_wall_slippery_2.xpos",                        "11"                    },
   { "emc_wall_slippery_2.ypos",                        "8"                     },
   { "emc_wall_slippery_2.frames",              "1"                     },
-  { "emc_wall_slippery_3",                     "RocksEMC.pcx"          },
+  { "emc_wall_slippery_3",                     "RocksEMC.png"          },
   { "emc_wall_slippery_3.xpos",                        "11"                    },
   { "emc_wall_slippery_3.ypos",                        "9"                     },
   { "emc_wall_slippery_3.frames",              "1"                     },
-  { "emc_wall_slippery_4",                     "RocksEMC.pcx"          },
+  { "emc_wall_slippery_4",                     "RocksEMC.png"          },
   { "emc_wall_slippery_4.xpos",                        "11"                    },
   { "emc_wall_slippery_4.ypos",                        "10"                    },
   { "emc_wall_slippery_4.frames",              "1"                     },
 
-  { "emc_fake_grass",                          "RocksEMC.pcx"          },
+  { "emc_fake_grass",                          "RocksEMC.png"          },
   { "emc_fake_grass.xpos",                     "0"                     },
   { "emc_fake_grass.ypos",                     "4"                     },
   { "emc_fake_grass.frames",                   "1"                     },
-  { "emc_fake_grass.CRUMBLED",                 "RocksEMC.pcx"          },
+  { "emc_fake_grass.CRUMBLED",                 "RocksEMC.png"          },
   { "emc_fake_grass.CRUMBLED.xpos",            "1"                     },
   { "emc_fake_grass.CRUMBLED.ypos",            "4"                     },
   { "emc_fake_grass.CRUMBLED.frames",          "1"                     },
-  { "emc_fake_grass.active",                   "RocksEMC.pcx"          },
+  { "emc_fake_grass.active",                   "RocksEMC.png"          },
   { "emc_fake_grass.active.xpos",              "2"                     },
   { "emc_fake_grass.active.ypos",              "4"                     },
   { "emc_fake_grass.active.frames",            "1"                     },
-  { "emc_fake_grass.active.CRUMBLED",          "RocksEMC.pcx"          },
+  { "emc_fake_grass.active.CRUMBLED",          "RocksEMC.png"          },
   { "emc_fake_grass.active.CRUMBLED.xpos",     "3"                     },
   { "emc_fake_grass.active.CRUMBLED.ypos",     "4"                     },
   { "emc_fake_grass.active.CRUMBLED.frames",   "1"                     },
-  { "emc_fake_grass.EDITOR",                   "RocksEMC.pcx"          },
+  { "emc_fake_grass.EDITOR",                   "RocksEMC.png"          },
   { "emc_fake_grass.EDITOR.xpos",              "2"                     },
   { "emc_fake_grass.EDITOR.ypos",              "4"                     },
   { "emc_fake_grass.EDITOR.frames",            "1"                     },
 
-  { "emc_fake_acid",                           "RocksElements.pcx"     },
+  { "emc_fake_acid",                           "RocksElements.png"     },
   { "emc_fake_acid.xpos",                      "12"                    },
   { "emc_fake_acid.ypos",                      "7"                     },
   { "emc_fake_acid.frames",                    "4"                     },
   { "emc_fake_acid.delay",                     "10"                    },
   { "emc_fake_acid.global_sync",               "true"                  },
 
-  { "emc_dripper",                             "RocksSP.pcx"           },
+  { "emc_dripper",                             "RocksSP.png"           },
   { "emc_dripper.xpos",                                "0"                     },
   { "emc_dripper.ypos",                                "0"                     },
   { "emc_dripper.frames",                      "1"                     },
-  { "emc_dripper.EDITOR",                      "RocksEMC.pcx"          },
+  { "emc_dripper.EDITOR",                      "RocksEMC.png"          },
   { "emc_dripper.EDITOR.xpos",                 "8"                     },
   { "emc_dripper.EDITOR.ypos",                 "8"                     },
-  { "emc_dripper.active",                      "RocksEMC.pcx"          },
+  { "emc_dripper.active",                      "RocksEMC.png"          },
   { "emc_dripper.active.xpos",                 "8"                     },
   { "emc_dripper.active.ypos",                 "8"                     },
   { "emc_dripper.active.frames",               "1"                     },
@@ -4372,30 +4372,30 @@ struct ConfigInfo image_config[] =
 #if 1
   /* !!! TEMPORARILY STORED HERE -- PROBABLY TO BE CHANGED !!! */
 
-  /* (for testing, change filename back to "emc_objects dot pcx") */
-  { "emc_object",                              "RocksEMC.pcx"          },
+  /* (for testing, change filename back to "emc_objects dot png") */
+  { "emc_object",                              "RocksEMC.png"          },
 #if 0
   { "emc_object.scale_up_factor",              "2"                     },
 #endif
 
-  /* (for testing, change filename back to "emc_players dot pcx") */
-  { "emc_sprite",                              "RocksEMC.pcx"          },
+  /* (for testing, change filename back to "emc_players dot png") */
+  { "emc_sprite",                              "RocksEMC.png"          },
 #if 0
   { "emc_sprite.scale_up_factor",              "2"                     },
 #endif
 #endif
 
-  { "sp_frame_horizontal",                     "RocksSP.pcx"           },
+  { "sp_frame_horizontal",                     "RocksSP.png"           },
   { "sp_frame_horizontal.xpos",                        "7"                     },
   { "sp_frame_horizontal.ypos",                        "14"                    },
-  { "sp_frame_vertical",                       "RocksSP.pcx"           },
+  { "sp_frame_vertical",                       "RocksSP.png"           },
   { "sp_frame_vertical.xpos",                  "6"                     },
   { "sp_frame_vertical.ypos",                  "14"                    },
-  { "sp_frame_corner",                         "RocksSP.pcx"           },
+  { "sp_frame_corner",                         "RocksSP.png"           },
   { "sp_frame_corner.xpos",                    "5"                     },
   { "sp_frame_corner.ypos",                    "14"                    },
 
-  { "toon_1",                                  "RocksToons.pcx"        },
+  { "toon_1",                                  "RocksToons.png"        },
   { "toon_1.x",                                        "2"                     },
   { "toon_1.y",                                        "72"                    },
   { "toon_1.width",                            "40"                    },
@@ -4407,7 +4407,7 @@ struct ConfigInfo image_config[] =
   { "toon_1.direction",                                "right"                 },
   { "toon_1.position",                         "bottom"                },
 
-  { "toon_2",                                  "RocksToons.pcx"        },
+  { "toon_2",                                  "RocksToons.png"        },
   { "toon_2.x",                                        "2"                     },
   { "toon_2.y",                                        "186"                   },
   { "toon_2.width",                            "40"                    },
@@ -4419,7 +4419,7 @@ struct ConfigInfo image_config[] =
   { "toon_2.direction",                                "left"                  },
   { "toon_2.position",                         "bottom"                },
 
-  { "toon_3",                                  "RocksToons.pcx"        },
+  { "toon_3",                                  "RocksToons.png"        },
   { "toon_3.x",                                        "2"                     },
   { "toon_3.y",                                        "125"                   },
   { "toon_3.width",                            "48"                    },
@@ -4431,7 +4431,7 @@ struct ConfigInfo image_config[] =
   { "toon_3.direction",                                "right"                 },
   { "toon_3.position",                         "bottom"                },
 
-  { "toon_4",                                  "RocksToons.pcx"        },
+  { "toon_4",                                  "RocksToons.png"        },
   { "toon_4.x",                                        "327"                   },
   { "toon_4.y",                                        "10"                    },
   { "toon_4.width",                            "80"                    },
@@ -4443,7 +4443,7 @@ struct ConfigInfo image_config[] =
   { "toon_4.direction",                                "up"                    },
   { "toon_4.position",                         "any"                   },
 
-  { "toon_5",                                  "RocksToons.pcx"        },
+  { "toon_5",                                  "RocksToons.png"        },
   { "toon_5.x",                                        "2"                     },
   { "toon_5.y",                                        "2"                     },
   { "toon_5.width",                            "32"                    },
@@ -4456,7 +4456,7 @@ struct ConfigInfo image_config[] =
   { "toon_5.direction",                                "right"                 },
   { "toon_5.position",                         "upper"                 },
 
-  { "toon_6",                                  "RocksToons.pcx"        },
+  { "toon_6",                                  "RocksToons.png"        },
   { "toon_6.x",                                        "2"                     },
   { "toon_6.y",                                        "37"                    },
   { "toon_6.width",                            "32"                    },
@@ -4469,7 +4469,7 @@ struct ConfigInfo image_config[] =
   { "toon_6.direction",                                "left"                  },
   { "toon_6.position",                         "upper"                 },
 
-  { "toon_7",                                  "RocksMore.pcx"         },
+  { "toon_7",                                  "RocksMore.png"         },
   { "toon_7.xpos",                             "0"                     },
   { "toon_7.ypos",                             "6"                     },
   { "toon_7.frames",                           "16"                    },
@@ -4477,7 +4477,7 @@ struct ConfigInfo image_config[] =
   { "toon_7.direction",                                "down"                  },
   { "toon_7.position",                         "any"                   },
 
-  { "toon_8",                                  "RocksHeroes.pcx"       },
+  { "toon_8",                                  "RocksHeroes.png"       },
   { "toon_8.xpos",                             "4"                     },
   { "toon_8.ypos",                             "1"                     },
   { "toon_8.frames",                           "4"                     },
@@ -4485,7 +4485,7 @@ struct ConfigInfo image_config[] =
   { "toon_8.direction",                                "right"                 },
   { "toon_8.position",                         "bottom"                },
 
-  { "toon_9",                                  "RocksHeroes.pcx"       },
+  { "toon_9",                                  "RocksHeroes.png"       },
   { "toon_9.xpos",                             "8"                     },
   { "toon_9.ypos",                             "7"                     },
   { "toon_9.frames",                           "4"                     },
@@ -4493,7 +4493,7 @@ struct ConfigInfo image_config[] =
   { "toon_9.direction",                                "left"                  },
   { "toon_9.position",                         "bottom"                },
 
-  { "toon_10",                                 "RocksHeroes.pcx"       },
+  { "toon_10",                                 "RocksHeroes.png"       },
   { "toon_10.xpos",                            "12"                    },
   { "toon_10.ypos",                            "7"                     },
   { "toon_10.frames",                          "4"                     },
@@ -4501,7 +4501,7 @@ struct ConfigInfo image_config[] =
   { "toon_10.direction",                       "right"                 },
   { "toon_10.position",                                "bottom"                },
 
-  { "toon_11",                                 "RocksHeroes.pcx"       },
+  { "toon_11",                                 "RocksHeroes.png"       },
   { "toon_11.xpos",                            "8"                     },
   { "toon_11.ypos",                            "5"                     },
   { "toon_11.frames",                          "4"                     },
@@ -4509,7 +4509,7 @@ struct ConfigInfo image_config[] =
   { "toon_11.direction",                       "left"                  },
   { "toon_11.position",                                "bottom"                },
 
-  { "toon_12",                                 "RocksHeroes.pcx"       },
+  { "toon_12",                                 "RocksHeroes.png"       },
   { "toon_12.xpos",                            "12"                    },
   { "toon_12.ypos",                            "5"                     },
   { "toon_12.frames",                          "4"                     },
@@ -4517,7 +4517,7 @@ struct ConfigInfo image_config[] =
   { "toon_12.direction",                       "right"                 },
   { "toon_12.position",                                "bottom"                },
 
-  { "toon_13",                                 "RocksHeroes.pcx"       },
+  { "toon_13",                                 "RocksHeroes.png"       },
   { "toon_13.xpos",                            "8"                     },
   { "toon_13.ypos",                            "1"                     },
   { "toon_13.frames",                          "4"                     },
@@ -4525,7 +4525,7 @@ struct ConfigInfo image_config[] =
   { "toon_13.direction",                       "left"                  },
   { "toon_13.position",                                "bottom"                },
 
-  { "toon_14",                                 "RocksHeroes.pcx"       },
+  { "toon_14",                                 "RocksHeroes.png"       },
   { "toon_14.xpos",                            "12"                    },
   { "toon_14.ypos",                            "1"                     },
   { "toon_14.frames",                          "4"                     },
@@ -4533,7 +4533,7 @@ struct ConfigInfo image_config[] =
   { "toon_14.direction",                       "right"                 },
   { "toon_14.position",                                "bottom"                },
 
-  { "toon_15",                                 "RocksHeroes.pcx"       },
+  { "toon_15",                                 "RocksHeroes.png"       },
   { "toon_15.xpos",                            "8"                     },
   { "toon_15.ypos",                            "3"                     },
   { "toon_15.frames",                          "4"                     },
@@ -4541,7 +4541,7 @@ struct ConfigInfo image_config[] =
   { "toon_15.direction",                       "left"                  },
   { "toon_15.position",                                "bottom"                },
 
-  { "toon_16",                                 "RocksHeroes.pcx"       },
+  { "toon_16",                                 "RocksHeroes.png"       },
   { "toon_16.xpos",                            "12"                    },
   { "toon_16.ypos",                            "3"                     },
   { "toon_16.frames",                          "4"                     },
@@ -4549,7 +4549,7 @@ struct ConfigInfo image_config[] =
   { "toon_16.direction",                       "right"                 },
   { "toon_16.position",                                "bottom"                },
 
-  { "toon_17",                                 "RocksHeroes.pcx"       },
+  { "toon_17",                                 "RocksHeroes.png"       },
   { "toon_17.xpos",                            "8"                     },
   { "toon_17.ypos",                            "9"                     },
   { "toon_17.frames",                          "8"                     },
@@ -4557,7 +4557,7 @@ struct ConfigInfo image_config[] =
   { "toon_17.direction",                       "left"                  },
   { "toon_17.position",                                "any"                   },
 
-  { "toon_18",                                 "RocksHeroes.pcx"       },
+  { "toon_18",                                 "RocksHeroes.png"       },
   { "toon_18.xpos",                            "8"                     },
   { "toon_18.ypos",                            "9"                     },
   { "toon_18.frames",                          "8"                     },
@@ -4565,7 +4565,7 @@ struct ConfigInfo image_config[] =
   { "toon_18.direction",                       "right"                 },
   { "toon_18.position",                                "any"                   },
 
-  { "toon_19",                                 "RocksElements.pcx"     },
+  { "toon_19",                                 "RocksElements.png"     },
   { "toon_19.xpos",                            "8"                     },
   { "toon_19.ypos",                            "0"                     },
   { "toon_19.frames",                          "2"                     },
@@ -4573,7 +4573,7 @@ struct ConfigInfo image_config[] =
   { "toon_19.direction",                       "down"                  },
   { "toon_19.position",                                "any"                   },
 
-  { "toon_20",                                 "RocksElements.pcx"     },
+  { "toon_20",                                 "RocksElements.png"     },
   { "toon_20.xpos",                            "10"                    },
   { "toon_20.ypos",                            "0"                     },
   { "toon_20.frames",                          "2"                     },
@@ -4581,57 +4581,57 @@ struct ConfigInfo image_config[] =
   { "toon_20.direction",                       "down"                  },
   { "toon_20.position",                                "any"                   },
 
-  { "menu.calibrate_red",                      "RocksElements.pcx"     },
+  { "menu.calibrate_red",                      "RocksElements.png"     },
   { "menu.calibrate_red.xpos",                 "12"                    },
   { "menu.calibrate_red.ypos",                 "8"                     },
   { "menu.calibrate_red.frames",               "1"                     },
-  { "menu.calibrate_blue",                     "RocksElements.pcx"     },
+  { "menu.calibrate_blue",                     "RocksElements.png"     },
   { "menu.calibrate_blue.xpos",                        "13"                    },
   { "menu.calibrate_blue.ypos",                        "8"                     },
   { "menu.calibrate_blue.frames",              "1"                     },
-  { "menu.calibrate_yellow",                   "RocksElements.pcx"     },
+  { "menu.calibrate_yellow",                   "RocksElements.png"     },
   { "menu.calibrate_yellow.xpos",              "14"                    },
   { "menu.calibrate_yellow.ypos",              "8"                     },
   { "menu.calibrate_yellow.frames",            "1"                     },
 
-  { "menu.button",                             "RocksElements.pcx"     },
+  { "menu.button",                             "RocksElements.png"     },
   { "menu.button.xpos",                                "13"                    },
   { "menu.button.ypos",                                "8"                     },
   { "menu.button.frames",                      "1"                     },
-  { "menu.button.active",                      "RocksElements.pcx"     },
+  { "menu.button.active",                      "RocksElements.png"     },
   { "menu.button.active.xpos",                 "12"                    },
   { "menu.button.active.ypos",                 "8"                     },
   { "menu.button.active.frames",               "1"                     },
 
-  { "menu.button_left",                                "RocksDC.pcx"           },
+  { "menu.button_left",                                "RocksDC.png"           },
   { "menu.button_left.xpos",                   "8"                     },
   { "menu.button_left.ypos",                   "8"                     },
   { "menu.button_left.frames",                 "1"                     },
-  { "menu.button_left.active",                 "RocksDC.pcx"           },
+  { "menu.button_left.active",                 "RocksDC.png"           },
   { "menu.button_left.active.xpos",            "8"                     },
   { "menu.button_left.active.ypos",            "9"                     },
   { "menu.button_left.active.frames",          "1"                     },
-  { "menu.button_right",                       "RocksDC.pcx"           },
+  { "menu.button_right",                       "RocksDC.png"           },
   { "menu.button_right.xpos",                  "9"                     },
   { "menu.button_right.ypos",                  "8"                     },
   { "menu.button_right.frames",                        "1"                     },
-  { "menu.button_right.active",                        "RocksDC.pcx"           },
+  { "menu.button_right.active",                        "RocksDC.png"           },
   { "menu.button_right.active.xpos",           "9"                     },
   { "menu.button_right.active.ypos",           "9"                     },
   { "menu.button_right.active.frames",         "1"                     },
-  { "menu.button_up",                          "RocksDC.pcx"           },
+  { "menu.button_up",                          "RocksDC.png"           },
   { "menu.button_up.xpos",                     "10"                    },
   { "menu.button_up.ypos",                     "8"                     },
   { "menu.button_up.frames",                   "1"                     },
-  { "menu.button_up.active",                   "RocksDC.pcx"           },
+  { "menu.button_up.active",                   "RocksDC.png"           },
   { "menu.button_up.active.xpos",              "10"                    },
   { "menu.button_up.active.ypos",              "9"                     },
   { "menu.button_up.active.frames",            "1"                     },
-  { "menu.button_down",                                "RocksDC.pcx"           },
+  { "menu.button_down",                                "RocksDC.png"           },
   { "menu.button_down.xpos",                   "11"                    },
   { "menu.button_down.ypos",                   "8"                     },
   { "menu.button_down.frames",                 "1"                     },
-  { "menu.button_down.active",                 "RocksDC.pcx"           },
+  { "menu.button_down.active",                 "RocksDC.png"           },
   { "menu.button_down.active.xpos",            "11"                    },
   { "menu.button_down.active.ypos",            "9"                     },
   { "menu.button_down.active.frames",          "1"                     },
@@ -4687,48 +4687,48 @@ struct ConfigInfo image_config[] =
   { "menu.button_quit.active",                 UNDEFINED_FILENAME      },
   { "menu.button_quit.active.clone_from",      "menu.button.active"    },
 
-  { "menu.scrollbar",                          "RocksDC.pcx"           },
+  { "menu.scrollbar",                          "RocksDC.png"           },
   { "menu.scrollbar.xpos",                     "8"                     },
   { "menu.scrollbar.ypos",                     "10"                    },
   { "menu.scrollbar.frames",                   "1"                     },
-  { "menu.scrollbar.active",                   "RocksDC.pcx"           },
+  { "menu.scrollbar.active",                   "RocksDC.png"           },
   { "menu.scrollbar.active.xpos",              "9"                     },
   { "menu.scrollbar.active.ypos",              "10"                    },
   { "menu.scrollbar.active.frames",            "1"                     },
 
-  { "game.button.gfx.stop",                    "RocksDoor.pcx"         },
+  { "game.button.gfx.stop",                    "RocksDoor.png"         },
   { "game.button.gfx.stop.x",                  "305"                   },
   { "game.button.gfx.stop.y",                  "185"                   },
   { "game.button.gfx.stop.width",              "30"                    },
   { "game.button.gfx.stop.height",             "30"                    },
   { "game.button.gfx.stop.pressed_xoffset",    "-100"                  },
-  { "game.button.gfx.pause",                   "RocksDoor.pcx"         },
+  { "game.button.gfx.pause",                   "RocksDoor.png"         },
   { "game.button.gfx.pause.x",                 "335"                   },
   { "game.button.gfx.pause.y",                 "185"                   },
   { "game.button.gfx.pause.width",             "30"                    },
   { "game.button.gfx.pause.height",            "30"                    },
   { "game.button.gfx.pause.pressed_xoffset",   "-100"                  },
-  { "game.button.gfx.play",                    "RocksDoor.pcx"         },
+  { "game.button.gfx.play",                    "RocksDoor.png"         },
   { "game.button.gfx.play.x",                  "365"                   },
   { "game.button.gfx.play.y",                  "185"                   },
   { "game.button.gfx.play.width",              "30"                    },
   { "game.button.gfx.play.height",             "30"                    },
   { "game.button.gfx.play.pressed_xoffset",    "-100"                  },
-  { "game.button.gfx.sound_music",             "RocksDoor.pcx"         },
+  { "game.button.gfx.sound_music",             "RocksDoor.png"         },
   { "game.button.gfx.sound_music.x",           "305"                   },
   { "game.button.gfx.sound_music.y",           "245"                   },
   { "game.button.gfx.sound_music.width",       "30"                    },
   { "game.button.gfx.sound_music.height",      "30"                    },
   { "game.button.gfx.sound_music.pressed_xoffset", "-100"              },
   { "game.button.gfx.sound_music.active_yoffset", "-30"                        },
-  { "game.button.gfx.sound_loops",             "RocksDoor.pcx"         },
+  { "game.button.gfx.sound_loops",             "RocksDoor.png"         },
   { "game.button.gfx.sound_loops.x",           "335"                   },
   { "game.button.gfx.sound_loops.y",           "245"                   },
   { "game.button.gfx.sound_loops.width",       "30"                    },
   { "game.button.gfx.sound_loops.height",      "30"                    },
   { "game.button.gfx.sound_loops.pressed_xoffset", "-100"              },
   { "game.button.gfx.sound_loops.active_yoffset", "-30"                        },
-  { "game.button.gfx.sound_simple",            "RocksDoor.pcx"         },
+  { "game.button.gfx.sound_simple",            "RocksDoor.png"         },
   { "game.button.gfx.sound_simple.x",          "365"                   },
   { "game.button.gfx.sound_simple.y",          "245"                   },
   { "game.button.gfx.sound_simple.width",      "30"                    },
@@ -4736,37 +4736,37 @@ struct ConfigInfo image_config[] =
   { "game.button.gfx.sound_simple.pressed_xoffset", "-100"             },
   { "game.button.gfx.sound_simple.active_yoffset", "-30"               },
 
-  { "tape.button.gfx.eject",                   "RocksDoor.pcx"         },
+  { "tape.button.gfx.eject",                   "RocksDoor.png"         },
   { "tape.button.gfx.eject.x",                 "305"                   },
   { "tape.button.gfx.eject.y",                 "357"                   },
   { "tape.button.gfx.eject.width",             "18"                    },
   { "tape.button.gfx.eject.height",            "18"                    },
   { "tape.button.gfx.eject.pressed_xoffset",   "-100"                  },
-  { "tape.button.gfx.extra",                   "RocksDoor.pcx"         },
+  { "tape.button.gfx.extra",                   "RocksDoor.png"         },
   { "tape.button.gfx.extra.x",                 "505"                   },
   { "tape.button.gfx.extra.y",                 "357"                   },
   { "tape.button.gfx.extra.width",             "18"                    },
   { "tape.button.gfx.extra.height",            "18"                    },
   { "tape.button.gfx.extra.pressed_xoffset",   "-100"                  },
-  { "tape.button.gfx.stop",                    "RocksDoor.pcx"         },
+  { "tape.button.gfx.stop",                    "RocksDoor.png"         },
   { "tape.button.gfx.stop.x",                  "323"                   },
   { "tape.button.gfx.stop.y",                  "357"                   },
   { "tape.button.gfx.stop.width",              "18"                    },
   { "tape.button.gfx.stop.height",             "18"                    },
   { "tape.button.gfx.stop.pressed_xoffset",    "-100"                  },
-  { "tape.button.gfx.pause",                   "RocksDoor.pcx"         },
+  { "tape.button.gfx.pause",                   "RocksDoor.png"         },
   { "tape.button.gfx.pause.x",                 "341"                   },
   { "tape.button.gfx.pause.y",                 "357"                   },
   { "tape.button.gfx.pause.width",             "18"                    },
   { "tape.button.gfx.pause.height",            "18"                    },
   { "tape.button.gfx.pause.pressed_xoffset",   "-100"                  },
-  { "tape.button.gfx.record",                  "RocksDoor.pcx"         },
+  { "tape.button.gfx.record",                  "RocksDoor.png"         },
   { "tape.button.gfx.record.x",                        "359"                   },
   { "tape.button.gfx.record.y",                        "357"                   },
   { "tape.button.gfx.record.width",            "18"                    },
   { "tape.button.gfx.record.height",           "18"                    },
   { "tape.button.gfx.record.pressed_xoffset",  "-100"                  },
-  { "tape.button.gfx.play",                    "RocksDoor.pcx"         },
+  { "tape.button.gfx.play",                    "RocksDoor.png"         },
   { "tape.button.gfx.play.x",                  "377"                   },
   { "tape.button.gfx.play.y",                  "357"                   },
   { "tape.button.gfx.play.width",              "18"                    },
@@ -4775,37 +4775,37 @@ struct ConfigInfo image_config[] =
 
   { "tape.symbol.gfx.eject",                   UNDEFINED_FILENAME      },
   { "tape.symbol.gfx.stop",                    UNDEFINED_FILENAME      },
-  { "tape.symbol.gfx.pause",                   "RocksDoor.pcx"         },
+  { "tape.symbol.gfx.pause",                   "RocksDoor.png"         },
   { "tape.symbol.gfx.pause.x",                 "340"                   },
   { "tape.symbol.gfx.pause.y",                 "321"                   },
   { "tape.symbol.gfx.pause.width",             "17"                    },
   { "tape.symbol.gfx.pause.height",            "13"                    },
-  { "tape.symbol.gfx.record",                  "RocksDoor.pcx"         },
+  { "tape.symbol.gfx.record",                  "RocksDoor.png"         },
   { "tape.symbol.gfx.record.x",                        "325"                   },
   { "tape.symbol.gfx.record.y",                        "321"                   },
   { "tape.symbol.gfx.record.width",            "16"                    },
   { "tape.symbol.gfx.record.height",           "16"                    },
-  { "tape.symbol.gfx.play",                    "RocksDoor.pcx"         },
+  { "tape.symbol.gfx.play",                    "RocksDoor.png"         },
   { "tape.symbol.gfx.play.x",                  "357"                   },
   { "tape.symbol.gfx.play.y",                  "321"                   },
   { "tape.symbol.gfx.play.width",              "11"                    },
   { "tape.symbol.gfx.play.height",             "13"                    },
-  { "tape.symbol.gfx.fast_forward",            "RocksDoor.pcx"         },
+  { "tape.symbol.gfx.fast_forward",            "RocksDoor.png"         },
   { "tape.symbol.gfx.fast_forward.x",          "539"                   },
   { "tape.symbol.gfx.fast_forward.y",          "193"                   },
   { "tape.symbol.gfx.fast_forward.width",      "27"                    },
   { "tape.symbol.gfx.fast_forward.height",     "13"                    },
-  { "tape.symbol.gfx.warp_forward",            "RocksDoor.pcx"         },
+  { "tape.symbol.gfx.warp_forward",            "RocksDoor.png"         },
   { "tape.symbol.gfx.warp_forward.x",          "539"                   },
   { "tape.symbol.gfx.warp_forward.y",          "152"                   },
   { "tape.symbol.gfx.warp_forward.width",      "27"                    },
   { "tape.symbol.gfx.warp_forward.height",     "13"                    },
-  { "tape.symbol.gfx.warp_forward_blind",      "RocksDoor.pcx"         },
+  { "tape.symbol.gfx.warp_forward_blind",      "RocksDoor.png"         },
   { "tape.symbol.gfx.warp_forward_blind.x",    "539"                   },
   { "tape.symbol.gfx.warp_forward_blind.y",    "165"                   },
   { "tape.symbol.gfx.warp_forward_blind.width",        "27"                    },
   { "tape.symbol.gfx.warp_forward_blind.height","13"                   },
-  { "tape.symbol.gfx.pause_before_end",                "RocksDoor.pcx"         },
+  { "tape.symbol.gfx.pause_before_end",                "RocksDoor.png"         },
   { "tape.symbol.gfx.pause_before_end.x",      "539"                   },
   { "tape.symbol.gfx.pause_before_end.y",      "221"                   },
   { "tape.symbol.gfx.pause_before_end.width",  "27"                    },
@@ -4814,81 +4814,81 @@ struct ConfigInfo image_config[] =
 
   { "tape.label.gfx.eject",                    UNDEFINED_FILENAME      },
   { "tape.label.gfx.stop",                     UNDEFINED_FILENAME      },
-  { "tape.label.gfx.pause",                    "RocksDoor.pcx"         },
+  { "tape.label.gfx.pause",                    "RocksDoor.png"         },
   { "tape.label.gfx.pause.x",                  "305"                   },
   { "tape.label.gfx.pause.y",                  "341"                   },
   { "tape.label.gfx.pause.width",              "35"                    },
   { "tape.label.gfx.pause.height",             "8"                     },
-  { "tape.label.gfx.record",                   "RocksDoor.pcx"         },
+  { "tape.label.gfx.record",                   "RocksDoor.png"         },
   { "tape.label.gfx.record.x",                 "305"                   },
   { "tape.label.gfx.record.y",                 "321"                   },
   { "tape.label.gfx.record.width",             "20"                    },
   { "tape.label.gfx.record.height",            "12"                    },
-  { "tape.label.gfx.play",                     "RocksDoor.pcx"         },
+  { "tape.label.gfx.play",                     "RocksDoor.png"         },
   { "tape.label.gfx.play.x",                   "370"                   },
   { "tape.label.gfx.play.y",                   "321"                   },
   { "tape.label.gfx.play.width",               "22"                    },
   { "tape.label.gfx.play.height",              "12"                    },
-  { "tape.label.gfx.fast_forward",             "RocksDoor.pcx"         },
+  { "tape.label.gfx.fast_forward",             "RocksDoor.png"         },
   { "tape.label.gfx.fast_forward.x",           "505"                   },
   { "tape.label.gfx.fast_forward.y",           "193"                   },
   { "tape.label.gfx.fast_forward.width",       "40"                    },
   { "tape.label.gfx.fast_forward.height",      "28"                    },
-  { "tape.label.gfx.warp_forward",             "RocksDoor.pcx"         },
+  { "tape.label.gfx.warp_forward",             "RocksDoor.png"         },
   { "tape.label.gfx.warp_forward.x",           "505"                   },
   { "tape.label.gfx.warp_forward.y",           "165"                   },
   { "tape.label.gfx.warp_forward.width",       "40"                    },
   { "tape.label.gfx.warp_forward.height",      "28"                    },
-  { "tape.label.gfx.warp_forward_blind",       "RocksDoor.pcx"         },
+  { "tape.label.gfx.warp_forward_blind",       "RocksDoor.png"         },
   { "tape.label.gfx.warp_forward_blind.x",     "505"                   },
   { "tape.label.gfx.warp_forward_blind.y",     "165"                   },
   { "tape.label.gfx.warp_forward_blind.width", "40"                    },
   { "tape.label.gfx.warp_forward_blind.height",        "28"                    },
-  { "tape.label.gfx.pause_before_end",         "RocksDoor.pcx"         },
+  { "tape.label.gfx.pause_before_end",         "RocksDoor.png"         },
   { "tape.label.gfx.pause_before_end.x",       "505"                   },
   { "tape.label.gfx.pause_before_end.y",       "221"                   },
   { "tape.label.gfx.pause_before_end.width",   "40"                    },
   { "tape.label.gfx.pause_before_end.height",  "28"                    },
-  { "tape.label.gfx.single_step",              "RocksDoor.pcx"         },
+  { "tape.label.gfx.single_step",              "RocksDoor.png"         },
   { "tape.label.gfx.single_step.x",            "557"                   },
   { "tape.label.gfx.single_step.y",            "139"                   },
   { "tape.label.gfx.single_step.width",                "38"                    },
   { "tape.label.gfx.single_step.height",       "13"                    },
 
-  { "tape.label.gfx.date",                     "RocksDoor.pcx"         },
+  { "tape.label.gfx.date",                     "RocksDoor.png"         },
   { "tape.label.gfx.date.x",                   "305"                   },
   { "tape.label.gfx.date.y",                   "285"                   },
   { "tape.label.gfx.date.width",               "90"                    },
   { "tape.label.gfx.date.height",              "13"                    },
   { "tape.label.gfx.time",                     UNDEFINED_FILENAME      },
 
-  { "font.initial_1",                          "RocksFontSmall.pcx"    },
+  { "font.initial_1",                          "RocksFontSmall.png"    },
   { "font.initial_1.x",                                "0"                     },
   { "font.initial_1.y",                                "0"                     },
   { "font.initial_1.width",                    "14"                    },
   { "font.initial_1.height",                   "14"                    },
-  { "font.initial_2",                          "RocksFontSmall.pcx"    },
+  { "font.initial_2",                          "RocksFontSmall.png"    },
   { "font.initial_2.x",                                "0"                     },
   { "font.initial_2.y",                                "70"                    },
   { "font.initial_2.width",                    "14"                    },
   { "font.initial_2.height",                   "14"                    },
-  { "font.initial_3",                          "RocksFontSmall.pcx"    },
+  { "font.initial_3",                          "RocksFontSmall.png"    },
   { "font.initial_3.x",                                "0"                     },
   { "font.initial_3.y",                                "140"                   },
   { "font.initial_3.width",                    "14"                    },
   { "font.initial_3.height",                   "14"                    },
-  { "font.initial_4",                          "RocksFontSmall.pcx"    },
+  { "font.initial_4",                          "RocksFontSmall.png"    },
   { "font.initial_4.x",                                "0"                     },
   { "font.initial_4.y",                                "210"                   },
   { "font.initial_4.width",                    "14"                    },
   { "font.initial_4.height",                   "14"                    },
 
-  { "font.title_1",                            "RocksFontBig.pcx"      },
+  { "font.title_1",                            "RocksFontBig.png"      },
   { "font.title_1.x",                          "0"                     },
   { "font.title_1.y",                          "480"                   },
   { "font.title_1.width",                      "32"                    },
   { "font.title_1.height",                     "32"                    },
-  { "font.title_2",                            "RocksFontSmall.pcx"    },
+  { "font.title_2",                            "RocksFontSmall.png"    },
   { "font.title_2.x",                          "0"                     },
   { "font.title_2.y",                          "0"                     },
   { "font.title_2.width",                      "14"                    },
@@ -4896,35 +4896,35 @@ struct ConfigInfo image_config[] =
   { "font.title_2.SETUP",                      UNDEFINED_FILENAME      },
   { "font.title_2.SETUP.clone_from",           "font.text_4"           },
 
-  { "font.menu_1",                             "RocksFontBig.pcx"      },
+  { "font.menu_1",                             "RocksFontBig.png"      },
   { "font.menu_1.x",                           "0"                     },
   { "font.menu_1.y",                           "320"                   },
   { "font.menu_1.width",                       "32"                    },
   { "font.menu_1.height",                      "32"                    },
-  { "font.menu_1.active",                      "RocksFontBig.pcx"      },
+  { "font.menu_1.active",                      "RocksFontBig.png"      },
   { "font.menu_1.active.x",                    "0"                     },
   { "font.menu_1.active.y",                    "480"                   },
   { "font.menu_1.active.width",                        "32"                    },
   { "font.menu_1.active.height",               "32"                    },
-  { "font.menu_2",                             "RocksFontMedium.pcx"   },
+  { "font.menu_2",                             "RocksFontMedium.png"   },
   { "font.menu_2.x",                           "0"                     },
   { "font.menu_2.y",                           "320"                   },
   { "font.menu_2.width",                       "16"                    },
   { "font.menu_2.height",                      "32"                    },
-  { "font.menu_2.active",                      "RocksFontMedium.pcx"   },
+  { "font.menu_2.active",                      "RocksFontMedium.png"   },
   { "font.menu_2.active.x",                    "0"                     },
   { "font.menu_2.active.y",                    "480"                   },
   { "font.menu_2.active.width",                        "16"                    },
   { "font.menu_2.active.height",               "32"                    },
 
-  { "font.text_1",                             "RocksFontSmall.pcx"    },
+  { "font.text_1",                             "RocksFontSmall.png"    },
   { "font.text_1.x",                           "0"                     },
   { "font.text_1.y",                           "140"                   },
   { "font.text_1.width",                       "14"                    },
   { "font.text_1.height",                      "14"                    },
   { "font.text_1.MAIN",                                UNDEFINED_FILENAME      },
   { "font.text_1.MAIN.clone_from",             "font.text_1.PREVIEW"   },
-  { "font.text_1.LEVELS",                      "RocksFontMedium.pcx"   },
+  { "font.text_1.LEVELS",                      "RocksFontMedium.png"   },
   { "font.text_1.LEVELS.x",                    "0"                     },
   { "font.text_1.LEVELS.y",                    "0"                     },
   { "font.text_1.LEVELS.width",                        "16"                    },
@@ -4933,17 +4933,17 @@ struct ConfigInfo image_config[] =
   { "font.text_1.LEVELNR.clone_from",          "font.text_1.LEVELS"    },
   { "font.text_1.SETUP",                       UNDEFINED_FILENAME      },
   { "font.text_1.SETUP.clone_from",            "font.text_1.LEVELS"    },
-  { "font.text_1.PREVIEW",                     "RocksFontEM.pcx"       },
+  { "font.text_1.PREVIEW",                     "RocksFontEM.png"       },
   { "font.text_1.PREVIEW.x",                   "0"                     },
   { "font.text_1.PREVIEW.y",                   "160"                   },
   { "font.text_1.PREVIEW.width",               "16"                    },
   { "font.text_1.PREVIEW.height",              "16"                    },
-  { "font.text_1.SCORES",                      "RocksFontMedium.pcx"   },
+  { "font.text_1.SCORES",                      "RocksFontMedium.png"   },
   { "font.text_1.SCORES.x",                    "0"                     },
   { "font.text_1.SCORES.y",                    "480"                   },
   { "font.text_1.SCORES.width",                        "16"                    },
   { "font.text_1.SCORES.height",               "32"                    },
-  { "font.text_1.active.SCORES",               "RocksFontMedium.pcx"   },
+  { "font.text_1.active.SCORES",               "RocksFontMedium.png"   },
   { "font.text_1.active.SCORES.x",             "0"                     },
   { "font.text_1.active.SCORES.y",             "0"                     },
   { "font.text_1.active.SCORES.width",         "16"                    },
@@ -4952,14 +4952,14 @@ struct ConfigInfo image_config[] =
   { "font.text_1.PANEL.clone_from",            "font.level_number"     },
   { "font.text_1.DOOR",                                UNDEFINED_FILENAME      },
   { "font.text_1.DOOR.clone_from",             "font.level_number"     },
-  { "font.text_2",                             "RocksFontSmall.pcx"    },
+  { "font.text_2",                             "RocksFontSmall.png"    },
   { "font.text_2.x",                           "0"                     },
   { "font.text_2.y",                           "210"                   },
   { "font.text_2.width",                       "14"                    },
   { "font.text_2.height",                      "14"                    },
   { "font.text_2.MAIN",                                UNDEFINED_FILENAME      },
   { "font.text_2.MAIN.clone_from",             "font.text_2.PREVIEW"   },
-  { "font.text_2.LEVELS",                      "RocksFontMedium.pcx"   },
+  { "font.text_2.LEVELS",                      "RocksFontMedium.png"   },
   { "font.text_2.LEVELS.x",                    "0"                     },
   { "font.text_2.LEVELS.y",                    "160"                   },
   { "font.text_2.LEVELS.width",                        "16"                    },
@@ -4968,27 +4968,27 @@ struct ConfigInfo image_config[] =
   { "font.text_2.LEVELNR.clone_from",          "font.text_2.LEVELS"    },
   { "font.text_2.SETUP",                       UNDEFINED_FILENAME      },
   { "font.text_2.SETUP.clone_from",            "font.text_2.LEVELS"    },
-  { "font.text_2.PREVIEW",                     "RocksFontEM.pcx"       },
+  { "font.text_2.PREVIEW",                     "RocksFontEM.png"       },
   { "font.text_2.PREVIEW.x",                   "0"                     },
   { "font.text_2.PREVIEW.y",                   "160"                   },
   { "font.text_2.PREVIEW.width",               "16"                    },
   { "font.text_2.PREVIEW.height",              "16"                    },
-  { "font.text_2.SCORES",                      "RocksFontBig.pcx"      },
+  { "font.text_2.SCORES",                      "RocksFontBig.png"      },
   { "font.text_2.SCORES.x",                    "0"                     },
   { "font.text_2.SCORES.y",                    "320"                   },
   { "font.text_2.SCORES.width",                        "32"                    },
   { "font.text_2.SCORES.height",               "32"                    },
-  { "font.text_2.active.SCORES",               "RocksFontBig.pcx"      },
+  { "font.text_2.active.SCORES",               "RocksFontBig.png"      },
   { "font.text_2.active.SCORES.x",             "0"                     },
   { "font.text_2.active.SCORES.y",             "0"                     },
   { "font.text_2.active.SCORES.width",         "32"                    },
   { "font.text_2.active.SCORES.height",                "32"                    },
-  { "font.text_3",                             "RocksFontSmall.pcx"    },
+  { "font.text_3",                             "RocksFontSmall.png"    },
   { "font.text_3.x",                           "0"                     },
   { "font.text_3.y",                           "0"                     },
   { "font.text_3.width",                       "14"                    },
   { "font.text_3.height",                      "14"                    },
-  { "font.text_3.LEVELS",                      "RocksFontMedium.pcx"   },
+  { "font.text_3.LEVELS",                      "RocksFontMedium.png"   },
   { "font.text_3.LEVELS.x",                    "0"                     },
   { "font.text_3.LEVELS.y",                    "320"                   },
   { "font.text_3.LEVELS.width",                        "16"                    },
@@ -4997,29 +4997,29 @@ struct ConfigInfo image_config[] =
   { "font.text_3.LEVELNR.clone_from",          "font.text_3.LEVELS"    },
   { "font.text_3.SETUP",                       UNDEFINED_FILENAME      },
   { "font.text_3.SETUP.clone_from",            "font.text_3.LEVELS"    },
-  { "font.text_3.PREVIEW",                     "RocksFontEM.pcx"       },
+  { "font.text_3.PREVIEW",                     "RocksFontEM.png"       },
   { "font.text_3.PREVIEW.x",                   "0"                     },
   { "font.text_3.PREVIEW.y",                   "160"                   },
   { "font.text_3.PREVIEW.width",               "16"                    },
   { "font.text_3.PREVIEW.height",              "16"                    },
-  { "font.text_3.SCORES",                      "RocksFontMedium.pcx"   },
+  { "font.text_3.SCORES",                      "RocksFontMedium.png"   },
   { "font.text_3.SCORES.x",                    "0"                     },
   { "font.text_3.SCORES.y",                    "480"                   },
   { "font.text_3.SCORES.width",                        "16"                    },
   { "font.text_3.SCORES.height",               "32"                    },
-  { "font.text_3.active.SCORES",               "RocksFontMedium.pcx"   },
+  { "font.text_3.active.SCORES",               "RocksFontMedium.png"   },
   { "font.text_3.active.SCORES.x",             "0"                     },
   { "font.text_3.active.SCORES.y",             "0"                     },
   { "font.text_3.active.SCORES.width",         "16"                    },
   { "font.text_3.active.SCORES.height",                "32"                    },
-  { "font.text_4",                             "RocksFontSmall.pcx"    },
+  { "font.text_4",                             "RocksFontSmall.png"    },
   { "font.text_4.x",                           "0"                     },
   { "font.text_4.y",                           "70"                    },
   { "font.text_4.width",                       "14"                    },
   { "font.text_4.height",                      "14"                    },
   { "font.text_4.MAIN",                                UNDEFINED_FILENAME      },
   { "font.text_4.MAIN.clone_from",             "font.text_3.PREVIEW"   },
-  { "font.text_4.LEVELS",                      "RocksFontMedium.pcx"   },
+  { "font.text_4.LEVELS",                      "RocksFontMedium.png"   },
   { "font.text_4.LEVELS.x",                    "0"                     },
   { "font.text_4.LEVELS.y",                    "480"                   },
   { "font.text_4.LEVELS.width",                        "16"                    },
@@ -5028,102 +5028,102 @@ struct ConfigInfo image_config[] =
   { "font.text_4.LEVELNR.clone_from",          "font.text_4.LEVELS"    },
   { "font.text_4.SETUP",                       UNDEFINED_FILENAME      },
   { "font.text_4.SETUP.clone_from",            "font.text_4.LEVELS"    },
-  { "font.text_4.SCORES",                      "RocksFontMedium.pcx"   },
+  { "font.text_4.SCORES",                      "RocksFontMedium.png"   },
   { "font.text_4.SCORES.x",                    "0"                     },
   { "font.text_4.SCORES.y",                    "480"                   },
   { "font.text_4.SCORES.width",                        "16"                    },
   { "font.text_4.SCORES.height",               "32"                    },
-  { "font.text_4.active.SCORES",               "RocksFontMedium.pcx"   },
+  { "font.text_4.active.SCORES",               "RocksFontMedium.png"   },
   { "font.text_4.active.SCORES.x",             "0"                     },
   { "font.text_4.active.SCORES.y",             "0"                     },
   { "font.text_4.active.SCORES.width",         "16"                    },
   { "font.text_4.active.SCORES.height",                "32"                    },
 
-  { "font.envelope_1",                         "RocksFontEM.pcx"       },
+  { "font.envelope_1",                         "RocksFontEM.png"       },
   { "font.envelope_1.x",                       "0"                     },
   { "font.envelope_1.y",                       "160"                   },
   { "font.envelope_1.width",                   "16"                    },
   { "font.envelope_1.height",                  "16"                    },
-  { "font.envelope_2",                         "RocksFontEM.pcx"       },
+  { "font.envelope_2",                         "RocksFontEM.png"       },
   { "font.envelope_2.x",                       "0"                     },
   { "font.envelope_2.y",                       "160"                   },
   { "font.envelope_2.width",                   "16"                    },
   { "font.envelope_2.height",                  "16"                    },
-  { "font.envelope_3",                         "RocksFontEM.pcx"       },
+  { "font.envelope_3",                         "RocksFontEM.png"       },
   { "font.envelope_3.x",                       "0"                     },
   { "font.envelope_3.y",                       "160"                   },
   { "font.envelope_3.width",                   "16"                    },
   { "font.envelope_3.height",                  "16"                    },
-  { "font.envelope_4",                         "RocksFontEM.pcx"       },
+  { "font.envelope_4",                         "RocksFontEM.png"       },
   { "font.envelope_4.x",                       "0"                     },
   { "font.envelope_4.y",                       "160"                   },
   { "font.envelope_4.width",                   "16"                    },
   { "font.envelope_4.height",                  "16"                    },
 
-  { "font.input_1",                            "RocksFontSmall.pcx"    },
+  { "font.input_1",                            "RocksFontSmall.png"    },
   { "font.input_1.x",                          "0"                     },
   { "font.input_1.y",                          "210"                   },
   { "font.input_1.width",                      "14"                    },
   { "font.input_1.height",                     "14"                    },
-  { "font.input_1.MAIN",                       "RocksFontBig.pcx"      },
+  { "font.input_1.MAIN",                       "RocksFontBig.png"      },
   { "font.input_1.MAIN.x",                     "0"                     },
   { "font.input_1.MAIN.y",                     "0"                     },
   { "font.input_1.MAIN.width",                 "32"                    },
   { "font.input_1.MAIN.height",                        "32"                    },
-  { "font.input_1.active",                     "RocksFontSmall.pcx"    },
+  { "font.input_1.active",                     "RocksFontSmall.png"    },
   { "font.input_1.active.x",                   "0"                     },
   { "font.input_1.active.y",                   "210"                   },
   { "font.input_1.active.width",               "14"                    },
   { "font.input_1.active.height",              "14"                    },
-  { "font.input_1.active.MAIN",                        "RocksFontBig.pcx"      },
+  { "font.input_1.active.MAIN",                        "RocksFontBig.png"      },
   { "font.input_1.active.MAIN.x",              "0"                     },
   { "font.input_1.active.MAIN.y",              "480"                   },
   { "font.input_1.active.MAIN.width",          "32"                    },
   { "font.input_1.active.MAIN.height",         "32"                    },
-  { "font.input_1.active.SETUP",               "RocksFontBig.pcx"      },
+  { "font.input_1.active.SETUP",               "RocksFontBig.png"      },
   { "font.input_1.active.SETUP.x",             "0"                     },
   { "font.input_1.active.SETUP.y",             "0"                     },
   { "font.input_1.active.SETUP.width",         "32"                    },
   { "font.input_1.active.SETUP.height",                "32"                    },
-  { "font.input_2",                            "RocksFontSmall.pcx"    },
+  { "font.input_2",                            "RocksFontSmall.png"    },
   { "font.input_2.x",                          "0"                     },
   { "font.input_2.y",                          "210"                   },
   { "font.input_2.width",                      "14"                    },
   { "font.input_2.height",                     "14"                    },
-  { "font.input_2.active",                     "RocksFontSmall.pcx"    },
+  { "font.input_2.active",                     "RocksFontSmall.png"    },
   { "font.input_2.active.x",                   "0"                     },
   { "font.input_2.active.y",                   "210"                   },
   { "font.input_2.active.width",               "14"                    },
   { "font.input_2.active.height",              "14"                    },
 
-  { "font.option_off",                         "RocksFontBig.pcx"      },
+  { "font.option_off",                         "RocksFontBig.png"      },
   { "font.option_off.x",                       "0"                     },
   { "font.option_off.y",                       "160"                   },
   { "font.option_off.width",                   "32"                    },
   { "font.option_off.height",                  "32"                    },
-  { "font.option_on",                          "RocksFontBig.pcx"      },
+  { "font.option_on",                          "RocksFontBig.png"      },
   { "font.option_on.x",                                "0"                     },
   { "font.option_on.y",                                "480"                   },
   { "font.option_on.width",                    "32"                    },
   { "font.option_on.height",                   "32"                    },
 
-  { "font.value_1",                            "RocksFontBig.pcx"      },
+  { "font.value_1",                            "RocksFontBig.png"      },
   { "font.value_1.x",                          "0"                     },
   { "font.value_1.y",                          "480"                   },
   { "font.value_1.width",                      "32"                    },
   { "font.value_1.height",                     "32"                    },
-  { "font.value_2",                            "RocksFontMedium.pcx"   },
+  { "font.value_2",                            "RocksFontMedium.png"   },
   { "font.value_2.x",                          "0"                     },
   { "font.value_2.y",                          "480"                   },
   { "font.value_2.width",                      "16"                    },
   { "font.value_2.height",                     "32"                    },
-  { "font.value_old",                          "RocksFontBig.pcx"      },
+  { "font.value_old",                          "RocksFontBig.png"      },
   { "font.value_old.x",                                "0"                     },
   { "font.value_old.y",                                "160"                   },
   { "font.value_old.width",                    "32"                    },
   { "font.value_old.height",                   "32"                    },
 
-  { "font.level_number",                       "RocksFontSmall.pcx"    },
+  { "font.level_number",                       "RocksFontSmall.png"    },
   { "font.level_number.x",                     "0"                     },
   { "font.level_number.y",                     "350"                   },
   { "font.level_number.width",                 "10"                    },
@@ -5131,13 +5131,13 @@ struct ConfigInfo image_config[] =
   { "font.level_number.active",                        UNDEFINED_FILENAME      },
   { "font.level_number.active.clone_from",     "font.level_number"     },
 
-  { "font.tape_recorder",                      "RocksFontSmall.pcx"    },
+  { "font.tape_recorder",                      "RocksFontSmall.png"    },
   { "font.tape_recorder.x",                    "0"                     },
   { "font.tape_recorder.y",                    "280"                   },
   { "font.tape_recorder.width",                        "11"                    },
   { "font.tape_recorder.height",               "14"                    },
 
-  { "font.game_info",                          "RocksFontEM.pcx"       },
+  { "font.game_info",                          "RocksFontEM.png"       },
   { "font.game_info.xpos",                     "0"                     },
   { "font.game_info.ypos",                     "0"                     },
   { "font.game_info.delay",                    "10"                    },
@@ -5148,10 +5148,10 @@ struct ConfigInfo image_config[] =
   { "font.info.levelset",                      UNDEFINED_FILENAME      },
   { "font.info.levelset.clone_from",           "font.level_number"     },
 
-  { "global.border",                           "RocksScreen.pcx"       },
-  { "global.door",                             "RocksDoor.pcx"         },
+  { "global.border",                           "RocksScreen.png"       },
+  { "global.door",                             "RocksDoor.png"         },
 
-  { "global.busy",                             "RocksBusy.pcx"         },
+  { "global.busy",                             "RocksBusy.png"         },
   { "global.busy.x",                           "0"                     },
   { "global.busy.y",                           "0"                     },
   { "global.busy.width",                       "32"                    },
@@ -5160,19 +5160,19 @@ struct ConfigInfo image_config[] =
   { "global.busy.frames_per_line",             "7"                     },
   { "global.busy.delay",                       "2"                     },
 
-  { "editor.element_border",                   "RocksMore.pcx"         },
+  { "editor.element_border",                   "RocksMore.png"         },
   { "editor.element_border.xpos",              "0"                     },
   { "editor.element_border.ypos",              "2"                     },
 
-  { "editor.element_border_input",             "RocksMore.pcx"         },
+  { "editor.element_border_input",             "RocksMore.png"         },
   { "editor.element_border_input.xpos",                "10"                    },
   { "editor.element_border_input.ypos",                "7"                     },
 
-  { "editor.cascade_list",                     "RocksMore.pcx"         },
+  { "editor.cascade_list",                     "RocksMore.png"         },
   { "editor.cascade_list.xpos",                        "9"                     },
   { "editor.cascade_list.ypos",                        "8"                     },
   { "editor.cascade_list.frames",              "1"                     },
-  { "editor.cascade_list.active",              "RocksMore.pcx"         },
+  { "editor.cascade_list.active",              "RocksMore.png"         },
   { "editor.cascade_list.active.xpos",         "10"                    },
   { "editor.cascade_list.active.ypos",         "8"                     },
   { "editor.cascade_list.active.frames",       "1"                     },
@@ -5195,12 +5195,12 @@ struct ConfigInfo image_config[] =
   { "background.SETUP",                                UNDEFINED_FILENAME      },
   { "background.PLAYING",                      UNDEFINED_FILENAME      },
   { "background.DOOR",                         UNDEFINED_FILENAME      },
-  { "background.TAPE",                         "RocksDoor.pcx"         },
+  { "background.TAPE",                         "RocksDoor.png"         },
   { "background.TAPE.x",                       "200"                   },
   { "background.TAPE.y",                       "280"                   },
   { "background.TAPE.width",                   "100"                   },
   { "background.TAPE.height",                  "100"                   },
-  { "background.PANEL",                                "RocksDoor.pcx"         },
+  { "background.PANEL",                                "RocksDoor.png"         },
   { "background.PANEL.x",                      "400"                   },
   { "background.PANEL.y",                      "0"                     },
   { "background.PANEL.width",                  "100"                   },
@@ -5227,28 +5227,28 @@ struct ConfigInfo image_config[] =
   { "background.titlemessage_4",               UNDEFINED_FILENAME      },
   { "background.titlemessage_5",               UNDEFINED_FILENAME      },
 
-  { "background.envelope_1",                   "RocksScreen.pcx"       },
+  { "background.envelope_1",                   "RocksScreen.png"       },
   { "background.envelope_1.x",                 "0"                     },
   { "background.envelope_1.y",                 "0"                     },
   { "background.envelope_1.width",             "560"                   },
   { "background.envelope_1.height",            "560"                   },
   { "background.envelope_1.anim_mode",         "default"               },
   { "background.envelope_1.draw_masked",       "false"                 },
-  { "background.envelope_2",                   "RocksScreen.pcx"       },
+  { "background.envelope_2",                   "RocksScreen.png"       },
   { "background.envelope_2.x",                 "0"                     },
   { "background.envelope_2.y",                 "0"                     },
   { "background.envelope_2.width",             "560"                   },
   { "background.envelope_2.height",            "560"                   },
   { "background.envelope_2.anim_mode",         "default"               },
   { "background.envelope_2.draw_masked",       "false"                 },
-  { "background.envelope_3",                   "RocksScreen.pcx"       },
+  { "background.envelope_3",                   "RocksScreen.png"       },
   { "background.envelope_3.x",                 "0"                     },
   { "background.envelope_3.y",                 "0"                     },
   { "background.envelope_3.width",             "560"                   },
   { "background.envelope_3.height",            "560"                   },
   { "background.envelope_3.anim_mode",         "default"               },
   { "background.envelope_3.draw_masked",       "false"                 },
-  { "background.envelope_4",                   "RocksScreen.pcx"       },
+  { "background.envelope_4",                   "RocksScreen.png"       },
   { "background.envelope_4.x",                 "0"                     },
   { "background.envelope_4.y",                 "0"                     },
   { "background.envelope_4.width",             "560"                   },
index 7c89bcaa34cdabccb90b8233c395a9d2d6daed96..658a93a91240e52f5c66e6a6c13469f53a7b0893 100644 (file)
 
 /* values for graphics configuration (group elements) */
 
-  { "group_1",                                 "RocksCE.pcx"           },
+  { "group_1",                                 "RocksCE.png"           },
   { "group_1.xpos",                            "0"                     },
   { "group_1.ypos",                            "16"                    },
   { "group_1.frames",                          "1"                     },
-  { "group_1.EDITOR",                          "RocksCE.pcx"           },
+  { "group_1.EDITOR",                          "RocksCE.png"           },
   { "group_1.EDITOR.xpos",                     "16"                    },
   { "group_1.EDITOR.ypos",                     "16"                    },
 
-  { "group_2",                                 "RocksCE.pcx"           },
+  { "group_2",                                 "RocksCE.png"           },
   { "group_2.xpos",                            "1"                     },
   { "group_2.ypos",                            "16"                    },
   { "group_2.frames",                          "1"                     },
-  { "group_2.EDITOR",                          "RocksCE.pcx"           },
+  { "group_2.EDITOR",                          "RocksCE.png"           },
   { "group_2.EDITOR.xpos",                     "17"                    },
   { "group_2.EDITOR.ypos",                     "16"                    },
 
-  { "group_3",                                 "RocksCE.pcx"           },
+  { "group_3",                                 "RocksCE.png"           },
   { "group_3.xpos",                            "2"                     },
   { "group_3.ypos",                            "16"                    },
   { "group_3.frames",                          "1"                     },
-  { "group_3.EDITOR",                          "RocksCE.pcx"           },
+  { "group_3.EDITOR",                          "RocksCE.png"           },
   { "group_3.EDITOR.xpos",                     "18"                    },
   { "group_3.EDITOR.ypos",                     "16"                    },
 
-  { "group_4",                                 "RocksCE.pcx"           },
+  { "group_4",                                 "RocksCE.png"           },
   { "group_4.xpos",                            "3"                     },
   { "group_4.ypos",                            "16"                    },
   { "group_4.frames",                          "1"                     },
-  { "group_4.EDITOR",                          "RocksCE.pcx"           },
+  { "group_4.EDITOR",                          "RocksCE.png"           },
   { "group_4.EDITOR.xpos",                     "19"                    },
   { "group_4.EDITOR.ypos",                     "16"                    },
 
-  { "group_5",                                 "RocksCE.pcx"           },
+  { "group_5",                                 "RocksCE.png"           },
   { "group_5.xpos",                            "4"                     },
   { "group_5.ypos",                            "16"                    },
   { "group_5.frames",                          "1"                     },
-  { "group_5.EDITOR",                          "RocksCE.pcx"           },
+  { "group_5.EDITOR",                          "RocksCE.png"           },
   { "group_5.EDITOR.xpos",                     "20"                    },
   { "group_5.EDITOR.ypos",                     "16"                    },
 
-  { "group_6",                                 "RocksCE.pcx"           },
+  { "group_6",                                 "RocksCE.png"           },
   { "group_6.xpos",                            "5"                     },
   { "group_6.ypos",                            "16"                    },
   { "group_6.frames",                          "1"                     },
-  { "group_6.EDITOR",                          "RocksCE.pcx"           },
+  { "group_6.EDITOR",                          "RocksCE.png"           },
   { "group_6.EDITOR.xpos",                     "21"                    },
   { "group_6.EDITOR.ypos",                     "16"                    },
 
-  { "group_7",                                 "RocksCE.pcx"           },
+  { "group_7",                                 "RocksCE.png"           },
   { "group_7.xpos",                            "6"                     },
   { "group_7.ypos",                            "16"                    },
   { "group_7.frames",                          "1"                     },
-  { "group_7.EDITOR",                          "RocksCE.pcx"           },
+  { "group_7.EDITOR",                          "RocksCE.png"           },
   { "group_7.EDITOR.xpos",                     "22"                    },
   { "group_7.EDITOR.ypos",                     "16"                    },
 
-  { "group_8",                                 "RocksCE.pcx"           },
+  { "group_8",                                 "RocksCE.png"           },
   { "group_8.xpos",                            "7"                     },
   { "group_8.ypos",                            "16"                    },
   { "group_8.frames",                          "1"                     },
-  { "group_8.EDITOR",                          "RocksCE.pcx"           },
+  { "group_8.EDITOR",                          "RocksCE.png"           },
   { "group_8.EDITOR.xpos",                     "23"                    },
   { "group_8.EDITOR.ypos",                     "16"                    },
 
-  { "group_9",                                 "RocksCE.pcx"           },
+  { "group_9",                                 "RocksCE.png"           },
   { "group_9.xpos",                            "8"                     },
   { "group_9.ypos",                            "16"                    },
   { "group_9.frames",                          "1"                     },
-  { "group_9.EDITOR",                          "RocksCE.pcx"           },
+  { "group_9.EDITOR",                          "RocksCE.png"           },
   { "group_9.EDITOR.xpos",                     "24"                    },
   { "group_9.EDITOR.ypos",                     "16"                    },
 
-  { "group_10",                                        "RocksCE.pcx"           },
+  { "group_10",                                        "RocksCE.png"           },
   { "group_10.xpos",                           "9"                     },
   { "group_10.ypos",                           "16"                    },
   { "group_10.frames",                         "1"                     },
-  { "group_10.EDITOR",                         "RocksCE.pcx"           },
+  { "group_10.EDITOR",                         "RocksCE.png"           },
   { "group_10.EDITOR.xpos",                    "25"                    },
   { "group_10.EDITOR.ypos",                    "16"                    },
 
-  { "group_11",                                        "RocksCE.pcx"           },
+  { "group_11",                                        "RocksCE.png"           },
   { "group_11.xpos",                           "10"                    },
   { "group_11.ypos",                           "16"                    },
   { "group_11.frames",                         "1"                     },
-  { "group_11.EDITOR",                         "RocksCE.pcx"           },
+  { "group_11.EDITOR",                         "RocksCE.png"           },
   { "group_11.EDITOR.xpos",                    "26"                    },
   { "group_11.EDITOR.ypos",                    "16"                    },
 
-  { "group_12",                                        "RocksCE.pcx"           },
+  { "group_12",                                        "RocksCE.png"           },
   { "group_12.xpos",                           "11"                    },
   { "group_12.ypos",                           "16"                    },
   { "group_12.frames",                         "1"                     },
-  { "group_12.EDITOR",                         "RocksCE.pcx"           },
+  { "group_12.EDITOR",                         "RocksCE.png"           },
   { "group_12.EDITOR.xpos",                    "27"                    },
   { "group_12.EDITOR.ypos",                    "16"                    },
 
-  { "group_13",                                        "RocksCE.pcx"           },
+  { "group_13",                                        "RocksCE.png"           },
   { "group_13.xpos",                           "12"                    },
   { "group_13.ypos",                           "16"                    },
   { "group_13.frames",                         "1"                     },
-  { "group_13.EDITOR",                         "RocksCE.pcx"           },
+  { "group_13.EDITOR",                         "RocksCE.png"           },
   { "group_13.EDITOR.xpos",                    "28"                    },
   { "group_13.EDITOR.ypos",                    "16"                    },
 
-  { "group_14",                                        "RocksCE.pcx"           },
+  { "group_14",                                        "RocksCE.png"           },
   { "group_14.xpos",                           "13"                    },
   { "group_14.ypos",                           "16"                    },
   { "group_14.frames",                         "1"                     },
-  { "group_14.EDITOR",                         "RocksCE.pcx"           },
+  { "group_14.EDITOR",                         "RocksCE.png"           },
   { "group_14.EDITOR.xpos",                    "29"                    },
   { "group_14.EDITOR.ypos",                    "16"                    },
 
-  { "group_15",                                        "RocksCE.pcx"           },
+  { "group_15",                                        "RocksCE.png"           },
   { "group_15.xpos",                           "14"                    },
   { "group_15.ypos",                           "16"                    },
   { "group_15.frames",                         "1"                     },
-  { "group_15.EDITOR",                         "RocksCE.pcx"           },
+  { "group_15.EDITOR",                         "RocksCE.png"           },
   { "group_15.EDITOR.xpos",                    "30"                    },
   { "group_15.EDITOR.ypos",                    "16"                    },
 
-  { "group_16",                                        "RocksCE.pcx"           },
+  { "group_16",                                        "RocksCE.png"           },
   { "group_16.xpos",                           "15"                    },
   { "group_16.ypos",                           "16"                    },
   { "group_16.frames",                         "1"                     },
-  { "group_16.EDITOR",                         "RocksCE.pcx"           },
+  { "group_16.EDITOR",                         "RocksCE.png"           },
   { "group_16.EDITOR.xpos",                    "31"                    },
   { "group_16.EDITOR.ypos",                    "16"                    },
 
-  { "group_17",                                        "RocksCE.pcx"           },
+  { "group_17",                                        "RocksCE.png"           },
   { "group_17.xpos",                           "0"                     },
   { "group_17.ypos",                           "17"                    },
   { "group_17.frames",                         "1"                     },
-  { "group_17.EDITOR",                         "RocksCE.pcx"           },
+  { "group_17.EDITOR",                         "RocksCE.png"           },
   { "group_17.EDITOR.xpos",                    "16"                    },
   { "group_17.EDITOR.ypos",                    "17"                    },
 
-  { "group_18",                                        "RocksCE.pcx"           },
+  { "group_18",                                        "RocksCE.png"           },
   { "group_18.xpos",                           "1"                     },
   { "group_18.ypos",                           "17"                    },
   { "group_18.frames",                         "1"                     },
-  { "group_18.EDITOR",                         "RocksCE.pcx"           },
+  { "group_18.EDITOR",                         "RocksCE.png"           },
   { "group_18.EDITOR.xpos",                    "17"                    },
   { "group_18.EDITOR.ypos",                    "17"                    },
 
-  { "group_19",                                        "RocksCE.pcx"           },
+  { "group_19",                                        "RocksCE.png"           },
   { "group_19.xpos",                           "2"                     },
   { "group_19.ypos",                           "17"                    },
   { "group_19.frames",                         "1"                     },
-  { "group_19.EDITOR",                         "RocksCE.pcx"           },
+  { "group_19.EDITOR",                         "RocksCE.png"           },
   { "group_19.EDITOR.xpos",                    "18"                    },
   { "group_19.EDITOR.ypos",                    "17"                    },
 
-  { "group_20",                                        "RocksCE.pcx"           },
+  { "group_20",                                        "RocksCE.png"           },
   { "group_20.xpos",                           "3"                     },
   { "group_20.ypos",                           "17"                    },
   { "group_20.frames",                         "1"                     },
-  { "group_20.EDITOR",                         "RocksCE.pcx"           },
+  { "group_20.EDITOR",                         "RocksCE.png"           },
   { "group_20.EDITOR.xpos",                    "19"                    },
   { "group_20.EDITOR.ypos",                    "17"                    },
 
-  { "group_21",                                        "RocksCE.pcx"           },
+  { "group_21",                                        "RocksCE.png"           },
   { "group_21.xpos",                           "4"                     },
   { "group_21.ypos",                           "17"                    },
   { "group_21.frames",                         "1"                     },
-  { "group_21.EDITOR",                         "RocksCE.pcx"           },
+  { "group_21.EDITOR",                         "RocksCE.png"           },
   { "group_21.EDITOR.xpos",                    "20"                    },
   { "group_21.EDITOR.ypos",                    "17"                    },
 
-  { "group_22",                                        "RocksCE.pcx"           },
+  { "group_22",                                        "RocksCE.png"           },
   { "group_22.xpos",                           "5"                     },
   { "group_22.ypos",                           "17"                    },
   { "group_22.frames",                         "1"                     },
-  { "group_22.EDITOR",                         "RocksCE.pcx"           },
+  { "group_22.EDITOR",                         "RocksCE.png"           },
   { "group_22.EDITOR.xpos",                    "21"                    },
   { "group_22.EDITOR.ypos",                    "17"                    },
 
-  { "group_23",                                        "RocksCE.pcx"           },
+  { "group_23",                                        "RocksCE.png"           },
   { "group_23.xpos",                           "6"                     },
   { "group_23.ypos",                           "17"                    },
   { "group_23.frames",                         "1"                     },
-  { "group_23.EDITOR",                         "RocksCE.pcx"           },
+  { "group_23.EDITOR",                         "RocksCE.png"           },
   { "group_23.EDITOR.xpos",                    "22"                    },
   { "group_23.EDITOR.ypos",                    "17"                    },
 
-  { "group_24",                                        "RocksCE.pcx"           },
+  { "group_24",                                        "RocksCE.png"           },
   { "group_24.xpos",                           "7"                     },
   { "group_24.ypos",                           "17"                    },
   { "group_24.frames",                         "1"                     },
-  { "group_24.EDITOR",                         "RocksCE.pcx"           },
+  { "group_24.EDITOR",                         "RocksCE.png"           },
   { "group_24.EDITOR.xpos",                    "23"                    },
   { "group_24.EDITOR.ypos",                    "17"                    },
 
-  { "group_25",                                        "RocksCE.pcx"           },
+  { "group_25",                                        "RocksCE.png"           },
   { "group_25.xpos",                           "8"                     },
   { "group_25.ypos",                           "17"                    },
   { "group_25.frames",                         "1"                     },
-  { "group_25.EDITOR",                         "RocksCE.pcx"           },
+  { "group_25.EDITOR",                         "RocksCE.png"           },
   { "group_25.EDITOR.xpos",                    "24"                    },
   { "group_25.EDITOR.ypos",                    "17"                    },
 
-  { "group_26",                                        "RocksCE.pcx"           },
+  { "group_26",                                        "RocksCE.png"           },
   { "group_26.xpos",                           "9"                     },
   { "group_26.ypos",                           "17"                    },
   { "group_26.frames",                         "1"                     },
-  { "group_26.EDITOR",                         "RocksCE.pcx"           },
+  { "group_26.EDITOR",                         "RocksCE.png"           },
   { "group_26.EDITOR.xpos",                    "25"                    },
   { "group_26.EDITOR.ypos",                    "17"                    },
 
-  { "group_27",                                        "RocksCE.pcx"           },
+  { "group_27",                                        "RocksCE.png"           },
   { "group_27.xpos",                           "10"                    },
   { "group_27.ypos",                           "17"                    },
   { "group_27.frames",                         "1"                     },
-  { "group_27.EDITOR",                         "RocksCE.pcx"           },
+  { "group_27.EDITOR",                         "RocksCE.png"           },
   { "group_27.EDITOR.xpos",                    "26"                    },
   { "group_27.EDITOR.ypos",                    "17"                    },
 
-  { "group_28",                                        "RocksCE.pcx"           },
+  { "group_28",                                        "RocksCE.png"           },
   { "group_28.xpos",                           "11"                    },
   { "group_28.ypos",                           "17"                    },
   { "group_28.frames",                         "1"                     },
-  { "group_28.EDITOR",                         "RocksCE.pcx"           },
+  { "group_28.EDITOR",                         "RocksCE.png"           },
   { "group_28.EDITOR.xpos",                    "27"                    },
   { "group_28.EDITOR.ypos",                    "17"                    },
 
-  { "group_29",                                        "RocksCE.pcx"           },
+  { "group_29",                                        "RocksCE.png"           },
   { "group_29.xpos",                           "12"                    },
   { "group_29.ypos",                           "17"                    },
   { "group_29.frames",                         "1"                     },
-  { "group_29.EDITOR",                         "RocksCE.pcx"           },
+  { "group_29.EDITOR",                         "RocksCE.png"           },
   { "group_29.EDITOR.xpos",                    "28"                    },
   { "group_29.EDITOR.ypos",                    "17"                    },
 
-  { "group_30",                                        "RocksCE.pcx"           },
+  { "group_30",                                        "RocksCE.png"           },
   { "group_30.xpos",                           "13"                    },
   { "group_30.ypos",                           "17"                    },
   { "group_30.frames",                         "1"                     },
-  { "group_30.EDITOR",                         "RocksCE.pcx"           },
+  { "group_30.EDITOR",                         "RocksCE.png"           },
   { "group_30.EDITOR.xpos",                    "29"                    },
   { "group_30.EDITOR.ypos",                    "17"                    },
 
-  { "group_31",                                        "RocksCE.pcx"           },
+  { "group_31",                                        "RocksCE.png"           },
   { "group_31.xpos",                           "14"                    },
   { "group_31.ypos",                           "17"                    },
   { "group_31.frames",                         "1"                     },
-  { "group_31.EDITOR",                         "RocksCE.pcx"           },
+  { "group_31.EDITOR",                         "RocksCE.png"           },
   { "group_31.EDITOR.xpos",                    "30"                    },
   { "group_31.EDITOR.ypos",                    "17"                    },
 
-  { "group_32",                                        "RocksCE.pcx"           },
+  { "group_32",                                        "RocksCE.png"           },
   { "group_32.xpos",                           "15"                    },
   { "group_32.ypos",                           "17"                    },
   { "group_32.frames",                         "1"                     },
-  { "group_32.EDITOR",                         "RocksCE.pcx"           },
+  { "group_32.EDITOR",                         "RocksCE.png"           },
   { "group_32.EDITOR.xpos",                    "31"                    },
   { "group_32.EDITOR.ypos",                    "17"                    },
 
index 17c014948843490bc668e79b1a54126d8928c723..22aa5b68d40be22453c9538170b15b5a7b381b86 100644 (file)
@@ -1 +1 @@
-#define COMPILE_DATE_STRING "2013-12-11 11:28"
+#define COMPILE_DATE_STRING "2013-12-11 23:41"
index 8f595ecef284cc199912d6f8023f015912a1fc13..4c9ecc8b569b0629a879f0e41746c163f299d343 100644 (file)
@@ -152,13 +152,6 @@ void EventLoop(void)
       {
        switch (event.type)
        {
-#if defined(PLATFORM_ANDROID)
-         // !!! TEST ONLY !!!
-         case SDL_QUIT:
-         case SDL_FINGERDOWN:
-           CloseAllAndExit(0);
-#endif
-
          case EVENT_BUTTONPRESS:
          case EVENT_BUTTONRELEASE:
            HandleButtonEvent((ButtonEvent *) &event);
@@ -167,7 +160,15 @@ void EventLoop(void)
          case EVENT_MOTIONNOTIFY:
            HandleMotionEvent((MotionEvent *) &event);
            break;
-  
+
+#if defined(TARGET_SDL2)
+         case EVENT_FINGERPRESS:
+         case EVENT_FINGERRELEASE:
+         case EVENT_FINGERMOTION:
+           HandleFingerEvent((FingerEvent *) &event);
+           break;
+#endif
+
          case EVENT_KEYPRESS:
          case EVENT_KEYRELEASE:
            HandleKeyEvent((KeyEvent *) &event);
@@ -384,6 +385,33 @@ void HandleMotionEvent(MotionEvent *event)
   HandleButton(event->x, event->y, button_status, button_status);
 }
 
+#if defined(TARGET_SDL2)
+void HandleFingerEvent(FingerEvent *event)
+{
+  // #if DEBUG_EVENTS
+  Error(ERR_DEBUG, "FINGER EVENT: finger was %s, touch ID %lld, finger ID %lld, x/y %f/%f, dx/dy %f/%f, pressure %f",
+       (event->type == EVENT_FINGERPRESS ? "pressed" :
+        event->type == EVENT_FINGERRELEASE ? "released" : "moved"),
+       event->touchId,
+       event->fingerId,
+       event->x, event->y,
+       event->dx, event->dy,
+       event->pressure);
+  // #endif
+
+#if 1
+  CloseAllAndExit(0);
+#else
+  if (event->type == EVENT_FINGERPRESS)
+    button_status = event->button;
+  else
+    button_status = MB_RELEASED;
+
+  HandleButton(event->x, event->y, button_status, event->button);
+#endif
+}
+#endif
+
 void HandleKeyEvent(KeyEvent *event)
 {
   int key_status = (event->type==EVENT_KEYPRESS ? KEY_PRESSED : KEY_RELEASED);
index 5cff318374ae1d894946624431e9197ce0da17ae..02ad166069b583bc18251b93031531434b2e0626 100644 (file)
@@ -31,6 +31,9 @@ void SleepWhileUnmapped(void);
 void HandleExposeEvent(ExposeEvent *);
 void HandleButtonEvent(ButtonEvent *);
 void HandleMotionEvent(MotionEvent *);
+#if defined(TARGET_SDL2)
+void HandleFingerEvent(FingerEvent *);
+#endif
 void HandleKeyEvent(KeyEvent *);
 void HandleFocusEvent(FocusChangeEvent *);
 void HandleClientMessageEvent(ClientMessageEvent *);
index c0395762ae63fd5312ad1fdc3e3223a59f3ab84d..aa30167af3c2eb52e07aa3426de1ff5fc9d34703 100644 (file)
@@ -1127,7 +1127,6 @@ static int get_graphic_parameter_value(char *value_raw, char *suffix, int type)
   if (strEqual(value_raw, ARG_UNDEFINED))
     return ARG_UNDEFINED_VALUE;
 
-#if 1
   if (type == TYPE_ELEMENT)
   {
     char *value = getHashEntry(element_token_hash, value_raw);
@@ -1141,36 +1140,6 @@ static int get_graphic_parameter_value(char *value_raw, char *suffix, int type)
     return (value != NULL ? atoi(value) : IMG_UNDEFINED);
   }
 
-#else
-
-  int i;
-  int x = 0;
-
-  /* !!! THIS IS BUGGY !!! NOT SURE IF YOU GET ELEMENT ID OR GRAPHIC ID !!! */
-  /* !!! (possible reason why ".clone_from" with elements doesn't work) !!! */
-
-  /* !!! OPTIMIZE THIS BY USING HASH !!! */
-  for (i = 0; i < MAX_NUM_ELEMENTS; i++)
-    if (strEqual(element_info[i].token_name, value_raw))
-      return i;
-
-  /* !!! OPTIMIZE THIS BY USING HASH !!! */
-  for (i = 0; image_config[i].token != NULL; i++)
-  {
-    int len_config_value = strlen(image_config[i].value);
-
-    if (!strEqual(&image_config[i].value[len_config_value - 4], ".pcx") &&
-       !strEqual(&image_config[i].value[len_config_value - 4], ".wav") &&
-       !strEqual(image_config[i].value, UNDEFINED_FILENAME))
-      continue;
-
-    if (strEqual(image_config[i].token, value_raw))
-      return x;
-
-    x++;
-  }
-#endif
-
   return -1;
 }
 
@@ -4990,7 +4959,8 @@ static void InitGlobal()
   /* create hash from graphic token list */
   graphic_token_hash = newSetupFileHash();
   for (graphic = 0, i = 0; image_config[i].token != NULL; i++)
-    if (strSuffix(image_config[i].value, ".pcx") ||
+    if (strSuffix(image_config[i].value, ".png") ||
+       strSuffix(image_config[i].value, ".pcx") ||
        strSuffix(image_config[i].value, ".wav") ||
        strEqual(image_config[i].value, UNDEFINED_FILENAME))
       setHashEntry(graphic_token_hash,
index 9d76865e2666653edabab39f07f4810307260666..50dce1d713b0df9c49b12be304610cf013adecdb 100644 (file)
@@ -832,7 +832,11 @@ typedef struct ImageInfo ImageInfo;
 
 static struct ArtworkListInfo *image_info = NULL;
 
+#if 1
+static void *Load_Image(char *filename)
+#else
 static void *Load_PCX(char *filename)
+#endif
 {
   ImageInfo *img_info;
 
@@ -1030,7 +1034,11 @@ void InitImageList(struct ConfigInfo *config_list, int num_file_list_entries,
 
   /* ---------- initialize artwork loading/freeing functions ---------- */
 
+#if 1
+  image_info->load_artwork = Load_Image;
+#else
   image_info->load_artwork = Load_PCX;
+#endif
   image_info->free_artwork = FreeImage;
 }
 
index 37aacf9187da13d46839f82cae07b629e357ac7e..81ec00e7a1cc2245f1dd573d100a3c6e38296f48 100644 (file)
@@ -1047,8 +1047,11 @@ void Error(int mode, char *format, ...)
   char *process_name = "";
 
 #if defined(PLATFORM_ANDROID)
-  android_log_prio = (mode & ERR_WARN ? ANDROID_LOG_WARN :
-                     mode & ERR_EXIT ? ANDROID_LOG_FATAL : ANDROID_LOG_INFO);
+  android_log_prio = (mode & ERR_DEBUG ? ANDROID_LOG_DEBUG :
+                     mode & ERR_INFO ? ANDROID_LOG_INFO :
+                     mode & ERR_WARN ? ANDROID_LOG_WARN :
+                     mode & ERR_EXIT ? ANDROID_LOG_FATAL :
+                     ANDROID_LOG_UNKNOWN);
 #endif
 
 #if 1
@@ -2206,20 +2209,31 @@ boolean fileHasSuffix(char *basename, char *suffix)
 
 boolean FileIsGraphic(char *filename)
 {
+#if 1
+  return TRUE;
+#else
   char *basename = getBaseNamePtr(filename);
 
   return fileHasSuffix(basename, "pcx");
+#endif
 }
 
 boolean FileIsSound(char *filename)
 {
+#if 1
+  return TRUE;
+#else
   char *basename = getBaseNamePtr(filename);
 
   return fileHasSuffix(basename, "wav");
+#endif
 }
 
 boolean FileIsMusic(char *filename)
 {
+#if 1
+  return TRUE;
+#else
   char *basename = getBaseNamePtr(filename);
 
   if (FileIsSound(basename))
@@ -2239,6 +2253,7 @@ boolean FileIsMusic(char *filename)
 #endif
 
   return FALSE;
+#endif
 }
 
 boolean FileIsArtworkType(char *basename, int type)
@@ -2496,10 +2511,13 @@ struct FileInfo *getFileListFromConfigList(struct ConfigInfo *config_list,
   }
 
   list_pos = 0;
+
   for (i = 0; config_list[i].token != NULL; i++)
   {
     int len_config_token = strlen(config_list[i].token);
+#if 0
     int len_config_value = strlen(config_list[i].value);
+#endif
     boolean is_file_entry = TRUE;
 
     for (j = 0; suffix_list[j].token != NULL; j++)
@@ -2514,6 +2532,7 @@ struct FileInfo *getFileListFromConfigList(struct ConfigInfo *config_list,
                  config_list[i].value);
 
        is_file_entry = FALSE;
+
        break;
       }
     }
@@ -2531,6 +2550,7 @@ struct FileInfo *getFileListFromConfigList(struct ConfigInfo *config_list,
       if (list_pos >= num_file_list_entries)
        break;
 
+#if 0
       /* simple sanity check if this is really a file definition */
       if (!strEqual(&config_list[i].value[len_config_value - 4], ".pcx") &&
          !strEqual(&config_list[i].value[len_config_value - 4], ".wav") &&
@@ -2540,6 +2560,7 @@ struct FileInfo *getFileListFromConfigList(struct ConfigInfo *config_list,
              config_list[i].token, config_list[i].value);
        Error(ERR_EXIT, "This seems to be no valid definition -- please fix");
       }
+#endif
 
       file_list[list_pos].token = config_list[i].token;
       file_list[list_pos].default_filename = config_list[i].value;
@@ -3524,7 +3545,7 @@ void debug_print_timestamp(int counter_nr, char *message)
 
   if (message)
 #if 1
-    Error(ERR_INFO, "%s%s%s %.3f %s",
+    Error(ERR_DEBUG, "%s%s%s %.3f %s",
 #else
     printf("%s%s%s %.3f %s\n",
 #endif
index 4f3c3481c099c7f71d3b8c97ae037a48028968c9..582a6255f9ee4d2ad67a445e87f3956442409253 100644 (file)
 #define GetSimpleRandom(max)           get_random_number(RANDOM_SIMPLE, max)
 
 /* values for Error() */
-#define ERR_INFO                       0
-#define ERR_INFO_LINE                  (1 << 0)
-#define ERR_WARN                       (1 << 1)
-#define ERR_EXIT                       (1 << 2)
-#define ERR_HELP                       (1 << 3)
-#define ERR_SOUND_SERVER               (1 << 4)
-#define ERR_NETWORK_SERVER             (1 << 5)
-#define ERR_NETWORK_CLIENT             (1 << 6)
+#define ERR_UNKNOWN                    0
+#define ERR_DEBUG                      (1 << 0)
+#define ERR_INFO                       (1 << 1)
+#define ERR_INFO_LINE                  (1 << 2)
+#define ERR_WARN                       (1 << 3)
+#define ERR_EXIT                       (1 << 4)
+#define ERR_HELP                       (1 << 5)
+#define ERR_SOUND_SERVER               (1 << 6)
+#define ERR_NETWORK_SERVER             (1 << 7)
+#define ERR_NETWORK_CLIENT             (1 << 8)
 #define ERR_FROM_SERVER                        (ERR_SOUND_SERVER | ERR_NETWORK_SERVER)
 #define ERR_EXIT_HELP                  (ERR_EXIT | ERR_HELP)
 #define ERR_EXIT_SOUND_SERVER          (ERR_EXIT | ERR_SOUND_SERVER)
 #define ERR_EXIT_NETWORK_SERVER                (ERR_EXIT | ERR_NETWORK_SERVER)
 #define ERR_EXIT_NETWORK_CLIENT                (ERR_EXIT | ERR_NETWORK_CLIENT)
+#if 0
+#define ERR_ERROR                      (ERR_UNKNOWN)
+#define ERR_FATAL                      (ERR_EXIT)
+#define ERR_VERBOSE                    (ERR_INFO)
+#endif
 
 /* values for getFile...() and putFile...() */
 #define BYTE_ORDER_BIG_ENDIAN          0
index 65057b61ba0cd221c273ab4283ed6110ef6eb696..c7a2b1171561546dd2a9c5f4739283627dd48196 100644 (file)
@@ -26,8 +26,8 @@
 
 /* SDL internal variables */
 #if defined(TARGET_SDL2)
-// static SDL_Window *sdl_window = NULL;
-SDL_Window *sdl_window = NULL;
+static SDL_Window *sdl_window = NULL;
+// SDL_Window *sdl_window = NULL;
 // static SDL_Renderer *sdl_renderer = NULL;
 #endif
 
@@ -244,13 +244,20 @@ void SDLInitVideoBuffer(DrawBuffer **backbuffer, DrawWindow **window,
     }
   }
 
+#if 0
   /* set window icon */
   SDLSetWindowIcon(program.sdl_icon_filename);
+#endif
 
   /* open SDL video output device (window or fullscreen mode) */
   if (!SDLSetVideoMode(backbuffer, fullscreen))
     Error(ERR_EXIT, "setting video mode failed");
 
+#if 1
+  /* set window icon */
+  SDLSetWindowIcon(program.sdl_icon_filename);
+#endif
+
   /* set window and icon title */
 #if defined(TARGET_SDL2)
   SDL_SetWindowTitle(sdl_window, program.window_title);
@@ -470,7 +477,10 @@ void SDLCopyArea(Bitmap *src_bitmap, Bitmap *dst_bitmap,
 
 #if defined(TARGET_SDL2)
   if (dst_bitmap == window)
-    SDL_UpdateWindowSurface(sdl_window);
+  {
+    // SDL_UpdateWindowSurface(sdl_window);
+    SDL_UpdateWindowSurfaceRects(sdl_window, &dst_rect, 1);
+  }
 #else
   if (dst_bitmap == window)
     SDL_UpdateRect(backbuffer->surface, dst_x, dst_y, width, height);
@@ -498,7 +508,10 @@ void SDLFillRectangle(Bitmap *dst_bitmap, int x, int y, int width, int height,
 
 #if defined(TARGET_SDL2)
   if (dst_bitmap == window)
-    SDL_UpdateWindowSurface(sdl_window);
+  {
+    // SDL_UpdateWindowSurface(sdl_window);
+    SDL_UpdateWindowSurfaceRects(sdl_window, &rect, 1);
+  }
 #else
   if (dst_bitmap == window)
     SDL_UpdateRect(backbuffer->surface, x, y, width, height);
@@ -516,6 +529,9 @@ void SDLFadeRectangle(Bitmap *bitmap_cross, int x, int y, int width, int height,
   SDL_Surface *surface_screen = backbuffer->surface;
   SDL_Surface *surface_cross = (bitmap_cross ? bitmap_cross->surface : NULL);
   SDL_Rect src_rect, dst_rect;
+#if defined(TARGET_SDL2)
+  SDL_Rect dst_rect2;
+#endif
   int src_x = x, src_y = y;
   int dst_x = x, dst_y = y;
   unsigned int time_last, time_current;
@@ -544,6 +560,10 @@ void SDLFadeRectangle(Bitmap *bitmap_cross, int x, int y, int width, int height,
   dst_rect.w = width;          /* (ignored) */
   dst_rect.h = height;         /* (ignored) */
 
+#if defined(TARGET_SDL2)
+  dst_rect2 = dst_rect;
+#endif
+
   if (initialization_needed)
   {
 #if defined(TARGET_SDL2)
@@ -739,7 +759,8 @@ void SDLFadeRectangle(Bitmap *bitmap_cross, int x, int y, int width, int height,
          draw_border_function();
 
 #if defined(TARGET_SDL2)
-       SDL_UpdateWindowSurface(sdl_window);
+       // SDL_UpdateWindowSurface(sdl_window);
+       SDL_UpdateWindowSurfaceRects(sdl_window, &dst_rect2, 1);
 #else
        SDL_UpdateRect(surface_screen, dst_x, dst_y, width, height);
 #endif
@@ -776,7 +797,8 @@ void SDLFadeRectangle(Bitmap *bitmap_cross, int x, int y, int width, int height,
 #if 1
       /* only update the region of the screen that is affected from fading */
 #if defined(TARGET_SDL2)
-      SDL_UpdateWindowSurface(sdl_window);
+      // SDL_UpdateWindowSurface(sdl_window);
+      SDL_UpdateWindowSurfaceRects(sdl_window, &dst_rect, 1);
 #else
       SDL_UpdateRect(surface_screen, dst_x, dst_y, width, height);
 #endif
index 71e68331411ba8749ae8b9ee2f5d32558930bd2f..5cc375c8e134aa3ca48ea6a434b43cf9818a8213 100644 (file)
@@ -71,6 +71,9 @@ typedef unsigned int          KeyMod;
 typedef SDL_Event              Event;
 typedef SDL_MouseButtonEvent   ButtonEvent;
 typedef SDL_MouseMotionEvent   MotionEvent;
+#if defined(TARGET_SDL2)
+typedef SDL_TouchFingerEvent   FingerEvent;
+#endif
 typedef SDL_KeyboardEvent      KeyEvent;
 typedef SDL_Event              ExposeEvent;
 typedef SDL_Event              FocusChangeEvent;
@@ -116,6 +119,11 @@ struct MouseCursorInfo
 #define EVENT_BUTTONPRESS      SDL_MOUSEBUTTONDOWN
 #define EVENT_BUTTONRELEASE    SDL_MOUSEBUTTONUP
 #define EVENT_MOTIONNOTIFY     SDL_MOUSEMOTION
+#if defined(TARGET_SDL2)
+#define        EVENT_FINGERPRESS       SDL_FINGERDOWN
+#define EVENT_FINGERRELEASE    SDL_FINGERUP
+#define EVENT_FINGERMOTION     SDL_FINGERMOTION
+#endif
 #define EVENT_KEYPRESS         SDL_KEYDOWN
 #define EVENT_KEYRELEASE       SDL_KEYUP
 #define EVENT_EXPOSE           SDL_USEREVENT + 0
index f7cd1400171ee608cab6bccbc708ddbcc3dff132..610660765a4c8eefe6d3e996a5b7182c3926bb62 100644 (file)
@@ -4002,14 +4002,23 @@ void LoadArtworkInfoFromLevelInfo(ArtworkDirTree **artwork_node,
 
 void LoadLevelArtworkInfo()
 {
+  print_timestamp_init("LoadLevelArtworkInfo");
+
   DrawInitText("Looking for custom level artwork", 120, FC_GREEN);
 
+  print_timestamp_time("DrawTimeText");
+
   LoadArtworkInfoFromLevelInfo(&artwork.gfx_first, leveldir_first_all);
+  print_timestamp_time("LoadArtworkInfoFromLevelInfo (gfx)");
   LoadArtworkInfoFromLevelInfo(&artwork.snd_first, leveldir_first_all);
+  print_timestamp_time("LoadArtworkInfoFromLevelInfo (snd)");
   LoadArtworkInfoFromLevelInfo(&artwork.mus_first, leveldir_first_all);
+  print_timestamp_time("LoadArtworkInfoFromLevelInfo (mus)");
 
   SaveArtworkInfoCache();
 
+  print_timestamp_time("SaveArtworkInfoCache");
+
   /* needed for reloading level artwork not known at ealier stage */
 
   if (!strEqual(artwork.gfx_current_identifier, setup.graphics_set))
@@ -4045,15 +4054,21 @@ void LoadLevelArtworkInfo()
       artwork.mus_current = getFirstValidTreeInfoEntry(artwork.mus_first);
   }
 
+  print_timestamp_time("getTreeInfoFromIdentifier");
+
   sortTreeInfo(&artwork.gfx_first);
   sortTreeInfo(&artwork.snd_first);
   sortTreeInfo(&artwork.mus_first);
 
+  print_timestamp_time("sortTreeInfo");
+
 #if 0
   dumpTreeInfo(artwork.gfx_first, 0);
   dumpTreeInfo(artwork.snd_first, 0);
   dumpTreeInfo(artwork.mus_first, 0);
 #endif
+
+  print_timestamp_done("LoadLevelArtworkInfo");
 }
 
 static void SaveUserLevelInfo()
index fed5e3e9a2a3dd8546d0daa75ab91edc9aa15c73..2712fa4c92970aefb7a98a5da4cd7071c5b4fad3 100644 (file)
@@ -1773,12 +1773,21 @@ static void *Load_MOD(char *filename)
 
 static void *Load_WAV_or_MOD(char *filename)
 {
+#if 1
+  if (FileIsMusic(filename))
+    return Load_MOD(filename);
+  else if (FileIsSound(filename))
+    return Load_WAV(filename);
+  else
+    return NULL;
+#else
   if (FileIsSound(filename))
     return Load_WAV(filename);
   else if (FileIsMusic(filename))
     return Load_MOD(filename);
   else
     return NULL;
+#endif
 }
 
 void LoadCustomMusic_NoConf(void)
index 4c43f02d29751da31bb018f64127d22b320e55e4..988a97fae17f47e8b2d44deafc2a1f68e7d58836 100644 (file)
@@ -706,14 +706,17 @@ void BlitBitmap(Bitmap *src_bitmap, Bitmap *dst_bitmap,
     height = dst_bitmap->height - dst_y;
 #endif
 
-#if 0
+#if 1
+  /* !!! 2013-12-11: An "old friend" is back. Same bug in SDL2 2.0.1 !!! */
+#if 1
   /* !!! 2009-03-30: Fixed by using self-compiled, patched SDL.dll !!! */
   /* (This bug still exists in the actual (as of 2009-06-15) version 1.2.13,
      but is already fixed in SVN and should therefore finally be fixed with
      the next official SDL release, which is probably version 1.2.14.) */
 #if 1
   /* !!! 2009-03-24: It seems that this problem still exists in 1.2.12 !!! */
-#if defined(TARGET_SDL) && defined(PLATFORM_WIN32)
+  //#if defined(TARGET_SDL) && defined(PLATFORM_WIN32)
+#if defined(TARGET_SDL2)
   if (src_bitmap == dst_bitmap)
   {
     /* !!! THIS IS A BUG (IN THE SDL LIBRARY?) AND SHOULD BE FIXED !!! */
@@ -758,6 +761,7 @@ void BlitBitmap(Bitmap *src_bitmap, Bitmap *dst_bitmap,
 #endif
 #endif
 #endif
+#endif
 
 #if 0
   if (dst_x < gfx.sx + gfx.sxsize)
index 5031d845f57d0f2e997b1d1e5d0ef882158c1fe9..9f02e0e6ccb9e4581eed7de6b0eefc61f31f8d18 100644 (file)
 
 #define X11_ICON_FILENAME              "rocks_icon.xbm"
 #define X11_ICONMASK_FILENAME          "rocks_iconmask.xbm"
-#define SDL_ICON_FILENAME              "rocks_icon_32x32.pcx"
+#define SDL_ICON_FILENAME              "RocksIcon32x32.png"
 #define MSDOS_POINTER_FILENAME         "mouse.pcx"
 
 /* file version numbers for resource files (levels, tapes, score, setup, etc.)