pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/games/supertux
Module Name: pkgsrc
Committed By: adam
Date: Tue Mar 31 10:47:13 UTC 2026
Modified Files:
pkgsrc/games/supertux: Makefile PLIST distinfo
pkgsrc/games/supertux/patches: patch-CMakeLists.txt
patch-src_audio_openal__sound__source.hpp
Added Files:
pkgsrc/games/supertux/patches: patch-mk_cmake_SuperTux_BuildCPack.cmake
patch-mk_cmake_SuperTux_BuildInstall.cmake
patch-src_supertux_error__handler.cpp
Removed Files:
pkgsrc/games/supertux/patches: patch-external_SDL__ttf_CMakeLists.txt
patch-external_partio__zip_zip__manager.hpp
patch-external_physfs_src_physfs__platform__unix.c
patch-external_squirrel_CMakeLists.txt
patch-external_tinygettext_CMakeLists.txt
patch-external_tinygettext_include_tinygettext_iconv.hpp
Log Message:
supertux: updated to 0.7.0
0.7.0
Here are some of the most notable changes since the previous release:
Brand new sprites and abilities for Tux: slope sliding, strong buttjumping, rock rolling, and crawling
Revamped graphics for most backgrounds, tiles, objects, and badguys
Complete level design + story rework of the Story Mode, Revenge in Redmond, and Bonus Island I
Not only new NPCs (e.g: Granito) and enemies (e.g: DiveMine, Fish, and Corrupted Granito), but also revamps for numerous enemies such as: GoldBomb, Igel, Ghoul, and both bosses (Yeti and Ghost Tree)
New music
Level editor revamp
Local multiplayer mode
New gameplay mechanics such as glinted enemies, keys, the item pocket, and unlockable bonus islands via Tux Dolls
Many internal improves and code refactoring, such as moving to SimpleSquirrel
Improvements to compilation/porting, including CMake refactor, Android revival, and Flatpak builds
To generate a diff of this commit:
cvs rdiff -u -r1.69 -r1.70 pkgsrc/games/supertux/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/games/supertux/PLIST
cvs rdiff -u -r1.10 -r1.11 pkgsrc/games/supertux/distinfo
cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/supertux/patches/patch-CMakeLists.txt \
pkgsrc/games/supertux/patches/patch-src_audio_openal__sound__source.hpp
cvs rdiff -u -r1.1 -r0 \
pkgsrc/games/supertux/patches/patch-external_SDL__ttf_CMakeLists.txt \
pkgsrc/games/supertux/patches/patch-external_partio__zip_zip__manager.hpp \
pkgsrc/games/supertux/patches/patch-external_physfs_src_physfs__platform__unix.c \
pkgsrc/games/supertux/patches/patch-external_tinygettext_CMakeLists.txt \
pkgsrc/games/supertux/patches/patch-external_tinygettext_include_tinygettext_iconv.hpp
cvs rdiff -u -r1.2 -r0 \
pkgsrc/games/supertux/patches/patch-external_squirrel_CMakeLists.txt
cvs rdiff -u -r0 -r1.1 \
pkgsrc/games/supertux/patches/patch-mk_cmake_SuperTux_BuildCPack.cmake \
pkgsrc/games/supertux/patches/patch-mk_cmake_SuperTux_BuildInstall.cmake \
pkgsrc/games/supertux/patches/patch-src_supertux_error__handler.cpp
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/games/supertux/Makefile
diff -u pkgsrc/games/supertux/Makefile:1.69 pkgsrc/games/supertux/Makefile:1.70
--- pkgsrc/games/supertux/Makefile:1.69 Fri Feb 6 10:04:53 2026
+++ pkgsrc/games/supertux/Makefile Tue Mar 31 10:47:12 2026
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.69 2026/02/06 10:04:53 wiz Exp $
+# $NetBSD: Makefile,v 1.70 2026/03/31 10:47:12 adam Exp $
-PKGNAME= supertux-0.6.3
-PKGREVISION= 22
+PKGNAME= supertux-0.7.0
DISTNAME= SuperTux-v${PKGVERSION_NOREV}-Source
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_GITHUB:=SuperTux/}
@@ -12,16 +11,19 @@ HOMEPAGE= https://www.supertux.org/
COMMENT= 2D jump and run game in the style of the Super Mario ones
LICENSE= gnu-gpl-v2
-USE_CXX_FEATURES= c++14
+USE_CXX_FEATURES= c++17
USE_LANGUAGES= c c++
USE_TOOLS+= pkg-config
+CMAKE_CONFIGURE_ARGS+= -DDISABLE_CPACK_BUNDLING=ON
CMAKE_CONFIGURE_ARGS+= -DINSTALL_SUBDIR_BIN=bin
-CMAKE_CONFIGURE_ARGS+= -DBUILD_SHARED_LIBS=OFF
-CMAKE_CONFIGURE_ARGS+= -DBoost_INCLUDE_DIR=${BUILDLINK_DIR}/include/boost
+CMAKE_CONFIGURE_ARGS+= -DSSQ_BUILD_INSTALL=OFF
+CMAKE_CONFIGURE_ARGS+= -DUSE_STATIC_SIMPLESQUIRREL=ON
+CMAKE_CONFIGURE_ARGS+= -DUSE_SYSTEM_SDL2_TTF=ON
# We already patch 'configure'...
CHECK_PORTABILITY_SKIP+= external/SDL_ttf/configure.in
+CHECK_PORTABILITY_SKIP+= mk/flatpak/gen_flatpaks.sh
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} != "Darwin"
@@ -36,11 +38,15 @@ CHECK_PORTABILITY_SKIP+= external/SDL_tt
.include "../../devel/boost-libs/buildlink3.mk"
.include "../../devel/cmake/build.mk"
.include "../../devel/physfs/buildlink3.mk"
+.include "../../fonts/SDL2_ttf/buildlink3.mk"
.include "../../graphics/SDL2_image/buildlink3.mk"
.include "../../graphics/freetype2/buildlink3.mk"
-.include "../../graphics/glm/buildlink3.mk"
.include "../../graphics/glew/buildlink3.mk"
+BUILDLINK_API_DEPENDS.glm+= glm>=1.0.3nb1
+.include "../../graphics/glm/buildlink3.mk"
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
+.include "../../textproc/fmtlib/buildlink3.mk"
.include "../../www/curl/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/games/supertux/PLIST
diff -u pkgsrc/games/supertux/PLIST:1.5 pkgsrc/games/supertux/PLIST:1.6
--- pkgsrc/games/supertux/PLIST:1.5 Tue Jul 18 14:50:45 2023
+++ pkgsrc/games/supertux/PLIST Tue Mar 31 10:47:12 2026
@@ -1,7 +1,6 @@
-@comment $NetBSD: PLIST,v 1.5 2023/07/18 14:50:45 ryoon Exp $
+@comment $NetBSD: PLIST,v 1.6 2026/03/31 10:47:12 adam Exp $
bin/supertux2
share/applications/supertux2.desktop
-share/doc/supertux2/INSTALL.md
share/doc/supertux2/LICENSE.txt
share/doc/supertux2/NEWS.md
share/doc/supertux2/README.md
@@ -12,12 +11,19 @@ share/games/supertux2/fonts/Deva-voy-whi
share/games/supertux2/fonts/Deva-voy-white.stf
share/games/supertux2/fonts/Deva-white-big.stf
share/games/supertux2/fonts/Deva-white.stf
+share/games/supertux2/fonts/MapoBackpacking.ttf
+share/games/supertux2/fonts/MapoBackpacking_License.txt
share/games/supertux2/fonts/NOTO_SANS_LICENSE.txt
-share/games/supertux2/fonts/NanumBarunGothic.ttf
-share/games/supertux2/fonts/NanumBarunGothic_License.txt
+share/games/supertux2/fonts/NotoSans-Regular.ttf
+share/games/supertux2/fonts/NotoSansArmenian-Regular.ttf
share/games/supertux2/fonts/NotoSansCJKjp-Medium.otf
+share/games/supertux2/fonts/NotoSansKhmer-Regular.ttf
+share/games/supertux2/fonts/NotoSansMalayalam-Regular.ttf
share/games/supertux2/fonts/README
share/games/supertux2/fonts/Roboto-Regular.ttf
+share/games/supertux2/fonts/Roboto_License.txt
+share/games/supertux2/fonts/SOURCECODEPRO_LICENSE.md
+share/games/supertux2/fonts/SourceCodePro-Medium.ttf
share/games/supertux2/fonts/SuperTux-Medium.ttf
share/games/supertux2/fonts/VARELA_ROUND_LICENSE.txt
share/games/supertux2/fonts/VarelaRound-Regular.ttf
@@ -44,71 +50,134 @@ share/games/supertux2/fonts/zh-white-sma
share/games/supertux2/fonts/zh-white.stf
share/games/supertux2/images/autotiles.satc
share/games/supertux2/images/autotiles_ice_world.satc
-share/games/supertux2/images/background/BlueRock_Forest/blue-bottom.jpg
-share/games/supertux2/images/background/BlueRock_Forest/blue-middle.jpg
-share/games/supertux2/images/background/BlueRock_Forest/blue-top.jpg
-share/games/supertux2/images/background/BlueRock_Forest/rolling-bottom.jpg
-share/games/supertux2/images/background/BlueRock_Forest/rolling-middle.jpg
-share/games/supertux2/images/background/BlueRock_Forest/rolling-para.png
-share/games/supertux2/images/background/antarctic/SnowMountains.png
+share/games/supertux2/images/background/BlueRock_Forest/blue-bottom.deprecated.jpg
+share/games/supertux2/images/background/BlueRock_Forest/blue-middle.deprecated.jpg
+share/games/supertux2/images/background/BlueRock_Forest/blue-top.deprecated.jpg
+share/games/supertux2/images/background/BlueRock_Forest/rolling-bottom.deprecated.jpg
+share/games/supertux2/images/background/BlueRock_Forest/rolling-middle.deprecated.jpg
+share/games/supertux2/images/background/BlueRock_Forest/rolling-para.deprecated.png
+share/games/supertux2/images/background/antarctic/SnowMountains.deprecated.png
share/games/supertux2/images/background/antarctic/SnowMountainsSky.png
share/games/supertux2/images/background/antarctic/arcticmountains.png
-share/games/supertux2/images/background/antarctic/arctis2.png
-share/games/supertux2/images/background/antarctic/misty_snowhills_small.png
-share/games/supertux2/images/background/antarctic/semi_arctic.jpg
-share/games/supertux2/images/background/arctic_bridge/bridgecloud-dark.png
-share/games/supertux2/images/background/arctic_bridge/bridgecloud-light.png
-share/games/supertux2/images/background/arctic_bridge/bridgeocean-fade.png
-share/games/supertux2/images/background/arctic_bridge/bridgeocean-nofade.png
-share/games/supertux2/images/background/arctic_bridge/bridgeocean-original.png
-share/games/supertux2/images/background/arcticskies/arcticskies1.png
-share/games/supertux2/images/background/arcticskies/arcticskies2.png
+share/games/supertux2/images/background/antarctic/arctis2.deprecated.png
+share/games/supertux2/images/background/antarctic/ice_floes_back.png
+share/games/supertux2/images/background/antarctic/ice_floes_front.png
+share/games/supertux2/images/background/antarctic/ice_mountains.png
+share/games/supertux2/images/background/antarctic/ice_mountains_panorama.png
+share/games/supertux2/images/background/antarctic/misty_snowhills_small.deprecated.png
+share/games/supertux2/images/background/antarctic/semi_arctic.deprecated.jpg
+share/games/supertux2/images/background/antarctic/snow_bottom.png
+share/games/supertux2/images/background/antarctic/snow_hills.png
+share/games/supertux2/images/background/antarctic/snow_panorama.png
+share/games/supertux2/images/background/antarctic/snowmountain_panorama.png
+share/games/supertux2/images/background/antarctic/snowy_trees.png
+share/games/supertux2/images/background/arctic_bridge/bridgecloud-dark.deprecated.png
+share/games/supertux2/images/background/arctic_bridge/bridgecloud-light.deprecated.png
+share/games/supertux2/images/background/arctic_bridge/bridgeocean-fade.deprecated.png
+share/games/supertux2/images/background/arctic_bridge/bridgeocean-nofade.deprecated.png
+share/games/supertux2/images/background/arctic_bridge/bridgeocean-original.deprecated.png
+share/games/supertux2/images/background/arcticskies/arcticskies1.deprecated.png
+share/games/supertux2/images/background/arcticskies/arcticskies2.deprecated.png
share/games/supertux2/images/background/arcticskies/arcticskies3.png
share/games/supertux2/images/background/arcticskies/arcticskies35.png
-share/games/supertux2/images/background/arcticskies/arcticskies4.png
-share/games/supertux2/images/background/block_snow/block-snow-background.png
-share/games/supertux2/images/background/block_snow/block-snow-midground.png
-share/games/supertux2/images/background/block_snow/block-snow-top.png
-share/games/supertux2/images/background/bluemountain/bluemountain-bottom.png
-share/games/supertux2/images/background/bluemountain/bluemountain-middle.png
-share/games/supertux2/images/background/bluemountain/bluemountain-top.png
-share/games/supertux2/images/background/bluemountain/bluemountain2.png
-share/games/supertux2/images/background/castle/castle_foreground.png
-share/games/supertux2/images/background/castle/snowcastle.png
-share/games/supertux2/images/background/christmas/intro.jpg
-share/games/supertux2/images/background/christmas/outro.jpg
-share/games/supertux2/images/background/cloud_mountains/cloud-mountains-background.png
-share/games/supertux2/images/background/cloud_mountains/cloud-mountains-bottom.png
-share/games/supertux2/images/background/cloud_mountains/cloud-mountains-forground.png
-share/games/supertux2/images/background/cloud_mountains/cloud-mountains-midground.png
-share/games/supertux2/images/background/forest/dawn_hill_para_blur.png
-share/games/supertux2/images/background/forest/forest2_para.png
-share/games/supertux2/images/background/forest/forest_para2.png
-share/games/supertux2/images/background/forest/forest_para3.png
-share/games/supertux2/images/background/forest/forest_para3_bottom.png
-share/games/supertux2/images/background/forest/forest_para4.png
-share/games/supertux2/images/background/forest/forest_para4_bottom.png
-share/games/supertux2/images/background/forest/nighthills.png
-share/games/supertux2/images/background/ghostforest/ghostforest.jpg
-share/games/supertux2/images/background/ghostforest/ghostforest_grave.png
-share/games/supertux2/images/background/ghostforest/ghostforest_para.png
+share/games/supertux2/images/background/arcticskies/arcticskies4.deprecated.png
+share/games/supertux2/images/background/arcticskies/corner_clouds.png
+share/games/supertux2/images/background/block_snow/block-snow-background.deprecated.png
+share/games/supertux2/images/background/block_snow/block-snow-midground.deprecated.png
+share/games/supertux2/images/background/block_snow/block-snow-top.deprecated.png
+share/games/supertux2/images/background/bluemountain/bluemountain-bottom.deprecated.png
+share/games/supertux2/images/background/bluemountain/bluemountain-middle.deprecated.png
+share/games/supertux2/images/background/bluemountain/bluemountain-top.deprecated.png
+share/games/supertux2/images/background/bluemountain/bluemountain2.deprecated.png
+share/games/supertux2/images/background/castle/castle_foreground.deprecated.png
+share/games/supertux2/images/background/castle/corrupt_castle.png
+share/games/supertux2/images/background/castle/corrupt_castle_pillar.png
+share/games/supertux2/images/background/castle/forest_castle.png
+share/games/supertux2/images/background/castle/forest_castle_pillar.png
+share/games/supertux2/images/background/castle/ice_castle.png
+share/games/supertux2/images/background/castle/ice_castle_pillar.png
+share/games/supertux2/images/background/castle/snowcastle.deprecated.png
+share/games/supertux2/images/background/christmas/intro.deprecated.jpg
+share/games/supertux2/images/background/christmas/outro.deprecated.jpg
+share/games/supertux2/images/background/cloud_mountains/cloud-mountains-background.deprecated.png
+share/games/supertux2/images/background/cloud_mountains/cloud-mountains-bottom.deprecated.png
+share/games/supertux2/images/background/cloud_mountains/cloud-mountains-forground.deprecated.png
+share/games/supertux2/images/background/cloud_mountains/cloud-mountains-midground.deprecated.png
+share/games/supertux2/images/background/corrupted_cave/corrupt_cave_backwall.png
+share/games/supertux2/images/background/corrupted_cave/corrupt_cave_front.png
+share/games/supertux2/images/background/corrupted_cave/corrupt_cave_middle.png
+share/games/supertux2/images/background/corrupted_forest/corrupt_panorama.png
+share/games/supertux2/images/background/corrupted_forest/corrupttrees.png
+share/games/supertux2/images/background/corrupted_forest/corrupttrees_bottom.png
+share/games/supertux2/images/background/corrupted_forest/corruptwoodland.png
+share/games/supertux2/images/background/corrupted_forest/gh_forest_bottom.png
+share/games/supertux2/images/background/corrupted_forest/gh_tree_back.png
+share/games/supertux2/images/background/corrupted_forest/gh_tree_front.png
+share/games/supertux2/images/background/corrupted_forest/mountain_panorama.png
+share/games/supertux2/images/background/forest/dawn_hill_para_blur.deprecated.png
+share/games/supertux2/images/background/forest/forest2_para.deprecated.png
+share/games/supertux2/images/background/forest/forest_bottom.png
+share/games/supertux2/images/background/forest/forest_panorama.png
+share/games/supertux2/images/background/forest/forest_para2.deprecated.png
+share/games/supertux2/images/background/forest/forest_para3.deprecated.png
+share/games/supertux2/images/background/forest/forest_para3_bottom.deprecated.png
+share/games/supertux2/images/background/forest/forest_para4.deprecated.png
+share/games/supertux2/images/background/forest/forest_para4_bottom.deprecated.png
+share/games/supertux2/images/background/forest/mountain.png
+share/games/supertux2/images/background/forest/mountain_trees.png
+share/games/supertux2/images/background/forest/nighthills.deprecated.png
+share/games/supertux2/images/background/forest/tree_back.png
+share/games/supertux2/images/background/forest/tree_front.png
+share/games/supertux2/images/background/forest/trees_back.png
+share/games/supertux2/images/background/forest/trees_bottom.png
+share/games/supertux2/images/background/forest/woodland.png
+share/games/supertux2/images/background/forest/woodland_bottom.png
+share/games/supertux2/images/background/forest_cave/forest_cave_backwall.png
+share/games/supertux2/images/background/forest_cave/forest_cave_front.png
+share/games/supertux2/images/background/forest_cave/forest_cave_middle.png
+share/games/supertux2/images/background/ghostforest/ghostforest.deprecated.jpg
+share/games/supertux2/images/background/ghostforest/ghostforest_grave.deprecated.png
+share/games/supertux2/images/background/ghostforest/ghostforest_para.deprecated.png
share/games/supertux2/images/background/halloween/fog.png
-share/games/supertux2/images/background/halloween/intro.jpg
-share/games/supertux2/images/background/halloween/mountain.png
-share/games/supertux2/images/background/halloween/outro.jpg
+share/games/supertux2/images/background/halloween/fog_merged.png
+share/games/supertux2/images/background/halloween/intro.deprecated.jpg
+share/games/supertux2/images/background/halloween/mountain.deprecated.png
+share/games/supertux2/images/background/halloween/mountain_panorama.png
+share/games/supertux2/images/background/halloween/outro.deprecated.jpg
share/games/supertux2/images/background/halloween/sky.png
-share/games/supertux2/images/background/halloween/vignette.png
-share/games/supertux2/images/background/ice_cave/cave2.jpg
-share/games/supertux2/images/background/ice_cave/darkcave-background.png
-share/games/supertux2/images/background/ice_cave/darkcave-middle.png
-share/games/supertux2/images/background/ice_cave/darkcave-preview.png
-share/games/supertux2/images/background/ice_cave/darkcave-top_and_bottom.png
-share/games/supertux2/images/background/ice_cave/darkcavemidground-middle.png
-share/games/supertux2/images/background/ice_cave/darkcavemidground-top_and_bottom.png
-share/games/supertux2/images/background/icecliffs/icecliffs-bottom.png
-share/games/supertux2/images/background/icecliffs/icecliffs-middle.png
-share/games/supertux2/images/background/icecliffs/icecliffs-top.png
+share/games/supertux2/images/background/halloween/vignette.deprecated.png
+share/games/supertux2/images/background/ice_cave/cave2.deprecated.jpg
+share/games/supertux2/images/background/ice_cave/darkcave-background.deprecated.png
+share/games/supertux2/images/background/ice_cave/darkcave-middle.deprecated.png
+share/games/supertux2/images/background/ice_cave/darkcave-preview.deprecated.png
+share/games/supertux2/images/background/ice_cave/darkcave-top_and_bottom.deprecated.png
+share/games/supertux2/images/background/ice_cave/darkcavemidground-middle.deprecated.png
+share/games/supertux2/images/background/ice_cave/darkcavemidground-top_and_bottom.deprecated.png
+share/games/supertux2/images/background/ice_cave/ice_cave_backwall.png
+share/games/supertux2/images/background/ice_cave/ice_cave_front.png
+share/games/supertux2/images/background/ice_cave/ice_cave_middle.png
+share/games/supertux2/images/background/icecliffs/icecliffs-bottom.deprecated.png
+share/games/supertux2/images/background/icecliffs/icecliffs-middle.deprecated.png
+share/games/supertux2/images/background/icecliffs/icecliffs-top.deprecated.png
share/games/supertux2/images/background/misc/black_800px.png
+share/games/supertux2/images/background/misc/clouds.png
+share/games/supertux2/images/background/misc/clouds_colorless.png
+share/games/supertux2/images/background/misc/clouds_night.png
+share/games/supertux2/images/background/misc/clouds_storm.png
+share/games/supertux2/images/background/misc/distortion/distortion.surface
+share/games/supertux2/images/background/misc/distortion/distortion_big.surface
+share/games/supertux2/images/background/misc/distortion/full_distortion.surface
+share/games/supertux2/images/background/misc/distortion/full_distortion_big.surface
+share/games/supertux2/images/background/misc/distortion/rough_distortion.surface
+share/games/supertux2/images/background/misc/distortion/rough_distortion_big.surface
+share/games/supertux2/images/background/misc/distortion/source/distortion_area.png
+share/games/supertux2/images/background/misc/distortion/source/distortion_area2.png
+share/games/supertux2/images/background/misc/distortion/source/distortion_area2_big.png
+share/games/supertux2/images/background/misc/distortion/source/distortion_area_big.png
+share/games/supertux2/images/background/misc/distortion/source/distortion_area_rough.png
+share/games/supertux2/images/background/misc/distortion/source/distortion_area_rough_big.png
+share/games/supertux2/images/background/misc/distortion/source/distortion_disp.png
+share/games/supertux2/images/background/misc/distortion/source/distortion_disp_big.png
share/games/supertux2/images/background/misc/fog.png
share/games/supertux2/images/background/misc/grid.png
share/games/supertux2/images/background/misc/grid.surface
@@ -116,19 +185,41 @@ share/games/supertux2/images/background/
share/games/supertux2/images/background/misc/heatshimmer.png
share/games/supertux2/images/background/misc/heatshimmer.surface
share/games/supertux2/images/background/misc/leaves.png
-share/games/supertux2/images/background/misc/oiltux.jpg
+share/games/supertux2/images/background/misc/light_clouds.png
+share/games/supertux2/images/background/misc/moon.png
+share/games/supertux2/images/background/misc/moon_glow.png
+share/games/supertux2/images/background/misc/oiltux.png
+share/games/supertux2/images/background/misc/skybox.png
+share/games/supertux2/images/background/misc/skybox_night.png
+share/games/supertux2/images/background/misc/skybox_stars.png
+share/games/supertux2/images/background/misc/skybox_storm.png
share/games/supertux2/images/background/misc/transparent_up.png
-share/games/supertux2/images/background/nightsky/nightsky.png
-share/games/supertux2/images/background/nightsky/nightsky_bottom.png
-share/games/supertux2/images/background/nightsky/nightsky_middle.png
-share/games/supertux2/images/background/nightsky/nightsky_para.png
-share/games/supertux2/images/background/nightsky/nightsky_top.png
-share/games/supertux2/images/background/snowmountains/snowmountains-top.png
-share/games/supertux2/images/background/snowmountains/snowmountains.png
+share/games/supertux2/images/background/misc/vignette.png
+share/games/supertux2/images/background/misc/vignette_white.png
+share/games/supertux2/images/background/misc/water_bottom.png
+share/games/supertux2/images/background/nightsky/nightsky.deprecated.png
+share/games/supertux2/images/background/nightsky/nightsky_bottom.deprecated.png
+share/games/supertux2/images/background/nightsky/nightsky_middle.deprecated.png
+share/games/supertux2/images/background/nightsky/nightsky_para.deprecated.png
+share/games/supertux2/images/background/nightsky/nightsky_top.deprecated.png
+share/games/supertux2/images/background/retro/arctis_icechunk.png
+share/games/supertux2/images/background/retro/arctis_shore.png
+share/games/supertux2/images/background/retro/arctis_skyline.png
+share/games/supertux2/images/background/retro/block-snow-background.png
+share/games/supertux2/images/background/retro/block-snow-midground.png
+share/games/supertux2/images/background/retro/cave2.png
+share/games/supertux2/images/background/retro/cave2_front.png
+share/games/supertux2/images/background/retro/cave_wall.png
+share/games/supertux2/images/background/retro/cave_wood.png
+share/games/supertux2/images/background/snowmountains/snowmountains-top.deprecated.png
+share/games/supertux2/images/background/snowmountains/snowmountains.deprecated.png
+share/games/supertux2/images/converters/data.stcd
+share/games/supertux2/images/converters/nightly_all_tiles.sttc
+share/games/supertux2/images/converters/pre-0.6.3_crystal_tiles.sttc
+share/games/supertux2/images/converters/rock_tiles_addon_to_vanilla.sttc
share/games/supertux2/images/creatures/angrystone/angrystone.sprite
share/games/supertux2/images/creatures/angrystone/attacking-0.png
share/games/supertux2/images/creatures/angrystone/charging-0.png
-share/games/supertux2/images/creatures/angrystone/frozen.png
share/games/supertux2/images/creatures/angrystone/idle-0.png
share/games/supertux2/images/creatures/bag/bag-bounce-0.png
share/games/supertux2/images/creatures/bag/bag-bounce-1.png
@@ -139,23 +230,18 @@ share/games/supertux2/images/creatures/b
share/games/supertux2/images/creatures/bag/bag-land-3.png
share/games/supertux2/images/creatures/bag/bag-squished.png
share/games/supertux2/images/creatures/bag/bag.sprite
-share/games/supertux2/images/creatures/bouncing_snowball/bounce1.png
-share/games/supertux2/images/creatures/bouncing_snowball/bounce2.png
-share/games/supertux2/images/creatures/bouncing_snowball/bounce3.png
-share/games/supertux2/images/creatures/bouncing_snowball/bouncing_snowball-editor.png
+share/games/supertux2/images/creatures/bouncing_snowball/bounce-0.png
+share/games/supertux2/images/creatures/bouncing_snowball/bounce-1.png
+share/games/supertux2/images/creatures/bouncing_snowball/bounce-2.png
share/games/supertux2/images/creatures/bouncing_snowball/bouncing_snowball.sprite
-share/games/supertux2/images/creatures/bouncing_snowball/bs1.png
-share/games/supertux2/images/creatures/bouncing_snowball/bs2.png
-share/games/supertux2/images/creatures/bouncing_snowball/bs3.png
-share/games/supertux2/images/creatures/bouncing_snowball/bs4.png
-share/games/supertux2/images/creatures/bouncing_snowball/bs5.png
-share/games/supertux2/images/creatures/bouncing_snowball/bs6.png
-share/games/supertux2/images/creatures/bouncing_snowball/bs7.png
-share/games/supertux2/images/creatures/bouncing_snowball/bs8.png
-share/games/supertux2/images/creatures/bouncing_snowball/melting-0.png
-share/games/supertux2/images/creatures/bouncing_snowball/melting-1.png
-share/games/supertux2/images/creatures/bouncing_snowball/melting-2.png
-share/games/supertux2/images/creatures/bouncing_snowball/melting-3.png
+share/games/supertux2/images/creatures/bouncing_snowball/jump-0.png
+share/games/supertux2/images/creatures/bouncing_snowball/jump-1.png
+share/games/supertux2/images/creatures/bouncing_snowball/jump-2.png
+share/games/supertux2/images/creatures/bouncing_snowball/jump-3.png
+share/games/supertux2/images/creatures/bouncing_snowball/jump-4.png
+share/games/supertux2/images/creatures/bouncing_snowball/jump-5.png
+share/games/supertux2/images/creatures/bouncing_snowball/jump-6.png
+share/games/supertux2/images/creatures/bouncing_snowball/jump-7.png
share/games/supertux2/images/creatures/bsod/bsod-0.png
share/games/supertux2/images/creatures/bsod/bsod-1.png
share/games/supertux2/images/creatures/bsod/bsod-2.png
@@ -166,106 +252,365 @@ share/games/supertux2/images/creatures/b
share/games/supertux2/images/creatures/bsod/bsod-7.png
share/games/supertux2/images/creatures/bsod/bsod-squished.png
share/games/supertux2/images/creatures/bsod/bsod.sprite
-share/games/supertux2/images/creatures/crystallo/crystallo-editor.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-0.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-1.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-10.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-2.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-3.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-4.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-5.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-6.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-7.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-8.png
-share/games/supertux2/images/creatures/crystallo/crystallo-fall-9.png
-share/games/supertux2/images/creatures/crystallo/crystallo-jump-0.png
-share/games/supertux2/images/creatures/crystallo/crystallo-jump-1.png
-share/games/supertux2/images/creatures/crystallo/crystallo-jump-2.png
-share/games/supertux2/images/creatures/crystallo/crystallo-jump-3.png
-share/games/supertux2/images/creatures/crystallo/crystallo-jump-4.png
-share/games/supertux2/images/creatures/crystallo/crystallo-jump-5.png
-share/games/supertux2/images/creatures/crystallo/crystallo-jump-6.png
-share/games/supertux2/images/creatures/crystallo/crystallo-left-0.png
-share/games/supertux2/images/creatures/crystallo/crystallo-left-1.png
-share/games/supertux2/images/creatures/crystallo/crystallo-left-2.png
-share/games/supertux2/images/creatures/crystallo/crystallo-left-3.png
-share/games/supertux2/images/creatures/crystallo/crystallo-left-4.png
-share/games/supertux2/images/creatures/crystallo/crystallo-left-5.png
-share/games/supertux2/images/creatures/crystallo/crystallo-left-6.png
-share/games/supertux2/images/creatures/crystallo/crystallo-left-7.png
+share/games/supertux2/images/creatures/crusher/corrupted/krosh_corrupt.sprite
+share/games/supertux2/images/creatures/crusher/corrupted/krosh_corrupt_eyes.png
+share/games/supertux2/images/creatures/crusher/corrupted/krosh_corrupt_hit.png
+share/games/supertux2/images/creatures/crusher/corrupted/krosh_corrupt_main.png
+share/games/supertux2/images/creatures/crusher/corrupted/krosh_corrupt_whites.png
+share/games/supertux2/images/creatures/crusher/corrupted/krosh_eye_glow.png
+share/games/supertux2/images/creatures/crusher/corrupted/krosh_eye_glow.sprite
+share/games/supertux2/images/creatures/crusher/corrupted/krush_corrupt.sprite
+share/games/supertux2/images/creatures/crusher/corrupted/krush_corrupt_eyes.png
+share/games/supertux2/images/creatures/crusher/corrupted/krush_corrupt_hit.png
+share/games/supertux2/images/creatures/crusher/corrupted/krush_corrupt_main.png
+share/games/supertux2/images/creatures/crusher/corrupted/krush_corrupt_whites.png
+share/games/supertux2/images/creatures/crusher/corrupted/krush_eye_glow.png
+share/games/supertux2/images/creatures/crusher/corrupted/krush_eye_glow.sprite
+share/games/supertux2/images/creatures/crusher/krosh_ice.sprite
+share/games/supertux2/images/creatures/crusher/krosh_ice_hit.png
+share/games/supertux2/images/creatures/crusher/krosh_ice_lefteye.png
+share/games/supertux2/images/creatures/crusher/krosh_ice_main.png
+share/games/supertux2/images/creatures/crusher/krosh_ice_righteye.png
+share/games/supertux2/images/creatures/crusher/krosh_ice_whites.png
+share/games/supertux2/images/creatures/crusher/krosh_rock.sprite
+share/games/supertux2/images/creatures/crusher/krosh_rock_hit.png
+share/games/supertux2/images/creatures/crusher/krosh_rock_lefteye.png
+share/games/supertux2/images/creatures/crusher/krosh_rock_main.png
+share/games/supertux2/images/creatures/crusher/krosh_rock_righteye.png
+share/games/supertux2/images/creatures/crusher/krosh_rock_whites.png
+share/games/supertux2/images/creatures/crusher/krush_ice.sprite
+share/games/supertux2/images/creatures/crusher/krush_ice_hit.png
+share/games/supertux2/images/creatures/crusher/krush_ice_lefteye.png
+share/games/supertux2/images/creatures/crusher/krush_ice_main.png
+share/games/supertux2/images/creatures/crusher/krush_ice_righteye.png
+share/games/supertux2/images/creatures/crusher/krush_ice_whites.png
+share/games/supertux2/images/creatures/crusher/krush_rock.sprite
+share/games/supertux2/images/creatures/crusher/krush_rock_hit.png
+share/games/supertux2/images/creatures/crusher/krush_rock_lefteye.png
+share/games/supertux2/images/creatures/crusher/krush_rock_main.png
+share/games/supertux2/images/creatures/crusher/krush_rock_righteye.png
+share/games/supertux2/images/creatures/crusher/krush_rock_whites.png
+share/games/supertux2/images/creatures/crusher/roots/crusher_root.sprite
+share/games/supertux2/images/creatures/crusher/roots/crusher_root_side.sprite
+share/games/supertux2/images/creatures/crusher/roots/root-0.png
+share/games/supertux2/images/creatures/crusher/roots/root-1.png
+share/games/supertux2/images/creatures/crusher/roots/root-2.png
+share/games/supertux2/images/creatures/crusher/roots/root-3.png
+share/games/supertux2/images/creatures/crusher/roots/root-4.png
+share/games/supertux2/images/creatures/crusher/roots/root-5.png
+share/games/supertux2/images/creatures/crusher/roots/root-empty.png
+share/games/supertux2/images/creatures/crusher/roots/root_side-0.png
+share/games/supertux2/images/creatures/crusher/roots/root_side-1.png
+share/games/supertux2/images/creatures/crusher/roots/root_side-2.png
+share/games/supertux2/images/creatures/crusher/roots/root_side-3.png
+share/games/supertux2/images/creatures/crusher/roots/root_side-4.png
+share/games/supertux2/images/creatures/crusher/roots/root_side-5.png
+share/games/supertux2/images/creatures/crusher/roots/root_side-empty.png
share/games/supertux2/images/creatures/crystallo/crystallo-overlay.png
share/games/supertux2/images/creatures/crystallo/crystallo-overlay.sprite
-share/games/supertux2/images/creatures/crystallo/crystallo-preparing-0.png
-share/games/supertux2/images/creatures/crystallo/crystallo-preparing-1.png
-share/games/supertux2/images/creatures/crystallo/crystallo-sleeping.png
-share/games/supertux2/images/creatures/crystallo/crystallo-waking-0.png
-share/games/supertux2/images/creatures/crystallo/crystallo-waking-1.png
share/games/supertux2/images/creatures/crystallo/crystallo.sprite
-share/games/supertux2/images/creatures/crystallo/rcrystallo-editor.png
-share/games/supertux2/images/creatures/crystallo/rcrystallo.sprite
-share/games/supertux2/images/creatures/crystallo/scrystallo.sprite
+share/games/supertux2/images/creatures/crystallo/fall-0.png
+share/games/supertux2/images/creatures/crystallo/fall-1.png
+share/games/supertux2/images/creatures/crystallo/fall-10.png
+share/games/supertux2/images/creatures/crystallo/fall-11.png
+share/games/supertux2/images/creatures/crystallo/fall-2.png
+share/games/supertux2/images/creatures/crystallo/fall-3.png
+share/games/supertux2/images/creatures/crystallo/fall-4.png
+share/games/supertux2/images/creatures/crystallo/fall-5.png
+share/games/supertux2/images/creatures/crystallo/fall-6.png
+share/games/supertux2/images/creatures/crystallo/fall-7.png
+share/games/supertux2/images/creatures/crystallo/fall-8.png
+share/games/supertux2/images/creatures/crystallo/fall-9.png
+share/games/supertux2/images/creatures/crystallo/jump-0.png
+share/games/supertux2/images/creatures/crystallo/jump-1.png
+share/games/supertux2/images/creatures/crystallo/jump-2.png
+share/games/supertux2/images/creatures/crystallo/jump-3.png
+share/games/supertux2/images/creatures/crystallo/jump-4.png
+share/games/supertux2/images/creatures/crystallo/jump-5.png
+share/games/supertux2/images/creatures/crystallo/left-0.png
+share/games/supertux2/images/creatures/crystallo/left-1.png
+share/games/supertux2/images/creatures/crystallo/left-2.png
+share/games/supertux2/images/creatures/crystallo/left-3.png
+share/games/supertux2/images/creatures/crystallo/left-4.png
+share/games/supertux2/images/creatures/crystallo/left-5.png
+share/games/supertux2/images/creatures/crystallo/left-6.png
+share/games/supertux2/images/creatures/crystallo/left-7.png
+share/games/supertux2/images/creatures/crystallo/roof_crystallo-editor.png
share/games/supertux2/images/creatures/crystallo/shard.png
share/games/supertux2/images/creatures/crystallo/shard.sprite
-share/games/supertux2/images/creatures/crystallo/shattered-left.png
-share/games/supertux2/images/creatures/dart/dart.sprite
-share/games/supertux2/images/creatures/dart/flying.png
-share/games/supertux2/images/creatures/darttrap/d-idle.png
-share/games/supertux2/images/creatures/darttrap/d1.png
-share/games/supertux2/images/creatures/darttrap/d2.png
-share/games/supertux2/images/creatures/darttrap/d3-.png
-share/games/supertux2/images/creatures/darttrap/d4.png
-share/games/supertux2/images/creatures/darttrap/darttrap.sprite
-share/games/supertux2/images/creatures/dispenser/broken.png
-share/games/supertux2/images/creatures/dispenser/canon-frozen.png
-share/games/supertux2/images/creatures/dispenser/canon.png
-share/games/supertux2/images/creatures/dispenser/dispenser.sprite
-share/games/supertux2/images/creatures/dispenser/dropper-frozen.png
+share/games/supertux2/images/creatures/crystallo/sleep-0.png
+share/games/supertux2/images/creatures/crystallo/sleep-1.png
+share/games/supertux2/images/creatures/crystallo/sleep-2.png
+share/games/supertux2/images/creatures/crystallo/sleep-3.png
+share/games/supertux2/images/creatures/crystallo/sleep-4.png
+share/games/supertux2/images/creatures/crystallo/sleep-5.png
+share/games/supertux2/images/creatures/crystallo/squished.png
+share/games/supertux2/images/creatures/darttrap/granito/charge_down-0.png
+share/games/supertux2/images/creatures/darttrap/granito/charge_down-1.png
+share/games/supertux2/images/creatures/darttrap/granito/charge_down-2.png
+share/games/supertux2/images/creatures/darttrap/granito/charge_down-3.png
+share/games/supertux2/images/creatures/darttrap/granito/charge_left-0.png
+share/games/supertux2/images/creatures/darttrap/granito/charge_left-1.png
+share/games/supertux2/images/creatures/darttrap/granito/charge_left-2.png
+share/games/supertux2/images/creatures/darttrap/granito/charge_left-3.png
+share/games/supertux2/images/creatures/darttrap/granito/dart_light.png
+share/games/supertux2/images/creatures/darttrap/granito/dart_light.sprite
+share/games/supertux2/images/creatures/darttrap/granito/darttrap_granito.sprite
+share/games/supertux2/images/creatures/darttrap/granito/empty_down.png
+share/games/supertux2/images/creatures/darttrap/granito/empty_left.png
+share/games/supertux2/images/creatures/darttrap/granito/root_dart.sprite
+share/games/supertux2/images/creatures/darttrap/granito/root_dart_down.png
+share/games/supertux2/images/creatures/darttrap/granito/root_dart_left.png
+share/games/supertux2/images/creatures/darttrap/skull/charge_down-0.png
+share/games/supertux2/images/creatures/darttrap/skull/charge_down-1.png
+share/games/supertux2/images/creatures/darttrap/skull/charge_down-2.png
+share/games/supertux2/images/creatures/darttrap/skull/charge_down-3.png
+share/games/supertux2/images/creatures/darttrap/skull/charge_left-0.png
+share/games/supertux2/images/creatures/darttrap/skull/charge_left-1.png
+share/games/supertux2/images/creatures/darttrap/skull/charge_left-2.png
+share/games/supertux2/images/creatures/darttrap/skull/charge_left-3.png
+share/games/supertux2/images/creatures/darttrap/skull/dart_light.png
+share/games/supertux2/images/creatures/darttrap/skull/dart_light.sprite
+share/games/supertux2/images/creatures/darttrap/skull/darttrap_skull.sprite
+share/games/supertux2/images/creatures/darttrap/skull/empty_down-0.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_down-1.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_down-2.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_down-3.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_down-4.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_left-0.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_left-1.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_left-2.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_left-3.png
+share/games/supertux2/images/creatures/darttrap/skull/empty_left-4.png
+share/games/supertux2/images/creatures/darttrap/skull/skull_dart.sprite
+share/games/supertux2/images/creatures/darttrap/skull/skull_dart_down.png
+share/games/supertux2/images/creatures/darttrap/skull/skull_dart_left.png
+share/games/supertux2/images/creatures/dispenser/cannon.sprite
+share/games/supertux2/images/creatures/dispenser/cannon_frozen0-0.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen0-1.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen0-2.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen0-3.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen0-4.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen1-0.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen1-1.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen1-2.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen1-3.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen1-4.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen2-0.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen2-1.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen2-2.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen2-3.png
+share/games/supertux2/images/creatures/dispenser/cannon_frozen2-4.png
+share/games/supertux2/images/creatures/dispenser/cannon_left.png
+share/games/supertux2/images/creatures/dispenser/cannon_middle.png
+share/games/supertux2/images/creatures/dispenser/cannon_right.png
share/games/supertux2/images/creatures/dispenser/dropper.png
-share/games/supertux2/images/creatures/dispenser/frozen.png
+share/games/supertux2/images/creatures/dispenser/dropper.sprite
+share/games/supertux2/images/creatures/dispenser/dropper_frozen-0.png
+share/games/supertux2/images/creatures/dispenser/dropper_frozen-1.png
+share/games/supertux2/images/creatures/dispenser/dropper_frozen-2.png
+share/games/supertux2/images/creatures/dispenser/dropper_frozen-3.png
+share/games/supertux2/images/creatures/dispenser/dropper_frozen-4.png
share/games/supertux2/images/creatures/dispenser/invisible.png
-share/games/supertux2/images/creatures/dispenser/swivel-left.png
-share/games/supertux2/images/creatures/dispenser/swivel-right.png
-share/games/supertux2/images/creatures/dispenser/working.png
-share/games/supertux2/images/creatures/fatbat/burn-0.png
-share/games/supertux2/images/creatures/fatbat/burn-1.png
-share/games/supertux2/images/creatures/fatbat/burn-10.png
-share/games/supertux2/images/creatures/fatbat/burn-2.png
-share/games/supertux2/images/creatures/fatbat/burn-3.png
-share/games/supertux2/images/creatures/fatbat/burn-4.png
-share/games/supertux2/images/creatures/fatbat/burn-5.png
-share/games/supertux2/images/creatures/fatbat/burn-6.png
-share/games/supertux2/images/creatures/fatbat/burn-7.png
-share/games/supertux2/images/creatures/fatbat/burn-8.png
-share/games/supertux2/images/creatures/fatbat/burn-9.png
+share/games/supertux2/images/creatures/dispenser/invisible.sprite
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left0.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left1.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left2.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left3.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left4.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left5.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left6.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left7.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-left8.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right0.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right1.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right2.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right3.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right4.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right5.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right6.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right7.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-broken-right8.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-left0.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-left1.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-left2.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-left3.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-left4.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-right0.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-right1.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-right2.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-right3.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-frozen-right4.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-left.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-right.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-turning0.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-turning1.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-turning2.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-turning3.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-turning4.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-turning5.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-turning6.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher-turning7.png
+share/games/supertux2/images/creatures/dispenser/rocket_launcher.sprite
+share/games/supertux2/images/creatures/dive_mine/dive_mine.sprite
+share/games/supertux2/images/creatures/dive_mine/left-0.png
+share/games/supertux2/images/creatures/dive_mine/left-1.png
+share/games/supertux2/images/creatures/dive_mine/left-10.png
+share/games/supertux2/images/creatures/dive_mine/left-11.png
+share/games/supertux2/images/creatures/dive_mine/left-2.png
+share/games/supertux2/images/creatures/dive_mine/left-3.png
+share/games/supertux2/images/creatures/dive_mine/left-4.png
+share/games/supertux2/images/creatures/dive_mine/left-5.png
+share/games/supertux2/images/creatures/dive_mine/left-6.png
+share/games/supertux2/images/creatures/dive_mine/left-7.png
+share/games/supertux2/images/creatures/dive_mine/left-8.png
+share/games/supertux2/images/creatures/dive_mine/left-9.png
+share/games/supertux2/images/creatures/dive_mine/ticking-0.png
+share/games/supertux2/images/creatures/dive_mine/ticking-1.png
+share/games/supertux2/images/creatures/dive_mine/ticking-2.png
+share/games/supertux2/images/creatures/dive_mine/ticking-3.png
+share/games/supertux2/images/creatures/dive_mine/ticking-4.png
+share/games/supertux2/images/creatures/dive_mine/ticking-5.png
+share/games/supertux2/images/creatures/dive_mine/ticking-6.png
+share/games/supertux2/images/creatures/dive_mine/ticking-7.png
+share/games/supertux2/images/creatures/dive_mine/ticking-8.png
+share/games/supertux2/images/creatures/dive_mine/ticking-9.png
+share/games/supertux2/images/creatures/dive_mine/ticking_glow/ticking_glow-0.png
+share/games/supertux2/images/creatures/dive_mine/ticking_glow/ticking_glow-1.png
+share/games/supertux2/images/creatures/dive_mine/ticking_glow/ticking_glow-2.png
+share/games/supertux2/images/creatures/dive_mine/ticking_glow/ticking_glow-3.png
+share/games/supertux2/images/creatures/dive_mine/ticking_glow/ticking_glow-4.png
+share/games/supertux2/images/creatures/dive_mine/ticking_glow/ticking_glow.sprite
+share/games/supertux2/images/creatures/fatbat/fatbat-0.png
+share/games/supertux2/images/creatures/fatbat/fatbat-1.png
+share/games/supertux2/images/creatures/fatbat/fatbat-10.png
+share/games/supertux2/images/creatures/fatbat/fatbat-11.png
+share/games/supertux2/images/creatures/fatbat/fatbat-2.png
+share/games/supertux2/images/creatures/fatbat/fatbat-3.png
+share/games/supertux2/images/creatures/fatbat/fatbat-4.png
+share/games/supertux2/images/creatures/fatbat/fatbat-5.png
+share/games/supertux2/images/creatures/fatbat/fatbat-6.png
+share/games/supertux2/images/creatures/fatbat/fatbat-7.png
+share/games/supertux2/images/creatures/fatbat/fatbat-8.png
+share/games/supertux2/images/creatures/fatbat/fatbat-9.png
share/games/supertux2/images/creatures/fatbat/fatbat.sprite
-share/games/supertux2/images/creatures/fatbat/fly-0.png
-share/games/supertux2/images/creatures/fatbat/fly-1.png
-share/games/supertux2/images/creatures/fatbat/fly-2.png
-share/games/supertux2/images/creatures/fatbat/fly-3.png
share/games/supertux2/images/creatures/fatbat/squished.png
-share/games/supertux2/images/creatures/fish/burning-0.png
-share/games/supertux2/images/creatures/fish/burning-1.png
-share/games/supertux2/images/creatures/fish/burning-2.png
-share/games/supertux2/images/creatures/fish/burning-3.png
-share/games/supertux2/images/creatures/fish/burning-4.png
-share/games/supertux2/images/creatures/fish/burning-5.png
-share/games/supertux2/images/creatures/fish/burning-6.png
-share/games/supertux2/images/creatures/fish/burning-7.png
-share/games/supertux2/images/creatures/fish/burning-8.png
-share/games/supertux2/images/creatures/fish/burning-9.png
-share/games/supertux2/images/creatures/fish/f1.png
-share/games/supertux2/images/creatures/fish/f2.png
-share/games/supertux2/images/creatures/fish/f3.png
-share/games/supertux2/images/creatures/fish/f4.png
-share/games/supertux2/images/creatures/fish/f5.png
-share/games/supertux2/images/creatures/fish/f6.png
-share/games/supertux2/images/creatures/fish/f7.png
-share/games/supertux2/images/creatures/fish/f8.png
-share/games/supertux2/images/creatures/fish/fish.sprite
-share/games/supertux2/images/creatures/fish/iced-down.png
-share/games/supertux2/images/creatures/fish/iced-left.png
+share/games/supertux2/images/creatures/fish/forest/bluefish.sprite
+share/games/supertux2/images/creatures/fish/forest/brownfish.sprite
+share/games/supertux2/images/creatures/fish/forest/chase_brown-0.png
+share/games/supertux2/images/creatures/fish/forest/chase_brown-1.png
+share/games/supertux2/images/creatures/fish/forest/chase_brown-2.png
+share/games/supertux2/images/creatures/fish/forest/chase_brown-3.png
+share/games/supertux2/images/creatures/fish/forest/chase_brown-4.png
+share/games/supertux2/images/creatures/fish/forest/chase_brown-5.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/chase_brown-0.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/chase_brown-1.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/chase_brown-2.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/chase_brown-3.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/chase_brown-4.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/chase_brown-5.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/corrupted_bluefish.sprite
+share/games/supertux2/images/creatures/fish/forest/corrupted/corrupted_brownfish.sprite
+share/games/supertux2/images/creatures/fish/forest/corrupted/notice_brown-0.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/notice_brown-1.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/notice_brown-2.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/notice_brown-3.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_blue-0.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_blue-1.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_blue-2.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_blue-3.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_blue-4.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_blue-5.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_blue-6.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_blue-7.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_brown-0.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_brown-1.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_brown-2.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_brown-3.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_brown-4.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_brown-5.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_brown-6.png
+share/games/supertux2/images/creatures/fish/forest/corrupted/swim_brown-7.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-0.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-1.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-2.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-3.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-4.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-5.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-6.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-7.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-8.png
+share/games/supertux2/images/creatures/fish/forest/jump_blue-9.png
+share/games/supertux2/images/creatures/fish/forest/jumpfish.sprite
+share/games/supertux2/images/creatures/fish/forest/notice_brown-0.png
+share/games/supertux2/images/creatures/fish/forest/notice_brown-1.png
+share/games/supertux2/images/creatures/fish/forest/notice_brown-2.png
+share/games/supertux2/images/creatures/fish/forest/notice_brown-3.png
+share/games/supertux2/images/creatures/fish/forest/swim_blue-0.png
+share/games/supertux2/images/creatures/fish/forest/swim_blue-1.png
+share/games/supertux2/images/creatures/fish/forest/swim_blue-2.png
+share/games/supertux2/images/creatures/fish/forest/swim_blue-3.png
+share/games/supertux2/images/creatures/fish/forest/swim_blue-4.png
+share/games/supertux2/images/creatures/fish/forest/swim_blue-5.png
+share/games/supertux2/images/creatures/fish/forest/swim_blue-6.png
+share/games/supertux2/images/creatures/fish/forest/swim_blue-7.png
+share/games/supertux2/images/creatures/fish/forest/swim_brown-0.png
+share/games/supertux2/images/creatures/fish/forest/swim_brown-1.png
+share/games/supertux2/images/creatures/fish/forest/swim_brown-2.png
+share/games/supertux2/images/creatures/fish/forest/swim_brown-3.png
+share/games/supertux2/images/creatures/fish/forest/swim_brown-4.png
+share/games/supertux2/images/creatures/fish/forest/swim_brown-5.png
+share/games/supertux2/images/creatures/fish/forest/swim_brown-6.png
+share/games/supertux2/images/creatures/fish/forest/swim_brown-7.png
+share/games/supertux2/images/creatures/fish/forest/wait_blue-0.png
+share/games/supertux2/images/creatures/fish/forest/wait_blue-1.png
+share/games/supertux2/images/creatures/fish/forest/wait_blue-2.png
+share/games/supertux2/images/creatures/fish/forest/wait_blue-3.png
+share/games/supertux2/images/creatures/fish/forest/wait_blue-4.png
+share/games/supertux2/images/creatures/fish/forest/wait_blue-5.png
+share/games/supertux2/images/creatures/fish/forest/wait_blue-6.png
+share/games/supertux2/images/creatures/fish/forest/wait_blue-7.png
+share/games/supertux2/images/creatures/fish/ice/bluefish.sprite
+share/games/supertux2/images/creatures/fish/ice/chase_green-0.png
+share/games/supertux2/images/creatures/fish/ice/chase_green-1.png
+share/games/supertux2/images/creatures/fish/ice/chase_green-2.png
+share/games/supertux2/images/creatures/fish/ice/chase_green-3.png
+share/games/supertux2/images/creatures/fish/ice/chase_green-4.png
+share/games/supertux2/images/creatures/fish/ice/chase_green-5.png
+share/games/supertux2/images/creatures/fish/ice/goldfish.sprite
+share/games/supertux2/images/creatures/fish/ice/greenfish.sprite
+share/games/supertux2/images/creatures/fish/ice/notice_green-0.png
+share/games/supertux2/images/creatures/fish/ice/notice_green-1.png
+share/games/supertux2/images/creatures/fish/ice/notice_green-2.png
+share/games/supertux2/images/creatures/fish/ice/swim_blue-0.png
+share/games/supertux2/images/creatures/fish/ice/swim_blue-1.png
+share/games/supertux2/images/creatures/fish/ice/swim_blue-2.png
+share/games/supertux2/images/creatures/fish/ice/swim_blue-3.png
+share/games/supertux2/images/creatures/fish/ice/swim_blue-4.png
+share/games/supertux2/images/creatures/fish/ice/swim_blue-5.png
+share/games/supertux2/images/creatures/fish/ice/swim_blue-6.png
+share/games/supertux2/images/creatures/fish/ice/swim_blue-7.png
+share/games/supertux2/images/creatures/fish/ice/swim_green-0.png
+share/games/supertux2/images/creatures/fish/ice/swim_green-1.png
+share/games/supertux2/images/creatures/fish/ice/swim_green-2.png
+share/games/supertux2/images/creatures/fish/ice/swim_green-3.png
+share/games/supertux2/images/creatures/fish/ice/swim_green-4.png
+share/games/supertux2/images/creatures/fish/ice/swim_green-5.png
+share/games/supertux2/images/creatures/fish/ice/swim_green-6.png
+share/games/supertux2/images/creatures/fish/ice/swim_green-7.png
+share/games/supertux2/images/creatures/fish/ice/swim_orange-0.png
+share/games/supertux2/images/creatures/fish/ice/swim_orange-1.png
+share/games/supertux2/images/creatures/fish/ice/swim_orange-2.png
+share/games/supertux2/images/creatures/fish/ice/swim_orange-3.png
+share/games/supertux2/images/creatures/fish/ice/swim_orange-4.png
+share/games/supertux2/images/creatures/fish/ice/swim_orange-5.png
+share/games/supertux2/images/creatures/fish/ice/swim_orange-6.png
+share/games/supertux2/images/creatures/fish/ice/swim_orange-7.png
share/games/supertux2/images/creatures/flame/flame-0.png
share/games/supertux2/images/creatures/flame/flame-1.png
+share/games/supertux2/images/creatures/flame/flame-2.png
+share/games/supertux2/images/creatures/flame/flame-3.png
+share/games/supertux2/images/creatures/flame/flame-4.png
share/games/supertux2/images/creatures/flame/flame-editor.png
share/games/supertux2/images/creatures/flame/flame-fade-0.png
share/games/supertux2/images/creatures/flame/flame-fade-1.png
@@ -283,176 +628,400 @@ share/games/supertux2/images/creatures/f
share/games/supertux2/images/creatures/flame/iceflame-fade-0.png
share/games/supertux2/images/creatures/flame/iceflame-fade-1.png
share/games/supertux2/images/creatures/flame/iceflame-fade-2.png
+share/games/supertux2/images/creatures/flame/iceflame-fade-3.png
+share/games/supertux2/images/creatures/flame/iceflame-fade-4.png
+share/games/supertux2/images/creatures/flame/iceflame-fade-5.png
share/games/supertux2/images/creatures/flame/iceflame.png
share/games/supertux2/images/creatures/flame/iceflame.sprite
share/games/supertux2/images/creatures/flame_fish/down.png
share/games/supertux2/images/creatures/flame_fish/flame_fish.sprite
share/games/supertux2/images/creatures/flame_fish/left-0.png
share/games/supertux2/images/creatures/flame_fish/left-1.png
-share/games/supertux2/images/creatures/flying_snowball/editor.png
+share/games/supertux2/images/creatures/flying_snowball/flying-squished.png
+share/games/supertux2/images/creatures/flying_snowball/flying_snowball-0.png
+share/games/supertux2/images/creatures/flying_snowball/flying_snowball-1.png
+share/games/supertux2/images/creatures/flying_snowball/flying_snowball-2.png
+share/games/supertux2/images/creatures/flying_snowball/flying_snowball-3.png
share/games/supertux2/images/creatures/flying_snowball/flying_snowball.sprite
-share/games/supertux2/images/creatures/flying_snowball/fs1.png
-share/games/supertux2/images/creatures/flying_snowball/fs2.png
-share/games/supertux2/images/creatures/flying_snowball/fs3.png
-share/games/supertux2/images/creatures/flying_snowball/fs4.png
-share/games/supertux2/images/creatures/flying_snowball/left-0.png
-share/games/supertux2/images/creatures/flying_snowball/left-1.png
-share/games/supertux2/images/creatures/flying_snowball/left-2.png
-share/games/supertux2/images/creatures/flying_snowball/left-3.png
-share/games/supertux2/images/creatures/flying_snowball/melting-0.png
-share/games/supertux2/images/creatures/flying_snowball/melting-1.png
-share/games/supertux2/images/creatures/flying_snowball/melting-2.png
-share/games/supertux2/images/creatures/flying_snowball/squished-left.png
-share/games/supertux2/images/creatures/ghosttree/ghosttree-dying-0.png
-share/games/supertux2/images/creatures/ghosttree/ghosttree-glow-dying-0.png
-share/games/supertux2/images/creatures/ghosttree/ghosttree-glow.png
-share/games/supertux2/images/creatures/ghosttree/ghosttree-glow.sprite
-share/games/supertux2/images/creatures/ghosttree/ghosttree-swallow-0.png
-share/games/supertux2/images/creatures/ghosttree/ghosttree-swallow-1.png
-share/games/supertux2/images/creatures/ghosttree/ghosttree-swallow-2.png
-share/games/supertux2/images/creatures/ghosttree/ghosttree-swallow-3.png
-share/games/supertux2/images/creatures/ghosttree/ghosttree.png
+share/games/supertux2/images/creatures/ghosttree/blue_root-left.png
+share/games/supertux2/images/creatures/ghosttree/blue_root-up.png
+share/games/supertux2/images/creatures/ghosttree/blue_root.sprite
+share/games/supertux2/images/creatures/ghosttree/blue_root_light.png
+share/games/supertux2/images/creatures/ghosttree/blue_root_light.sprite
+share/games/supertux2/images/creatures/ghosttree/bust-0.png
+share/games/supertux2/images/creatures/ghosttree/charge-0.png
share/games/supertux2/images/creatures/ghosttree/ghosttree.sprite
share/games/supertux2/images/creatures/ghosttree/ghosttree_dust_wm_0.png
-share/games/supertux2/images/creatures/ghosttree/root-base-0.png
-share/games/supertux2/images/creatures/ghosttree/root-base-1.png
-share/games/supertux2/images/creatures/ghosttree/root-base-2.png
-share/games/supertux2/images/creatures/ghosttree/root-base-3.png
-share/games/supertux2/images/creatures/ghosttree/root-base.sprite
-share/games/supertux2/images/creatures/ghosttree/root.png
-share/games/supertux2/images/creatures/ghosttree/root.sprite
+share/games/supertux2/images/creatures/ghosttree/granito_root-0.png
+share/games/supertux2/images/creatures/ghosttree/granito_root-1.png
+share/games/supertux2/images/creatures/ghosttree/granito_root.sprite
+share/games/supertux2/images/creatures/ghosttree/green_root.png
+share/games/supertux2/images/creatures/ghosttree/green_root.sprite
+share/games/supertux2/images/creatures/ghosttree/hudlife.png
+share/games/supertux2/images/creatures/ghosttree/idle-0.png
+share/games/supertux2/images/creatures/ghosttree/main_root.png
+share/games/supertux2/images/creatures/ghosttree/main_root.sprite
+share/games/supertux2/images/creatures/ghosttree/pinch_charge-0.png
+share/games/supertux2/images/creatures/ghosttree/pinch_idle-0.png
+share/games/supertux2/images/creatures/ghosttree/pinch_root.png
+share/games/supertux2/images/creatures/ghosttree/pinch_root.sprite
+share/games/supertux2/images/creatures/ghosttree/pinch_scream-0.png
+share/games/supertux2/images/creatures/ghosttree/red_root-0.png
+share/games/supertux2/images/creatures/ghosttree/red_root-1.png
+share/games/supertux2/images/creatures/ghosttree/red_root-2.png
+share/games/supertux2/images/creatures/ghosttree/red_root.sprite
+share/games/supertux2/images/creatures/ghosttree/scream-0.png
+share/games/supertux2/images/creatures/ghosttree/worldmap_0.png
share/games/supertux2/images/creatures/ghosttree/worldmap_1.png
share/games/supertux2/images/creatures/ghosttree/worldmap_2.png
share/games/supertux2/images/creatures/ghosttree/worldmap_3.png
-share/games/supertux2/images/creatures/ghosttree/worldmap_4.png
-share/games/supertux2/images/creatures/ghoul/d1.png
-share/games/supertux2/images/creatures/ghoul/g1.png
-share/games/supertux2/images/creatures/ghoul/g2.png
-share/games/supertux2/images/creatures/ghoul/g3.png
-share/games/supertux2/images/creatures/ghoul/g4.png
-share/games/supertux2/images/creatures/ghoul/g5.png
-share/games/supertux2/images/creatures/ghoul/g6.png
-share/games/supertux2/images/creatures/ghoul/g7.png
-share/games/supertux2/images/creatures/ghoul/g8.png
+share/games/supertux2/images/creatures/ghoul/down-0.png
+share/games/supertux2/images/creatures/ghoul/down-1.png
+share/games/supertux2/images/creatures/ghoul/down-2.png
+share/games/supertux2/images/creatures/ghoul/down-3.png
+share/games/supertux2/images/creatures/ghoul/down-4.png
+share/games/supertux2/images/creatures/ghoul/down-5.png
share/games/supertux2/images/creatures/ghoul/ghoul.sprite
-share/games/supertux2/images/creatures/gold_bomb/exploding-left-0.png
-share/games/supertux2/images/creatures/gold_bomb/exploding-left-1.png
-share/games/supertux2/images/creatures/gold_bomb/exploding-left-2.png
-share/games/supertux2/images/creatures/gold_bomb/exploding-left-3.png
-share/games/supertux2/images/creatures/gold_bomb/exploding-left-4.png
-share/games/supertux2/images/creatures/gold_bomb/gb1.png
-share/games/supertux2/images/creatures/gold_bomb/gb2.png
-share/games/supertux2/images/creatures/gold_bomb/gb3.png
-share/games/supertux2/images/creatures/gold_bomb/gb4.png
-share/games/supertux2/images/creatures/gold_bomb/gb5.png
-share/games/supertux2/images/creatures/gold_bomb/gb6.png
-share/games/supertux2/images/creatures/gold_bomb/gb7.png
-share/games/supertux2/images/creatures/gold_bomb/gb8.png
+share/games/supertux2/images/creatures/ghoul/stun-0.png
+share/games/supertux2/images/creatures/ghoul/stun-1.png
+share/games/supertux2/images/creatures/ghoul/stun-2.png
+share/games/supertux2/images/creatures/ghoul/stun-3.png
+share/games/supertux2/images/creatures/ghoul/stun-4.png
+share/games/supertux2/images/creatures/ghoul/up-0.png
+share/games/supertux2/images/creatures/ghoul/up-1.png
+share/games/supertux2/images/creatures/ghoul/up-2.png
+share/games/supertux2/images/creatures/ghoul/up-3.png
+share/games/supertux2/images/creatures/ghoul/up-4.png
+share/games/supertux2/images/creatures/ghoul/up-5.png
+share/games/supertux2/images/creatures/ghoul/up-6.png
+share/games/supertux2/images/creatures/ghoul/up-7.png
+share/games/supertux2/images/creatures/ghoul/up-8.png
+share/games/supertux2/images/creatures/gold_bomb/flee-0.png
+share/games/supertux2/images/creatures/gold_bomb/flee-1.png
+share/games/supertux2/images/creatures/gold_bomb/flee-2.png
+share/games/supertux2/images/creatures/gold_bomb/flee-3.png
+share/games/supertux2/images/creatures/gold_bomb/flee-4.png
+share/games/supertux2/images/creatures/gold_bomb/flee-5.png
+share/games/supertux2/images/creatures/gold_bomb/flee-6.png
+share/games/supertux2/images/creatures/gold_bomb/flee-7.png
share/games/supertux2/images/creatures/gold_bomb/gold_bomb.sprite
-share/games/supertux2/images/creatures/gold_bomb/iced-left.png
+share/games/supertux2/images/creatures/gold_bomb/left-0.png
+share/games/supertux2/images/creatures/gold_bomb/left-1.png
+share/games/supertux2/images/creatures/gold_bomb/left-2.png
+share/games/supertux2/images/creatures/gold_bomb/left-3.png
+share/games/supertux2/images/creatures/gold_bomb/left-4.png
+share/games/supertux2/images/creatures/gold_bomb/left-5.png
+share/games/supertux2/images/creatures/gold_bomb/left-6.png
+share/games/supertux2/images/creatures/gold_bomb/left-7.png
+share/games/supertux2/images/creatures/gold_bomb/scared-0.png
+share/games/supertux2/images/creatures/gold_bomb/scared-1.png
+share/games/supertux2/images/creatures/gold_bomb/scared-10.png
+share/games/supertux2/images/creatures/gold_bomb/scared-11.png
+share/games/supertux2/images/creatures/gold_bomb/scared-2.png
+share/games/supertux2/images/creatures/gold_bomb/scared-3.png
+share/games/supertux2/images/creatures/gold_bomb/scared-4.png
+share/games/supertux2/images/creatures/gold_bomb/scared-5.png
+share/games/supertux2/images/creatures/gold_bomb/scared-6.png
+share/games/supertux2/images/creatures/gold_bomb/scared-7.png
+share/games/supertux2/images/creatures/gold_bomb/scared-8.png
+share/games/supertux2/images/creatures/gold_bomb/scared-9.png
+share/games/supertux2/images/creatures/gold_bomb/ticking-0.png
+share/games/supertux2/images/creatures/gold_bomb/ticking-1.png
+share/games/supertux2/images/creatures/gold_bomb/ticking-2.png
+share/games/supertux2/images/creatures/gold_bomb/ticking-3.png
+share/games/supertux2/images/creatures/gold_bomb/ticking-4.png
+share/games/supertux2/images/creatures/granito/big/granito_big.sprite
+share/games/supertux2/images/creatures/granito/big/granito_stand-0.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-1.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-10.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-11.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-12.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-2.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-3.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-4.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-5.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-6.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-7.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-8.png
+share/games/supertux2/images/creatures/granito/big/granito_stand-9.png
+share/games/supertux2/images/creatures/granito/big/granito_walk-0.png
+share/games/supertux2/images/creatures/granito/big/granito_walk-1.png
+share/games/supertux2/images/creatures/granito/big/granito_walk-2.png
+share/games/supertux2/images/creatures/granito/big/granito_walk-3.png
+share/games/supertux2/images/creatures/granito/big/granito_walk-4.png
+share/games/supertux2/images/creatures/granito/big/granito_walk-5.png
+share/games/supertux2/images/creatures/granito/big/granito_walk-6.png
+share/games/supertux2/images/creatures/granito/big/granito_walk-7.png
+share/games/supertux2/images/creatures/granito/corrupted/big/rock_mine-0.png
+share/games/supertux2/images/creatures/granito/corrupted/big/rock_mine-1.png
+share/games/supertux2/images/creatures/granito/corrupted/big/rock_mine-2.png
+share/games/supertux2/images/creatures/granito/corrupted/big/rock_mine-3.png
+share/games/supertux2/images/creatures/granito/corrupted/big/rock_mine.sprite
+share/games/supertux2/images/creatures/granito/corrupted/big/root_spike.png
+share/games/supertux2/images/creatures/granito/corrupted/big/root_spike.sprite
+share/games/supertux2/images/creatures/granito/corrupted/corrupted_granito.sprite
+share/games/supertux2/images/creatures/granito/corrupted/giant/corrupted_giant.sprite
+share/games/supertux2/images/creatures/granito/corrupted/giant/corrupted_granito_husk-0.png
+share/games/supertux2/images/creatures/granito/corrupted/giant/corrupted_granito_husk-1.png
+share/games/supertux2/images/creatures/granito/corrupted/giant/corrupted_granito_husk-2.png
+share/games/supertux2/images/creatures/granito/corrupted/hive/granito_hive-0.png
+share/games/supertux2/images/creatures/granito/corrupted/hive/granito_hive.sprite
+share/games/supertux2/images/creatures/granito/corrupted/idle_left-0.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_left-1.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_left-2.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_left-3.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_left-4.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_left-5.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_right-0.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_right-1.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_right-2.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_right-3.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_right-4.png
+share/games/supertux2/images/creatures/granito/corrupted/idle_right-5.png
+share/games/supertux2/images/creatures/granito/corrupted/jump_left-0.png
+share/games/supertux2/images/creatures/granito/corrupted/jump_left-1.png
+share/games/supertux2/images/creatures/granito/corrupted/jump_left-2.png
+share/games/supertux2/images/creatures/granito/corrupted/jump_left-3.png
+share/games/supertux2/images/creatures/granito/corrupted/jump_right-0.png
+share/games/supertux2/images/creatures/granito/corrupted/jump_right-1.png
+share/games/supertux2/images/creatures/granito/corrupted/jump_right-2.png
+share/games/supertux2/images/creatures/granito/corrupted/jump_right-3.png
+share/games/supertux2/images/creatures/granito/corrupted/squished-left.png
+share/games/supertux2/images/creatures/granito/corrupted/squished-right.png
+share/games/supertux2/images/creatures/granito/giant/granito_awake-0.png
+share/games/supertux2/images/creatures/granito/giant/granito_awake-1.png
+share/games/supertux2/images/creatures/granito/giant/granito_awake-2.png
+share/games/supertux2/images/creatures/granito/giant/granito_awake-3.png
+share/games/supertux2/images/creatures/granito/giant/granito_giant.sprite
+share/games/supertux2/images/creatures/granito/giant/granito_sleep-0.png
+share/games/supertux2/images/creatures/granito/giant/granito_sleep-1.png
+share/games/supertux2/images/creatures/granito/giant/granito_sleep-2.png
+share/games/supertux2/images/creatures/granito/giant/granito_sleep-3.png
+share/games/supertux2/images/creatures/granito/giant/granito_sleep-4.png
+share/games/supertux2/images/creatures/granito/granito.sprite
+share/games/supertux2/images/creatures/granito/granito_jump-0.png
+share/games/supertux2/images/creatures/granito/granito_jump-1.png
+share/games/supertux2/images/creatures/granito/granito_jump-2.png
+share/games/supertux2/images/creatures/granito/granito_jump-3.png
+share/games/supertux2/images/creatures/granito/granito_jump-4.png
+share/games/supertux2/images/creatures/granito/granito_jump-5.png
+share/games/supertux2/images/creatures/granito/granito_jump-6.png
+share/games/supertux2/images/creatures/granito/granito_jump-7.png
+share/games/supertux2/images/creatures/granito/granito_look-0.png
+share/games/supertux2/images/creatures/granito/granito_look-1.png
+share/games/supertux2/images/creatures/granito/granito_look-2.png
+share/games/supertux2/images/creatures/granito/granito_look-3.png
+share/games/supertux2/images/creatures/granito/granito_look-4.png
+share/games/supertux2/images/creatures/granito/granito_look-5.png
+share/games/supertux2/images/creatures/granito/granito_sit-0.png
+share/games/supertux2/images/creatures/granito/granito_sit-1.png
+share/games/supertux2/images/creatures/granito/granito_sit-2.png
+share/games/supertux2/images/creatures/granito/granito_sit-3.png
+share/games/supertux2/images/creatures/granito/granito_stand-0.png
+share/games/supertux2/images/creatures/granito/granito_stand-1.png
+share/games/supertux2/images/creatures/granito/granito_stand-2.png
+share/games/supertux2/images/creatures/granito/granito_stand-3.png
+share/games/supertux2/images/creatures/granito/granito_stand-4.png
+share/games/supertux2/images/creatures/granito/granito_stand-5.png
+share/games/supertux2/images/creatures/granito/granito_stand-6.png
+share/games/supertux2/images/creatures/granito/granito_stand-7.png
+share/games/supertux2/images/creatures/granito/granito_stand-8.png
+share/games/supertux2/images/creatures/granito/granito_walk-0.png
+share/games/supertux2/images/creatures/granito/granito_walk-1.png
+share/games/supertux2/images/creatures/granito/granito_walk-2.png
+share/games/supertux2/images/creatures/granito/granito_walk-3.png
+share/games/supertux2/images/creatures/granito/granito_walk-4.png
+share/games/supertux2/images/creatures/granito/granito_walk-5.png
+share/games/supertux2/images/creatures/granito/granito_walk-6.png
+share/games/supertux2/images/creatures/granito/granito_walk-7.png
+share/games/supertux2/images/creatures/granito/granito_wave-0.png
+share/games/supertux2/images/creatures/granito/granito_wave-1.png
+share/games/supertux2/images/creatures/granito/granito_wave-2.png
+share/games/supertux2/images/creatures/granito/granito_wave-3.png
+share/games/supertux2/images/creatures/granito/granito_wave-4.png
+share/games/supertux2/images/creatures/granito/granito_wave-5.png
+share/games/supertux2/images/creatures/granito/granito_wave-6.png
+share/games/supertux2/images/creatures/granito/granito_wave-7.png
+share/games/supertux2/images/creatures/granito/granito_wave-8.png
+share/games/supertux2/images/creatures/granito/granito_wave-9.png
+share/games/supertux2/images/creatures/haywire/chase-0.png
+share/games/supertux2/images/creatures/haywire/chase-1.png
+share/games/supertux2/images/creatures/haywire/chase-2.png
+share/games/supertux2/images/creatures/haywire/chase-3.png
+share/games/supertux2/images/creatures/haywire/chase-4.png
+share/games/supertux2/images/creatures/haywire/chase-5.png
+share/games/supertux2/images/creatures/haywire/chase-6.png
+share/games/supertux2/images/creatures/haywire/chase-7.png
share/games/supertux2/images/creatures/haywire/haywire.sprite
-share/games/supertux2/images/creatures/haywire/hw1.png
-share/games/supertux2/images/creatures/haywire/hw2.png
-share/games/supertux2/images/creatures/haywire/hw3.png
-share/games/supertux2/images/creatures/haywire/hw4.png
-share/games/supertux2/images/creatures/haywire/hw5.png
-share/games/supertux2/images/creatures/haywire/hw6.png
-share/games/supertux2/images/creatures/haywire/hw7.png
-share/games/supertux2/images/creatures/haywire/hw8.png
-share/games/supertux2/images/creatures/haywire/hwtick1.png
-share/games/supertux2/images/creatures/haywire/hwtick2.png
-share/games/supertux2/images/creatures/haywire/hwtick3.png
-share/games/supertux2/images/creatures/haywire/hwtick4.png
-share/games/supertux2/images/creatures/haywire/hwtick5.png
-share/games/supertux2/images/creatures/haywire/hwtick6.png
-share/games/supertux2/images/creatures/haywire/hwtrigger1.png
-share/games/supertux2/images/creatures/haywire/hwtrigger2.png
-share/games/supertux2/images/creatures/haywire/hwtrigger3.png
-share/games/supertux2/images/creatures/haywire/hwtrigger4.png
-share/games/supertux2/images/creatures/haywire/iced-left.png
-share/games/supertux2/images/creatures/icecrusher/iceblock.png
-share/games/supertux2/images/creatures/icecrusher/iceblock_lefteye.png
-share/games/supertux2/images/creatures/icecrusher/iceblock_main.png
-share/games/supertux2/images/creatures/icecrusher/iceblock_righteye.png
-share/games/supertux2/images/creatures/icecrusher/iceblock_whites.png
-share/games/supertux2/images/creatures/icecrusher/icecrusher.sprite
-share/games/supertux2/images/creatures/icecrusher/krosh.png
-share/games/supertux2/images/creatures/icecrusher/krosh.sprite
-share/games/supertux2/images/creatures/icecrusher/krosh_lefteye.png
-share/games/supertux2/images/creatures/icecrusher/krosh_main.png
-share/games/supertux2/images/creatures/icecrusher/krosh_righteye.png
-share/games/supertux2/images/creatures/icecrusher/krosh_whites.png
-share/games/supertux2/images/creatures/icecrusher/moss_crusher.png
-share/games/supertux2/images/creatures/icecrusher/moss_crusher.sprite
-share/games/supertux2/images/creatures/icecrusher/moss_crusher_hit.png
-share/games/supertux2/images/creatures/icecrusher/moss_crusher_recovering_0.png
-share/games/supertux2/images/creatures/icecrusher/moss_crusher_recovering_1.png
-share/games/supertux2/images/creatures/icecrusher/moss_crusher_recovering_2.png
-share/games/supertux2/images/creatures/icecrusher/moss_crusher_recovering_3.png
-share/games/supertux2/images/creatures/icecrusher/rock_crusher.png
-share/games/supertux2/images/creatures/icecrusher/rock_crusher.sprite
-share/games/supertux2/images/creatures/icecrusher/rock_crusher_hit.png
-share/games/supertux2/images/creatures/icecrusher/rock_crusher_recovering_0.png
-share/games/supertux2/images/creatures/icecrusher/rock_crusher_recovering_1.png
-share/games/supertux2/images/creatures/icecrusher/rock_crusher_recovering_2.png
-share/games/supertux2/images/creatures/icecrusher/rock_crusher_recovering_3.png
-share/games/supertux2/images/creatures/igel/burning-0.png
-share/games/supertux2/images/creatures/igel/burning-1.png
-share/games/supertux2/images/creatures/igel/burning-2.png
-share/games/supertux2/images/creatures/igel/burning-3.png
-share/games/supertux2/images/creatures/igel/burning-4.png
-share/games/supertux2/images/creatures/igel/burning-5.png
-share/games/supertux2/images/creatures/igel/burning-6.png
-share/games/supertux2/images/creatures/igel/burning-7.png
-share/games/supertux2/images/creatures/igel/burning-8.png
-share/games/supertux2/images/creatures/igel/burning-9.png
-share/games/supertux2/images/creatures/igel/frozen.png
+share/games/supertux2/images/creatures/haywire/jump-0.png
+share/games/supertux2/images/creatures/haywire/jump-1.png
+share/games/supertux2/images/creatures/haywire/jump-2.png
+share/games/supertux2/images/creatures/haywire/jump-3.png
+share/games/supertux2/images/creatures/haywire/left-0.png
+share/games/supertux2/images/creatures/haywire/left-1.png
+share/games/supertux2/images/creatures/haywire/left-2.png
+share/games/supertux2/images/creatures/haywire/left-3.png
+share/games/supertux2/images/creatures/haywire/left-4.png
+share/games/supertux2/images/creatures/haywire/left-5.png
+share/games/supertux2/images/creatures/haywire/left-6.png
+share/games/supertux2/images/creatures/haywire/left-7.png
+share/games/supertux2/images/creatures/haywire/skid-0.png
+share/games/supertux2/images/creatures/haywire/skid-1.png
+share/games/supertux2/images/creatures/haywire/skid-2.png
+share/games/supertux2/images/creatures/haywire/skid-3.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow-0.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow-1.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow-2.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow-3.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow-4.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow-5.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow-6.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow-7.png
+share/games/supertux2/images/creatures/haywire/ticking_glow/ticking_glow.sprite
+share/games/supertux2/images/creatures/haywire/triggered-0.png
+share/games/supertux2/images/creatures/haywire/triggered-1.png
+share/games/supertux2/images/creatures/haywire/triggered-2.png
+share/games/supertux2/images/creatures/haywire/triggered-3.png
+share/games/supertux2/images/creatures/haywire/triggered-4.png
+share/games/supertux2/images/creatures/haywire/triggered-5.png
+share/games/supertux2/images/creatures/haywire/triggered-6.png
+share/games/supertux2/images/creatures/haywire/triggered-7.png
+share/games/supertux2/images/creatures/haywire/triggered-8.png
+share/games/supertux2/images/creatures/iceblock/gmelting-0.png
+share/games/supertux2/images/creatures/iceblock/gmelting-1.png
+share/games/supertux2/images/creatures/iceblock/gmelting-2.png
+share/games/supertux2/images/creatures/iceblock/gmelting-3.png
+share/games/supertux2/images/creatures/iceblock/gmelting-4.png
+share/games/supertux2/images/creatures/iceblock/iceblock-0.png
+share/games/supertux2/images/creatures/iceblock/iceblock-1.png
+share/games/supertux2/images/creatures/iceblock/iceblock-2.png
+share/games/supertux2/images/creatures/iceblock/iceblock-3.png
+share/games/supertux2/images/creatures/iceblock/iceblock-4.png
+share/games/supertux2/images/creatures/iceblock/iceblock-5.png
+share/games/supertux2/images/creatures/iceblock/iceblock-6.png
+share/games/supertux2/images/creatures/iceblock/iceblock-7.png
+share/games/supertux2/images/creatures/iceblock/iceblock-squished.png
+share/games/supertux2/images/creatures/iceblock/iceblock.sprite
+share/games/supertux2/images/creatures/iceblock/iceblock_recover-0.png
+share/games/supertux2/images/creatures/iceblock/iceblock_recover-1.png
+share/games/supertux2/images/creatures/iceblock/iceblock_recover-2.png
+share/games/supertux2/images/creatures/iceblock/iceblock_recover-3.png
+share/games/supertux2/images/creatures/iceblock/iceblock_recover-4.png
+share/games/supertux2/images/creatures/iceblock/iceblock_recover-5.png
+share/games/supertux2/images/creatures/iceblock/iceblock_recover-6.png
+share/games/supertux2/images/creatures/iceblock/melting-0.png
+share/games/supertux2/images/creatures/iceblock/melting-1.png
+share/games/supertux2/images/creatures/iceblock/melting-2.png
+share/games/supertux2/images/creatures/iceblock/melting-3.png
+share/games/supertux2/images/creatures/iceblock/sgmelting-0.png
+share/games/supertux2/images/creatures/iceblock/sgmelting-1.png
+share/games/supertux2/images/creatures/iceblock/sgmelting-2.png
+share/games/supertux2/images/creatures/iceblock/sgmelting-3.png
+share/games/supertux2/images/creatures/iceblock/sgmelting-4.png
+share/games/supertux2/images/creatures/iceblock/smart_block.sprite
+share/games/supertux2/images/creatures/iceblock/smartblock-0.png
+share/games/supertux2/images/creatures/iceblock/smartblock-1.png
+share/games/supertux2/images/creatures/iceblock/smartblock-2.png
+share/games/supertux2/images/creatures/iceblock/smartblock-3.png
+share/games/supertux2/images/creatures/iceblock/smartblock-4.png
+share/games/supertux2/images/creatures/iceblock/smartblock-5.png
+share/games/supertux2/images/creatures/iceblock/smartblock-6.png
+share/games/supertux2/images/creatures/iceblock/smartblock-7.png
+share/games/supertux2/images/creatures/iceblock/smartblock-squished.png
+share/games/supertux2/images/creatures/iceblock/smartblock_recover-0.png
+share/games/supertux2/images/creatures/iceblock/smartblock_recover-1.png
+share/games/supertux2/images/creatures/iceblock/smartblock_recover-2.png
+share/games/supertux2/images/creatures/iceblock/smartblock_recover-3.png
+share/games/supertux2/images/creatures/iceblock/smartblock_recover-4.png
+share/games/supertux2/images/creatures/iceblock/smartblock_recover-5.png
+share/games/supertux2/images/creatures/iceblock/smartblock_recover-6.png
+share/games/supertux2/images/creatures/iceblock/smelting-0.png
+share/games/supertux2/images/creatures/iceblock/smelting-1.png
+share/games/supertux2/images/creatures/iceblock/smelting-2.png
+share/games/supertux2/images/creatures/iceblock/smelting-3.png
+share/games/supertux2/images/creatures/iceblock/stomped-0.png
+share/games/supertux2/images/creatures/iceblock/waking-0.png
+share/games/supertux2/images/creatures/iceblock/waking-1.png
+share/games/supertux2/images/creatures/iceblock/waking-2.png
+share/games/supertux2/images/creatures/iceblock/waking-3.png
+share/games/supertux2/images/creatures/iceblock/waking-4.png
+share/games/supertux2/images/creatures/iceblock/waking-5.png
+share/games/supertux2/images/creatures/iceblock/waking-6.png
+share/games/supertux2/images/creatures/igel/corrupted/corrupted_igel.sprite
+share/games/supertux2/images/creatures/igel/corrupted/roll-0.png
+share/games/supertux2/images/creatures/igel/corrupted/roll-1.png
+share/games/supertux2/images/creatures/igel/corrupted/roll-2.png
+share/games/supertux2/images/creatures/igel/corrupted/roll-3.png
+share/games/supertux2/images/creatures/igel/corrupted/roll-4.png
+share/games/supertux2/images/creatures/igel/corrupted/roll-5.png
+share/games/supertux2/images/creatures/igel/corrupted/roll_start-0.png
+share/games/supertux2/images/creatures/igel/corrupted/roll_start-1.png
+share/games/supertux2/images/creatures/igel/corrupted/roll_start-2.png
+share/games/supertux2/images/creatures/igel/corrupted/roll_start-3.png
+share/games/supertux2/images/creatures/igel/corrupted/walk-0.png
+share/games/supertux2/images/creatures/igel/corrupted/walk-1.png
+share/games/supertux2/images/creatures/igel/corrupted/walk-2.png
+share/games/supertux2/images/creatures/igel/corrupted/walk-3.png
+share/games/supertux2/images/creatures/igel/corrupted/walk-4.png
+share/games/supertux2/images/creatures/igel/corrupted/walk-5.png
+share/games/supertux2/images/creatures/igel/corrupted/walk-6.png
+share/games/supertux2/images/creatures/igel/corrupted/walk-7.png
share/games/supertux2/images/creatures/igel/igel.sprite
+share/games/supertux2/images/creatures/igel/roll-0.png
+share/games/supertux2/images/creatures/igel/roll-1.png
+share/games/supertux2/images/creatures/igel/roll-2.png
+share/games/supertux2/images/creatures/igel/roll-3.png
+share/games/supertux2/images/creatures/igel/roll-4.png
+share/games/supertux2/images/creatures/igel/roll-5.png
+share/games/supertux2/images/creatures/igel/roll_start-0.png
+share/games/supertux2/images/creatures/igel/roll_start-1.png
+share/games/supertux2/images/creatures/igel/roll_start-2.png
+share/games/supertux2/images/creatures/igel/roll_start-3.png
share/games/supertux2/images/creatures/igel/walk-0.png
share/games/supertux2/images/creatures/igel/walk-1.png
share/games/supertux2/images/creatures/igel/walk-2.png
-share/games/supertux2/images/creatures/igel/walking-0.png
-share/games/supertux2/images/creatures/jumpy/iced-left-up.png
-share/games/supertux2/images/creatures/jumpy/jumpy.sprite
-share/games/supertux2/images/creatures/jumpy/left-down.png
-share/games/supertux2/images/creatures/jumpy/left-middle.png
-share/games/supertux2/images/creatures/jumpy/left-up.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-0.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-1.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-10.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-2.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-3.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-4.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-5.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-6.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-7.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-8.png
-share/games/supertux2/images/creatures/jumpy/wooden-burning-9.png
-share/games/supertux2/images/creatures/jumpy/wooden-down.png
-share/games/supertux2/images/creatures/jumpy/wooden-iced.png
-share/games/supertux2/images/creatures/jumpy/wooden-middle.png
-share/games/supertux2/images/creatures/jumpy/wooden-up.png
-share/games/supertux2/images/creatures/jumpy/wooden.sprite
-share/games/supertux2/images/creatures/kirby/burning-0.png
-share/games/supertux2/images/creatures/kirby/burning-1.png
-share/games/supertux2/images/creatures/kirby/burning-2.png
-share/games/supertux2/images/creatures/kirby/burning-3.png
-share/games/supertux2/images/creatures/kirby/burning-4.png
-share/games/supertux2/images/creatures/kirby/burning-5.png
-share/games/supertux2/images/creatures/kirby/burning-6.png
-share/games/supertux2/images/creatures/kirby/burning-7.png
-share/games/supertux2/images/creatures/kirby/burning-8.png
-share/games/supertux2/images/creatures/kirby/burning-9.png
-share/games/supertux2/images/creatures/kirby/kirby.sprite
-share/games/supertux2/images/creatures/kirby/squished-left.png
-share/games/supertux2/images/creatures/kirby/walk-0.png
-share/games/supertux2/images/creatures/kirby/walk-1.png
-share/games/supertux2/images/creatures/kirby/walk-2.png
-share/games/supertux2/images/creatures/kirby/walk-3.png
-share/games/supertux2/images/creatures/kirby/walk-4.png
-share/games/supertux2/images/creatures/kirby/walk-5.png
-share/games/supertux2/images/creatures/kirby/walk-6.png
-share/games/supertux2/images/creatures/kirby/walk-7.png
+share/games/supertux2/images/creatures/igel/walk-3.png
+share/games/supertux2/images/creatures/igel/walk-4.png
+share/games/supertux2/images/creatures/igel/walk-5.png
+share/games/supertux2/images/creatures/igel/walk-6.png
+share/games/supertux2/images/creatures/igel/walk-7.png
+share/games/supertux2/images/creatures/jumpy/corrupt_down-0.png
+share/games/supertux2/images/creatures/jumpy/corrupt_down-1.png
+share/games/supertux2/images/creatures/jumpy/corrupt_down-2.png
+share/games/supertux2/images/creatures/jumpy/corrupt_up-0.png
+share/games/supertux2/images/creatures/jumpy/corrupt_up-1.png
+share/games/supertux2/images/creatures/jumpy/corrupt_up-2.png
+share/games/supertux2/images/creatures/jumpy/corrupt_up-3.png
+share/games/supertux2/images/creatures/jumpy/corruptjumpy.sprite
+share/games/supertux2/images/creatures/jumpy/metal_down-0.png
+share/games/supertux2/images/creatures/jumpy/metal_down-1.png
+share/games/supertux2/images/creatures/jumpy/metal_down-2.png
+share/games/supertux2/images/creatures/jumpy/metal_up-0.png
+share/games/supertux2/images/creatures/jumpy/metal_up-1.png
+share/games/supertux2/images/creatures/jumpy/metal_up-2.png
+share/games/supertux2/images/creatures/jumpy/metal_up-3.png
+share/games/supertux2/images/creatures/jumpy/metaljumpy.sprite
+share/games/supertux2/images/creatures/jumpy/snow_down-0.png
+share/games/supertux2/images/creatures/jumpy/snow_down-1.png
+share/games/supertux2/images/creatures/jumpy/snow_down-2.png
+share/games/supertux2/images/creatures/jumpy/snow_gear-0.png
+share/games/supertux2/images/creatures/jumpy/snow_gear-1.png
+share/games/supertux2/images/creatures/jumpy/snow_gear-2.png
+share/games/supertux2/images/creatures/jumpy/snow_gear-3.png
+share/games/supertux2/images/creatures/jumpy/snow_gear-4.png
+share/games/supertux2/images/creatures/jumpy/snow_up-0.png
+share/games/supertux2/images/creatures/jumpy/snow_up-1.png
+share/games/supertux2/images/creatures/jumpy/snow_up-2.png
+share/games/supertux2/images/creatures/jumpy/snow_up-3.png
+share/games/supertux2/images/creatures/jumpy/snowjumpy.sprite
+share/games/supertux2/images/creatures/jumpy/wood_down-0.png
+share/games/supertux2/images/creatures/jumpy/wood_down-1.png
+share/games/supertux2/images/creatures/jumpy/wood_down-2.png
+share/games/supertux2/images/creatures/jumpy/wood_up-0.png
+share/games/supertux2/images/creatures/jumpy/wood_up-1.png
+share/games/supertux2/images/creatures/jumpy/wood_up-2.png
+share/games/supertux2/images/creatures/jumpy/wood_up-3.png
+share/games/supertux2/images/creatures/jumpy/woodjumpy.sprite
share/games/supertux2/images/creatures/kugelblitz/falling-0.png
share/games/supertux2/images/creatures/kugelblitz/falling-1.png
share/games/supertux2/images/creatures/kugelblitz/falling-2.png
@@ -464,27 +1033,44 @@ share/games/supertux2/images/creatures/k
share/games/supertux2/images/creatures/kugelblitz/pop-1.png
share/games/supertux2/images/creatures/kugelblitz/pop-2.png
share/games/supertux2/images/creatures/kugelblitz/pop-3.png
-share/games/supertux2/images/creatures/laptop/laptop-falling-left.png
-share/games/supertux2/images/creatures/laptop/laptop-flat-left.png
-share/games/supertux2/images/creatures/laptop/laptop-left-0.png
-share/games/supertux2/images/creatures/laptop/laptop-left-1.png
-share/games/supertux2/images/creatures/laptop/laptop-left-2.png
+share/games/supertux2/images/creatures/laptop/laptop-0.png
+share/games/supertux2/images/creatures/laptop/laptop-1.png
+share/games/supertux2/images/creatures/laptop/laptop-2.png
+share/games/supertux2/images/creatures/laptop/laptop-3.png
+share/games/supertux2/images/creatures/laptop/laptop-4.png
+share/games/supertux2/images/creatures/laptop/laptop-5.png
+share/games/supertux2/images/creatures/laptop/laptop-6.png
+share/games/supertux2/images/creatures/laptop/laptop-7.png
share/games/supertux2/images/creatures/laptop/laptop.sprite
-share/games/supertux2/images/creatures/leafshot/burning-0.png
-share/games/supertux2/images/creatures/leafshot/burning-1.png
-share/games/supertux2/images/creatures/leafshot/burning-2.png
-share/games/supertux2/images/creatures/leafshot/burning-3.png
-share/games/supertux2/images/creatures/leafshot/burning-4.png
-share/games/supertux2/images/creatures/leafshot/burning-5.png
-share/games/supertux2/images/creatures/leafshot/burning-6.png
-share/games/supertux2/images/creatures/leafshot/burning-7.png
-share/games/supertux2/images/creatures/leafshot/collision.png
-share/games/supertux2/images/creatures/leafshot/frozen.png
+share/games/supertux2/images/creatures/laptop/laptop_flat.png
+share/games/supertux2/images/creatures/laptop/waking-0.png
+share/games/supertux2/images/creatures/laptop/waking-1.png
+share/games/supertux2/images/creatures/laptop/waking-10.png
+share/games/supertux2/images/creatures/laptop/waking-2.png
+share/games/supertux2/images/creatures/laptop/waking-3.png
+share/games/supertux2/images/creatures/laptop/waking-4.png
+share/games/supertux2/images/creatures/laptop/waking-5.png
+share/games/supertux2/images/creatures/laptop/waking-6.png
+share/games/supertux2/images/creatures/laptop/waking-7.png
+share/games/supertux2/images/creatures/laptop/waking-8.png
+share/games/supertux2/images/creatures/laptop/waking-9.png
+share/games/supertux2/images/creatures/larry/larry.png
+share/games/supertux2/images/creatures/leafshot/collision-left.png
+share/games/supertux2/images/creatures/leafshot/corrupted/collision-left.png
+share/games/supertux2/images/creatures/leafshot/corrupted/rotshot-0.png
+share/games/supertux2/images/creatures/leafshot/corrupted/rotshot-1.png
+share/games/supertux2/images/creatures/leafshot/corrupted/rotshot-2.png
+share/games/supertux2/images/creatures/leafshot/corrupted/rotshot-3.png
+share/games/supertux2/images/creatures/leafshot/corrupted/rotshot-4.png
+share/games/supertux2/images/creatures/leafshot/corrupted/rotshot-5.png
+share/games/supertux2/images/creatures/leafshot/corrupted/rotshot.sprite
+share/games/supertux2/images/creatures/leafshot/leafshot-0.png
+share/games/supertux2/images/creatures/leafshot/leafshot-1.png
+share/games/supertux2/images/creatures/leafshot/leafshot-2.png
+share/games/supertux2/images/creatures/leafshot/leafshot-3.png
+share/games/supertux2/images/creatures/leafshot/leafshot-4.png
+share/games/supertux2/images/creatures/leafshot/leafshot-5.png
share/games/supertux2/images/creatures/leafshot/leafshot.sprite
-share/games/supertux2/images/creatures/leafshot/left-1.png
-share/games/supertux2/images/creatures/leafshot/left-2.png
-share/games/supertux2/images/creatures/leafshot/left-3.png
-share/games/supertux2/images/creatures/leafshot/left-4.png
share/games/supertux2/images/creatures/livefire/d1.png
share/games/supertux2/images/creatures/livefire/d2.png
share/games/supertux2/images/creatures/livefire/d3.png
@@ -510,43 +1096,112 @@ share/games/supertux2/images/creatures/l
share/games/supertux2/images/creatures/livefire/waking2.png
share/games/supertux2/images/creatures/livefire/waking3.png
share/games/supertux2/images/creatures/livefire/waking4.png
-share/games/supertux2/images/creatures/mole/fire1.png
-share/games/supertux2/images/creatures/mole/fire2.png
-share/games/supertux2/images/creatures/mole/fire3.png
-share/games/supertux2/images/creatures/mole/fire4.png
-share/games/supertux2/images/creatures/mole/fire5.png
-share/games/supertux2/images/creatures/mole/m1.png
-share/games/supertux2/images/creatures/mole/m10.png
-share/games/supertux2/images/creatures/mole/m11.png
-share/games/supertux2/images/creatures/mole/m12.png
-share/games/supertux2/images/creatures/mole/m2.png
-share/games/supertux2/images/creatures/mole/m3.png
-share/games/supertux2/images/creatures/mole/m4.png
-share/games/supertux2/images/creatures/mole/m5.png
-share/games/supertux2/images/creatures/mole/m6.png
-share/games/supertux2/images/creatures/mole/m7.png
-share/games/supertux2/images/creatures/mole/m8.png
-share/games/supertux2/images/creatures/mole/m9.png
-share/games/supertux2/images/creatures/mole/mhill.png
-share/games/supertux2/images/creatures/mole/mole-rock.png
+share/games/supertux2/images/creatures/mole/center.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-0.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-1.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-10.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-2.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-3.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-4.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-5.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-6.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-7.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-8.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow-9.png
+share/games/supertux2/images/creatures/mole/corrupted/core_glow/core_glow.sprite
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-0.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-0_left.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-1.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-1_left.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-2.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-2_left.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-3.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-3_left.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-4.png
+share/games/supertux2/images/creatures/mole/corrupted/corrupted_hill-4_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root.sprite
+share/games/supertux2/images/creatures/mole/corrupted/root_attack.png
+share/games/supertux2/images/creatures/mole/corrupted/root_attack_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_base.png
+share/games/supertux2/images/creatures/mole/corrupted/root_base_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-0.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-0_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-1.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-10.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-10_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-11.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-11_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-1_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-2.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-2_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-3.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-3_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-4.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-4_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-5.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-5_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-6.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-6_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-7.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-7_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-8.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-8_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-9.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling-9_left.png
+share/games/supertux2/images/creatures/mole/corrupted/root_sapling.sprite
+share/games/supertux2/images/creatures/mole/down-0.png
+share/games/supertux2/images/creatures/mole/down-1.png
+share/games/supertux2/images/creatures/mole/down-2.png
share/games/supertux2/images/creatures/mole/mole.sprite
+share/games/supertux2/images/creatures/mole/mole_hill.png
+share/games/supertux2/images/creatures/mole/mole_rock-0.png
+share/games/supertux2/images/creatures/mole/mole_rock-1.png
+share/games/supertux2/images/creatures/mole/mole_rock-2.png
share/games/supertux2/images/creatures/mole/mole_rock.sprite
-share/games/supertux2/images/creatures/mr_bomb/bomb.sprite
-share/games/supertux2/images/creatures/mr_bomb/bomb1.png
-share/games/supertux2/images/creatures/mr_bomb/bomb2.png
-share/games/supertux2/images/creatures/mr_bomb/bomb3.png
-share/games/supertux2/images/creatures/mr_bomb/bomb4.png
-share/games/supertux2/images/creatures/mr_bomb/bomb5.png
-share/games/supertux2/images/creatures/mr_bomb/bomb6.png
-share/games/supertux2/images/creatures/mr_bomb/bomb7.png
-share/games/supertux2/images/creatures/mr_bomb/bomb8.png
-share/games/supertux2/images/creatures/mr_bomb/exploding-left-0.png
-share/games/supertux2/images/creatures/mr_bomb/exploding-left-1.png
-share/games/supertux2/images/creatures/mr_bomb/exploding-left-2.png
-share/games/supertux2/images/creatures/mr_bomb/exploding-left-3.png
-share/games/supertux2/images/creatures/mr_bomb/exploding-left-4.png
-share/games/supertux2/images/creatures/mr_bomb/iced-left.png
+share/games/supertux2/images/creatures/mole/peek_left-0.png
+share/games/supertux2/images/creatures/mole/peek_left-1.png
+share/games/supertux2/images/creatures/mole/peek_left-2.png
+share/games/supertux2/images/creatures/mole/peek_right-0.png
+share/games/supertux2/images/creatures/mole/peek_right-1.png
+share/games/supertux2/images/creatures/mole/peek_right-2.png
+share/games/supertux2/images/creatures/mole/up-0.png
+share/games/supertux2/images/creatures/mole/up-1.png
+share/games/supertux2/images/creatures/mole/up-2.png
+share/games/supertux2/images/creatures/mole/up-3.png
+share/games/supertux2/images/creatures/mr_bomb/left-0.png
+share/games/supertux2/images/creatures/mr_bomb/left-1.png
+share/games/supertux2/images/creatures/mr_bomb/left-2.png
+share/games/supertux2/images/creatures/mr_bomb/left-3.png
+share/games/supertux2/images/creatures/mr_bomb/left-4.png
+share/games/supertux2/images/creatures/mr_bomb/left-5.png
+share/games/supertux2/images/creatures/mr_bomb/left-6.png
+share/games/supertux2/images/creatures/mr_bomb/left-7.png
share/games/supertux2/images/creatures/mr_bomb/mr_bomb.sprite
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/left-0.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/left-1.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/left-2.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/left-3.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/left-4.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/left-5.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/left-6.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/left-7.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/old_bomb.sprite
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/ticking-0.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/ticking-1.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/ticking-2.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/ticking-3.png
+share/games/supertux2/images/creatures/mr_bomb/old_bomb/ticking-4.png
+share/games/supertux2/images/creatures/mr_bomb/ticking-0.png
+share/games/supertux2/images/creatures/mr_bomb/ticking-1.png
+share/games/supertux2/images/creatures/mr_bomb/ticking-2.png
+share/games/supertux2/images/creatures/mr_bomb/ticking-3.png
+share/games/supertux2/images/creatures/mr_bomb/ticking-4.png
+share/games/supertux2/images/creatures/mr_bomb/ticking_glow/ticking_glow-0.png
+share/games/supertux2/images/creatures/mr_bomb/ticking_glow/ticking_glow-1.png
+share/games/supertux2/images/creatures/mr_bomb/ticking_glow/ticking_glow-2.png
+share/games/supertux2/images/creatures/mr_bomb/ticking_glow/ticking_glow-3.png
+share/games/supertux2/images/creatures/mr_bomb/ticking_glow/ticking_glow-4.png
+share/games/supertux2/images/creatures/mr_bomb/ticking_glow/ticking_glow.sprite
share/games/supertux2/images/creatures/mr_candle/c-ice.png
share/games/supertux2/images/creatures/mr_candle/c1.png
share/games/supertux2/images/creatures/mr_candle/c2.png
@@ -597,117 +1252,53 @@ share/games/supertux2/images/creatures/m
share/games/supertux2/images/creatures/mr_cherry/sparkle-4.png
share/games/supertux2/images/creatures/mr_cherry/sparkle-5.png
share/games/supertux2/images/creatures/mr_cherry/sparkle-6.png
-share/games/supertux2/images/creatures/mr_iceblock/flat-left.png
-share/games/supertux2/images/creatures/mr_iceblock/gmelting-0.png
-share/games/supertux2/images/creatures/mr_iceblock/gmelting-1.png
-share/games/supertux2/images/creatures/mr_iceblock/gmelting-2.png
-share/games/supertux2/images/creatures/mr_iceblock/gmelting-3.png
-share/games/supertux2/images/creatures/mr_iceblock/gmelting-4.png
-share/games/supertux2/images/creatures/mr_iceblock/iceblock-0.png
-share/games/supertux2/images/creatures/mr_iceblock/iceblock-1.png
-share/games/supertux2/images/creatures/mr_iceblock/iceblock-2.png
-share/games/supertux2/images/creatures/mr_iceblock/iceblock-3.png
-share/games/supertux2/images/creatures/mr_iceblock/iceblock-4.png
-share/games/supertux2/images/creatures/mr_iceblock/iceblock-5.png
-share/games/supertux2/images/creatures/mr_iceblock/iceblock-6.png
-share/games/supertux2/images/creatures/mr_iceblock/iceblock-7.png
-share/games/supertux2/images/creatures/mr_iceblock/melting-0.png
-share/games/supertux2/images/creatures/mr_iceblock/melting-1.png
-share/games/supertux2/images/creatures/mr_iceblock/melting-2.png
-share/games/supertux2/images/creatures/mr_iceblock/melting-3.png
-share/games/supertux2/images/creatures/mr_iceblock/mr_iceblock.sprite
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/flat-left.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-0.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-1.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-2.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-3.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/gmelting-4.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/melting-0.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/melting-1.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/melting-2.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/melting-3.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smart_block.sprite
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smartblock-0.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smartblock-1.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smartblock-2.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smartblock-3.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smartblock-4.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smartblock-5.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smartblock-6.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/smartblock-7.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/stomped-0.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-0.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-1.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-2.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-3.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-4.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-5.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-6.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-0.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-1.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-2.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-3.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-4.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-5.png
-share/games/supertux2/images/creatures/mr_iceblock/smart_block/waking-left-6.png
-share/games/supertux2/images/creatures/mr_iceblock/stomped-0.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-0.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-1.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-2.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-3.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-4.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-5.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-6.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-left-0.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-left-1.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-left-2.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-left-3.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-left-4.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-left-5.png
-share/games/supertux2/images/creatures/mr_iceblock/waking-left-6.png
-share/games/supertux2/images/creatures/mr_tree/burning-0.png
-share/games/supertux2/images/creatures/mr_tree/burning-1.png
-share/games/supertux2/images/creatures/mr_tree/burning-10.png
-share/games/supertux2/images/creatures/mr_tree/burning-2.png
-share/games/supertux2/images/creatures/mr_tree/burning-3.png
-share/games/supertux2/images/creatures/mr_tree/burning-4.png
-share/games/supertux2/images/creatures/mr_tree/burning-5.png
-share/games/supertux2/images/creatures/mr_tree/burning-6.png
-share/games/supertux2/images/creatures/mr_tree/burning-7.png
-share/games/supertux2/images/creatures/mr_tree/burning-8.png
-share/games/supertux2/images/creatures/mr_tree/burning-9.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/eye_glow-0.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/eye_glow-1.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/eye_glow-2.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/eye_glow-3.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/eye_glow-4.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/eye_glow.sprite
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-0.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-1.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-2.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-3.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-4.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-5.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-6.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-7.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-8.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree-9.png
+share/games/supertux2/images/creatures/mr_tree/corrupted/haunted_tree.sprite
share/games/supertux2/images/creatures/mr_tree/dizzy-0.png
share/games/supertux2/images/creatures/mr_tree/dizzy-1.png
share/games/supertux2/images/creatures/mr_tree/dizzy-2.png
+share/games/supertux2/images/creatures/mr_tree/dizzy-3.png
+share/games/supertux2/images/creatures/mr_tree/dizzy-4.png
+share/games/supertux2/images/creatures/mr_tree/dizzy-5.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-0.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-1.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-2.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-3.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-4.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-5.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-6.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-7.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-8.png
+share/games/supertux2/images/creatures/mr_tree/mr_tree-9.png
share/games/supertux2/images/creatures/mr_tree/mr_tree.sprite
-share/games/supertux2/images/creatures/mr_tree/small-burning-0.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-1.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-10.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-2.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-3.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-4.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-5.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-6.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-7.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-8.png
-share/games/supertux2/images/creatures/mr_tree/small-burning-9.png
-share/games/supertux2/images/creatures/mr_tree/small-frozen.png
-share/games/supertux2/images/creatures/mr_tree/small-left-0.png
-share/games/supertux2/images/creatures/mr_tree/small-left-1.png
-share/games/supertux2/images/creatures/mr_tree/small-left-2.png
-share/games/supertux2/images/creatures/mr_tree/small-left-3.png
-share/games/supertux2/images/creatures/mr_tree/small-left-4.png
-share/games/supertux2/images/creatures/mr_tree/small-left-5.png
-share/games/supertux2/images/creatures/mr_tree/small-left-6.png
-share/games/supertux2/images/creatures/mr_tree/squished-left.png
+share/games/supertux2/images/creatures/mr_tree/squished.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-0.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-1.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-2.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-3.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-4.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-5.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-6.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-7.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-8.png
+share/games/supertux2/images/creatures/mr_tree/stumpy-9.png
share/games/supertux2/images/creatures/mr_tree/stumpy.sprite
-share/games/supertux2/images/creatures/mr_tree/walk-frozen.png
-share/games/supertux2/images/creatures/mr_tree/walk-left-1.png
-share/games/supertux2/images/creatures/mr_tree/walk-left-2.png
-share/games/supertux2/images/creatures/mr_tree/walk-left-3.png
-share/games/supertux2/images/creatures/mr_tree/walk-left-4.png
-share/games/supertux2/images/creatures/mr_tree/walk-left-5.png
-share/games/supertux2/images/creatures/mr_tree/walk-left-6.png
+share/games/supertux2/images/creatures/nolok/dash.png
share/games/supertux2/images/creatures/nolok/jump-0.png
share/games/supertux2/images/creatures/nolok/jump-1.png
share/games/supertux2/images/creatures/nolok/jump-2.png
@@ -719,26 +1310,122 @@ share/games/supertux2/images/creatures/n
share/games/supertux2/images/creatures/nolok/walk-2.png
share/games/supertux2/images/creatures/nolok/walk-3.png
share/games/supertux2/images/creatures/nolok/walk-4.png
-share/games/supertux2/images/creatures/owl/burning-0.png
-share/games/supertux2/images/creatures/owl/burning-1.png
-share/games/supertux2/images/creatures/owl/burning-2.png
-share/games/supertux2/images/creatures/owl/burning-3.png
-share/games/supertux2/images/creatures/owl/burning-4.png
-share/games/supertux2/images/creatures/owl/burning-5.png
-share/games/supertux2/images/creatures/owl/burning-6.png
-share/games/supertux2/images/creatures/owl/burning-7.png
-share/games/supertux2/images/creatures/owl/burning-8.png
-share/games/supertux2/images/creatures/owl/burning-9.png
-share/games/supertux2/images/creatures/owl/left-0.png
-share/games/supertux2/images/creatures/owl/left-1.png
-share/games/supertux2/images/creatures/owl/left-2.png
-share/games/supertux2/images/creatures/owl/left-3.png
-share/games/supertux2/images/creatures/owl/left-4.png
-share/games/supertux2/images/creatures/owl/left-5.png
-share/games/supertux2/images/creatures/owl/left-6.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-0.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-1.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-2.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-3.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-4.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-5.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-6.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-7.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-8.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x1-9.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-0.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-1.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-2.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-3.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-4.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-5.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-6.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-7.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-8.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-1x2-9.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-0.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-1.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-2.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-3.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-4.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-5.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-6.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-7.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-8.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x1-9.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-0.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-1.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-2.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-3.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-4.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-5.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-6.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-7.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-8.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-2x2-9.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-0.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-1.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-2.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-3.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-4.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-5.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-6.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-7.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-8.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay-3x3-9.png
+share/games/supertux2/images/creatures/overlays/fireoverlay/fireoverlay.sprite
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x1-1.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x1-2.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x1-3.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x1-4.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x1-5.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x2-1.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x2-2.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x2-3.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x2-4.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-1x2-5.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x1-1.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x1-2.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x1-3.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x1-4.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x1-5.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x2-1.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x2-2.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x2-3.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x2-4.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-2x2-5.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-3x3-1.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-3x3-2.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-3x3-3.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-3x3-4.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay-3x3-5.png
+share/games/supertux2/images/creatures/overlays/iceoverlay/iceoverlay.sprite
+share/games/supertux2/images/creatures/owl/carry-0.png
+share/games/supertux2/images/creatures/owl/carry-1.png
+share/games/supertux2/images/creatures/owl/carry-2.png
+share/games/supertux2/images/creatures/owl/carry-3.png
+share/games/supertux2/images/creatures/owl/carry-4.png
+share/games/supertux2/images/creatures/owl/carry-5.png
+share/games/supertux2/images/creatures/owl/carry-6.png
+share/games/supertux2/images/creatures/owl/carry-7.png
+share/games/supertux2/images/creatures/owl/carry-8.png
+share/games/supertux2/images/creatures/owl/carry-9.png
+share/games/supertux2/images/creatures/owl/fly-0.png
+share/games/supertux2/images/creatures/owl/fly-1.png
+share/games/supertux2/images/creatures/owl/fly-2.png
+share/games/supertux2/images/creatures/owl/fly-3.png
+share/games/supertux2/images/creatures/owl/fly-4.png
+share/games/supertux2/images/creatures/owl/fly-5.png
+share/games/supertux2/images/creatures/owl/fly-6.png
+share/games/supertux2/images/creatures/owl/fly-7.png
+share/games/supertux2/images/creatures/owl/fly-8.png
+share/games/supertux2/images/creatures/owl/fly-9.png
share/games/supertux2/images/creatures/owl/owl.sprite
-share/games/supertux2/images/creatures/penny/penny.png
+share/games/supertux2/images/creatures/penny/credits-0.png
+share/games/supertux2/images/creatures/penny/credits-1.png
+share/games/supertux2/images/creatures/penny/credits-2.png
+share/games/supertux2/images/creatures/penny/credits-3.png
+share/games/supertux2/images/creatures/penny/credits-4.png
+share/games/supertux2/images/creatures/penny/credits-5.png
+share/games/supertux2/images/creatures/penny/credits-6.png
+share/games/supertux2/images/creatures/penny/credits-7.png
share/games/supertux2/images/creatures/penny/penny.sprite
+share/games/supertux2/images/creatures/penny/stand-0.png
+share/games/supertux2/images/creatures/penny/stand-1.png
+share/games/supertux2/images/creatures/penny/stand-2.png
+share/games/supertux2/images/creatures/penny/stand-3.png
+share/games/supertux2/images/creatures/penny/stand-4.png
+share/games/supertux2/images/creatures/penny/stand-5.png
+share/games/supertux2/images/creatures/penny/stand-6.png
+share/games/supertux2/images/creatures/penny/stand-7.png
+share/games/supertux2/images/creatures/penny/stand-8.png
share/games/supertux2/images/creatures/plant/burning-0.png
share/games/supertux2/images/creatures/plant/burning-1.png
share/games/supertux2/images/creatures/plant/burning-10.png
@@ -750,7 +1437,6 @@ share/games/supertux2/images/creatures/p
share/games/supertux2/images/creatures/plant/burning-7.png
share/games/supertux2/images/creatures/plant/burning-8.png
share/games/supertux2/images/creatures/plant/burning-9.png
-share/games/supertux2/images/creatures/plant/frozen.png
share/games/supertux2/images/creatures/plant/left-0.png
share/games/supertux2/images/creatures/plant/left-1.png
share/games/supertux2/images/creatures/plant/left-2.png
@@ -772,145 +1458,171 @@ share/games/supertux2/images/creatures/p
share/games/supertux2/images/creatures/plant/waking-left-3.png
share/games/supertux2/images/creatures/plant/waking-left-4.png
share/games/supertux2/images/creatures/plant/waking-left-5.png
-share/games/supertux2/images/creatures/poison_ivy/burning-0.png
-share/games/supertux2/images/creatures/poison_ivy/burning-1.png
-share/games/supertux2/images/creatures/poison_ivy/burning-2.png
-share/games/supertux2/images/creatures/poison_ivy/burning-3.png
-share/games/supertux2/images/creatures/poison_ivy/burning-4.png
-share/games/supertux2/images/creatures/poison_ivy/burning-5.png
-share/games/supertux2/images/creatures/poison_ivy/burning-6.png
-share/games/supertux2/images/creatures/poison_ivy/burning-7.png
-share/games/supertux2/images/creatures/poison_ivy/burning-8.png
-share/games/supertux2/images/creatures/poison_ivy/burning-9.png
-share/games/supertux2/images/creatures/poison_ivy/frozen.png
-share/games/supertux2/images/creatures/poison_ivy/left-0.png
-share/games/supertux2/images/creatures/poison_ivy/left-1.png
-share/games/supertux2/images/creatures/poison_ivy/left-2.png
-share/games/supertux2/images/creatures/poison_ivy/poison_ivy.sprite
-share/games/supertux2/images/creatures/poison_ivy/squished.png
-share/games/supertux2/images/creatures/short_fuse/sf1.png
-share/games/supertux2/images/creatures/short_fuse/sf2.png
-share/games/supertux2/images/creatures/short_fuse/sf3.png
-share/games/supertux2/images/creatures/short_fuse/sf4.png
-share/games/supertux2/images/creatures/short_fuse/sf5.png
-share/games/supertux2/images/creatures/short_fuse/sf6.png
+share/games/supertux2/images/creatures/pumpkin/b-squished.png
+share/games/supertux2/images/creatures/pumpkin/bumpkin.sprite
+share/games/supertux2/images/creatures/pumpkin/p-squished.png
+share/games/supertux2/images/creatures/pumpkin/pumpkin.sprite
+share/games/supertux2/images/creatures/pumpkin/walk-0-0.png
+share/games/supertux2/images/creatures/pumpkin/walk-0-1.png
+share/games/supertux2/images/creatures/pumpkin/walk-0-2.png
+share/games/supertux2/images/creatures/pumpkin/walk-0-3.png
+share/games/supertux2/images/creatures/pumpkin/walk-0-4.png
+share/games/supertux2/images/creatures/pumpkin/walk-0-5.png
+share/games/supertux2/images/creatures/pumpkin/walk-0-6.png
+share/games/supertux2/images/creatures/pumpkin/walk-0-7.png
+share/games/supertux2/images/creatures/pumpkin/walk-1-0.png
+share/games/supertux2/images/creatures/pumpkin/walk-1-1.png
+share/games/supertux2/images/creatures/pumpkin/walk-1-2.png
+share/games/supertux2/images/creatures/pumpkin/walk-1-3.png
+share/games/supertux2/images/creatures/pumpkin/walk-1-4.png
+share/games/supertux2/images/creatures/pumpkin/walk-1-5.png
+share/games/supertux2/images/creatures/pumpkin/walk-1-6.png
+share/games/supertux2/images/creatures/pumpkin/walk-1-7.png
+share/games/supertux2/images/creatures/short_fuse/short_fuse-0.png
+share/games/supertux2/images/creatures/short_fuse/short_fuse-1.png
+share/games/supertux2/images/creatures/short_fuse/short_fuse-2.png
+share/games/supertux2/images/creatures/short_fuse/short_fuse-3.png
+share/games/supertux2/images/creatures/short_fuse/short_fuse-4.png
+share/games/supertux2/images/creatures/short_fuse/short_fuse-5.png
+share/games/supertux2/images/creatures/short_fuse/short_fuse-6.png
+share/games/supertux2/images/creatures/short_fuse/short_fuse-7.png
share/games/supertux2/images/creatures/short_fuse/short_fuse.sprite
-share/games/supertux2/images/creatures/short_fuse/shortfuse-editor.png
-share/games/supertux2/images/creatures/skullyhop/burning-0.png
-share/games/supertux2/images/creatures/skullyhop/burning-1.png
-share/games/supertux2/images/creatures/skullyhop/burning-2.png
-share/games/supertux2/images/creatures/skullyhop/burning-3.png
-share/games/supertux2/images/creatures/skullyhop/burning-4.png
-share/games/supertux2/images/creatures/skullyhop/burning-5.png
-share/games/supertux2/images/creatures/skullyhop/burning-6.png
-share/games/supertux2/images/creatures/skullyhop/burning-7.png
-share/games/supertux2/images/creatures/skullyhop/burning-8.png
-share/games/supertux2/images/creatures/skullyhop/burning-9.png
-share/games/supertux2/images/creatures/skullyhop/s-ice.png
-share/games/supertux2/images/creatures/skullyhop/s-idle.png
-share/games/supertux2/images/creatures/skullyhop/s-jump.png
-share/games/supertux2/images/creatures/skullyhop/s-jump1.png
-share/games/supertux2/images/creatures/skullyhop/s-land.png
-share/games/supertux2/images/creatures/skullyhop/s-land0.png
-share/games/supertux2/images/creatures/skullyhop/s-land1.png
-share/games/supertux2/images/creatures/skullyhop/s-land2.png
-share/games/supertux2/images/creatures/skullyhop/s-squish.png
+share/games/supertux2/images/creatures/skullyhop/charge_down-0.png
+share/games/supertux2/images/creatures/skullyhop/charge_down-1.png
+share/games/supertux2/images/creatures/skullyhop/charge_down-2.png
+share/games/supertux2/images/creatures/skullyhop/charge_down-3.png
+share/games/supertux2/images/creatures/skullyhop/charge_left-0.png
+share/games/supertux2/images/creatures/skullyhop/charge_left-1.png
+share/games/supertux2/images/creatures/skullyhop/charge_left-2.png
+share/games/supertux2/images/creatures/skullyhop/charge_left-3.png
+share/games/supertux2/images/creatures/skullyhop/dart_light.png
+share/games/supertux2/images/creatures/skullyhop/darttrap.sprite
+share/games/supertux2/images/creatures/skullyhop/empty_down-0.png
+share/games/supertux2/images/creatures/skullyhop/empty_down-1.png
+share/games/supertux2/images/creatures/skullyhop/empty_down-2.png
+share/games/supertux2/images/creatures/skullyhop/empty_down-3.png
+share/games/supertux2/images/creatures/skullyhop/empty_down-4.png
+share/games/supertux2/images/creatures/skullyhop/empty_left-0.png
+share/games/supertux2/images/creatures/skullyhop/empty_left-1.png
+share/games/supertux2/images/creatures/skullyhop/empty_left-2.png
+share/games/supertux2/images/creatures/skullyhop/empty_left-3.png
+share/games/supertux2/images/creatures/skullyhop/empty_left-4.png
+share/games/supertux2/images/creatures/skullyhop/jump-0.png
+share/games/supertux2/images/creatures/skullyhop/jump-1.png
+share/games/supertux2/images/creatures/skullyhop/jump-2.png
+share/games/supertux2/images/creatures/skullyhop/land-0.png
+share/games/supertux2/images/creatures/skullyhop/land-1.png
+share/games/supertux2/images/creatures/skullyhop/skull_dart.sprite
+share/games/supertux2/images/creatures/skullyhop/skull_dart_down.png
+share/games/supertux2/images/creatures/skullyhop/skull_dart_left.png
share/games/supertux2/images/creatures/skullyhop/skullyhop.sprite
+share/games/supertux2/images/creatures/skullyhop/squished.png
+share/games/supertux2/images/creatures/skullyhop/stand-0.png
+share/games/supertux2/images/creatures/skydive/skydive-0.png
+share/games/supertux2/images/creatures/skydive/skydive-1.png
+share/games/supertux2/images/creatures/skydive/skydive-2.png
+share/games/supertux2/images/creatures/skydive/skydive-3.png
+share/games/supertux2/images/creatures/skydive/skydive-4.png
share/games/supertux2/images/creatures/skydive/skydive.sprite
-share/games/supertux2/images/creatures/skydive/skydive1.png
-share/games/supertux2/images/creatures/skydive/skydive2.png
-share/games/supertux2/images/creatures/skydive/skydive3.png
-share/games/supertux2/images/creatures/skydive/skydive4.png
-share/games/supertux2/images/creatures/skydive/skydive5.png
-share/games/supertux2/images/creatures/snail/burning-0.png
-share/games/supertux2/images/creatures/snail/burning-1.png
-share/games/supertux2/images/creatures/snail/burning-2.png
-share/games/supertux2/images/creatures/snail/burning-3.png
-share/games/supertux2/images/creatures/snail/burning-4.png
-share/games/supertux2/images/creatures/snail/burning-5.png
-share/games/supertux2/images/creatures/snail/burning-6.png
-share/games/supertux2/images/creatures/snail/burning-7.png
-share/games/supertux2/images/creatures/snail/burning-8.png
-share/games/supertux2/images/creatures/snail/frozen.png
+share/games/supertux2/images/creatures/snail/corrupted/corrupted_snail.sprite
+share/games/supertux2/images/creatures/snail/corrupted/guard-0.png
+share/games/supertux2/images/creatures/snail/corrupted/guard-1.png
+share/games/supertux2/images/creatures/snail/corrupted/guard-2.png
+share/games/supertux2/images/creatures/snail/corrupted/guard-3.png
+share/games/supertux2/images/creatures/snail/corrupted/guard-4.png
+share/games/supertux2/images/creatures/snail/corrupted/guard-5.png
+share/games/supertux2/images/creatures/snail/corrupted/guard-6.png
+share/games/supertux2/images/creatures/snail/corrupted/guard-7.png
+share/games/supertux2/images/creatures/snail/corrupted/left-0.png
+share/games/supertux2/images/creatures/snail/corrupted/left-1.png
+share/games/supertux2/images/creatures/snail/corrupted/left-2.png
+share/games/supertux2/images/creatures/snail/corrupted/left-3.png
+share/games/supertux2/images/creatures/snail/corrupted/left-4.png
+share/games/supertux2/images/creatures/snail/corrupted/left-5.png
+share/games/supertux2/images/creatures/snail/corrupted/left-6.png
+share/games/supertux2/images/creatures/snail/corrupted/left-7.png
+share/games/supertux2/images/creatures/snail/corrupted/rotate-0.png
+share/games/supertux2/images/creatures/snail/corrupted/rotate-1.png
+share/games/supertux2/images/creatures/snail/corrupted/rotate-2.png
+share/games/supertux2/images/creatures/snail/corrupted/rotate-3.png
+share/games/supertux2/images/creatures/snail/corrupted/rotate-4.png
+share/games/supertux2/images/creatures/snail/corrupted/rotate-5.png
+share/games/supertux2/images/creatures/snail/corrupted/rotate-6.png
+share/games/supertux2/images/creatures/snail/corrupted/rotate-7.png
+share/games/supertux2/images/creatures/snail/left-0.png
+share/games/supertux2/images/creatures/snail/left-1.png
+share/games/supertux2/images/creatures/snail/left-2.png
+share/games/supertux2/images/creatures/snail/left-3.png
+share/games/supertux2/images/creatures/snail/left-4.png
+share/games/supertux2/images/creatures/snail/left-5.png
+share/games/supertux2/images/creatures/snail/left-6.png
+share/games/supertux2/images/creatures/snail/left-7.png
+share/games/supertux2/images/creatures/snail/rotate-0.png
+share/games/supertux2/images/creatures/snail/rotate-1.png
+share/games/supertux2/images/creatures/snail/rotate-2.png
+share/games/supertux2/images/creatures/snail/rotate-3.png
+share/games/supertux2/images/creatures/snail/rotate-4.png
+share/games/supertux2/images/creatures/snail/rotate-5.png
+share/games/supertux2/images/creatures/snail/rotate-6.png
+share/games/supertux2/images/creatures/snail/rotate-7.png
share/games/supertux2/images/creatures/snail/snail.sprite
-share/games/supertux2/images/creatures/snail/snowsnail.png
-share/games/supertux2/images/creatures/snail/snowsnail1.png
-share/games/supertux2/images/creatures/snail/snowsnail2.png
-share/games/supertux2/images/creatures/snail/snowsnail3.png
-share/games/supertux2/images/creatures/snail/snowsnail_flip.png
-share/games/supertux2/images/creatures/snail/snowsnail_flip1.png
-share/games/supertux2/images/creatures/snail/snowsnail_flip2.png
-share/games/supertux2/images/creatures/snail/snowsnail_flip3.png
-share/games/supertux2/images/creatures/snail/snowsnail_flip4.png
-share/games/supertux2/images/creatures/snail/snowsnail_flip5.png
-share/games/supertux2/images/creatures/snail/snowsnail_flip6.png
-share/games/supertux2/images/creatures/snail/snowsnail_flip7.png
-share/games/supertux2/images/creatures/snail/snowsnail_unflip.png
-share/games/supertux2/images/creatures/snowball/captain-left-0.png
-share/games/supertux2/images/creatures/snowball/captain-left-1.png
-share/games/supertux2/images/creatures/snowball/captain-left-2.png
-share/games/supertux2/images/creatures/snowball/captain-left-3.png
-share/games/supertux2/images/creatures/snowball/captain-left-4.png
-share/games/supertux2/images/creatures/snowball/captain-left-5.png
-share/games/supertux2/images/creatures/snowball/captain-left-6.png
-share/games/supertux2/images/creatures/snowball/captain-left-7.png
-share/games/supertux2/images/creatures/snowball/captain-right-0.png
-share/games/supertux2/images/creatures/snowball/captain-right-1.png
-share/games/supertux2/images/creatures/snowball/captain-right-2.png
-share/games/supertux2/images/creatures/snowball/captain-right-3.png
-share/games/supertux2/images/creatures/snowball/captain-right-4.png
-share/games/supertux2/images/creatures/snowball/captain-right-5.png
-share/games/supertux2/images/creatures/snowball/captain-right-6.png
-share/games/supertux2/images/creatures/snowball/captain-right-7.png
-share/games/supertux2/images/creatures/snowball/collision-left.png
-share/games/supertux2/images/creatures/snowball/cpt-gmelting-0.png
-share/games/supertux2/images/creatures/snowball/cpt-gmelting-1.png
-share/games/supertux2/images/creatures/snowball/cpt-gmelting-2.png
-share/games/supertux2/images/creatures/snowball/cpt-gmelting-3.png
-share/games/supertux2/images/creatures/snowball/cpt-gmelting-4.png
-share/games/supertux2/images/creatures/snowball/cpt-melting-0.png
-share/games/supertux2/images/creatures/snowball/cpt-melting-1.png
-share/games/supertux2/images/creatures/snowball/cpt-melting-2.png
-share/games/supertux2/images/creatures/snowball/cpt-melting-3.png
-share/games/supertux2/images/creatures/snowball/cpt-snowball.sprite
-share/games/supertux2/images/creatures/snowball/cpt-squished-left.png
-share/games/supertux2/images/creatures/snowball/cpt-squished-right.png
-share/games/supertux2/images/creatures/snowball/gmelting-0.png
-share/games/supertux2/images/creatures/snowball/gmelting-1.png
-share/games/supertux2/images/creatures/snowball/gmelting-2.png
-share/games/supertux2/images/creatures/snowball/gmelting-3.png
-share/games/supertux2/images/creatures/snowball/gmelting-4.png
-share/games/supertux2/images/creatures/snowball/kamikaze-melting-0.png
-share/games/supertux2/images/creatures/snowball/kamikaze-melting-1.png
-share/games/supertux2/images/creatures/snowball/kamikaze-melting-2.png
-share/games/supertux2/images/creatures/snowball/kamikaze-melting-3.png
-share/games/supertux2/images/creatures/snowball/kamikaze-snowball-editor.png
+share/games/supertux2/images/creatures/snowball/captain-snowball.sprite
+share/games/supertux2/images/creatures/snowball/captain_jump-0.png
+share/games/supertux2/images/creatures/snowball/captain_jump-1.png
+share/games/supertux2/images/creatures/snowball/captain_jump-2.png
+share/games/supertux2/images/creatures/snowball/captain_jump-3.png
+share/games/supertux2/images/creatures/snowball/captain_jump-4.png
+share/games/supertux2/images/creatures/snowball/captain_jump-5.png
+share/games/supertux2/images/creatures/snowball/captain_jump-6.png
+share/games/supertux2/images/creatures/snowball/captain_jump-7.png
+share/games/supertux2/images/creatures/snowball/captain_left-0.png
+share/games/supertux2/images/creatures/snowball/captain_left-1.png
+share/games/supertux2/images/creatures/snowball/captain_left-2.png
+share/games/supertux2/images/creatures/snowball/captain_left-3.png
+share/games/supertux2/images/creatures/snowball/captain_left-4.png
+share/games/supertux2/images/creatures/snowball/captain_left-5.png
+share/games/supertux2/images/creatures/snowball/captain_left-6.png
+share/games/supertux2/images/creatures/snowball/captain_left-7.png
+share/games/supertux2/images/creatures/snowball/captain_left-squished.png
+share/games/supertux2/images/creatures/snowball/captain_right-0.png
+share/games/supertux2/images/creatures/snowball/captain_right-1.png
+share/games/supertux2/images/creatures/snowball/captain_right-2.png
+share/games/supertux2/images/creatures/snowball/captain_right-3.png
+share/games/supertux2/images/creatures/snowball/captain_right-4.png
+share/games/supertux2/images/creatures/snowball/captain_right-5.png
+share/games/supertux2/images/creatures/snowball/captain_right-6.png
+share/games/supertux2/images/creatures/snowball/captain_right-7.png
+share/games/supertux2/images/creatures/snowball/captain_right-squished.png
+share/games/supertux2/images/creatures/snowball/christmasball-0.png
+share/games/supertux2/images/creatures/snowball/christmasball-1.png
+share/games/supertux2/images/creatures/snowball/christmasball-2.png
+share/games/supertux2/images/creatures/snowball/christmasball-3.png
+share/games/supertux2/images/creatures/snowball/christmasball-4.png
+share/games/supertux2/images/creatures/snowball/christmasball-5.png
+share/games/supertux2/images/creatures/snowball/christmasball-6.png
+share/games/supertux2/images/creatures/snowball/christmasball-7.png
+share/games/supertux2/images/creatures/snowball/christmasball-squished.png
+share/games/supertux2/images/creatures/snowball/kamikaze-0.png
+share/games/supertux2/images/creatures/snowball/kamikaze-1.png
+share/games/supertux2/images/creatures/snowball/kamikaze-2.png
+share/games/supertux2/images/creatures/snowball/kamikaze-3.png
+share/games/supertux2/images/creatures/snowball/kamikaze-4.png
+share/games/supertux2/images/creatures/snowball/kamikaze-5.png
+share/games/supertux2/images/creatures/snowball/kamikaze-collision.png
+share/games/supertux2/images/creatures/snowball/kamikaze-editor.png
share/games/supertux2/images/creatures/snowball/kamikaze-snowball.sprite
-share/games/supertux2/images/creatures/snowball/ks1.png
-share/games/supertux2/images/creatures/snowball/ks2.png
-share/games/supertux2/images/creatures/snowball/ks3.png
-share/games/supertux2/images/creatures/snowball/ks4.png
-share/games/supertux2/images/creatures/snowball/ks5.png
-share/games/supertux2/images/creatures/snowball/ks6.png
-share/games/supertux2/images/creatures/snowball/melting-0.png
-share/games/supertux2/images/creatures/snowball/melting-1.png
-share/games/supertux2/images/creatures/snowball/melting-2.png
-share/games/supertux2/images/creatures/snowball/melting-3.png
-share/games/supertux2/images/creatures/snowball/mrs-squished-left.png
-share/games/supertux2/images/creatures/snowball/season-gmelting-0.png
-share/games/supertux2/images/creatures/snowball/season-gmelting-1.png
-share/games/supertux2/images/creatures/snowball/season-gmelting-2.png
-share/games/supertux2/images/creatures/snowball/season-gmelting-3.png
-share/games/supertux2/images/creatures/snowball/season-gmelting-4.png
-share/games/supertux2/images/creatures/snowball/season-left-0.png
-share/games/supertux2/images/creatures/snowball/season-left-1.png
-share/games/supertux2/images/creatures/snowball/season-left-2.png
-share/games/supertux2/images/creatures/snowball/season-melting-0.png
-share/games/supertux2/images/creatures/snowball/season-melting-1.png
-share/games/supertux2/images/creatures/snowball/season-melting-2.png
-share/games/supertux2/images/creatures/snowball/season-melting-3.png
share/games/supertux2/images/creatures/snowball/seasonal-snowball.sprite
+share/games/supertux2/images/creatures/snowball/smart-seasonal-snowball.sprite
share/games/supertux2/images/creatures/snowball/smart-snowball.sprite
+share/games/supertux2/images/creatures/snowball/smart_christmasball-0.png
+share/games/supertux2/images/creatures/snowball/smart_christmasball-1.png
+share/games/supertux2/images/creatures/snowball/smart_christmasball-2.png
+share/games/supertux2/images/creatures/snowball/smart_christmasball-3.png
+share/games/supertux2/images/creatures/snowball/smart_christmasball-4.png
+share/games/supertux2/images/creatures/snowball/smart_christmasball-5.png
+share/games/supertux2/images/creatures/snowball/smart_christmasball-6.png
+share/games/supertux2/images/creatures/snowball/smart_christmasball-7.png
+share/games/supertux2/images/creatures/snowball/smart_christmasball-squished.png
share/games/supertux2/images/creatures/snowball/smartball-0.png
share/games/supertux2/images/creatures/snowball/smartball-1.png
share/games/supertux2/images/creatures/snowball/smartball-2.png
@@ -919,6 +1631,7 @@ share/games/supertux2/images/creatures/s
share/games/supertux2/images/creatures/snowball/smartball-5.png
share/games/supertux2/images/creatures/snowball/smartball-6.png
share/games/supertux2/images/creatures/snowball/smartball-7.png
+share/games/supertux2/images/creatures/snowball/smartball-squished.png
share/games/supertux2/images/creatures/snowball/snowball-0.png
share/games/supertux2/images/creatures/snowball/snowball-1.png
share/games/supertux2/images/creatures/snowball/snowball-2.png
@@ -927,127 +1640,99 @@ share/games/supertux2/images/creatures/s
share/games/supertux2/images/creatures/snowball/snowball-5.png
share/games/supertux2/images/creatures/snowball/snowball-6.png
share/games/supertux2/images/creatures/snowball/snowball-7.png
+share/games/supertux2/images/creatures/snowball/snowball-squished.png
share/games/supertux2/images/creatures/snowball/snowball.sprite
-share/games/supertux2/images/creatures/snowball/sport-gmelting-0.png
-share/games/supertux2/images/creatures/snowball/sport-gmelting-1.png
-share/games/supertux2/images/creatures/snowball/sport-gmelting-2.png
-share/games/supertux2/images/creatures/snowball/sport-gmelting-3.png
-share/games/supertux2/images/creatures/snowball/sport-gmelting-4.png
-share/games/supertux2/images/creatures/snowball/sport-melting-0.png
-share/games/supertux2/images/creatures/snowball/sport-melting-1.png
-share/games/supertux2/images/creatures/snowball/sport-melting-2.png
-share/games/supertux2/images/creatures/snowball/sport-melting-3.png
-share/games/supertux2/images/creatures/snowball/squished-left.png
-share/games/supertux2/images/creatures/snowjumpy/down-0.png
-share/games/supertux2/images/creatures/snowjumpy/down-1.png
-share/games/supertux2/images/creatures/snowjumpy/down-2.png
-share/games/supertux2/images/creatures/snowjumpy/gear-cracked.png
-share/games/supertux2/images/creatures/snowjumpy/gear.png
-share/games/supertux2/images/creatures/snowjumpy/iced-left-up.png
-share/games/supertux2/images/creatures/snowjumpy/melting-0.png
-share/games/supertux2/images/creatures/snowjumpy/melting-1.png
-share/games/supertux2/images/creatures/snowjumpy/melting-2.png
-share/games/supertux2/images/creatures/snowjumpy/melting-3.png
-share/games/supertux2/images/creatures/snowjumpy/snowjumpy.sprite
-share/games/supertux2/images/creatures/snowjumpy/up-0.png
-share/games/supertux2/images/creatures/snowjumpy/up-1.png
-share/games/supertux2/images/creatures/snowjumpy/up-2.png
-share/games/supertux2/images/creatures/snowjumpy/up-3.png
-share/games/supertux2/images/creatures/snowman/gmelting-0.png
-share/games/supertux2/images/creatures/snowman/gmelting-1.png
-share/games/supertux2/images/creatures/snowman/gmelting-2.png
-share/games/supertux2/images/creatures/snowman/gmelting-3.png
-share/games/supertux2/images/creatures/snowman/gmelting-4.png
-share/games/supertux2/images/creatures/snowman/melting-0.png
-share/games/supertux2/images/creatures/snowman/melting-1.png
-share/games/supertux2/images/creatures/snowman/melting-2.png
-share/games/supertux2/images/creatures/snowman/melting-3.png
-share/games/supertux2/images/creatures/snowman/smwalk1.png
-share/games/supertux2/images/creatures/snowman/smwalk10.png
-share/games/supertux2/images/creatures/snowman/smwalk2.png
-share/games/supertux2/images/creatures/snowman/smwalk3.png
-share/games/supertux2/images/creatures/snowman/smwalk4.png
-share/games/supertux2/images/creatures/snowman/smwalk5.png
-share/games/supertux2/images/creatures/snowman/smwalk6.png
-share/games/supertux2/images/creatures/snowman/smwalk7.png
-share/games/supertux2/images/creatures/snowman/smwalk8.png
-share/games/supertux2/images/creatures/snowman/smwalk9.png
-share/games/supertux2/images/creatures/snowman/snowman-headless-1.png
-share/games/supertux2/images/creatures/snowman/snowman-headless-2.png
-share/games/supertux2/images/creatures/snowman/snowman-headless-3.png
+share/games/supertux2/images/creatures/snowman/headless-0.png
+share/games/supertux2/images/creatures/snowman/headless-1.png
+share/games/supertux2/images/creatures/snowman/headless-2.png
+share/games/supertux2/images/creatures/snowman/snowman-0.png
+share/games/supertux2/images/creatures/snowman/snowman-1.png
+share/games/supertux2/images/creatures/snowman/snowman-2.png
+share/games/supertux2/images/creatures/snowman/snowman-3.png
+share/games/supertux2/images/creatures/snowman/snowman-4.png
+share/games/supertux2/images/creatures/snowman/snowman-5.png
+share/games/supertux2/images/creatures/snowman/snowman-6.png
+share/games/supertux2/images/creatures/snowman/snowman-7.png
+share/games/supertux2/images/creatures/snowman/snowman-8.png
+share/games/supertux2/images/creatures/snowman/snowman-9.png
share/games/supertux2/images/creatures/snowman/snowman.sprite
-share/games/supertux2/images/creatures/spidermite/burning-0.png
-share/games/supertux2/images/creatures/spidermite/burning-1.png
-share/games/supertux2/images/creatures/spidermite/burning-2.png
-share/games/supertux2/images/creatures/spidermite/burning-3.png
-share/games/supertux2/images/creatures/spidermite/burning-4.png
-share/games/supertux2/images/creatures/spidermite/burning-5.png
-share/games/supertux2/images/creatures/spidermite/burning-6.png
-share/games/supertux2/images/creatures/spidermite/burning-7.png
-share/games/supertux2/images/creatures/spidermite/spidermite-frozen.png
-share/games/supertux2/images/creatures/spidermite/spidermite-squish.png
+share/games/supertux2/images/creatures/spidermite/spidermite-0.png
+share/games/supertux2/images/creatures/spidermite/spidermite-1.png
+share/games/supertux2/images/creatures/spidermite/spidermite-2.png
+share/games/supertux2/images/creatures/spidermite/spidermite-3.png
+share/games/supertux2/images/creatures/spidermite/spidermite-4.png
+share/games/supertux2/images/creatures/spidermite/spidermite-5.png
+share/games/supertux2/images/creatures/spidermite/spidermite-6.png
+share/games/supertux2/images/creatures/spidermite/spidermite-7.png
+share/games/supertux2/images/creatures/spidermite/spidermite-8.png
+share/games/supertux2/images/creatures/spidermite/spidermite-9.png
share/games/supertux2/images/creatures/spidermite/spidermite.sprite
-share/games/supertux2/images/creatures/spidermite/spidermite1.png
-share/games/supertux2/images/creatures/spidermite/spidermite2.png
-share/games/supertux2/images/creatures/spidermite/spidermite3.png
-share/games/supertux2/images/creatures/spidermite/spidermite4.png
-share/games/supertux2/images/creatures/spidermite/spidermite5.png
-share/games/supertux2/images/creatures/spidermite/spidermite6.png
-share/games/supertux2/images/creatures/spike/down.png
-share/games/supertux2/images/creatures/spike/left.png
-share/games/supertux2/images/creatures/spike/right.png
-share/games/supertux2/images/creatures/spike/spikedown.png
-share/games/supertux2/images/creatures/spike/spikedown.sprite
-share/games/supertux2/images/creatures/spike/spikedown2.png
-share/games/supertux2/images/creatures/spike/spikedown2.sprite
-share/games/supertux2/images/creatures/spike/spikeleft.png
-share/games/supertux2/images/creatures/spike/spikeleft2.png
-share/games/supertux2/images/creatures/spike/spikeright.png
-share/games/supertux2/images/creatures/spike/spikeright2.png
-share/games/supertux2/images/creatures/spike/spikeup.png
-share/games/supertux2/images/creatures/spike/spikeup2.png
-share/games/supertux2/images/creatures/spike/up.png
-share/games/supertux2/images/creatures/spiky/gear-cracked.png
-share/games/supertux2/images/creatures/spiky/gear.png
-share/games/supertux2/images/creatures/spiky/iced-left.png
+share/games/supertux2/images/creatures/spidermite/squished.png
share/games/supertux2/images/creatures/spiky/melting-0.png
share/games/supertux2/images/creatures/spiky/melting-1.png
share/games/supertux2/images/creatures/spiky/melting-2.png
share/games/supertux2/images/creatures/spiky/melting-3.png
share/games/supertux2/images/creatures/spiky/melting-4.png
share/games/supertux2/images/creatures/spiky/melting-5.png
-share/games/supertux2/images/creatures/spiky/sleeping-left.png
share/games/supertux2/images/creatures/spiky/sleepingspiky.sprite
+share/games/supertux2/images/creatures/spiky/spiky-0.png
+share/games/supertux2/images/creatures/spiky/spiky-1.png
+share/games/supertux2/images/creatures/spiky/spiky-2.png
+share/games/supertux2/images/creatures/spiky/spiky-3.png
+share/games/supertux2/images/creatures/spiky/spiky-4.png
+share/games/supertux2/images/creatures/spiky/spiky-5.png
+share/games/supertux2/images/creatures/spiky/spiky-6.png
+share/games/supertux2/images/creatures/spiky/spiky-7.png
share/games/supertux2/images/creatures/spiky/spiky.sprite
-share/games/supertux2/images/creatures/spiky/spikywalk1.png
-share/games/supertux2/images/creatures/spiky/spikywalk2.png
-share/games/supertux2/images/creatures/spiky/spikywalk3.png
-share/games/supertux2/images/creatures/spiky/spikywalk4.png
-share/games/supertux2/images/creatures/spiky/spikywalk5.png
-share/games/supertux2/images/creatures/spiky/spikywalk6.png
-share/games/supertux2/images/creatures/spiky/spikywalk7.png
-share/games/supertux2/images/creatures/spiky/spikywalk8.png
-share/games/supertux2/images/creatures/spiky/waking-left-0.png
-share/games/supertux2/images/creatures/spiky/waking-left-1.png
-share/games/supertux2/images/creatures/spiky/waking-left-2.png
-share/games/supertux2/images/creatures/stalactite/broken.png
-share/games/supertux2/images/creatures/stalactite/falling.png
-share/games/supertux2/images/creatures/stalactite/forest_broken.png
-share/games/supertux2/images/creatures/stalactite/forest_falling.png
-share/games/supertux2/images/creatures/stalactite/forest_stalactite.sprite
-share/games/supertux2/images/creatures/stalactite/stalactite.sprite
-share/games/supertux2/images/creatures/toad/burning-0.png
-share/games/supertux2/images/creatures/toad/burning-1.png
-share/games/supertux2/images/creatures/toad/burning-2.png
-share/games/supertux2/images/creatures/toad/burning-3.png
-share/games/supertux2/images/creatures/toad/burning-4.png
-share/games/supertux2/images/creatures/toad/burning-5.png
-share/games/supertux2/images/creatures/toad/burning-6.png
-share/games/supertux2/images/creatures/toad/toad-frozen.png
+share/games/supertux2/images/creatures/spiky/spiky_gear-0.png
+share/games/supertux2/images/creatures/spiky/spiky_gear-1.png
+share/games/supertux2/images/creatures/spiky/spiky_gear-2.png
+share/games/supertux2/images/creatures/spiky/spiky_gear-3.png
+share/games/supertux2/images/creatures/spiky/spiky_gear-4.png
+share/games/supertux2/images/creatures/spiky/spiky_sleep-0.png
+share/games/supertux2/images/creatures/spiky/spiky_sleep-1.png
+share/games/supertux2/images/creatures/spiky/spiky_sleep-2.png
+share/games/supertux2/images/creatures/spiky/spiky_sleep-3.png
+share/games/supertux2/images/creatures/stalactite/broken_ice.png
+share/games/supertux2/images/creatures/stalactite/broken_rock.png
+share/games/supertux2/images/creatures/stalactite/mega_stalactite.png
+share/games/supertux2/images/creatures/stalactite/stalactite_ice.png
+share/games/supertux2/images/creatures/stalactite/stalactite_ice.sprite
+share/games/supertux2/images/creatures/stalactite/stalactite_ice_yeti.png
+share/games/supertux2/images/creatures/stalactite/stalactite_rock.png
+share/games/supertux2/images/creatures/stalactite/stalactite_rock.sprite
+share/games/supertux2/images/creatures/stalactite/stalactite_rock_yeti.png
+share/games/supertux2/images/creatures/tarantula/silk.png
+share/games/supertux2/images/creatures/tarantula/squished.png
+share/games/supertux2/images/creatures/tarantula/tarantula-0.png
+share/games/supertux2/images/creatures/tarantula/tarantula-1.png
+share/games/supertux2/images/creatures/tarantula/tarantula-2.png
+share/games/supertux2/images/creatures/tarantula/tarantula-3.png
+share/games/supertux2/images/creatures/tarantula/tarantula-4.png
+share/games/supertux2/images/creatures/tarantula/tarantula-5.png
+share/games/supertux2/images/creatures/tarantula/tarantula-6.png
+share/games/supertux2/images/creatures/tarantula/tarantula-7.png
+share/games/supertux2/images/creatures/tarantula/tarantula-8.png
+share/games/supertux2/images/creatures/tarantula/tarantula-9.png
+share/games/supertux2/images/creatures/tarantula/tarantula.sprite
share/games/supertux2/images/creatures/toad/toad-idle-0.png
share/games/supertux2/images/creatures/toad/toad-idle-1.png
-share/games/supertux2/images/creatures/toad/toad-jumping.png
+share/games/supertux2/images/creatures/toad/toad-idle-2.png
+share/games/supertux2/images/creatures/toad/toad-idle-3.png
+share/games/supertux2/images/creatures/toad/toad-idle-4.png
+share/games/supertux2/images/creatures/toad/toad-idle-5.png
+share/games/supertux2/images/creatures/toad/toad-jumping-0.png
+share/games/supertux2/images/creatures/toad/toad-jumping-1.png
+share/games/supertux2/images/creatures/toad/toad-jumping-2.png
+share/games/supertux2/images/creatures/toad/toad-jumping-3.png
+share/games/supertux2/images/creatures/toad/toad-jumping-4.png
share/games/supertux2/images/creatures/toad/toad-squished.png
+share/games/supertux2/images/creatures/toad/toad-swimming-0.png
+share/games/supertux2/images/creatures/toad/toad-swimming-1.png
+share/games/supertux2/images/creatures/toad/toad-swimming-2.png
+share/games/supertux2/images/creatures/toad/toad-swimming-3.png
+share/games/supertux2/images/creatures/toad/toad-swimming-4.png
+share/games/supertux2/images/creatures/toad/toad-swimming-5.png
share/games/supertux2/images/creatures/toad/toad.sprite
share/games/supertux2/images/creatures/totem/squished.png
share/games/supertux2/images/creatures/totem/stacked.png
@@ -1056,75 +1741,140 @@ share/games/supertux2/images/creatures/t
share/games/supertux2/images/creatures/totem/walking2.png
share/games/supertux2/images/creatures/totem/walking3.png
share/games/supertux2/images/creatures/totem/walking4.png
-share/games/supertux2/images/creatures/tumbleweed/tumbleweed.sprite
-share/games/supertux2/images/creatures/tumbleweed/tumbleweed0.png
-share/games/supertux2/images/creatures/tumbleweed/tumbleweed1.png
-share/games/supertux2/images/creatures/tumbleweed/tumbleweed2.png
-share/games/supertux2/images/creatures/tumbleweed/tumbleweed3.png
-share/games/supertux2/images/creatures/tux/air/hat/air-walljump.png
-share/games/supertux2/images/creatures/tux/air/hat/backflip.png
-share/games/supertux2/images/creatures/tux/air/hat/buttjump-0.png
-share/games/supertux2/images/creatures/tux/air/hat/buttjump-1.png
-share/games/supertux2/images/creatures/tux/air/hat/buttjump-2.png
-share/games/supertux2/images/creatures/tux/air/hat/buttjump-3.png
-share/games/supertux2/images/creatures/tux/air/hat/buttjump-4.png
-share/games/supertux2/images/creatures/tux/air/hat/buttjump-5.png
-share/games/supertux2/images/creatures/tux/air/hat/buttjump-6.png
-share/games/supertux2/images/creatures/tux/air/hat/climb-0.png
-share/games/supertux2/images/creatures/tux/air/hat/climb-1.png
-share/games/supertux2/images/creatures/tux/air/hat/duck.png
-share/games/supertux2/images/creatures/tux/air/hat/skid.png
-share/games/supertux2/images/creatures/tux/air/hat/spin-0.png
-share/games/supertux2/images/creatures/tux/air/hat/spin-1.png
-share/games/supertux2/images/creatures/tux/air/hat/spin-2.png
-share/games/supertux2/images/creatures/tux/air/hat/stand.png
-share/games/supertux2/images/creatures/tux/air/hat/swim-0.png
-share/games/supertux2/images/creatures/tux/air/hat/swim-1.png
-share/games/supertux2/images/creatures/tux/air/hat/swim-2.png
-share/games/supertux2/images/creatures/tux/air/hat/swim-3.png
-share/games/supertux2/images/creatures/tux/air/hat/swim-4.png
-share/games/supertux2/images/creatures/tux/air/hat/swimidle1.png
-share/games/supertux2/images/creatures/tux/air/hat/walk-0.png
-share/games/supertux2/images/creatures/tux/air/hat/walk-1.png
-share/games/supertux2/images/creatures/tux/air/hat/walk-2.png
-share/games/supertux2/images/creatures/tux/air/hat/walk-3.png
-share/games/supertux2/images/creatures/tux/air/hat/walk-4.png
-share/games/supertux2/images/creatures/tux/air/hat/walk-5.png
-share/games/supertux2/images/creatures/tux/air/hat/walk-6.png
-share/games/supertux2/images/creatures/tux/air/hat/walk-7.png
-share/games/supertux2/images/creatures/tux/big/backflip.png
-share/games/supertux2/images/creatures/tux/big/big-walljump-0-old.png
-share/games/supertux2/images/creatures/tux/big/big-walljump-0.png
-share/games/supertux2/images/creatures/tux/big/big-walljump-1.png
-share/games/supertux2/images/creatures/tux/big/big-walljump-2.png
+share/games/supertux2/images/creatures/totem/walking5.png
+share/games/supertux2/images/creatures/totem/walking6.png
+share/games/supertux2/images/creatures/totem/walking7.png
+share/games/supertux2/images/creatures/totem/walking8.png
+share/games/supertux2/images/creatures/tumbleweed/tumbleweed.deprecated.sprite
+share/games/supertux2/images/creatures/tumbleweed/tumbleweed0.deprecated.png
+share/games/supertux2/images/creatures/tumbleweed/tumbleweed1.deprecated.png
+share/games/supertux2/images/creatures/tumbleweed/tumbleweed2.deprecated.png
+share/games/supertux2/images/creatures/tumbleweed/tumbleweed3.deprecated.png
+share/games/supertux2/images/creatures/tux/big/backflip-0.png
+share/games/supertux2/images/creatures/tux/big/backflip-1.png
+share/games/supertux2/images/creatures/tux/big/backflip-2.png
+share/games/supertux2/images/creatures/tux/big/backflip-3.png
+share/games/supertux2/images/creatures/tux/big/backflip-4.png
+share/games/supertux2/images/creatures/tux/big/backflip-5.png
share/games/supertux2/images/creatures/tux/big/buttjump-0.png
share/games/supertux2/images/creatures/tux/big/buttjump-1.png
+share/games/supertux2/images/creatures/tux/big/buttjump-10.png
+share/games/supertux2/images/creatures/tux/big/buttjump-11.png
share/games/supertux2/images/creatures/tux/big/buttjump-2.png
share/games/supertux2/images/creatures/tux/big/buttjump-3.png
share/games/supertux2/images/creatures/tux/big/buttjump-4.png
share/games/supertux2/images/creatures/tux/big/buttjump-5.png
share/games/supertux2/images/creatures/tux/big/buttjump-6.png
+share/games/supertux2/images/creatures/tux/big/buttjump-7.png
+share/games/supertux2/images/creatures/tux/big/buttjump-8.png
+share/games/supertux2/images/creatures/tux/big/buttjump-9.png
+share/games/supertux2/images/creatures/tux/big/climb-0.png
+share/games/supertux2/images/creatures/tux/big/climb-1.png
+share/games/supertux2/images/creatures/tux/big/climb-2.png
+share/games/supertux2/images/creatures/tux/big/climb-3.png
+share/games/supertux2/images/creatures/tux/big/climb-4.png
+share/games/supertux2/images/creatures/tux/big/climb-5.png
+share/games/supertux2/images/creatures/tux/big/climb-6.png
+share/games/supertux2/images/creatures/tux/big/climb-7.png
+share/games/supertux2/images/creatures/tux/big/crawl-0.png
+share/games/supertux2/images/creatures/tux/big/crawl-1.png
+share/games/supertux2/images/creatures/tux/big/crawl-2.png
+share/games/supertux2/images/creatures/tux/big/crawl-3.png
+share/games/supertux2/images/creatures/tux/big/crawl-4.png
+share/games/supertux2/images/creatures/tux/big/crawl-5.png
+share/games/supertux2/images/creatures/tux/big/crawl-6.png
+share/games/supertux2/images/creatures/tux/big/crawl-7.png
share/games/supertux2/images/creatures/tux/big/duck-0.png
+share/games/supertux2/images/creatures/tux/big/duck-1.png
+share/games/supertux2/images/creatures/tux/big/duck-2.png
+share/games/supertux2/images/creatures/tux/big/duck-3.png
+share/games/supertux2/images/creatures/tux/big/duck-4.png
share/games/supertux2/images/creatures/tux/big/idle-0.png
share/games/supertux2/images/creatures/tux/big/idle-1.png
+share/games/supertux2/images/creatures/tux/big/idle-10.png
+share/games/supertux2/images/creatures/tux/big/idle-11.png
+share/games/supertux2/images/creatures/tux/big/idle-2.png
+share/games/supertux2/images/creatures/tux/big/idle-3.png
+share/games/supertux2/images/creatures/tux/big/idle-4.png
+share/games/supertux2/images/creatures/tux/big/idle-5.png
+share/games/supertux2/images/creatures/tux/big/idle-6.png
+share/games/supertux2/images/creatures/tux/big/idle-7.png
+share/games/supertux2/images/creatures/tux/big/idle-8.png
+share/games/supertux2/images/creatures/tux/big/idle-9.png
share/games/supertux2/images/creatures/tux/big/jump-0.png
+share/games/supertux2/images/creatures/tux/big/jump-1.png
+share/games/supertux2/images/creatures/tux/big/jump-2.png
+share/games/supertux2/images/creatures/tux/big/jump-3.png
+share/games/supertux2/images/creatures/tux/big/jump-4.png
+share/games/supertux2/images/creatures/tux/big/jump-5.png
+share/games/supertux2/images/creatures/tux/big/jump-6.png
+share/games/supertux2/images/creatures/tux/big/jump-7.png
share/games/supertux2/images/creatures/tux/big/kick-0.png
-share/games/supertux2/images/creatures/tux/big/ladder-0.png
-share/games/supertux2/images/creatures/tux/big/ladder-1.png
-share/games/supertux2/images/creatures/tux/big/ladder-2.png
-share/games/supertux2/images/creatures/tux/big/ladder-3.png
-share/games/supertux2/images/creatures/tux/big/ladder-4.png
-share/games/supertux2/images/creatures/tux/big/ladder-5.png
-share/games/supertux2/images/creatures/tux/big/ladder-6.png
-share/games/supertux2/images/creatures/tux/big/ladder-7.png
+share/games/supertux2/images/creatures/tux/big/kick-1.png
+share/games/supertux2/images/creatures/tux/big/kick-2.png
+share/games/supertux2/images/creatures/tux/big/kick-3.png
+share/games/supertux2/images/creatures/tux/big/kick-4.png
+share/games/supertux2/images/creatures/tux/big/kick-5.png
+share/games/supertux2/images/creatures/tux/big/run-0.png
+share/games/supertux2/images/creatures/tux/big/run-1.png
+share/games/supertux2/images/creatures/tux/big/run-2.png
+share/games/supertux2/images/creatures/tux/big/run-3.png
+share/games/supertux2/images/creatures/tux/big/run-4.png
+share/games/supertux2/images/creatures/tux/big/run-5.png
+share/games/supertux2/images/creatures/tux/big/run-6.png
+share/games/supertux2/images/creatures/tux/big/run-7.png
+share/games/supertux2/images/creatures/tux/big/run_transition-0.png
+share/games/supertux2/images/creatures/tux/big/scratch-0.png
+share/games/supertux2/images/creatures/tux/big/scratch-1.png
+share/games/supertux2/images/creatures/tux/big/scratch-2.png
+share/games/supertux2/images/creatures/tux/big/scratch-3.png
+share/games/supertux2/images/creatures/tux/big/scratch-4.png
+share/games/supertux2/images/creatures/tux/big/scratch-5.png
+share/games/supertux2/images/creatures/tux/big/scratch-6.png
+share/games/supertux2/images/creatures/tux/big/scratch-7.png
share/games/supertux2/images/creatures/tux/big/skid-0.png
+share/games/supertux2/images/creatures/tux/big/skid-1.png
+share/games/supertux2/images/creatures/tux/big/skid-2.png
+share/games/supertux2/images/creatures/tux/big/skid-3.png
+share/games/supertux2/images/creatures/tux/big/slide-0.png
+share/games/supertux2/images/creatures/tux/big/slide-1.png
+share/games/supertux2/images/creatures/tux/big/slide-2.png
+share/games/supertux2/images/creatures/tux/big/slide-3.png
+share/games/supertux2/images/creatures/tux/big/slide-4.png
+share/games/supertux2/images/creatures/tux/big/slide_jump-0.png
+share/games/supertux2/images/creatures/tux/big/slide_jump-1.png
+share/games/supertux2/images/creatures/tux/big/slide_jump-2.png
+share/games/supertux2/images/creatures/tux/big/slide_jump-3.png
+share/games/supertux2/images/creatures/tux/big/slide_jump-4.png
+share/games/supertux2/images/creatures/tux/big/slide_jump-5.png
share/games/supertux2/images/creatures/tux/big/stand-0.png
+share/games/supertux2/images/creatures/tux/big/stand-1.png
+share/games/supertux2/images/creatures/tux/big/stand-2.png
+share/games/supertux2/images/creatures/tux/big/stand-3.png
+share/games/supertux2/images/creatures/tux/big/stand-4.png
+share/games/supertux2/images/creatures/tux/big/stand-5.png
+share/games/supertux2/images/creatures/tux/big/stand-6.png
+share/games/supertux2/images/creatures/tux/big/stand-7.png
+share/games/supertux2/images/creatures/tux/big/stand-8.png
share/games/supertux2/images/creatures/tux/big/swim-0.png
share/games/supertux2/images/creatures/tux/big/swim-1.png
share/games/supertux2/images/creatures/tux/big/swim-2.png
share/games/supertux2/images/creatures/tux/big/swim-3.png
share/games/supertux2/images/creatures/tux/big/swim-4.png
-share/games/supertux2/images/creatures/tux/big/swimidle1.png
+share/games/supertux2/images/creatures/tux/big/swim-5.png
+share/games/supertux2/images/creatures/tux/big/swim-6.png
+share/games/supertux2/images/creatures/tux/big/swim-7.png
+share/games/supertux2/images/creatures/tux/big/swim-8.png
+share/games/supertux2/images/creatures/tux/big/swim_idle-0.png
+share/games/supertux2/images/creatures/tux/big/swim_idle-1.png
+share/games/supertux2/images/creatures/tux/big/swim_idle-2.png
+share/games/supertux2/images/creatures/tux/big/swim_idle-3.png
+share/games/supertux2/images/creatures/tux/big/swim_idle-4.png
+share/games/supertux2/images/creatures/tux/big/swim_idle-5.png
+share/games/supertux2/images/creatures/tux/big/swim_idle-6.png
+share/games/supertux2/images/creatures/tux/big/swim_jump-0.png
+share/games/supertux2/images/creatures/tux/big/swim_jump-1.png
+share/games/supertux2/images/creatures/tux/big/swim_jump-2.png
share/games/supertux2/images/creatures/tux/big/walk-0.png
share/games/supertux2/images/creatures/tux/big/walk-1.png
share/games/supertux2/images/creatures/tux/big/walk-2.png
@@ -1133,171 +1883,62 @@ share/games/supertux2/images/creatures/t
share/games/supertux2/images/creatures/tux/big/walk-5.png
share/games/supertux2/images/creatures/tux/big/walk-6.png
share/games/supertux2/images/creatures/tux/big/walk-7.png
-share/games/supertux2/images/creatures/tux/earth/backflip.png
-share/games/supertux2/images/creatures/tux/earth/buttjump.png
-share/games/supertux2/images/creatures/tux/earth/duck.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/backflip.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-0.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-1.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-2.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-3.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-4.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-5.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/buttjump-6.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/climb-0.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/climb-1.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/duck.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/earth-walljump.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/skid.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/stand.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/swim-0.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/swim-1.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/swim-2.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/swim-3.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/swim-4.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/swimidle1.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/walk-0.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/walk-1.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/walk-2.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/walk-3.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/walk-4.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/walk-5.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/walk-6.png
-share/games/supertux2/images/creatures/tux/earth/hardhat/walk-7.png
+share/games/supertux2/images/creatures/tux/big/walk_transition-0.png
+share/games/supertux2/images/creatures/tux/big/walljump-0.png
+share/games/supertux2/images/creatures/tux/big/walljump-1.png
+share/games/supertux2/images/creatures/tux/big/walljump-2.png
+share/games/supertux2/images/creatures/tux/big/walljump-3.png
+share/games/supertux2/images/creatures/tux/cutscene/credits-0.png
+share/games/supertux2/images/creatures/tux/cutscene/credits-1.png
+share/games/supertux2/images/creatures/tux/cutscene/credits-2.png
+share/games/supertux2/images/creatures/tux/cutscene/credits-3.png
+share/games/supertux2/images/creatures/tux/cutscene/credits-4.png
+share/games/supertux2/images/creatures/tux/cutscene/credits-5.png
+share/games/supertux2/images/creatures/tux/cutscene/credits-6.png
+share/games/supertux2/images/creatures/tux/cutscene/credits-7.png
share/games/supertux2/images/creatures/tux/earth/head.png
-share/games/supertux2/images/creatures/tux/earth/jump.png
-share/games/supertux2/images/creatures/tux/earth/kick.png
-share/games/supertux2/images/creatures/tux/earth/ladder.png
-share/games/supertux2/images/creatures/tux/earth/light/backflip.png
-share/games/supertux2/images/creatures/tux/earth/light/duck.png
-share/games/supertux2/images/creatures/tux/earth/light/skid.png
-share/games/supertux2/images/creatures/tux/earth/light/stand.png
-share/games/supertux2/images/creatures/tux/earth/light/swimlightleft.png
-share/games/supertux2/images/creatures/tux/earth/light/swimlightright.png
-share/games/supertux2/images/creatures/tux/earth/skid.png
-share/games/supertux2/images/creatures/tux/earth/stand.png
share/games/supertux2/images/creatures/tux/earth/statue.png
-share/games/supertux2/images/creatures/tux/earth/walk.png
-share/games/supertux2/images/creatures/tux/fire/backflip.png
-share/games/supertux2/images/creatures/tux/fire/buttjump-0.png
-share/games/supertux2/images/creatures/tux/fire/duck-0.png
-share/games/supertux2/images/creatures/tux/fire/hat/backflip.png
-share/games/supertux2/images/creatures/tux/fire/hat/buttjump-0.png
-share/games/supertux2/images/creatures/tux/fire/hat/buttjump-1.png
-share/games/supertux2/images/creatures/tux/fire/hat/buttjump-2.png
-share/games/supertux2/images/creatures/tux/fire/hat/buttjump-3.png
-share/games/supertux2/images/creatures/tux/fire/hat/buttjump-4.png
-share/games/supertux2/images/creatures/tux/fire/hat/buttjump-5.png
-share/games/supertux2/images/creatures/tux/fire/hat/buttjump-6.png
-share/games/supertux2/images/creatures/tux/fire/hat/climb-0.png
-share/games/supertux2/images/creatures/tux/fire/hat/climb-1.png
-share/games/supertux2/images/creatures/tux/fire/hat/duck.png
-share/games/supertux2/images/creatures/tux/fire/hat/fire-walljump.png
-share/games/supertux2/images/creatures/tux/fire/hat/skid.png
-share/games/supertux2/images/creatures/tux/fire/hat/stand.png
-share/games/supertux2/images/creatures/tux/fire/hat/swim-0.png
-share/games/supertux2/images/creatures/tux/fire/hat/swim-1.png
-share/games/supertux2/images/creatures/tux/fire/hat/swim-2.png
-share/games/supertux2/images/creatures/tux/fire/hat/swim-3.png
-share/games/supertux2/images/creatures/tux/fire/hat/swim-4.png
-share/games/supertux2/images/creatures/tux/fire/hat/swimidle1.png
-share/games/supertux2/images/creatures/tux/fire/hat/walk-0.png
-share/games/supertux2/images/creatures/tux/fire/hat/walk-1.png
-share/games/supertux2/images/creatures/tux/fire/hat/walk-3.png
-share/games/supertux2/images/creatures/tux/fire/idle-0.png
-share/games/supertux2/images/creatures/tux/fire/idle-1.png
-share/games/supertux2/images/creatures/tux/fire/jump-0.png
-share/games/supertux2/images/creatures/tux/fire/kick-0.png
-share/games/supertux2/images/creatures/tux/fire/ladder-0.png
-share/games/supertux2/images/creatures/tux/fire/ladder-1.png
-share/games/supertux2/images/creatures/tux/fire/ladder-2.png
-share/games/supertux2/images/creatures/tux/fire/ladder-3.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/backflip.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-0.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-1.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-2.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-3.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-4.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-5.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/buttjump-6.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/climb-0.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/climb-1.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/duck.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/santa-walljump.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/skid.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/stand.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/swim-0.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/swim-1.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/swim-2.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/swim-3.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/swim-4.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/swimidle1.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-0.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-1.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-2.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-3.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-4.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-5.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-6.png
-share/games/supertux2/images/creatures/tux/fire/santa_cap/walk-7.png
-share/games/supertux2/images/creatures/tux/fire/skid-0.png
-share/games/supertux2/images/creatures/tux/fire/stand-0.png
-share/games/supertux2/images/creatures/tux/fire/walk-0.png
-share/games/supertux2/images/creatures/tux/fire/walk-1.png
-share/games/supertux2/images/creatures/tux/fire/walk-2.png
-share/games/supertux2/images/creatures/tux/fire/walk-3.png
-share/games/supertux2/images/creatures/tux/fire/walk-4.png
-share/games/supertux2/images/creatures/tux/fire/walk-5.png
-share/games/supertux2/images/creatures/tux/fire/walk-6.png
-share/games/supertux2/images/creatures/tux/fire/walk-7.png
-share/games/supertux2/images/creatures/tux/ice/backflip.png
-share/games/supertux2/images/creatures/tux/ice/buttjump-0.png
-share/games/supertux2/images/creatures/tux/ice/duck-0.png
-share/games/supertux2/images/creatures/tux/ice/hat/backflip.png
-share/games/supertux2/images/creatures/tux/ice/hat/buttjump-0.png
-share/games/supertux2/images/creatures/tux/ice/hat/buttjump-1.png
-share/games/supertux2/images/creatures/tux/ice/hat/buttjump-2.png
-share/games/supertux2/images/creatures/tux/ice/hat/buttjump-3.png
-share/games/supertux2/images/creatures/tux/ice/hat/buttjump-4.png
-share/games/supertux2/images/creatures/tux/ice/hat/buttjump-5.png
-share/games/supertux2/images/creatures/tux/ice/hat/buttjump-6.png
-share/games/supertux2/images/creatures/tux/ice/hat/climb-0.png
-share/games/supertux2/images/creatures/tux/ice/hat/climb-1.png
-share/games/supertux2/images/creatures/tux/ice/hat/duck.png
-share/games/supertux2/images/creatures/tux/ice/hat/ice-walljump.png
-share/games/supertux2/images/creatures/tux/ice/hat/skid.png
-share/games/supertux2/images/creatures/tux/ice/hat/stand.png
-share/games/supertux2/images/creatures/tux/ice/hat/swim-0.png
-share/games/supertux2/images/creatures/tux/ice/hat/swim-1.png
-share/games/supertux2/images/creatures/tux/ice/hat/swim-2.png
-share/games/supertux2/images/creatures/tux/ice/hat/swim-3.png
-share/games/supertux2/images/creatures/tux/ice/hat/swim-4.png
-share/games/supertux2/images/creatures/tux/ice/hat/swimidle1.png
-share/games/supertux2/images/creatures/tux/ice/hat/walk-0.png
-share/games/supertux2/images/creatures/tux/ice/hat/walk-1.png
-share/games/supertux2/images/creatures/tux/ice/hat/walk-3.png
-share/games/supertux2/images/creatures/tux/ice/idle-0.png
-share/games/supertux2/images/creatures/tux/ice/idle-1.png
-share/games/supertux2/images/creatures/tux/ice/jump-0.png
-share/games/supertux2/images/creatures/tux/ice/kick-0.png
-share/games/supertux2/images/creatures/tux/ice/ladder-0.png
-share/games/supertux2/images/creatures/tux/ice/ladder-1.png
-share/games/supertux2/images/creatures/tux/ice/ladder-2.png
-share/games/supertux2/images/creatures/tux/ice/ladder-3.png
-share/games/supertux2/images/creatures/tux/ice/skid-0.png
-share/games/supertux2/images/creatures/tux/ice/stand-0.png
-share/games/supertux2/images/creatures/tux/ice/walk-0.png
-share/games/supertux2/images/creatures/tux/ice/walk-1.png
-share/games/supertux2/images/creatures/tux/ice/walk-2.png
-share/games/supertux2/images/creatures/tux/ice/walk-3.png
-share/games/supertux2/images/creatures/tux/ice/walk-4.png
-share/games/supertux2/images/creatures/tux/ice/walk-5.png
-share/games/supertux2/images/creatures/tux/ice/walk-6.png
-share/games/supertux2/images/creatures/tux/ice/walk-7.png
-share/games/supertux2/images/creatures/tux/light.sprite
-share/games/supertux2/images/creatures/tux/powerups.sprite
+share/games/supertux2/images/creatures/tux/santahat.sprite
+share/games/supertux2/images/creatures/tux/santahat/big/backflip.png
+share/games/supertux2/images/creatures/tux/santahat/big/buttjump-0.png
+share/games/supertux2/images/creatures/tux/santahat/big/buttjump-1.png
+share/games/supertux2/images/creatures/tux/santahat/big/buttjump-2.png
+share/games/supertux2/images/creatures/tux/santahat/big/buttjump-3.png
+share/games/supertux2/images/creatures/tux/santahat/big/buttjump-4.png
+share/games/supertux2/images/creatures/tux/santahat/big/buttjump-5.png
+share/games/supertux2/images/creatures/tux/santahat/big/buttjump-6.png
+share/games/supertux2/images/creatures/tux/santahat/big/climb-0.png
+share/games/supertux2/images/creatures/tux/santahat/big/climb-1.png
+share/games/supertux2/images/creatures/tux/santahat/big/duck.png
+share/games/supertux2/images/creatures/tux/santahat/big/santa-walljump.png
+share/games/supertux2/images/creatures/tux/santahat/big/skid.png
+share/games/supertux2/images/creatures/tux/santahat/big/stand.png
+share/games/supertux2/images/creatures/tux/santahat/big/swim-0.png
+share/games/supertux2/images/creatures/tux/santahat/big/swim-1.png
+share/games/supertux2/images/creatures/tux/santahat/big/swim-2.png
+share/games/supertux2/images/creatures/tux/santahat/big/swim-3.png
+share/games/supertux2/images/creatures/tux/santahat/big/swim-4.png
+share/games/supertux2/images/creatures/tux/santahat/big/swimidle1.png
+share/games/supertux2/images/creatures/tux/santahat/big/walk-0.png
+share/games/supertux2/images/creatures/tux/santahat/big/walk-1.png
+share/games/supertux2/images/creatures/tux/santahat/big/walk-2.png
+share/games/supertux2/images/creatures/tux/santahat/big/walk-3.png
+share/games/supertux2/images/creatures/tux/santahat/big/walk-4.png
+share/games/supertux2/images/creatures/tux/santahat/big/walk-5.png
+share/games/supertux2/images/creatures/tux/santahat/big/walk-6.png
+share/games/supertux2/images/creatures/tux/santahat/big/walk-7.png
+share/games/supertux2/images/creatures/tux/small/climb-0.png
+share/games/supertux2/images/creatures/tux/small/climb-1.png
+share/games/supertux2/images/creatures/tux/small/climb-2.png
+share/games/supertux2/images/creatures/tux/small/climb-3.png
+share/games/supertux2/images/creatures/tux/small/climb-4.png
+share/games/supertux2/images/creatures/tux/small/climb-5.png
+share/games/supertux2/images/creatures/tux/small/climb-6.png
+share/games/supertux2/images/creatures/tux/small/climb-7.png
share/games/supertux2/images/creatures/tux/small/gameover-0.png
share/games/supertux2/images/creatures/tux/small/gameover-1.png
+share/games/supertux2/images/creatures/tux/small/gameover-2.png
+share/games/supertux2/images/creatures/tux/small/gameover-3.png
share/games/supertux2/images/creatures/tux/small/grow-0.png
share/games/supertux2/images/creatures/tux/small/grow-1.png
share/games/supertux2/images/creatures/tux/small/grow-2.png
@@ -1305,56 +1946,114 @@ share/games/supertux2/images/creatures/t
share/games/supertux2/images/creatures/tux/small/grow-4.png
share/games/supertux2/images/creatures/tux/small/grow-5.png
share/games/supertux2/images/creatures/tux/small/grow-6.png
-share/games/supertux2/images/creatures/tux/small/grow-ladder-0.png
-share/games/supertux2/images/creatures/tux/small/grow-ladder-1.png
-share/games/supertux2/images/creatures/tux/small/grow-ladder-2.png
-share/games/supertux2/images/creatures/tux/small/grow-ladder-3.png
-share/games/supertux2/images/creatures/tux/small/grow-ladder-4.png
-share/games/supertux2/images/creatures/tux/small/grow-ladder-5.png
-share/games/supertux2/images/creatures/tux/small/grow-ladder-6.png
+share/games/supertux2/images/creatures/tux/small/grow-7.png
+share/games/supertux2/images/creatures/tux/small/grow_climb-0.png
+share/games/supertux2/images/creatures/tux/small/grow_climb-1.png
+share/games/supertux2/images/creatures/tux/small/grow_climb-2.png
+share/games/supertux2/images/creatures/tux/small/grow_climb-3.png
+share/games/supertux2/images/creatures/tux/small/grow_climb-4.png
+share/games/supertux2/images/creatures/tux/small/grow_climb-5.png
+share/games/supertux2/images/creatures/tux/small/grow_climb-6.png
+share/games/supertux2/images/creatures/tux/small/grow_climb-7.png
+share/games/supertux2/images/creatures/tux/small/grow_slide-0.png
+share/games/supertux2/images/creatures/tux/small/grow_slide-1.png
+share/games/supertux2/images/creatures/tux/small/grow_slide-2.png
+share/games/supertux2/images/creatures/tux/small/grow_slide-3.png
+share/games/supertux2/images/creatures/tux/small/grow_slide-4.png
+share/games/supertux2/images/creatures/tux/small/grow_slide-5.png
+share/games/supertux2/images/creatures/tux/small/grow_swim-0.png
+share/games/supertux2/images/creatures/tux/small/grow_swim-1.png
+share/games/supertux2/images/creatures/tux/small/grow_swim-2.png
+share/games/supertux2/images/creatures/tux/small/grow_swim-3.png
+share/games/supertux2/images/creatures/tux/small/grow_swim-4.png
+share/games/supertux2/images/creatures/tux/small/grow_swim-5.png
+share/games/supertux2/images/creatures/tux/small/grow_swim-6.png
+share/games/supertux2/images/creatures/tux/small/grow_swim-7.png
share/games/supertux2/images/creatures/tux/small/idle-0.png
share/games/supertux2/images/creatures/tux/small/idle-1.png
+share/games/supertux2/images/creatures/tux/small/idle-10.png
+share/games/supertux2/images/creatures/tux/small/idle-2.png
+share/games/supertux2/images/creatures/tux/small/idle-3.png
+share/games/supertux2/images/creatures/tux/small/idle-4.png
+share/games/supertux2/images/creatures/tux/small/idle-5.png
+share/games/supertux2/images/creatures/tux/small/idle-6.png
+share/games/supertux2/images/creatures/tux/small/idle-7.png
+share/games/supertux2/images/creatures/tux/small/idle-8.png
+share/games/supertux2/images/creatures/tux/small/idle-9.png
share/games/supertux2/images/creatures/tux/small/jump-0.png
+share/games/supertux2/images/creatures/tux/small/jump-1.png
+share/games/supertux2/images/creatures/tux/small/jump-2.png
+share/games/supertux2/images/creatures/tux/small/jump-3.png
+share/games/supertux2/images/creatures/tux/small/jump-4.png
+share/games/supertux2/images/creatures/tux/small/jump-5.png
+share/games/supertux2/images/creatures/tux/small/jump-6.png
+share/games/supertux2/images/creatures/tux/small/jump-7.png
share/games/supertux2/images/creatures/tux/small/kick-0.png
-share/games/supertux2/images/creatures/tux/small/ladder-0.png
-share/games/supertux2/images/creatures/tux/small/ladder-1.png
-share/games/supertux2/images/creatures/tux/small/ladder-2.png
-share/games/supertux2/images/creatures/tux/small/ladder-3.png
-share/games/supertux2/images/creatures/tux/small/ladder-4.png
-share/games/supertux2/images/creatures/tux/small/ladder-5.png
-share/games/supertux2/images/creatures/tux/small/ladder-6.png
-share/games/supertux2/images/creatures/tux/small/ladder-7.png
+share/games/supertux2/images/creatures/tux/small/kick-1.png
+share/games/supertux2/images/creatures/tux/small/kick-2.png
+share/games/supertux2/images/creatures/tux/small/kick-3.png
+share/games/supertux2/images/creatures/tux/small/kick-4.png
+share/games/supertux2/images/creatures/tux/small/kick-5.png
share/games/supertux2/images/creatures/tux/small/run-0.png
share/games/supertux2/images/creatures/tux/small/run-1.png
-share/games/supertux2/images/creatures/tux/small/run-10.png
-share/games/supertux2/images/creatures/tux/small/run-11.png
-share/games/supertux2/images/creatures/tux/small/run-12.png
-share/games/supertux2/images/creatures/tux/small/run-13.png
-share/games/supertux2/images/creatures/tux/small/run-14.png
-share/games/supertux2/images/creatures/tux/small/run-15.png
share/games/supertux2/images/creatures/tux/small/run-2.png
share/games/supertux2/images/creatures/tux/small/run-3.png
share/games/supertux2/images/creatures/tux/small/run-4.png
share/games/supertux2/images/creatures/tux/small/run-5.png
share/games/supertux2/images/creatures/tux/small/run-6.png
share/games/supertux2/images/creatures/tux/small/run-7.png
-share/games/supertux2/images/creatures/tux/small/run-8.png
-share/games/supertux2/images/creatures/tux/small/run-9.png
+share/games/supertux2/images/creatures/tux/small/run_transition-0.png
+share/games/supertux2/images/creatures/tux/small/scratch-0.png
+share/games/supertux2/images/creatures/tux/small/scratch-1.png
+share/games/supertux2/images/creatures/tux/small/scratch-2.png
+share/games/supertux2/images/creatures/tux/small/scratch-3.png
+share/games/supertux2/images/creatures/tux/small/scratch-4.png
+share/games/supertux2/images/creatures/tux/small/scratch-5.png
+share/games/supertux2/images/creatures/tux/small/scratch-6.png
+share/games/supertux2/images/creatures/tux/small/scratch-7.png
share/games/supertux2/images/creatures/tux/small/skid-0.png
-share/games/supertux2/images/creatures/tux/small/small-walljump-0-old.png
-share/games/supertux2/images/creatures/tux/small/small-walljump-0.png
-share/games/supertux2/images/creatures/tux/small/small-walljump-1.png
-share/games/supertux2/images/creatures/tux/small/small-walljump-2.png
+share/games/supertux2/images/creatures/tux/small/skid-1.png
+share/games/supertux2/images/creatures/tux/small/skid-2.png
+share/games/supertux2/images/creatures/tux/small/skid-3.png
+share/games/supertux2/images/creatures/tux/small/slide-0.png
+share/games/supertux2/images/creatures/tux/small/slide-1.png
+share/games/supertux2/images/creatures/tux/small/slide-2.png
+share/games/supertux2/images/creatures/tux/small/slide-3.png
+share/games/supertux2/images/creatures/tux/small/slide-4.png
+share/games/supertux2/images/creatures/tux/small/slide_jump-0.png
+share/games/supertux2/images/creatures/tux/small/slide_jump-1.png
+share/games/supertux2/images/creatures/tux/small/slide_jump-2.png
+share/games/supertux2/images/creatures/tux/small/slide_jump-3.png
+share/games/supertux2/images/creatures/tux/small/slide_jump-4.png
+share/games/supertux2/images/creatures/tux/small/slide_jump-5.png
share/games/supertux2/images/creatures/tux/small/stand-0.png
-share/games/supertux2/images/creatures/tux/small/swimgrow1.png
-share/games/supertux2/images/creatures/tux/small/swimgrow2.png
-share/games/supertux2/images/creatures/tux/small/swimgrow3.png
-share/games/supertux2/images/creatures/tux/small/swimsmall1.png
-share/games/supertux2/images/creatures/tux/small/swimsmall2.png
-share/games/supertux2/images/creatures/tux/small/swimsmall3.png
-share/games/supertux2/images/creatures/tux/small/swimsmall4.png
-share/games/supertux2/images/creatures/tux/small/swimsmall5.png
-share/games/supertux2/images/creatures/tux/small/swimsmallidle.png
+share/games/supertux2/images/creatures/tux/small/stand-1.png
+share/games/supertux2/images/creatures/tux/small/stand-2.png
+share/games/supertux2/images/creatures/tux/small/stand-3.png
+share/games/supertux2/images/creatures/tux/small/stand-4.png
+share/games/supertux2/images/creatures/tux/small/stand-5.png
+share/games/supertux2/images/creatures/tux/small/stand-6.png
+share/games/supertux2/images/creatures/tux/small/stand-7.png
+share/games/supertux2/images/creatures/tux/small/stand-8.png
+share/games/supertux2/images/creatures/tux/small/swim-0.png
+share/games/supertux2/images/creatures/tux/small/swim-1.png
+share/games/supertux2/images/creatures/tux/small/swim-2.png
+share/games/supertux2/images/creatures/tux/small/swim-3.png
+share/games/supertux2/images/creatures/tux/small/swim-4.png
+share/games/supertux2/images/creatures/tux/small/swim-5.png
+share/games/supertux2/images/creatures/tux/small/swim-6.png
+share/games/supertux2/images/creatures/tux/small/swim-7.png
+share/games/supertux2/images/creatures/tux/small/swim-8.png
+share/games/supertux2/images/creatures/tux/small/swim_idle-0.png
+share/games/supertux2/images/creatures/tux/small/swim_idle-1.png
+share/games/supertux2/images/creatures/tux/small/swim_idle-2.png
+share/games/supertux2/images/creatures/tux/small/swim_idle-3.png
+share/games/supertux2/images/creatures/tux/small/swim_idle-4.png
+share/games/supertux2/images/creatures/tux/small/swim_idle-5.png
+share/games/supertux2/images/creatures/tux/small/swim_idle-6.png
+share/games/supertux2/images/creatures/tux/small/swim_jump-0.png
+share/games/supertux2/images/creatures/tux/small/swim_jump-1.png
+share/games/supertux2/images/creatures/tux/small/swim_jump-2.png
share/games/supertux2/images/creatures/tux/small/walk-0.png
share/games/supertux2/images/creatures/tux/small/walk-1.png
share/games/supertux2/images/creatures/tux/small/walk-2.png
@@ -1363,31 +2062,120 @@ share/games/supertux2/images/creatures/t
share/games/supertux2/images/creatures/tux/small/walk-5.png
share/games/supertux2/images/creatures/tux/small/walk-6.png
share/games/supertux2/images/creatures/tux/small/walk-7.png
+share/games/supertux2/images/creatures/tux/small/walk_transition-0.png
+share/games/supertux2/images/creatures/tux/small/walljump-0.png
+share/games/supertux2/images/creatures/tux/small/walljump-1.png
+share/games/supertux2/images/creatures/tux/small/walljump-2.png
+share/games/supertux2/images/creatures/tux/small/walljump-3.png
share/games/supertux2/images/creatures/tux/tux.sprite
-share/games/supertux2/images/creatures/walkingleaf/burning-0.png
-share/games/supertux2/images/creatures/walkingleaf/burning-1.png
-share/games/supertux2/images/creatures/walkingleaf/burning-2.png
-share/games/supertux2/images/creatures/walkingleaf/burning-3.png
-share/games/supertux2/images/creatures/walkingleaf/burning-4.png
-share/games/supertux2/images/creatures/walkingleaf/burning-5.png
-share/games/supertux2/images/creatures/walkingleaf/burning-6.png
-share/games/supertux2/images/creatures/walkingleaf/burning-7.png
-share/games/supertux2/images/creatures/walkingleaf/burning-8.png
-share/games/supertux2/images/creatures/walkingleaf/burning-9.png
-share/games/supertux2/images/creatures/walkingleaf/frozen.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-0.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-1.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-10.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-11.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-2.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-3.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-4.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-5.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-6.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-7.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-8.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow-9.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/eye_glow.sprite
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/float-0.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/float-1.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/float-2.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/float-3.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/float-4.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/float-5.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/float-6.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/float-7.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/left-0.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/left-1.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/left-2.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/left-3.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/left-4.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/left-5.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/left-6.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/left-7.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-0.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-1.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-2.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-3.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-4.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-5.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-6.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-7.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-8.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/pant-9.png
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/rotten_ivy.sprite
+share/games/supertux2/images/creatures/vicious_ivy/corrupted/squished.png
+share/games/supertux2/images/creatures/vicious_ivy/float-0.png
+share/games/supertux2/images/creatures/vicious_ivy/float-1.png
+share/games/supertux2/images/creatures/vicious_ivy/float-2.png
+share/games/supertux2/images/creatures/vicious_ivy/float-3.png
+share/games/supertux2/images/creatures/vicious_ivy/float-4.png
+share/games/supertux2/images/creatures/vicious_ivy/float-5.png
+share/games/supertux2/images/creatures/vicious_ivy/float-6.png
+share/games/supertux2/images/creatures/vicious_ivy/float-7.png
+share/games/supertux2/images/creatures/vicious_ivy/left-0.png
+share/games/supertux2/images/creatures/vicious_ivy/left-1.png
+share/games/supertux2/images/creatures/vicious_ivy/left-2.png
+share/games/supertux2/images/creatures/vicious_ivy/left-3.png
+share/games/supertux2/images/creatures/vicious_ivy/left-4.png
+share/games/supertux2/images/creatures/vicious_ivy/left-5.png
+share/games/supertux2/images/creatures/vicious_ivy/left-6.png
+share/games/supertux2/images/creatures/vicious_ivy/left-7.png
+share/games/supertux2/images/creatures/vicious_ivy/squished.png
+share/games/supertux2/images/creatures/vicious_ivy/vicious_ivy.sprite
+share/games/supertux2/images/creatures/walkingleaf/corrupted/eye_glow.sprite
+share/games/supertux2/images/creatures/walkingleaf/corrupted/float-0.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/float-1.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/float-2.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/float-3.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/float-4.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/float-5.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/float-6.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/float-7.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/left-0.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/left-1.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/left-2.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/left-3.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/left-4.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/left-5.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/left-6.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/left-7.png
+share/games/supertux2/images/creatures/walkingleaf/corrupted/rotten_leaf.sprite
+share/games/supertux2/images/creatures/walkingleaf/corrupted/squished.png
+share/games/supertux2/images/creatures/walkingleaf/float-0.png
+share/games/supertux2/images/creatures/walkingleaf/float-1.png
+share/games/supertux2/images/creatures/walkingleaf/float-2.png
+share/games/supertux2/images/creatures/walkingleaf/float-3.png
+share/games/supertux2/images/creatures/walkingleaf/float-4.png
+share/games/supertux2/images/creatures/walkingleaf/float-5.png
+share/games/supertux2/images/creatures/walkingleaf/float-6.png
+share/games/supertux2/images/creatures/walkingleaf/float-7.png
share/games/supertux2/images/creatures/walkingleaf/left-0.png
share/games/supertux2/images/creatures/walkingleaf/left-1.png
share/games/supertux2/images/creatures/walkingleaf/left-2.png
+share/games/supertux2/images/creatures/walkingleaf/left-3.png
+share/games/supertux2/images/creatures/walkingleaf/left-4.png
+share/games/supertux2/images/creatures/walkingleaf/left-5.png
+share/games/supertux2/images/creatures/walkingleaf/left-6.png
+share/games/supertux2/images/creatures/walkingleaf/left-7.png
+share/games/supertux2/images/creatures/walkingleaf/left-8.png
share/games/supertux2/images/creatures/walkingleaf/squished.png
share/games/supertux2/images/creatures/walkingleaf/walkingleaf.sprite
+share/games/supertux2/images/creatures/willowisp/editor.png
share/games/supertux2/images/creatures/willowisp/idle-0.png
share/games/supertux2/images/creatures/willowisp/idle-1.png
share/games/supertux2/images/creatures/willowisp/idle-2.png
share/games/supertux2/images/creatures/willowisp/idle-3.png
+share/games/supertux2/images/creatures/willowisp/idle-4.png
share/games/supertux2/images/creatures/willowisp/vanishing-0.png
share/games/supertux2/images/creatures/willowisp/vanishing-1.png
share/games/supertux2/images/creatures/willowisp/vanishing-2.png
share/games/supertux2/images/creatures/willowisp/vanishing-3.png
+share/games/supertux2/images/creatures/willowisp/vanishing-4.png
share/games/supertux2/images/creatures/willowisp/warping-0.png
share/games/supertux2/images/creatures/willowisp/warping-1.png
share/games/supertux2/images/creatures/willowisp/warping-2.png
@@ -1395,27 +2183,81 @@ share/games/supertux2/images/creatures/w
share/games/supertux2/images/creatures/willowisp/warping-4.png
share/games/supertux2/images/creatures/willowisp/warping-5.png
share/games/supertux2/images/creatures/willowisp/willowisp.sprite
-share/games/supertux2/images/creatures/yeti/busted1.png
-share/games/supertux2/images/creatures/yeti/busted2.png
-share/games/supertux2/images/creatures/yeti/busted3.png
share/games/supertux2/images/creatures/yeti/hudlife.png
-share/games/supertux2/images/creatures/yeti/iceyeti_dust0.png
-share/games/supertux2/images/creatures/yeti/iceyeti_dust1.png
-share/games/supertux2/images/creatures/yeti/iceyeti_dust2.png
-share/games/supertux2/images/creatures/yeti/iceyeti_dust3.png
share/games/supertux2/images/creatures/yeti/iceyeti_dust_wm_0.png
share/games/supertux2/images/creatures/yeti/iceyeti_dust_wm_1.png
share/games/supertux2/images/creatures/yeti/iceyeti_dust_wm_2.png
+share/games/supertux2/images/creatures/yeti/idle-0.png
+share/games/supertux2/images/creatures/yeti/idle-1.png
+share/games/supertux2/images/creatures/yeti/idle-2.png
+share/games/supertux2/images/creatures/yeti/idle-3.png
+share/games/supertux2/images/creatures/yeti/idle-4.png
+share/games/supertux2/images/creatures/yeti/idle-5.png
+share/games/supertux2/images/creatures/yeti/idle-6.png
+share/games/supertux2/images/creatures/yeti/idle-7.png
+share/games/supertux2/images/creatures/yeti/jump-0.png
+share/games/supertux2/images/creatures/yeti/jump-1.png
+share/games/supertux2/images/creatures/yeti/jump-2.png
+share/games/supertux2/images/creatures/yeti/jump-3.png
+share/games/supertux2/images/creatures/yeti/jump-4.png
+share/games/supertux2/images/creatures/yeti/jump-5.png
+share/games/supertux2/images/creatures/yeti/leap-0.png
+share/games/supertux2/images/creatures/yeti/leap-1.png
+share/games/supertux2/images/creatures/yeti/leap-2.png
+share/games/supertux2/images/creatures/yeti/leap-3.png
+share/games/supertux2/images/creatures/yeti/leap-4.png
+share/games/supertux2/images/creatures/yeti/run-0.png
+share/games/supertux2/images/creatures/yeti/run-1.png
+share/games/supertux2/images/creatures/yeti/run-2.png
+share/games/supertux2/images/creatures/yeti/run-3.png
+share/games/supertux2/images/creatures/yeti/run-4.png
+share/games/supertux2/images/creatures/yeti/run-5.png
+share/games/supertux2/images/creatures/yeti/run-6.png
+share/games/supertux2/images/creatures/yeti/run-7.png
+share/games/supertux2/images/creatures/yeti/stand-0.png
+share/games/supertux2/images/creatures/yeti/stand-1.png
+share/games/supertux2/images/creatures/yeti/stand-2.png
+share/games/supertux2/images/creatures/yeti/stand-3.png
+share/games/supertux2/images/creatures/yeti/stand-4.png
+share/games/supertux2/images/creatures/yeti/stand-5.png
+share/games/supertux2/images/creatures/yeti/stand-6.png
+share/games/supertux2/images/creatures/yeti/stand-7.png
+share/games/supertux2/images/creatures/yeti/stomp-0.png
+share/games/supertux2/images/creatures/yeti/stomp-1.png
+share/games/supertux2/images/creatures/yeti/stomp-2.png
+share/games/supertux2/images/creatures/yeti/stomp-3.png
+share/games/supertux2/images/creatures/yeti/stomp-4.png
+share/games/supertux2/images/creatures/yeti/stomp-5.png
+share/games/supertux2/images/creatures/yeti/stomp-6.png
+share/games/supertux2/images/creatures/yeti/stomp-7.png
+share/games/supertux2/images/creatures/yeti/stunned-0.png
+share/games/supertux2/images/creatures/yeti/stunned-1.png
+share/games/supertux2/images/creatures/yeti/stunned-10.png
+share/games/supertux2/images/creatures/yeti/stunned-11.png
+share/games/supertux2/images/creatures/yeti/stunned-2.png
+share/games/supertux2/images/creatures/yeti/stunned-3.png
+share/games/supertux2/images/creatures/yeti/stunned-4.png
+share/games/supertux2/images/creatures/yeti/stunned-5.png
+share/games/supertux2/images/creatures/yeti/stunned-6.png
+share/games/supertux2/images/creatures/yeti/stunned-7.png
+share/games/supertux2/images/creatures/yeti/stunned-8.png
+share/games/supertux2/images/creatures/yeti/stunned-9.png
+share/games/supertux2/images/creatures/yeti/throw-0.png
+share/games/supertux2/images/creatures/yeti/throw-1.png
+share/games/supertux2/images/creatures/yeti/throw-10.png
+share/games/supertux2/images/creatures/yeti/throw-11.png
+share/games/supertux2/images/creatures/yeti/throw-2.png
+share/games/supertux2/images/creatures/yeti/throw-3.png
+share/games/supertux2/images/creatures/yeti/throw-4.png
+share/games/supertux2/images/creatures/yeti/throw-5.png
+share/games/supertux2/images/creatures/yeti/throw-6.png
+share/games/supertux2/images/creatures/yeti/throw-7.png
+share/games/supertux2/images/creatures/yeti/throw-8.png
+share/games/supertux2/images/creatures/yeti/throw-9.png
share/games/supertux2/images/creatures/yeti/worldmap_1.png
share/games/supertux2/images/creatures/yeti/worldmap_10.png
share/games/supertux2/images/creatures/yeti/worldmap_11.png
share/games/supertux2/images/creatures/yeti/worldmap_12.png
-share/games/supertux2/images/creatures/yeti/worldmap_13.png
-share/games/supertux2/images/creatures/yeti/worldmap_14.png
-share/games/supertux2/images/creatures/yeti/worldmap_15.png
-share/games/supertux2/images/creatures/yeti/worldmap_16.png
-share/games/supertux2/images/creatures/yeti/worldmap_17.png
-share/games/supertux2/images/creatures/yeti/worldmap_18.png
share/games/supertux2/images/creatures/yeti/worldmap_2.png
share/games/supertux2/images/creatures/yeti/worldmap_3.png
share/games/supertux2/images/creatures/yeti/worldmap_4.png
@@ -1424,60 +2266,67 @@ share/games/supertux2/images/creatures/y
share/games/supertux2/images/creatures/yeti/worldmap_7.png
share/games/supertux2/images/creatures/yeti/worldmap_8.png
share/games/supertux2/images/creatures/yeti/worldmap_9.png
-share/games/supertux2/images/creatures/yeti/y-jump.png
-share/games/supertux2/images/creatures/yeti/y-jump2.png
-share/games/supertux2/images/creatures/yeti/y.png
-share/games/supertux2/images/creatures/yeti/y1.png
-share/games/supertux2/images/creatures/yeti/y2.png
-share/games/supertux2/images/creatures/yeti/y3.png
-share/games/supertux2/images/creatures/yeti/y4.png
-share/games/supertux2/images/creatures/yeti/y5.png
-share/games/supertux2/images/creatures/yeti/y6.png
-share/games/supertux2/images/creatures/yeti/y7.png
share/games/supertux2/images/creatures/yeti/yeti.sprite
-share/games/supertux2/images/creatures/yeti/yeti_jump.png
-share/games/supertux2/images/creatures/zeekling/burning-0.png
-share/games/supertux2/images/creatures/zeekling/burning-1.png
-share/games/supertux2/images/creatures/zeekling/burning-2.png
-share/games/supertux2/images/creatures/zeekling/burning-3.png
-share/games/supertux2/images/creatures/zeekling/burning-4.png
-share/games/supertux2/images/creatures/zeekling/burning-5.png
-share/games/supertux2/images/creatures/zeekling/burning-6.png
-share/games/supertux2/images/creatures/zeekling/burning-7.png
-share/games/supertux2/images/creatures/zeekling/diving.png
-share/games/supertux2/images/creatures/zeekling/frozen.png
-share/games/supertux2/images/creatures/zeekling/left-0.png
-share/games/supertux2/images/creatures/zeekling/left-1.png
-share/games/supertux2/images/creatures/zeekling/left-2.png
-share/games/supertux2/images/creatures/zeekling/left-3.png
+share/games/supertux2/images/creatures/zeekling/charge-0.png
+share/games/supertux2/images/creatures/zeekling/charge-1.png
+share/games/supertux2/images/creatures/zeekling/charge-2.png
+share/games/supertux2/images/creatures/zeekling/charge-3.png
+share/games/supertux2/images/creatures/zeekling/charge-4.png
+share/games/supertux2/images/creatures/zeekling/dive-0.png
+share/games/supertux2/images/creatures/zeekling/dive-1.png
+share/games/supertux2/images/creatures/zeekling/dive-2.png
+share/games/supertux2/images/creatures/zeekling/dive-3.png
+share/games/supertux2/images/creatures/zeekling/dive-4.png
+share/games/supertux2/images/creatures/zeekling/dive-5.png
+share/games/supertux2/images/creatures/zeekling/dive-6.png
+share/games/supertux2/images/creatures/zeekling/recover-0.png
+share/games/supertux2/images/creatures/zeekling/recover-1.png
+share/games/supertux2/images/creatures/zeekling/recover-2.png
+share/games/supertux2/images/creatures/zeekling/recover-3.png
share/games/supertux2/images/creatures/zeekling/squished.png
+share/games/supertux2/images/creatures/zeekling/zeekling-0.png
+share/games/supertux2/images/creatures/zeekling/zeekling-1.png
+share/games/supertux2/images/creatures/zeekling/zeekling-2.png
+share/games/supertux2/images/creatures/zeekling/zeekling-3.png
+share/games/supertux2/images/creatures/zeekling/zeekling-4.png
+share/games/supertux2/images/creatures/zeekling/zeekling-5.png
+share/games/supertux2/images/creatures/zeekling/zeekling-6.png
+share/games/supertux2/images/creatures/zeekling/zeekling-7.png
share/games/supertux2/images/creatures/zeekling/zeekling.sprite
-share/games/supertux2/images/credits/bill.jpg
-share/games/supertux2/images/credits/christoph.jpg
-share/games/supertux2/images/credits/daniel.jpg
-share/games/supertux2/images/credits/gwater.jpg
-share/games/supertux2/images/credits/ingo.jpg
-share/games/supertux2/images/credits/matze.jpg
+share/games/supertux2/images/credits/bill.png
+share/games/supertux2/images/credits/christoph.png
+share/games/supertux2/images/credits/daniel.png
+share/games/supertux2/images/credits/gwater.png
+share/games/supertux2/images/credits/ingo.png
+share/games/supertux2/images/credits/matze.png
share/games/supertux2/images/credits/milestone.png
-share/games/supertux2/images/credits/ondra.jpg
-share/games/supertux2/images/credits/paroneayea.jpg
-share/games/supertux2/images/credits/wansti.jpg
-share/games/supertux2/images/credits/wolfgang.jpg
+share/games/supertux2/images/credits/ondra.png
+share/games/supertux2/images/credits/paroneayea.png
+share/games/supertux2/images/credits/rpcruz.png
+share/games/supertux2/images/credits/wansti.png
+share/games/supertux2/images/credits/wolfgang.png
+share/games/supertux2/images/decal/explanations/billboard-airflower.png
share/games/supertux2/images/decal/explanations/billboard-backflip.png
share/games/supertux2/images/decal/explanations/billboard-bigtux.png
share/games/supertux2/images/decal/explanations/billboard-buttjump.png
share/games/supertux2/images/decal/explanations/billboard-climbing.png
+share/games/supertux2/images/decal/explanations/billboard-earthflower.png
+share/games/supertux2/images/decal/explanations/billboard-empty.png
share/games/supertux2/images/decal/explanations/billboard-fireflower.png
+share/games/supertux2/images/decal/explanations/billboard-iceflower.png
share/games/supertux2/images/decal/explanations/billboard-pickrock.png
-share/games/supertux2/images/decal/explanations/billboard-plant.png
+share/games/supertux2/images/decal/explanations/billboard-plant.deprecated.png
share/games/supertux2/images/decal/explanations/billboard-resetpoint.png
share/games/supertux2/images/decal/explanations/billboard-runjump.png
+share/games/supertux2/images/decal/explanations/billboard-sliding.png
share/games/supertux2/images/decal/explanations/billboard-star.png
share/games/supertux2/images/decal/explanations/billboard-swimming.png
share/games/supertux2/images/decal/explanations/billboard-switch.png
share/games/supertux2/images/decal/explanations/billboard-trampoline.png
-share/games/supertux2/images/decal/forest/cedar-vine.png
-share/games/supertux2/images/decal/forest/foresttree.png
+share/games/supertux2/images/decal/forest/cedar-vine.deprecated.png
+share/games/supertux2/images/decal/forest/corrupt_house_bg.png
+share/games/supertux2/images/decal/forest/corrupt_house_fg.png
+share/games/supertux2/images/decal/forest/foresttree.deprecated.png
share/games/supertux2/images/decal/forest/foxsleep.sprite
share/games/supertux2/images/decal/forest/foxsleep1.png
share/games/supertux2/images/decal/forest/foxsleep10.png
@@ -1489,50 +2338,119 @@ share/games/supertux2/images/decal/fores
share/games/supertux2/images/decal/forest/foxsleep7.png
share/games/supertux2/images/decal/forest/foxsleep8.png
share/games/supertux2/images/decal/forest/foxsleep9.png
-share/games/supertux2/images/decal/forest/ghost-bush-1.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-1.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-10.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-11.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-12.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-2.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-3.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-4.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-5.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-6.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-7.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-8.png
-share/games/supertux2/images/decal/forest/ghost-mushroom-9.png
+share/games/supertux2/images/decal/forest/ghost-bush-1.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-1.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-10.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-11.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-12.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-2.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-3.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-4.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-5.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-6.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-7.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-8.deprecated.png
+share/games/supertux2/images/decal/forest/ghost-mushroom-9.deprecated.png
+share/games/supertux2/images/decal/forest/rock_house_bg.png
+share/games/supertux2/images/decal/forest/rock_house_fg.png
+share/games/supertux2/images/decal/forest/rose_1.png
+share/games/supertux2/images/decal/forest/rose_2.png
+share/games/supertux2/images/decal/forest/rose_3.png
share/games/supertux2/images/decal/halloween/exit.png
share/games/supertux2/images/decal/halloween/exitfg.png
share/games/supertux2/images/decal/halloween/gravestone1.png
share/games/supertux2/images/decal/halloween/gravestone2.png
+share/games/supertux2/images/decal/halloween/scarecrow.png
share/games/supertux2/images/decal/halloween/spookytree1.png
share/games/supertux2/images/decal/halloween/spookytree2.png
share/games/supertux2/images/decal/halloween/spookytree3.png
share/games/supertux2/images/decal/halloween/tree.png
+share/games/supertux2/images/decal/misc/Antena1.png
share/games/supertux2/images/decal/misc/Antena2.png
+share/games/supertux2/images/decal/misc/flag-0.png
+share/games/supertux2/images/decal/misc/flag-1.png
+share/games/supertux2/images/decal/misc/flag-2.png
+share/games/supertux2/images/decal/misc/flag-3.png
+share/games/supertux2/images/decal/misc/flag-4.png
+share/games/supertux2/images/decal/misc/flag-5.png
+share/games/supertux2/images/decal/misc/flag.sprite
share/games/supertux2/images/decal/misc/heatshimmer-displacement.png
share/games/supertux2/images/decal/misc/heatshimmer.png
share/games/supertux2/images/decal/misc/heatshimmer.sprite
-share/games/supertux2/images/decal/nightcave/lightflower1.png
-share/games/supertux2/images/decal/nightcave/lightflower2.png
-share/games/supertux2/images/decal/nightcave/lightflower3.png
-share/games/supertux2/images/decal/retro/cloud.png
-share/games/supertux2/images/decal/retro/coffee.png
-share/games/supertux2/images/decal/retro/copter1.png
-share/games/supertux2/images/decal/retro/copter2.png
-share/games/supertux2/images/decal/retro/golden-herring.png
-share/games/supertux2/images/decal/retro/map.png
-share/games/supertux2/images/decal/retro/mints.png
+share/games/supertux2/images/decal/misc/nolok-statue-big.png
+share/games/supertux2/images/decal/misc/outhouse.png
+share/games/supertux2/images/decal/misc/overlay_crack-0.png
+share/games/supertux2/images/decal/misc/overlay_crack-1.png
+share/games/supertux2/images/decal/misc/overlay_crack-2.png
+share/games/supertux2/images/decal/misc/overlay_crack-3.png
+share/games/supertux2/images/decal/nightcave/lightflower1.deprecated.png
+share/games/supertux2/images/decal/nightcave/lightflower2.deprecated.png
+share/games/supertux2/images/decal/nightcave/lightflower3.deprecated.png
+share/games/supertux2/images/decal/retro/cloud.deprecated.png
+share/games/supertux2/images/decal/retro/copter.png
+share/games/supertux2/images/decal/retro/copter1.deprecated.png
+share/games/supertux2/images/decal/retro/copter2.deprecated.png
+share/games/supertux2/images/decal/retro/golden-herring.deprecated.png
+share/games/supertux2/images/decal/retro/golden_herring_frozen.png
+share/games/supertux2/images/decal/retro/map.deprecated.png
share/games/supertux2/images/decal/retro/penny_old.png
-share/games/supertux2/images/decal/retro/title_old.png
+share/games/supertux2/images/decal/retro/picnic.png
+share/games/supertux2/images/decal/retro/title_old-0.png
+share/games/supertux2/images/decal/retro/title_old-1.png
+share/games/supertux2/images/decal/retro/title_old-2.png
+share/games/supertux2/images/decal/retro/title_old.deprecated.png
+share/games/supertux2/images/decal/retro/title_old.sprite
share/games/supertux2/images/decal/retro/tux_old.png
-share/games/supertux2/images/decal/snow/exitbg.png
-share/games/supertux2/images/decal/snow/exitfg.png
-share/games/supertux2/images/engine/console.jpg
+share/games/supertux2/images/decal/sign_icons/bombhold.png
+share/games/supertux2/images/decal/sign_icons/color_cyan.png
+share/games/supertux2/images/decal/sign_icons/color_green.png
+share/games/supertux2/images/decal/sign_icons/color_magenta.png
+share/games/supertux2/images/decal/sign_icons/color_yellow.png
+share/games/supertux2/images/decal/sign_icons/corruptcrusher.png
+share/games/supertux2/images/decal/sign_icons/danger.png
+share/games/supertux2/images/decal/sign_icons/down.png
+share/games/supertux2/images/decal/sign_icons/icecrusher.png
+share/games/supertux2/images/decal/sign_icons/icehold.png
+share/games/supertux2/images/decal/sign_icons/left.png
+share/games/supertux2/images/decal/sign_icons/leftdown.png
+share/games/supertux2/images/decal/sign_icons/leftup.png
+share/games/supertux2/images/decal/sign_icons/needpumpkin.png
+share/games/supertux2/images/decal/sign_icons/needrock.png
+share/games/supertux2/images/decal/sign_icons/overlay_corrupted.png
+share/games/supertux2/images/decal/sign_icons/overlay_corrupted_2.png
+share/games/supertux2/images/decal/sign_icons/overlay_forest.png
+share/games/supertux2/images/decal/sign_icons/overlay_forest_2.png
+share/games/supertux2/images/decal/sign_icons/overlay_halloween.png
+share/games/supertux2/images/decal/sign_icons/overlay_halloween_2.png
+share/games/supertux2/images/decal/sign_icons/overlay_snow.png
+share/games/supertux2/images/decal/sign_icons/overlay_snow_2.png
+share/games/supertux2/images/decal/sign_icons/platform.png
+share/games/supertux2/images/decal/sign_icons/platform_wood.png
+share/games/supertux2/images/decal/sign_icons/right.png
+share/games/supertux2/images/decal/sign_icons/rightdown.png
+share/games/supertux2/images/decal/sign_icons/rightup.png
+share/games/supertux2/images/decal/sign_icons/rockcrusher.png
+share/games/supertux2/images/decal/sign_icons/run.png
+share/games/supertux2/images/decal/sign_icons/snailhold.png
+share/games/supertux2/images/decal/sign_icons/trampoline.png
+share/games/supertux2/images/decal/sign_icons/up.png
+share/games/supertux2/images/decal/sign_icons/walljump.png
+share/games/supertux2/images/decal/snow/exitbg.deprecated.png
+share/games/supertux2/images/decal/snow/exitfg.deprecated.png
+share/games/supertux2/images/decal/snow/igloo_bg.png
+share/games/supertux2/images/decal/snow/igloo_fg.png
+share/games/supertux2/images/decal/snow/snowman1.png
+share/games/supertux2/images/decal/snow/snowman2.png
+share/games/supertux2/images/decal/snow/snowman3.png
+share/games/supertux2/images/decal/snow/snowman4.png
+share/games/supertux2/images/decal/snow/snowman5.png
+share/games/supertux2/images/decal/snow/snowman6.png
+share/games/supertux2/images/decal/snow/snowman7.png
+share/games/supertux2/images/decal/snow/snowman_special1.png
+share/games/supertux2/images/decal/snow/snowman_special2.png
share/games/supertux2/images/engine/console.png
share/games/supertux2/images/engine/console2.png
-share/games/supertux2/images/engine/editor/README
+share/games/supertux2/images/engine/editor/add.png
share/games/supertux2/images/engine/editor/ambient_light.png
share/games/supertux2/images/engine/editor/ambientsound.png
share/games/supertux2/images/engine/editor/arrow.png
@@ -1543,46 +2461,65 @@ share/games/supertux2/images/engine/edit
share/games/supertux2/images/engine/editor/climbable.png
share/games/supertux2/images/engine/editor/clock.png
share/games/supertux2/images/engine/editor/clouds.png
+share/games/supertux2/images/engine/editor/color_picker_2d.png
share/games/supertux2/images/engine/editor/decal.png
+share/games/supertux2/images/engine/editor/editor-comment.png
+share/games/supertux2/images/engine/editor/fallplatform.png
+share/games/supertux2/images/engine/editor/flyingplatform.png
share/games/supertux2/images/engine/editor/ghostparticles.png
share/games/supertux2/images/engine/editor/gradient.png
-share/games/supertux2/images/engine/editor/hurtingplatform.png
-share/games/supertux2/images/engine/editor/infoblock.png
+share/games/supertux2/images/engine/editor/grid_button.png
+share/games/supertux2/images/engine/editor/heavy_coin.png
+share/games/supertux2/images/engine/editor/hurtplatform.png
share/games/supertux2/images/engine/editor/invisible_wall.png
share/games/supertux2/images/engine/editor/move-mode0.png
share/games/supertux2/images/engine/editor/move-mode1.png
share/games/supertux2/images/engine/editor/music.png
+share/games/supertux2/images/engine/editor/node_circle.png
share/games/supertux2/images/engine/editor/objects.stoi
+share/games/supertux2/images/engine/editor/particle.png
+share/games/supertux2/images/engine/editor/particle_file.png
share/games/supertux2/images/engine/editor/particle_zone.png
share/games/supertux2/images/engine/editor/path.png
share/games/supertux2/images/engine/editor/path_node.png
+share/games/supertux2/images/engine/editor/play_button.png
share/games/supertux2/images/engine/editor/pneumaticplatform.png
share/games/supertux2/images/engine/editor/point.png
share/games/supertux2/images/engine/editor/powerup.png
share/games/supertux2/images/engine/editor/rain.png
share/games/supertux2/images/engine/editor/redo.png
share/games/supertux2/images/engine/editor/resetpoint.png
+share/games/supertux2/images/engine/editor/resize_arrow.png
share/games/supertux2/images/engine/editor/rubber.png
+share/games/supertux2/images/engine/editor/save.png
share/games/supertux2/images/engine/editor/scriptedobject.png
share/games/supertux2/images/engine/editor/scripttrigger.png
share/games/supertux2/images/engine/editor/secretarea.png
share/games/supertux2/images/engine/editor/select-mode0.png
share/games/supertux2/images/engine/editor/select-mode1.png
share/games/supertux2/images/engine/editor/select-mode2.png
+share/games/supertux2/images/engine/editor/select-mode3.png
share/games/supertux2/images/engine/editor/selection.png
share/games/supertux2/images/engine/editor/sequencetrigger.png
-share/games/supertux2/images/engine/editor/settings-mode0.png
-share/games/supertux2/images/engine/editor/settings-mode1.png
share/games/supertux2/images/engine/editor/snow.png
-share/games/supertux2/images/engine/editor/sparkle-file.png
-share/games/supertux2/images/engine/editor/sparkle.png
+share/games/supertux2/images/engine/editor/sound.png
share/games/supertux2/images/engine/editor/spawnpoint.png
+share/games/supertux2/images/engine/editor/specialtile.png
share/games/supertux2/images/engine/editor/spritechange.png
-share/games/supertux2/images/engine/editor/stalactite_yeti.png
+share/games/supertux2/images/engine/editor/stalactite_ice_yeti.png
+share/games/supertux2/images/engine/editor/stalactite_rock_yeti.png
share/games/supertux2/images/engine/editor/textarray.png
share/games/supertux2/images/engine/editor/textscroller.png
share/games/supertux2/images/engine/editor/thunderstorm.png
share/games/supertux2/images/engine/editor/tilemap.png
+share/games/supertux2/images/engine/editor/tilemap_lightmap.png
+share/games/supertux2/images/engine/editor/tilemap_lightmap_solid.png
+share/games/supertux2/images/engine/editor/tilemap_nonsolid.png
+share/games/supertux2/images/engine/editor/tilemap_path.png
+share/games/supertux2/images/engine/editor/tilemap_path_lightmap.png
+share/games/supertux2/images/engine/editor/tilemap_path_lightmap_solid.png
+share/games/supertux2/images/engine/editor/tilemap_path_nonsolid.png
+share/games/supertux2/images/engine/editor/toggle_tile_object_mode.png
share/games/supertux2/images/engine/editor/undo.png
share/games/supertux2/images/engine/editor/wind.png
share/games/supertux2/images/engine/fonts/README
@@ -1637,14 +2574,24 @@ share/games/supertux2/images/engine/font
share/games/supertux2/images/engine/fonts/zh/white-small.png
share/games/supertux2/images/engine/fonts/zh/white.png
share/games/supertux2/images/engine/hud/airarrow.png
+share/games/supertux2/images/engine/hud/arrowdown.png
share/games/supertux2/images/engine/hud/badguy-icon.png
share/games/supertux2/images/engine/hud/coin-icon.png
share/games/supertux2/images/engine/hud/coins-0.png
+share/games/supertux2/images/engine/hud/fire-0.png
+share/games/supertux2/images/engine/hud/ice-0.png
+share/games/supertux2/images/engine/hud/item_pocket.png
+share/games/supertux2/images/engine/hud/retro_coins-0.png
share/games/supertux2/images/engine/hud/secret-icon.png
share/games/supertux2/images/engine/hud/time-0.png
+share/games/supertux2/images/engine/hud/train.png
+share/games/supertux2/images/engine/hud/tuxdolls-0.png
share/games/supertux2/images/engine/icons/old/supertux-256x256.png
share/games/supertux2/images/engine/icons/old/supertux2-256x256.png
share/games/supertux2/images/engine/icons/supertux-256x256.png
+share/games/supertux2/images/engine/icons/supertux-nightly-256x256.png
+share/games/supertux2/images/engine/icons/supertux-nightly.ico
+share/games/supertux2/images/engine/icons/supertux-nightly.png
share/games/supertux2/images/engine/icons/supertux.icns
share/games/supertux2/images/engine/icons/supertux.ico
share/games/supertux2/images/engine/icons/supertux.png
@@ -1657,23 +2604,21 @@ share/games/supertux2/images/engine/menu
share/games/supertux2/images/engine/menu/checkbox-checked.png
share/games/supertux2/images/engine/menu/checkbox-unchecked.png
share/games/supertux2/images/engine/menu/frame.png
+share/games/supertux2/images/engine/menu/lock.png
share/games/supertux2/images/engine/menu/logo.png
-share/games/supertux2/images/engine/menu/logo.sprite
share/games/supertux2/images/engine/menu/logo_dev.png
share/games/supertux2/images/engine/menu/logo_santahat.png
-share/games/supertux2/images/engine/menu/logo_santahat.sprite
share/games/supertux2/images/engine/menu/mousecursor-click.png
share/games/supertux2/images/engine/menu/mousecursor-link.png
share/games/supertux2/images/engine/menu/mousecursor.png
share/games/supertux2/images/engine/menu/mousecursor.sprite
share/games/supertux2/images/engine/menu/score-backdrop.png
-share/games/supertux2/images/engine/menu/scroll-down.png
-share/games/supertux2/images/engine/menu/scroll-up.png
share/games/supertux2/images/engine/missing.png
share/games/supertux2/images/engine/mobile/action.png
share/games/supertux2/images/engine/mobile/button.png
-share/games/supertux2/images/engine/mobile/button.xcf
share/games/supertux2/images/engine/mobile/button_press.png
+share/games/supertux2/images/engine/mobile/cheats.png
+share/games/supertux2/images/engine/mobile/debug.png
share/games/supertux2/images/engine/mobile/direction.png
share/games/supertux2/images/engine/mobile/direction_hightlight_down.png
share/games/supertux2/images/engine/mobile/direction_hightlight_left.png
@@ -1682,23 +2627,40 @@ share/games/supertux2/images/engine/mobi
share/games/supertux2/images/engine/mobile/direction_hightlights.png
share/games/supertux2/images/engine/mobile/jump.png
share/games/supertux2/images/engine/mobile/pause.png
+share/games/supertux2/images/engine/options/advanced.png
+share/games/supertux2/images/engine/options/audio.png
+share/games/supertux2/images/engine/options/controls.png
+share/games/supertux2/images/engine/options/extras.png
+share/games/supertux2/images/engine/options/locale.png
+share/games/supertux2/images/engine/options/video.png
share/games/supertux2/images/ice_world.strf
+share/games/supertux2/images/objects/big_snowball/big_boulder.png
+share/games/supertux2/images/objects/big_snowball/big_boulder.sprite
+share/games/supertux2/images/objects/big_snowball/big_snowball.png
+share/games/supertux2/images/objects/big_snowball/big_snowball.sprite
+share/games/supertux2/images/objects/big_snowball/big_snowball_particle.png
+share/games/supertux2/images/objects/big_snowball/boulder.png
+share/games/supertux2/images/objects/big_snowball/boulder.sprite
+share/games/supertux2/images/objects/big_snowball/boulder_particle.png
+share/games/supertux2/images/objects/boat/boat.png
+share/games/supertux2/images/objects/boat/boat.sprite
share/games/supertux2/images/objects/bonus_block/bonus-1up.png
share/games/supertux2/images/objects/bonus_block/bonus-air_flower.png
share/games/supertux2/images/objects/bonus_block/bonus-earth_flower.png
share/games/supertux2/images/objects/bonus_block/bonus-explode.png
share/games/supertux2/images/objects/bonus_block/bonus-fire_flower.png
-share/games/supertux2/images/objects/bonus_block/bonus-herring.png
share/games/supertux2/images/objects/bonus_block/bonus-ice_flower.png
share/games/supertux2/images/objects/bonus_block/bonus-invisible.png
share/games/supertux2/images/objects/bonus_block/bonus-levelflip.png
share/games/supertux2/images/objects/bonus_block/bonus-porttramp.png
share/games/supertux2/images/objects/bonus_block/bonus-rain.png
share/games/supertux2/images/objects/bonus_block/bonus-rock.png
+share/games/supertux2/images/objects/bonus_block/bonus-star.png
share/games/supertux2/images/objects/bonus_block/bonus-tramp.png
share/games/supertux2/images/objects/bonus_block/bonusblock.sprite
share/games/supertux2/images/objects/bonus_block/box-empty.png
share/games/supertux2/images/objects/bonus_block/box-full.png
+share/games/supertux2/images/objects/bonus_block/box-invisible.png
share/games/supertux2/images/objects/bonus_block/brick.sprite
share/games/supertux2/images/objects/bonus_block/brickIce.sprite
share/games/supertux2/images/objects/bonus_block/brickWeb.sprite
@@ -1709,44 +2671,65 @@ share/games/supertux2/images/objects/bon
share/games/supertux2/images/objects/bonus_block/full-2.png
share/games/supertux2/images/objects/bonus_block/full-3.png
share/games/supertux2/images/objects/bonus_block/full-4.png
+share/games/supertux2/images/objects/bonus_block/heavy-brick.sprite
share/games/supertux2/images/objects/bonus_block/hiddenbonus.sprite
share/games/supertux2/images/objects/bonus_block/icedbrick.sprite
-share/games/supertux2/images/objects/bonus_block/infoblock.png
+share/games/supertux2/images/objects/bonus_block/infoblock-0.png
+share/games/supertux2/images/objects/bonus_block/infoblock-1.png
+share/games/supertux2/images/objects/bonus_block/infoblock-2.png
+share/games/supertux2/images/objects/bonus_block/infoblock-3.png
+share/games/supertux2/images/objects/bonus_block/infoblock-4.png
share/games/supertux2/images/objects/bonus_block/infoblock.sprite
share/games/supertux2/images/objects/bonus_block/invisible.png
share/games/supertux2/images/objects/bonus_block/invisibleblock.sprite
-share/games/supertux2/images/objects/bonus_block/off.png
-share/games/supertux2/images/objects/bonus_block/on.png
-share/games/supertux2/images/objects/bonus_block/orange_0.png
-share/games/supertux2/images/objects/bonus_block/orange_1.png
-share/games/supertux2/images/objects/bonus_block/orange_2.png
-share/games/supertux2/images/objects/bonus_block/orange_3.png
-share/games/supertux2/images/objects/bonus_block/orange_4.png
+share/games/supertux2/images/objects/bonus_block/lightblock-0.png
+share/games/supertux2/images/objects/bonus_block/lightblock-1.png
+share/games/supertux2/images/objects/bonus_block/lightblock-2.png
+share/games/supertux2/images/objects/bonus_block/lightblock-3.png
+share/games/supertux2/images/objects/bonus_block/lightblock_off.png
+share/games/supertux2/images/objects/bonus_block/orange-0.png
+share/games/supertux2/images/objects/bonus_block/orange-1.png
+share/games/supertux2/images/objects/bonus_block/orange-2.png
+share/games/supertux2/images/objects/bonus_block/orange-3.png
+share/games/supertux2/images/objects/bonus_block/orange-4.png
share/games/supertux2/images/objects/bonus_block/orange_empty.png
share/games/supertux2/images/objects/bonus_block/orangeblock.sprite
-share/games/supertux2/images/objects/bonus_block/purple_0.png
-share/games/supertux2/images/objects/bonus_block/purple_1.png
-share/games/supertux2/images/objects/bonus_block/purple_2.png
-share/games/supertux2/images/objects/bonus_block/purple_3.png
-share/games/supertux2/images/objects/bonus_block/purple_4.png
+share/games/supertux2/images/objects/bonus_block/purple-0.png
+share/games/supertux2/images/objects/bonus_block/purple-1.png
+share/games/supertux2/images/objects/bonus_block/purple-2.png
+share/games/supertux2/images/objects/bonus_block/purple-3.png
+share/games/supertux2/images/objects/bonus_block/purple-4.png
share/games/supertux2/images/objects/bonus_block/purple_empty.png
share/games/supertux2/images/objects/bonus_block/purpleblock.sprite
share/games/supertux2/images/objects/bonus_block/retro_brick.sprite
share/games/supertux2/images/objects/bonus_block/retro_info.png
share/games/supertux2/images/objects/bonus_block/retro_info.sprite
+share/games/supertux2/images/objects/bonus_block/retro_invisibleblock.sprite
share/games/supertux2/images/objects/bonus_block/retroblock.sprite
-share/games/supertux2/images/objects/bonus_block/scriptblock.png
+share/games/supertux2/images/objects/bonus_block/scriptblock-0.png
+share/games/supertux2/images/objects/bonus_block/scriptblock-1.png
+share/games/supertux2/images/objects/bonus_block/scriptblock-2.png
+share/games/supertux2/images/objects/bonus_block/scriptblock-3.png
+share/games/supertux2/images/objects/bonus_block/scriptblock-4.png
share/games/supertux2/images/objects/bonus_block/scriptblock.sprite
share/games/supertux2/images/objects/bonus_block/scriptblock_empty.png
-share/games/supertux2/images/objects/bullets/fire-hud.png
-share/games/supertux2/images/objects/bullets/fire_bullet-0.png
-share/games/supertux2/images/objects/bullets/fire_bullet-1.png
-share/games/supertux2/images/objects/bullets/fire_bullet-2.png
-share/games/supertux2/images/objects/bullets/fire_bullet-3.png
+share/games/supertux2/images/objects/bullets/fire_bullet.png
+share/games/supertux2/images/objects/bullets/fire_tail-0.png
+share/games/supertux2/images/objects/bullets/fire_tail-1.png
+share/games/supertux2/images/objects/bullets/fire_tail-2.png
+share/games/supertux2/images/objects/bullets/fire_tail-3.png
+share/games/supertux2/images/objects/bullets/fire_tail-4.png
share/games/supertux2/images/objects/bullets/firebullet.sprite
-share/games/supertux2/images/objects/bullets/ice-hud.png
+share/games/supertux2/images/objects/bullets/firebullet_tail.sprite
share/games/supertux2/images/objects/bullets/ice_bullet.png
+share/games/supertux2/images/objects/bullets/ice_tail-0.png
+share/games/supertux2/images/objects/bullets/ice_tail-1.png
+share/games/supertux2/images/objects/bullets/ice_tail-2.png
+share/games/supertux2/images/objects/bullets/ice_tail-3.png
+share/games/supertux2/images/objects/bullets/ice_tail-4.png
share/games/supertux2/images/objects/bullets/icebullet.sprite
+share/games/supertux2/images/objects/bullets/icebullet_tail.sprite
+share/games/supertux2/images/objects/candle/candle-0.png
share/games/supertux2/images/objects/candle/candle-1.png
share/games/supertux2/images/objects/candle/candle-2.png
share/games/supertux2/images/objects/candle/candle-3.png
@@ -1759,24 +2742,17 @@ share/games/supertux2/images/objects/can
share/games/supertux2/images/objects/candle/candle-light-white-2.png
share/games/supertux2/images/objects/candle/candle.sprite
share/games/supertux2/images/objects/candle/no_candle.sprite
-share/games/supertux2/images/objects/candle/off.png
-share/games/supertux2/images/objects/candle/torch/torch-off.png
-share/games/supertux2/images/objects/candle/torch/torch.sprite
-share/games/supertux2/images/objects/candle/torch/torch1.png
-share/games/supertux2/images/objects/candle/torch/torch2.png
-share/games/supertux2/images/objects/candle/torch/torch3.png
-share/games/supertux2/images/objects/candle/torch/torch4.png
-share/games/supertux2/images/objects/castledoor/castledoor.png
-share/games/supertux2/images/objects/castledoor/castledoor.sprite
-share/games/supertux2/images/objects/castledoor/keyholes.png
-share/games/supertux2/images/objects/castledoor/keyholes.sprite
-share/games/supertux2/images/objects/castledoor/torchflame.png
-share/games/supertux2/images/objects/castledoor/torchflame.sprite
-share/games/supertux2/images/objects/castledoor/torchflame1.png
-share/games/supertux2/images/objects/castledoor/torchflame2.png
-share/games/supertux2/images/objects/castledoor/torchflame3.png
-share/games/supertux2/images/objects/castledoor/torchflame4.png
-share/games/supertux2/images/objects/castledoor/torchflame5.png
+share/games/supertux2/images/objects/castledoor/castledoor.deprecated.png
+share/games/supertux2/images/objects/castledoor/castledoor.deprecated.sprite
+share/games/supertux2/images/objects/castledoor/keyholes.deprecated.png
+share/games/supertux2/images/objects/castledoor/keyholes.deprecated.sprite
+share/games/supertux2/images/objects/castledoor/torchflame.deprecated.png
+share/games/supertux2/images/objects/castledoor/torchflame.deprecated.sprite
+share/games/supertux2/images/objects/castledoor/torchflame1.deprecated.png
+share/games/supertux2/images/objects/castledoor/torchflame2.deprecated.png
+share/games/supertux2/images/objects/castledoor/torchflame3.deprecated.png
+share/games/supertux2/images/objects/castledoor/torchflame4.deprecated.png
+share/games/supertux2/images/objects/castledoor/torchflame5.deprecated.png
share/games/supertux2/images/objects/coin/coin-0.png
share/games/supertux2/images/objects/coin/coin-1.png
share/games/supertux2/images/objects/coin/coin-10.png
@@ -1802,6 +2778,20 @@ share/games/supertux2/images/objects/coi
share/games/supertux2/images/objects/coin/retro_coin-3.png
share/games/supertux2/images/objects/coin/retro_coin-4.png
share/games/supertux2/images/objects/coin/retro_coin.sprite
+share/games/supertux2/images/objects/conveyor_belt/conveyor.sprite
+share/games/supertux2/images/objects/conveyor_belt/conveyor_left0.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_left1.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_left2.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_left3.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_left4.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_left5.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_right0.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_right1.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_right2.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_right3.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_right4.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_right5.png
+share/games/supertux2/images/objects/conveyor_belt/conveyor_stopped.png
share/games/supertux2/images/objects/crystals/a1.png
share/games/supertux2/images/objects/crystals/a2.png
share/games/supertux2/images/objects/crystals/b1.png
@@ -1822,11 +2812,12 @@ share/games/supertux2/images/objects/doo
share/games/supertux2/images/objects/door/door-5.png
share/games/supertux2/images/objects/door/door-6.png
share/games/supertux2/images/objects/door/door-7.png
-share/games/supertux2/images/objects/door/door-locked.png
share/games/supertux2/images/objects/door/door.sprite
share/games/supertux2/images/objects/door/door_lock.png
share/games/supertux2/images/objects/door/door_lock.sprite
+share/games/supertux2/images/objects/door/door_no_return.png
share/games/supertux2/images/objects/eat-me/eat-me.sprite
+share/games/supertux2/images/objects/eat-me/platter.png
share/games/supertux2/images/objects/explosion/explosion-0.png
share/games/supertux2/images/objects/explosion/explosion-1.png
share/games/supertux2/images/objects/explosion/explosion-10.png
@@ -1842,6 +2833,18 @@ share/games/supertux2/images/objects/exp
share/games/supertux2/images/objects/explosion/explosion-9.png
share/games/supertux2/images/objects/explosion/explosion.sprite
share/games/supertux2/images/objects/explosion/pop-0.png
+share/games/supertux2/images/objects/explosion/pop-1.png
+share/games/supertux2/images/objects/explosion/pop-10.png
+share/games/supertux2/images/objects/explosion/pop-11.png
+share/games/supertux2/images/objects/explosion/pop-12.png
+share/games/supertux2/images/objects/explosion/pop-2.png
+share/games/supertux2/images/objects/explosion/pop-3.png
+share/games/supertux2/images/objects/explosion/pop-4.png
+share/games/supertux2/images/objects/explosion/pop-5.png
+share/games/supertux2/images/objects/explosion/pop-6.png
+share/games/supertux2/images/objects/explosion/pop-7.png
+share/games/supertux2/images/objects/explosion/pop-8.png
+share/games/supertux2/images/objects/explosion/pop-9.png
share/games/supertux2/images/objects/fallblock/branchleft.png
share/games/supertux2/images/objects/fallblock/branchleft.sprite
share/games/supertux2/images/objects/fallblock/branchright.png
@@ -1864,42 +2867,65 @@ share/games/supertux2/images/objects/fal
share/games/supertux2/images/objects/fallblock/cave-5x7.sprite
share/games/supertux2/images/objects/fallblock/cave-6x4.png
share/games/supertux2/images/objects/fallblock/cave-6x4.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-0.5x0.5.png
+share/games/supertux2/images/objects/fallblock/rockblock-0.5x0.5.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-1x1.png
+share/games/supertux2/images/objects/fallblock/rockblock-1x1.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-1x2.png
+share/games/supertux2/images/objects/fallblock/rockblock-1x2.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-1x3.png
+share/games/supertux2/images/objects/fallblock/rockblock-1x3.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-2x1.png
+share/games/supertux2/images/objects/fallblock/rockblock-2x1.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-2x2.png
+share/games/supertux2/images/objects/fallblock/rockblock-2x2.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-2x3.png
+share/games/supertux2/images/objects/fallblock/rockblock-2x3.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-3x1.png
+share/games/supertux2/images/objects/fallblock/rockblock-3x1.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-3x2.png
+share/games/supertux2/images/objects/fallblock/rockblock-3x2.sprite
+share/games/supertux2/images/objects/fallblock/rockblock-3x3.png
+share/games/supertux2/images/objects/fallblock/rockblock-3x3.sprite
+share/games/supertux2/images/objects/fallblock/rockplatform-0.5x0.5.png
+share/games/supertux2/images/objects/fallblock/rockplatform-0.5x0.5.sprite
+share/games/supertux2/images/objects/fallblock/rockplatform-1x1.png
+share/games/supertux2/images/objects/fallblock/rockplatform-1x1.sprite
+share/games/supertux2/images/objects/fallblock/rockplatform-1x3.png
+share/games/supertux2/images/objects/fallblock/rockplatform-1x3.sprite
+share/games/supertux2/images/objects/fallblock/rockplatform-2x2.png
+share/games/supertux2/images/objects/fallblock/rockplatform-2x2.sprite
+share/games/supertux2/images/objects/fallblock/rockplatform-3x3.png
+share/games/supertux2/images/objects/fallblock/rockplatform-3x3.sprite
+share/games/supertux2/images/objects/fallblock/rockplatform-4x1.png
+share/games/supertux2/images/objects/fallblock/rockplatform-4x1.sprite
+share/games/supertux2/images/objects/fallblock/rockplatform-4x3.png
+share/games/supertux2/images/objects/fallblock/rockplatform-4x3.sprite
+share/games/supertux2/images/objects/fallblock/ruin_brick_1x2.png
+share/games/supertux2/images/objects/fallblock/ruin_brick_1x2.sprite
share/games/supertux2/images/objects/firefly/firefly.sprite
-share/games/supertux2/images/objects/firefly/firefly1.png
-share/games/supertux2/images/objects/firefly/firefly2.png
-share/games/supertux2/images/objects/firefly/firefly3.png
-share/games/supertux2/images/objects/firefly/firefly4.png
-share/games/supertux2/images/objects/firefly/firefly5.png
-share/games/supertux2/images/objects/firefly/firefly6.png
-share/games/supertux2/images/objects/firefly/firefly7.png
-share/games/supertux2/images/objects/firefly/sleep-1.png
-share/games/supertux2/images/objects/firefly/sleep-2.png
+share/games/supertux2/images/objects/firefly/firefly1.deprecated.png
+share/games/supertux2/images/objects/firefly/firefly2.deprecated.png
+share/games/supertux2/images/objects/firefly/firefly3.deprecated.png
+share/games/supertux2/images/objects/firefly/firefly4.deprecated.png
+share/games/supertux2/images/objects/firefly/firefly5.deprecated.png
+share/games/supertux2/images/objects/firefly/firefly6.deprecated.png
+share/games/supertux2/images/objects/firefly/firefly7.deprecated.png
+share/games/supertux2/images/objects/firefly/sleep-1.deprecated.png
+share/games/supertux2/images/objects/firefly/sleep-2.deprecated.png
share/games/supertux2/images/objects/flying_platform/flying_platform-0.png
share/games/supertux2/images/objects/flying_platform/flying_platform-1.png
share/games/supertux2/images/objects/flying_platform/flying_platform-2.png
share/games/supertux2/images/objects/flying_platform/flying_platform-3.png
share/games/supertux2/images/objects/flying_platform/flying_platform.sprite
+share/games/supertux2/images/objects/ghost_block/ghost_block.png
+share/games/supertux2/images/objects/gravity_block/gravity_block.png
share/games/supertux2/images/objects/icecube/icecube.png
share/games/supertux2/images/objects/icecube/icecube.sprite
share/games/supertux2/images/objects/icecube/iceslick-displacement.png
share/games/supertux2/images/objects/icecube/iceslick.png
share/games/supertux2/images/objects/invisible/invisible.png
share/games/supertux2/images/objects/invisible/invisible.sprite
-share/games/supertux2/images/objects/ispy/alert-1.png
-share/games/supertux2/images/objects/ispy/alert-2.png
-share/games/supertux2/images/objects/ispy/down-alert-1.png
-share/games/supertux2/images/objects/ispy/down-alert-2.png
-share/games/supertux2/images/objects/ispy/down-gone-0.png
-share/games/supertux2/images/objects/ispy/down-hiding-1.png
-share/games/supertux2/images/objects/ispy/down-hiding-2.png
-share/games/supertux2/images/objects/ispy/down-hiding-3.png
-share/games/supertux2/images/objects/ispy/down-idle-0.png
-share/games/supertux2/images/objects/ispy/down-idle-1.png
-share/games/supertux2/images/objects/ispy/down-idle-3.png
-share/games/supertux2/images/objects/ispy/gone-0.png
-share/games/supertux2/images/objects/ispy/hiding-1.png
-share/games/supertux2/images/objects/ispy/hiding-2.png
-share/games/supertux2/images/objects/ispy/hiding-3.png
share/games/supertux2/images/objects/ispy/i-hiding-down.png
share/games/supertux2/images/objects/ispy/i-hiding.png
share/games/supertux2/images/objects/ispy/i-idle-down.png
@@ -1916,57 +2942,103 @@ share/games/supertux2/images/objects/isp
share/games/supertux2/images/objects/ispy/i-showing2.png
share/games/supertux2/images/objects/ispy/i-showing3-down.png
share/games/supertux2/images/objects/ispy/i-showing3.png
-share/games/supertux2/images/objects/ispy/idle-0.png
-share/games/supertux2/images/objects/ispy/idle-1.png
-share/games/supertux2/images/objects/ispy/idle-3.png
share/games/supertux2/images/objects/ispy/ispy.sprite
share/games/supertux2/images/objects/keys/air.png
-share/games/supertux2/images/objects/keys/air_display.png
+share/games/supertux2/images/objects/keys/air_display.deprecated.png
share/games/supertux2/images/objects/keys/earth.png
-share/games/supertux2/images/objects/keys/earth_display.png
+share/games/supertux2/images/objects/keys/earth_display.deprecated.png
share/games/supertux2/images/objects/keys/fire.png
-share/games/supertux2/images/objects/keys/fire_display.png
+share/games/supertux2/images/objects/keys/fire_display.deprecated.png
share/games/supertux2/images/objects/keys/k_outline.png
share/games/supertux2/images/objects/keys/key.sprite
share/games/supertux2/images/objects/keys/key_air.sprite
share/games/supertux2/images/objects/keys/key_earth.sprite
share/games/supertux2/images/objects/keys/key_fire.sprite
share/games/supertux2/images/objects/keys/key_silver.png
+share/games/supertux2/images/objects/keys/key_skull.png
+share/games/supertux2/images/objects/keys/key_skull.sprite
share/games/supertux2/images/objects/keys/key_water.sprite
share/games/supertux2/images/objects/keys/key_wood.sprite
share/games/supertux2/images/objects/keys/l_outline.png
share/games/supertux2/images/objects/keys/n_outline.png
share/games/supertux2/images/objects/keys/o_outline.png
-share/games/supertux2/images/objects/keys/outline.png
-share/games/supertux2/images/objects/keys/sparkle-1.png
-share/games/supertux2/images/objects/keys/sparkle-10.png
-share/games/supertux2/images/objects/keys/sparkle-11.png
-share/games/supertux2/images/objects/keys/sparkle-12.png
-share/games/supertux2/images/objects/keys/sparkle-13.png
-share/games/supertux2/images/objects/keys/sparkle-14.png
-share/games/supertux2/images/objects/keys/sparkle-15.png
-share/games/supertux2/images/objects/keys/sparkle-16.png
-share/games/supertux2/images/objects/keys/sparkle-2.png
-share/games/supertux2/images/objects/keys/sparkle-3.png
-share/games/supertux2/images/objects/keys/sparkle-4.png
-share/games/supertux2/images/objects/keys/sparkle-5.png
-share/games/supertux2/images/objects/keys/sparkle-6.png
-share/games/supertux2/images/objects/keys/sparkle-7.png
-share/games/supertux2/images/objects/keys/sparkle-8.png
-share/games/supertux2/images/objects/keys/sparkle-9.png
+share/games/supertux2/images/objects/keys/outline.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-1.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-10.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-11.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-12.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-13.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-14.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-15.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-16.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-2.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-3.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-4.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-5.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-6.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-7.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-8.deprecated.png
+share/games/supertux2/images/objects/keys/sparkle-9.deprecated.png
share/games/supertux2/images/objects/keys/water.png
-share/games/supertux2/images/objects/keys/water_display.png
+share/games/supertux2/images/objects/keys/water_display.deprecated.png
share/games/supertux2/images/objects/keys/wood.png
-share/games/supertux2/images/objects/keys/wood_display.png
+share/games/supertux2/images/objects/keys/wood_display.deprecated.png
+share/games/supertux2/images/objects/lantern/lantern-0.png
share/games/supertux2/images/objects/lantern/lantern-1.png
share/games/supertux2/images/objects/lantern/lantern-2.png
share/games/supertux2/images/objects/lantern/lantern-3.png
share/games/supertux2/images/objects/lantern/lantern-4.png
-share/games/supertux2/images/objects/lantern/lantern-off-open.png
-share/games/supertux2/images/objects/lantern/lantern-off.png
+share/games/supertux2/images/objects/lantern/lantern-5.png
share/games/supertux2/images/objects/lantern/lantern.sprite
share/games/supertux2/images/objects/letter/letter-small.png
share/games/supertux2/images/objects/letter/letter-small.sprite
+share/games/supertux2/images/objects/lightflower/light/glow_light.sprite
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light0_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light10_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light1_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light2_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light3_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light4_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light5_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light6_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light7_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light8_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/greyscale/lightflower_light9_greyscale.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light0.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light1.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light10.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light2.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light3.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light4.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light5.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light6.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light7.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light8.png
+share/games/supertux2/images/objects/lightflower/light/lightflower_light9.png
+share/games/supertux2/images/objects/lightflower/lightflower1-0.png
+share/games/supertux2/images/objects/lightflower/lightflower1-1.png
+share/games/supertux2/images/objects/lightflower/lightflower1-10.png
+share/games/supertux2/images/objects/lightflower/lightflower1-2.png
+share/games/supertux2/images/objects/lightflower/lightflower1-3.png
+share/games/supertux2/images/objects/lightflower/lightflower1-4.png
+share/games/supertux2/images/objects/lightflower/lightflower1-5.png
+share/games/supertux2/images/objects/lightflower/lightflower1-6.png
+share/games/supertux2/images/objects/lightflower/lightflower1-7.png
+share/games/supertux2/images/objects/lightflower/lightflower1-8.png
+share/games/supertux2/images/objects/lightflower/lightflower1-9.png
+share/games/supertux2/images/objects/lightflower/lightflower1.sprite
+share/games/supertux2/images/objects/lightflower/lightflower3-0.png
+share/games/supertux2/images/objects/lightflower/lightflower3-1.png
+share/games/supertux2/images/objects/lightflower/lightflower3-10.png
+share/games/supertux2/images/objects/lightflower/lightflower3-2.png
+share/games/supertux2/images/objects/lightflower/lightflower3-3.png
+share/games/supertux2/images/objects/lightflower/lightflower3-4.png
+share/games/supertux2/images/objects/lightflower/lightflower3-5.png
+share/games/supertux2/images/objects/lightflower/lightflower3-6.png
+share/games/supertux2/images/objects/lightflower/lightflower3-7.png
+share/games/supertux2/images/objects/lightflower/lightflower3-8.png
+share/games/supertux2/images/objects/lightflower/lightflower3-9.png
+share/games/supertux2/images/objects/lightflower/lightflower3.sprite
share/games/supertux2/images/objects/lightmap_light/bonusblock_light.png
share/games/supertux2/images/objects/lightmap_light/lightmap_light-large.png
share/games/supertux2/images/objects/lightmap_light/lightmap_light-large.sprite
@@ -1978,8 +3050,6 @@ share/games/supertux2/images/objects/lig
share/games/supertux2/images/objects/lightmap_light/lightmap_light-tiny.sprite
share/games/supertux2/images/objects/lightmap_light/lightmap_light.png
share/games/supertux2/images/objects/lightmap_light/lightmap_light.sprite
-share/games/supertux2/images/objects/logo/logo.sprite
-share/games/supertux2/images/objects/logo/logo_final.sprite
share/games/supertux2/images/objects/magicblock/magicblock-solid.png
share/games/supertux2/images/objects/magicblock/magicblock.png
share/games/supertux2/images/objects/magicblock/magicblock.sprite
@@ -1989,6 +3059,7 @@ share/games/supertux2/images/objects/pat
share/games/supertux2/images/objects/path/node.sprite
share/games/supertux2/images/objects/platforms/big.png
share/games/supertux2/images/objects/platforms/big.sprite
+share/games/supertux2/images/objects/platforms/circleplatform-editor.png
share/games/supertux2/images/objects/platforms/icebridge1.png
share/games/supertux2/images/objects/platforms/icebridge2.png
share/games/supertux2/images/objects/platforms/icebridge3.png
@@ -2010,19 +3081,31 @@ share/games/supertux2/images/objects/pla
share/games/supertux2/images/objects/platforms/pedestal.sprite
share/games/supertux2/images/objects/platforms/small.png
share/games/supertux2/images/objects/platforms/small.sprite
+share/games/supertux2/images/objects/platforms/vertical-wood-long.png
+share/games/supertux2/images/objects/platforms/vertical-wood-long.sprite
share/games/supertux2/images/objects/platforms/vertical-wood.png
share/games/supertux2/images/objects/platforms/vertical-wood.sprite
share/games/supertux2/images/objects/platforms/wood-fivetiles.png
share/games/supertux2/images/objects/platforms/wood-fivetiles.sprite
+share/games/supertux2/images/objects/platforms/wood-fourtiles.png
+share/games/supertux2/images/objects/platforms/wood-fourtiles.sprite
+share/games/supertux2/images/objects/platforms/wood-threetiles.png
+share/games/supertux2/images/objects/platforms/wood-threetiles.sprite
share/games/supertux2/images/objects/platforms/wood-tiny.png
share/games/supertux2/images/objects/platforms/wood-tiny.sprite
share/games/supertux2/images/objects/pushbutton/pushbutton-0.png
share/games/supertux2/images/objects/pushbutton/pushbutton-1.png
+share/games/supertux2/images/objects/pushbutton/pushbutton-2.png
+share/games/supertux2/images/objects/pushbutton/pushbutton-3.png
share/games/supertux2/images/objects/pushbutton/pushbutton.sprite
share/games/supertux2/images/objects/radio/radio.sprite
+share/games/supertux2/images/objects/radio/radio0.png
share/games/supertux2/images/objects/radio/radio1.png
share/games/supertux2/images/objects/radio/radio2.png
share/games/supertux2/images/objects/radio/radio3.png
+share/games/supertux2/images/objects/radio/radio4.png
+share/games/supertux2/images/objects/radio/radio5.png
+share/games/supertux2/images/objects/radio/radio_inactive.png
share/games/supertux2/images/objects/resetpoints/bell-l.png
share/games/supertux2/images/objects/resetpoints/bell-l_0.png
share/games/supertux2/images/objects/resetpoints/bell-m.png
@@ -2030,35 +3113,117 @@ share/games/supertux2/images/objects/res
share/games/supertux2/images/objects/resetpoints/bell-r_0.png
share/games/supertux2/images/objects/resetpoints/bell.sprite
share/games/supertux2/images/objects/resetpoints/default-resetpoint.sprite
-share/games/supertux2/images/objects/resetpoints/firefly.sprite
-share/games/supertux2/images/objects/resetpoints/firefly1.png
-share/games/supertux2/images/objects/resetpoints/firefly2.png
-share/games/supertux2/images/objects/resetpoints/firefly3.png
-share/games/supertux2/images/objects/resetpoints/firefly4.png
-share/games/supertux2/images/objects/resetpoints/firefly5.png
-share/games/supertux2/images/objects/resetpoints/firefly6.png
-share/games/supertux2/images/objects/resetpoints/firefly7.png
-share/games/supertux2/images/objects/resetpoints/torch-off1.png
-share/games/supertux2/images/objects/resetpoints/torch-off2.png
-share/games/supertux2/images/objects/resetpoints/torch.sprite
-share/games/supertux2/images/objects/resetpoints/torch1.png
-share/games/supertux2/images/objects/resetpoints/torch2.png
-share/games/supertux2/images/objects/resetpoints/torch3.png
-share/games/supertux2/images/objects/resetpoints/torch4.png
-share/games/supertux2/images/objects/resetpoints/torch5.png
-share/games/supertux2/images/objects/resetpoints/torch6.png
-share/games/supertux2/images/objects/resetpoints/torch7.png
-share/games/supertux2/images/objects/resetpoints/vbell-l.png
-share/games/supertux2/images/objects/resetpoints/vbell-l_0.png
-share/games/supertux2/images/objects/resetpoints/vbell-m.png
-share/games/supertux2/images/objects/resetpoints/vbell-r.png
-share/games/supertux2/images/objects/resetpoints/vbell-r_0.png
-share/games/supertux2/images/objects/resetpoints/vbell.sprite
+share/games/supertux2/images/objects/resetpoints/firefly.deprecated.sprite
+share/games/supertux2/images/objects/resetpoints/firefly1.deprecated.png
+share/games/supertux2/images/objects/resetpoints/firefly2.deprecated.png
+share/games/supertux2/images/objects/resetpoints/firefly3.deprecated.png
+share/games/supertux2/images/objects/resetpoints/firefly4.deprecated.png
+share/games/supertux2/images/objects/resetpoints/firefly5.deprecated.png
+share/games/supertux2/images/objects/resetpoints/firefly6.deprecated.png
+share/games/supertux2/images/objects/resetpoints/firefly7.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch-off1.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch-off2.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch.deprecated.sprite
+share/games/supertux2/images/objects/resetpoints/torch1.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch2.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch3.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch4.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch5.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch6.deprecated.png
+share/games/supertux2/images/objects/resetpoints/torch7.deprecated.png
+share/games/supertux2/images/objects/resetpoints/vbell-l.deprecated.png
+share/games/supertux2/images/objects/resetpoints/vbell-l_0.deprecated.png
+share/games/supertux2/images/objects/resetpoints/vbell-m.deprecated.png
+share/games/supertux2/images/objects/resetpoints/vbell-r.deprecated.png
+share/games/supertux2/images/objects/resetpoints/vbell-r_0.deprecated.png
+share/games/supertux2/images/objects/resetpoints/vbell.deprecated.sprite
+share/games/supertux2/images/objects/rock/extra/rock-1x2.png
+share/games/supertux2/images/objects/rock/extra/rock-1x2.sprite
+share/games/supertux2/images/objects/rock/extra/rock-1x3.png
+share/games/supertux2/images/objects/rock/extra/rock-1x3.sprite
+share/games/supertux2/images/objects/rock/extra/rock-1x4.png
+share/games/supertux2/images/objects/rock/extra/rock-1x4.sprite
+share/games/supertux2/images/objects/rock/extra/rock-1x5.png
+share/games/supertux2/images/objects/rock/extra/rock-1x5.sprite
+share/games/supertux2/images/objects/rock/extra/rock-1x6.png
+share/games/supertux2/images/objects/rock/extra/rock-1x6.sprite
+share/games/supertux2/images/objects/rock/extra/rock-2x1.png
+share/games/supertux2/images/objects/rock/extra/rock-2x1.sprite
+share/games/supertux2/images/objects/rock/extra/rock-2x3.png
+share/games/supertux2/images/objects/rock/extra/rock-2x3.sprite
+share/games/supertux2/images/objects/rock/extra/rock-2x4.png
+share/games/supertux2/images/objects/rock/extra/rock-2x4.sprite
+share/games/supertux2/images/objects/rock/extra/rock-2x5.png
+share/games/supertux2/images/objects/rock/extra/rock-2x5.sprite
+share/games/supertux2/images/objects/rock/extra/rock-2x6.png
+share/games/supertux2/images/objects/rock/extra/rock-2x6.sprite
+share/games/supertux2/images/objects/rock/extra/rock-3x1.png
+share/games/supertux2/images/objects/rock/extra/rock-3x1.sprite
+share/games/supertux2/images/objects/rock/extra/rock-3x2.png
+share/games/supertux2/images/objects/rock/extra/rock-3x2.sprite
+share/games/supertux2/images/objects/rock/extra/rock-3x4.png
+share/games/supertux2/images/objects/rock/extra/rock-3x4.sprite
+share/games/supertux2/images/objects/rock/extra/rock-3x5.png
+share/games/supertux2/images/objects/rock/extra/rock-3x5.sprite
+share/games/supertux2/images/objects/rock/extra/rock-3x6.png
+share/games/supertux2/images/objects/rock/extra/rock-3x6.sprite
+share/games/supertux2/images/objects/rock/extra/rock-4x1.png
+share/games/supertux2/images/objects/rock/extra/rock-4x1.sprite
+share/games/supertux2/images/objects/rock/extra/rock-4x2.png
+share/games/supertux2/images/objects/rock/extra/rock-4x2.sprite
+share/games/supertux2/images/objects/rock/extra/rock-4x3.png
+share/games/supertux2/images/objects/rock/extra/rock-4x3.sprite
+share/games/supertux2/images/objects/rock/extra/rock-4x4.png
+share/games/supertux2/images/objects/rock/extra/rock-4x4.sprite
+share/games/supertux2/images/objects/rock/extra/rock-4x5.png
+share/games/supertux2/images/objects/rock/extra/rock-4x5.sprite
+share/games/supertux2/images/objects/rock/extra/rock-4x6.png
+share/games/supertux2/images/objects/rock/extra/rock-4x6.sprite
+share/games/supertux2/images/objects/rock/extra/rock-5x1.png
+share/games/supertux2/images/objects/rock/extra/rock-5x1.sprite
+share/games/supertux2/images/objects/rock/extra/rock-5x2.png
+share/games/supertux2/images/objects/rock/extra/rock-5x2.sprite
+share/games/supertux2/images/objects/rock/extra/rock-5x3.png
+share/games/supertux2/images/objects/rock/extra/rock-5x3.sprite
+share/games/supertux2/images/objects/rock/extra/rock-5x4.png
+share/games/supertux2/images/objects/rock/extra/rock-5x4.sprite
+share/games/supertux2/images/objects/rock/extra/rock-5x5.png
+share/games/supertux2/images/objects/rock/extra/rock-5x5.sprite
+share/games/supertux2/images/objects/rock/extra/rock-5x6.png
+share/games/supertux2/images/objects/rock/extra/rock-5x6.sprite
+share/games/supertux2/images/objects/rock/extra/rock-6x1.png
+share/games/supertux2/images/objects/rock/extra/rock-6x1.sprite
+share/games/supertux2/images/objects/rock/extra/rock-6x2.png
+share/games/supertux2/images/objects/rock/extra/rock-6x2.sprite
+share/games/supertux2/images/objects/rock/extra/rock-6x3.png
+share/games/supertux2/images/objects/rock/extra/rock-6x3.sprite
+share/games/supertux2/images/objects/rock/extra/rock-6x4.png
+share/games/supertux2/images/objects/rock/extra/rock-6x4.sprite
+share/games/supertux2/images/objects/rock/extra/rock-6x5.png
+share/games/supertux2/images/objects/rock/extra/rock-6x5.sprite
+share/games/supertux2/images/objects/rock/extra/rock-6x6.png
+share/games/supertux2/images/objects/rock/extra/rock-6x6.sprite
+share/games/supertux2/images/objects/rock/pumpkin/pumpkin.png
+share/games/supertux2/images/objects/rock/pumpkin/rock_pumpkin.sprite
share/games/supertux2/images/objects/rock/rock-b.png
+share/games/supertux2/images/objects/rock/rock-b.sprite
share/games/supertux2/images/objects/rock/rock-c.png
+share/games/supertux2/images/objects/rock/rock-c.sprite
+share/games/supertux2/images/objects/rock/rock-d.png
+share/games/supertux2/images/objects/rock/rock-d.sprite
share/games/supertux2/images/objects/rock/rock.png
share/games/supertux2/images/objects/rock/rock.sprite
-share/games/supertux2/images/objects/rublight/rublight.png
+share/games/supertux2/images/objects/rublight/rublight-0.png
+share/games/supertux2/images/objects/rublight/rublight-1.png
+share/games/supertux2/images/objects/rublight/rublight-10.png
+share/games/supertux2/images/objects/rublight/rublight-2.png
+share/games/supertux2/images/objects/rublight/rublight-3.png
+share/games/supertux2/images/objects/rublight/rublight-4.png
+share/games/supertux2/images/objects/rublight/rublight-5.png
+share/games/supertux2/images/objects/rublight/rublight-6.png
+share/games/supertux2/images/objects/rublight/rublight-7.png
+share/games/supertux2/images/objects/rublight/rublight-8.png
+share/games/supertux2/images/objects/rublight/rublight-9.png
share/games/supertux2/images/objects/rublight/rublight.sprite
share/games/supertux2/images/objects/rusty-trampoline/rusty-trampoline.sprite
share/games/supertux2/images/objects/rusty-trampoline/rustytrampoline-editor.png
@@ -2068,24 +3233,21 @@ share/games/supertux2/images/objects/rus
share/games/supertux2/images/objects/rusty-trampoline/rustytrampoline4.png
share/games/supertux2/images/objects/rusty-trampoline/rustytrampoline5.png
share/games/supertux2/images/objects/rusty-trampoline/rustytrampoline6.png
-share/games/supertux2/images/objects/sawblade/Thunder1.png
-share/games/supertux2/images/objects/sawblade/Thunder2.png
-share/games/supertux2/images/objects/sawblade/Thunder3.png
-share/games/supertux2/images/objects/sawblade/bigball1.png
+share/games/supertux2/images/objects/sawblade/bigball1.deprecated.png
share/games/supertux2/images/objects/sawblade/default-0.png
share/games/supertux2/images/objects/sawblade/default-1.png
share/games/supertux2/images/objects/sawblade/default-2.png
-share/games/supertux2/images/objects/sawblade/goodball.sprite
-share/games/supertux2/images/objects/sawblade/left.png
-share/games/supertux2/images/objects/sawblade/right.png
+share/games/supertux2/images/objects/sawblade/goodbal.deprecatedl.sprite
share/games/supertux2/images/objects/sawblade/sawblade.sprite
-share/games/supertux2/images/objects/sawblade/spikeleft.sprite
-share/games/supertux2/images/objects/sawblade/spikeright.sprite
+share/games/supertux2/images/objects/sawblade/shock-0.png
+share/games/supertux2/images/objects/sawblade/shock-1.png
+share/games/supertux2/images/objects/sawblade/shock-2.png
+share/games/supertux2/images/objects/sawblade/shock-3.png
+share/games/supertux2/images/objects/sawblade/shock-4.png
share/games/supertux2/images/objects/sawblade/thunder.sprite
share/games/supertux2/images/objects/skull_tile/skull-mad.png
share/games/supertux2/images/objects/skull_tile/skull.png
share/games/supertux2/images/objects/skull_tile/skull_tile.sprite
-share/games/supertux2/images/objects/skulls/skull.png
share/games/supertux2/images/objects/snowman/s_man_1.png
share/games/supertux2/images/objects/snowman/s_man_2.png
share/games/supertux2/images/objects/snowman/s_man_3.png
@@ -2105,18 +3267,16 @@ share/games/supertux2/images/objects/spo
share/games/supertux2/images/objects/spotlight/spotlight_center.sprite
share/games/supertux2/images/objects/spotlight/spotlight_lights.png
share/games/supertux2/images/objects/spotlight/spotlight_lights.sprite
+share/games/supertux2/images/objects/switch/down-0.png
+share/games/supertux2/images/objects/switch/down-1.png
+share/games/supertux2/images/objects/switch/down-2.png
+share/games/supertux2/images/objects/switch/down-3.png
+share/games/supertux2/images/objects/switch/down-4.png
share/games/supertux2/images/objects/switch/left-0.png
share/games/supertux2/images/objects/switch/left-1.png
share/games/supertux2/images/objects/switch/left-2.png
share/games/supertux2/images/objects/switch/left-3.png
share/games/supertux2/images/objects/switch/left-4.png
-share/games/supertux2/images/objects/switch/left.sprite
-share/games/supertux2/images/objects/switch/right-0.png
-share/games/supertux2/images/objects/switch/right-1.png
-share/games/supertux2/images/objects/switch/right-2.png
-share/games/supertux2/images/objects/switch/right-3.png
-share/games/supertux2/images/objects/switch/right-4.png
-share/games/supertux2/images/objects/switch/right.sprite
share/games/supertux2/images/objects/switch/switch-0.png
share/games/supertux2/images/objects/switch/switch-1.png
share/games/supertux2/images/objects/switch/switch-2.png
@@ -2144,12 +3304,16 @@ share/games/supertux2/images/objects/tor
share/games/supertux2/images/objects/torch/greyscale/flame_glow3.png
share/games/supertux2/images/objects/torch/greyscale/flame_glow4.png
share/games/supertux2/images/objects/torch/greyscale/flame_light.png
+share/games/supertux2/images/objects/torch/lamp/lamp.png
+share/games/supertux2/images/objects/torch/lamp/lamp.sprite
share/games/supertux2/images/objects/torch/torch1.png
share/games/supertux2/images/objects/torch/torch1.sprite
share/games/supertux2/images/objects/torch/torch2.png
share/games/supertux2/images/objects/torch/torch2.sprite
share/games/supertux2/images/objects/torch/torch3.png
share/games/supertux2/images/objects/torch/torch3.sprite
+share/games/supertux2/images/objects/torch/torch4.png
+share/games/supertux2/images/objects/torch/torch4.sprite
share/games/supertux2/images/objects/trampoline/bumper.sprite
share/games/supertux2/images/objects/trampoline/right-0.png
share/games/supertux2/images/objects/trampoline/right-1.png
@@ -2173,19 +3337,25 @@ share/games/supertux2/images/objects/tra
share/games/supertux2/images/objects/trampoline/trampoline2-4.png
share/games/supertux2/images/objects/trampoline/trampoline2-5.png
share/games/supertux2/images/objects/trampoline/trampoline_fix.sprite
-share/games/supertux2/images/objects/unstable_tile/castleblock-0.png
-share/games/supertux2/images/objects/unstable_tile/castleblock-1.png
-share/games/supertux2/images/objects/unstable_tile/castleblock-2.png
-share/games/supertux2/images/objects/unstable_tile/castleblock-3.png
-share/games/supertux2/images/objects/unstable_tile/castleblock.sprite
-share/games/supertux2/images/objects/unstable_tile/crumbling-0.png
-share/games/supertux2/images/objects/unstable_tile/crumbling-1.png
+share/games/supertux2/images/objects/unstable_tile/brick-0.png
+share/games/supertux2/images/objects/unstable_tile/brick-1.png
+share/games/supertux2/images/objects/unstable_tile/brick-10.png
+share/games/supertux2/images/objects/unstable_tile/brick-11.png
+share/games/supertux2/images/objects/unstable_tile/brick-2.png
+share/games/supertux2/images/objects/unstable_tile/brick-3.png
+share/games/supertux2/images/objects/unstable_tile/brick-4.png
+share/games/supertux2/images/objects/unstable_tile/brick-5.png
+share/games/supertux2/images/objects/unstable_tile/brick-6.png
+share/games/supertux2/images/objects/unstable_tile/brick-7.png
+share/games/supertux2/images/objects/unstable_tile/brick-8.png
+share/games/supertux2/images/objects/unstable_tile/brick-9.png
+share/games/supertux2/images/objects/unstable_tile/brick.sprite
share/games/supertux2/images/objects/unstable_tile/iceplatform.png
share/games/supertux2/images/objects/unstable_tile/iceplatform.sprite
-share/games/supertux2/images/objects/unstable_tile/normal.png
share/games/supertux2/images/objects/unstable_tile/snow-0.png
share/games/supertux2/images/objects/unstable_tile/snow-1.png
share/games/supertux2/images/objects/unstable_tile/snow-10.png
+share/games/supertux2/images/objects/unstable_tile/snow-11.png
share/games/supertux2/images/objects/unstable_tile/snow-2.png
share/games/supertux2/images/objects/unstable_tile/snow-3.png
share/games/supertux2/images/objects/unstable_tile/snow-4.png
@@ -2195,7 +3365,6 @@ share/games/supertux2/images/objects/uns
share/games/supertux2/images/objects/unstable_tile/snow-8.png
share/games/supertux2/images/objects/unstable_tile/snow-9.png
share/games/supertux2/images/objects/unstable_tile/snow.sprite
-share/games/supertux2/images/objects/unstable_tile/unstable_tile.sprite
share/games/supertux2/images/objects/water_drop/pink-drop.png
share/games/supertux2/images/objects/water_drop/pink-particle-0.png
share/games/supertux2/images/objects/water_drop/pink-particle-1.png
@@ -2206,6 +3375,7 @@ share/games/supertux2/images/objects/wat
share/games/supertux2/images/objects/water_drop/pink-splash-2.png
share/games/supertux2/images/objects/water_drop/pink-splash-3.png
share/games/supertux2/images/objects/water_drop/pink-splash-4.png
+share/games/supertux2/images/objects/water_drop/pink-splash-5.png
share/games/supertux2/images/objects/water_drop/pink_drop.sprite
share/games/supertux2/images/objects/water_drop/water-drop.png
share/games/supertux2/images/objects/water_drop/water-particle-0.png
@@ -2217,39 +3387,59 @@ share/games/supertux2/images/objects/wat
share/games/supertux2/images/objects/water_drop/water-splash-2.png
share/games/supertux2/images/objects/water_drop/water-splash-3.png
share/games/supertux2/images/objects/water_drop/water-splash-4.png
+share/games/supertux2/images/objects/water_drop/water-splash-5.png
share/games/supertux2/images/objects/water_drop/water_drop.sprite
-share/games/supertux2/images/objects/weak_block/melt_01.png
-share/games/supertux2/images/objects/weak_block/melt_02.png
-share/games/supertux2/images/objects/weak_block/melt_03.png
-share/games/supertux2/images/objects/weak_block/melt_04.png
-share/games/supertux2/images/objects/weak_block/melt_05.png
-share/games/supertux2/images/objects/weak_block/melt_06.png
-share/games/supertux2/images/objects/weak_block/melt_07.png
-share/games/supertux2/images/objects/weak_block/melt_08.png
-share/games/supertux2/images/objects/weak_block/melt_09.png
-share/games/supertux2/images/objects/weak_block/melt_10.png
-share/games/supertux2/images/objects/weak_block/melt_11.png
-share/games/supertux2/images/objects/weak_block/meltbox.png
+share/games/supertux2/images/objects/waterlight/waterlight.png
+share/games/supertux2/images/objects/waterlight/waterlight_glow.png
+share/games/supertux2/images/objects/weak_block/meltbox-0.png
+share/games/supertux2/images/objects/weak_block/meltbox-1.png
+share/games/supertux2/images/objects/weak_block/meltbox-10.png
+share/games/supertux2/images/objects/weak_block/meltbox-11.png
+share/games/supertux2/images/objects/weak_block/meltbox-2.png
+share/games/supertux2/images/objects/weak_block/meltbox-3.png
+share/games/supertux2/images/objects/weak_block/meltbox-4.png
+share/games/supertux2/images/objects/weak_block/meltbox-5.png
+share/games/supertux2/images/objects/weak_block/meltbox-6.png
+share/games/supertux2/images/objects/weak_block/meltbox-7.png
+share/games/supertux2/images/objects/weak_block/meltbox-8.png
+share/games/supertux2/images/objects/weak_block/meltbox-9.png
share/games/supertux2/images/objects/weak_block/meltbox.sprite
-share/games/supertux2/images/objects/weak_block/straw.png
-share/games/supertux2/images/objects/weak_block/straw_01.png
-share/games/supertux2/images/objects/weak_block/straw_02.png
-share/games/supertux2/images/objects/weak_block/straw_03.png
-share/games/supertux2/images/objects/weak_block/straw_04.png
-share/games/supertux2/images/objects/weak_block/straw_05.png
-share/games/supertux2/images/objects/weak_block/straw_06.png
-share/games/supertux2/images/objects/weak_block/straw_07.png
-share/games/supertux2/images/objects/weak_block/straw_08.png
-share/games/supertux2/images/objects/weak_block/straw_09.png
-share/games/supertux2/images/objects/weak_block/straw_10.png
-share/games/supertux2/images/objects/weak_block/straw_11.png
-share/games/supertux2/images/objects/weak_block/straw_12.png
+share/games/supertux2/images/objects/weak_block/strawbox-0.png
+share/games/supertux2/images/objects/weak_block/strawbox-1.png
+share/games/supertux2/images/objects/weak_block/strawbox-10.png
+share/games/supertux2/images/objects/weak_block/strawbox-11.png
+share/games/supertux2/images/objects/weak_block/strawbox-2.png
+share/games/supertux2/images/objects/weak_block/strawbox-3.png
+share/games/supertux2/images/objects/weak_block/strawbox-4.png
+share/games/supertux2/images/objects/weak_block/strawbox-5.png
+share/games/supertux2/images/objects/weak_block/strawbox-6.png
+share/games/supertux2/images/objects/weak_block/strawbox-7.png
+share/games/supertux2/images/objects/weak_block/strawbox-8.png
+share/games/supertux2/images/objects/weak_block/strawbox-9.png
share/games/supertux2/images/objects/weak_block/strawbox.sprite
+share/games/supertux2/images/particles/air_bubble-0.png
+share/games/supertux2/images/particles/air_bubble-1.png
+share/games/supertux2/images/particles/air_bubble-2.png
+share/games/supertux2/images/particles/air_bubble-3.png
+share/games/supertux2/images/particles/air_bubble-4.png
+share/games/supertux2/images/particles/air_bubble.sprite
share/games/supertux2/images/particles/airtux-hat.png
share/games/supertux2/images/particles/airtux-hat.sprite
share/games/supertux2/images/particles/bark-0.png
share/games/supertux2/images/particles/bark.sprite
+share/games/supertux2/images/particles/bumpkin_piece-0.png
+share/games/supertux2/images/particles/bumpkin_piece-1.png
+share/games/supertux2/images/particles/bumpkin_piece-2.png
+share/games/supertux2/images/particles/bumpkin_piece-3.png
+share/games/supertux2/images/particles/bumpkin_piece-4.png
+share/games/supertux2/images/particles/bumpkin_piece.sprite
share/games/supertux2/images/particles/cloud.png
+share/games/supertux2/images/particles/corrupted_rock-0.png
+share/games/supertux2/images/particles/corrupted_rock-1.png
+share/games/supertux2/images/particles/corrupted_rock-2.png
+share/games/supertux2/images/particles/corrupted_rock-3.png
+share/games/supertux2/images/particles/corrupted_rock-4.png
+share/games/supertux2/images/particles/corrupted_rock.sprite
share/games/supertux2/images/particles/earthtux-hardhat.png
share/games/supertux2/images/particles/earthtux-hardhat.sprite
share/games/supertux2/images/particles/explosion-0.png
@@ -2260,6 +3450,19 @@ share/games/supertux2/images/particles/f
share/games/supertux2/images/particles/firetux-helmet.sprite
share/games/supertux2/images/particles/ghost0.png
share/games/supertux2/images/particles/ghost1.png
+share/games/supertux2/images/particles/glint-0.png
+share/games/supertux2/images/particles/glint-1.png
+share/games/supertux2/images/particles/glint-2.png
+share/games/supertux2/images/particles/glint-3.png
+share/games/supertux2/images/particles/glint-4.png
+share/games/supertux2/images/particles/glint.sprite
+share/games/supertux2/images/particles/granito_piece-0.png
+share/games/supertux2/images/particles/granito_piece-1.png
+share/games/supertux2/images/particles/granito_piece-2.png
+share/games/supertux2/images/particles/granito_piece-3.png
+share/games/supertux2/images/particles/granito_piece-4.png
+share/games/supertux2/images/particles/granito_piece-5.png
+share/games/supertux2/images/particles/granito_piece.sprite
share/games/supertux2/images/particles/ice_piece1.png
share/games/supertux2/images/particles/ice_piece1.sprite
share/games/supertux2/images/particles/ice_piece2.png
@@ -2278,14 +3481,28 @@ share/games/supertux2/images/particles/k
share/games/supertux2/images/particles/kracker.sprite
share/games/supertux2/images/particles/kraker.sprite
share/games/supertux2/images/particles/leaf-0.png
+share/games/supertux2/images/particles/leaf.png
share/games/supertux2/images/particles/leaf.sprite
-share/games/supertux2/images/particles/leafshot.sprite
-share/games/supertux2/images/particles/poisonivy-0.png
-share/games/supertux2/images/particles/poisonivy-1.png
-share/games/supertux2/images/particles/poisonivy-2.png
-share/games/supertux2/images/particles/poisonivy-3.png
-share/games/supertux2/images/particles/poisonivy.png
-share/games/supertux2/images/particles/poisonivy.sprite
+share/games/supertux2/images/particles/leaf2.png
+share/games/supertux2/images/particles/leaf2.sprite
+share/games/supertux2/images/particles/metal_piece-0.png
+share/games/supertux2/images/particles/metal_piece-1.png
+share/games/supertux2/images/particles/metal_piece-2.png
+share/games/supertux2/images/particles/metal_piece-3.png
+share/games/supertux2/images/particles/metal_piece-4.png
+share/games/supertux2/images/particles/metal_piece.sprite
+share/games/supertux2/images/particles/poof-1.png
+share/games/supertux2/images/particles/poof-2.png
+share/games/supertux2/images/particles/poof-3.png
+share/games/supertux2/images/particles/poof-4.png
+share/games/supertux2/images/particles/poof-5.png
+share/games/supertux2/images/particles/poof.sprite
+share/games/supertux2/images/particles/pumpkin_piece-0.png
+share/games/supertux2/images/particles/pumpkin_piece-1.png
+share/games/supertux2/images/particles/pumpkin_piece-2.png
+share/games/supertux2/images/particles/pumpkin_piece-3.png
+share/games/supertux2/images/particles/pumpkin_piece-4.png
+share/games/supertux2/images/particles/pumpkin_piece.sprite
share/games/supertux2/images/particles/rain0.png
share/games/supertux2/images/particles/rain1.png
share/games/supertux2/images/particles/rainsplash-1.png
@@ -2300,6 +3517,16 @@ share/games/supertux2/images/particles/r
share/games/supertux2/images/particles/rainsplash.sprite
share/games/supertux2/images/particles/reset.png
share/games/supertux2/images/particles/reset.sprite
+share/games/supertux2/images/particles/rock-0.png
+share/games/supertux2/images/particles/rock-1.png
+share/games/supertux2/images/particles/rock-2.png
+share/games/supertux2/images/particles/rock-3.png
+share/games/supertux2/images/particles/rock-4.png
+share/games/supertux2/images/particles/rock.sprite
+share/games/supertux2/images/particles/rottenivy.png
+share/games/supertux2/images/particles/rottenivy.sprite
+share/games/supertux2/images/particles/rottenleaf.png
+share/games/supertux2/images/particles/rottenleaf.sprite
share/games/supertux2/images/particles/santa-cap-big.png
share/games/supertux2/images/particles/santa-cap-big.sprite
share/games/supertux2/images/particles/santatux-hat.png
@@ -2314,18 +3541,33 @@ share/games/supertux2/images/particles/s
share/games/supertux2/images/particles/snow0.png
share/games/supertux2/images/particles/snow1.png
share/games/supertux2/images/particles/snow2.png
+share/games/supertux2/images/particles/snow_piece-0.png
+share/games/supertux2/images/particles/snow_piece-0a.png
+share/games/supertux2/images/particles/snow_piece-1.png
+share/games/supertux2/images/particles/snow_piece-1a.png
+share/games/supertux2/images/particles/snow_piece-2.png
+share/games/supertux2/images/particles/snow_piece-2a.png
+share/games/supertux2/images/particles/snow_piece.sprite
+share/games/supertux2/images/particles/snow_piece_alt.sprite
share/games/supertux2/images/particles/sparkle-0.png
share/games/supertux2/images/particles/sparkle-1.png
+share/games/supertux2/images/particles/sparkle-2.png
share/games/supertux2/images/particles/sparkle-dark-0.png
share/games/supertux2/images/particles/sparkle-dark-1.png
share/games/supertux2/images/particles/sparkle.sprite
share/games/supertux2/images/particles/stomp.png
share/games/supertux2/images/particles/stomp.sprite
-share/games/supertux2/images/particles/walkingleaf-0.png
-share/games/supertux2/images/particles/walkingleaf-1.png
-share/games/supertux2/images/particles/walkingleaf-2.png
-share/games/supertux2/images/particles/walkingleaf-3.png
+share/games/supertux2/images/particles/viciousivy.png
+share/games/supertux2/images/particles/viciousivy.sprite
+share/games/supertux2/images/particles/walkingleaf.png
share/games/supertux2/images/particles/walkingleaf.sprite
+share/games/supertux2/images/particles/water_piece1-1.png
+share/games/supertux2/images/particles/water_piece1-2.png
+share/games/supertux2/images/particles/water_piece1-3.png
+share/games/supertux2/images/particles/water_piece1.sprite
+share/games/supertux2/images/particles/water_piece2-1.png
+share/games/supertux2/images/particles/water_piece2-2.png
+share/games/supertux2/images/particles/water_piece2.sprite
share/games/supertux2/images/particles/wind.png
share/games/supertux2/images/particles/wind.sprite
share/games/supertux2/images/particles/wind2.png
@@ -2353,17 +3595,21 @@ share/games/supertux2/images/powerups/fi
share/games/supertux2/images/powerups/fireflower/fire_flower-2.png
share/games/supertux2/images/powerups/fireflower/fire_flower-3.png
share/games/supertux2/images/powerups/fireflower/fireflower.sprite
-share/games/supertux2/images/powerups/fish/fish_large.png
-share/games/supertux2/images/powerups/fish/fish_small.png
+share/games/supertux2/images/powerups/fish/fish_large.deprecated.png
+share/games/supertux2/images/powerups/fish/fish_small.deprecated.png
share/games/supertux2/images/powerups/iceflower/ice_flower-0.png
share/games/supertux2/images/powerups/iceflower/ice_flower-1.png
share/games/supertux2/images/powerups/iceflower/ice_flower-2.png
share/games/supertux2/images/powerups/iceflower/ice_flower-3.png
+share/games/supertux2/images/powerups/iceflower/ice_flower-4.png
share/games/supertux2/images/powerups/iceflower/iceflower.sprite
share/games/supertux2/images/powerups/potions/blue-potion.png
share/games/supertux2/images/powerups/potions/blue-potion.sprite
share/games/supertux2/images/powerups/potions/red-potion.png
share/games/supertux2/images/powerups/potions/red-potion.sprite
+share/games/supertux2/images/powerups/retro/coffee.png
+share/games/supertux2/images/powerups/retro/golden_herring.png
+share/games/supertux2/images/powerups/retro/mints.png
share/games/supertux2/images/powerups/star/star-0.png
share/games/supertux2/images/powerups/star/star-1.png
share/games/supertux2/images/powerups/star/star-2.png
@@ -2379,210 +3625,378 @@ share/games/supertux2/images/tiles/auxil
share/games/supertux2/images/tiles/auxiliary/invisible-unisolid-editor.png
share/games/supertux2/images/tiles/auxiliary/invisible-unisolid-slopes.png
share/games/supertux2/images/tiles/auxiliary/notile.png
-share/games/supertux2/images/tiles/background/background.png
-share/games/supertux2/images/tiles/background/backgroundtile1.png
-share/games/supertux2/images/tiles/background/backgroundtile2.png
-share/games/supertux2/images/tiles/background/backgroundtile3.png
-share/games/supertux2/images/tiles/background/backgroundtile4.png
-share/games/supertux2/images/tiles/background/backgroundtile5.png
share/games/supertux2/images/tiles/background/cloud.png
+share/games/supertux2/images/tiles/background/corrupt_seaweed-0.png
+share/games/supertux2/images/tiles/background/deprecated/backgroundtile2.png
+share/games/supertux2/images/tiles/background/deprecated/backgroundtile3.png
+share/games/supertux2/images/tiles/background/deprecated/backgroundtile4.png
+share/games/supertux2/images/tiles/background/deprecated/backgroundtile5.png
+share/games/supertux2/images/tiles/background/deprecated/snow-para-1.png
+share/games/supertux2/images/tiles/background/deprecated/snow-para-2.png
+share/games/supertux2/images/tiles/background/deprecated/storm-cloud-electrified.png
+share/games/supertux2/images/tiles/background/deprecated/tile-160.png
share/games/supertux2/images/tiles/background/rope.png
-share/games/supertux2/images/tiles/background/snow-para-1.png
-share/games/supertux2/images/tiles/background/snow-para-2.png
-share/games/supertux2/images/tiles/background/storm-cloud-electrified.png
+share/games/supertux2/images/tiles/background/seaweed-0.png
share/games/supertux2/images/tiles/background/storm-cloud.png
-share/games/supertux2/images/tiles/background/tile-160.png
share/games/supertux2/images/tiles/blocks/bigblock.png
share/games/supertux2/images/tiles/blocks/block10.png
share/games/supertux2/images/tiles/blocks/block11.png
-share/games/supertux2/images/tiles/blocks/block4.png
share/games/supertux2/images/tiles/blocks/block5.png
-share/games/supertux2/images/tiles/blocks/block_horiz.png
-share/games/supertux2/images/tiles/blocks/block_season.png
-share/games/supertux2/images/tiles/blocks/block_vert.png
+share/games/supertux2/images/tiles/blocks/block_overlays.png
+share/games/supertux2/images/tiles/blocks/block_wood.png
share/games/supertux2/images/tiles/blocks/brick0.png
share/games/supertux2/images/tiles/blocks/brick0_full.png
share/games/supertux2/images/tiles/blocks/brick1.png
share/games/supertux2/images/tiles/blocks/brick1_full.png
share/games/supertux2/images/tiles/blocks/brick2.png
share/games/supertux2/images/tiles/blocks/brick2_full.png
+share/games/supertux2/images/tiles/blocks/brick3.png
share/games/supertux2/images/tiles/blocks/brick_piece1.png
+share/games/supertux2/images/tiles/blocks/brick_piece10.png
+share/games/supertux2/images/tiles/blocks/brick_piece11.png
+share/games/supertux2/images/tiles/blocks/brick_piece12.png
share/games/supertux2/images/tiles/blocks/brick_piece2.png
share/games/supertux2/images/tiles/blocks/brick_piece3.png
share/games/supertux2/images/tiles/blocks/brick_piece4.png
share/games/supertux2/images/tiles/blocks/brick_piece5.png
share/games/supertux2/images/tiles/blocks/brick_piece6.png
-share/games/supertux2/images/tiles/blocks/icebridge.png
+share/games/supertux2/images/tiles/blocks/brick_piece7.png
+share/games/supertux2/images/tiles/blocks/brick_piece8.png
+share/games/supertux2/images/tiles/blocks/brick_piece9.png
+share/games/supertux2/images/tiles/blocks/bridge_brown.png
+share/games/supertux2/images/tiles/blocks/bridge_ice.png
+share/games/supertux2/images/tiles/blocks/deprecated/block_season.png
+share/games/supertux2/images/tiles/blocks/deprecated/icebridge.png
+share/games/supertux2/images/tiles/blocks/deprecated/spikes-all.png
share/games/supertux2/images/tiles/blocks/industrial.png
+share/games/supertux2/images/tiles/blocks/industrial_extra.png
+share/games/supertux2/images/tiles/blocks/industrial_poles.png
share/games/supertux2/images/tiles/blocks/retro_brick.png
share/games/supertux2/images/tiles/blocks/rock_plate.png
-share/games/supertux2/images/tiles/blocks/spikes-all.png
-share/games/supertux2/images/tiles/castle/background.png
-share/games/supertux2/images/tiles/castle/brown.png
-share/games/supertux2/images/tiles/castle/castle_block.png
+share/games/supertux2/images/tiles/blocks/snow_overlay_transitions.png
+share/games/supertux2/images/tiles/blocks/snow_overlays.png
+share/games/supertux2/images/tiles/castle/castle_corner.png
+share/games/supertux2/images/tiles/castle/castle_forest.png
+share/games/supertux2/images/tiles/castle/castle_snow.png
+share/games/supertux2/images/tiles/castle/castle_special.png
share/games/supertux2/images/tiles/castle/castle_wall.png
share/games/supertux2/images/tiles/castle/chain.png
-share/games/supertux2/images/tiles/castle/column.png
-share/games/supertux2/images/tiles/castle/door.png
-share/games/supertux2/images/tiles/castle/grey_back.png
-share/games/supertux2/images/tiles/castle/grey_brick.png
-share/games/supertux2/images/tiles/castle/grey_misc.png
-share/games/supertux2/images/tiles/castle/grey_unisolid.png
-share/games/supertux2/images/tiles/castle/snowcastle.png
-share/games/supertux2/images/tiles/castle/stone.png
-share/games/supertux2/images/tiles/castle/stones.png
-share/games/supertux2/images/tiles/castle/stonewindow.png
-share/games/supertux2/images/tiles/castle/walltorch.png
-share/games/supertux2/images/tiles/castle/walltorch/flame-0.png
-share/games/supertux2/images/tiles/castle/walltorch/flame-1.png
-share/games/supertux2/images/tiles/castle/walltorch/flame-2.png
-share/games/supertux2/images/tiles/castle/walltorch/flame-3.png
-share/games/supertux2/images/tiles/castle/walltorch/flame-4.png
-share/games/supertux2/images/tiles/castle/walltorch/flame-5.png
-share/games/supertux2/images/tiles/castle/walltorch/flame-6.png
-share/games/supertux2/images/tiles/castle/walltorch/flame-base-0.png
-share/games/supertux2/images/tiles/castle/web.png
-share/games/supertux2/images/tiles/castle/window.png
-share/games/supertux2/images/tiles/crystalcave/background.png
-share/games/supertux2/images/tiles/crystalcave/ground.png
-share/games/supertux2/images/tiles/crystalcave/ground_extra.png
-share/games/supertux2/images/tiles/darksnow/concave2.png
-share/games/supertux2/images/tiles/darksnow/convex.png
-share/games/supertux2/images/tiles/darksnow/convex2.png
-share/games/supertux2/images/tiles/darksnow/low.png
-share/games/supertux2/images/tiles/darksnow/slope2.png
-share/games/supertux2/images/tiles/darksnow/small.png
-share/games/supertux2/images/tiles/darksnow/special.png
-share/games/supertux2/images/tiles/darksnow/wall.png
-share/games/supertux2/images/tiles/doodads/blueice.png
-share/games/supertux2/images/tiles/doodads/blueicetop.png
-share/games/supertux2/images/tiles/doodads/clover.png
-share/games/supertux2/images/tiles/doodads/flag-0.png
-share/games/supertux2/images/tiles/doodads/flag-1.png
-share/games/supertux2/images/tiles/doodads/grass1.png
-share/games/supertux2/images/tiles/doodads/grass2.png
-share/games/supertux2/images/tiles/doodads/havoktux-0.png
+share/games/supertux2/images/tiles/castle/deprecated/background.png
+share/games/supertux2/images/tiles/castle/deprecated/brown.png
+share/games/supertux2/images/tiles/castle/deprecated/castle_block.png
+share/games/supertux2/images/tiles/castle/deprecated/castle_wall.png
+share/games/supertux2/images/tiles/castle/deprecated/chain.png
+share/games/supertux2/images/tiles/castle/deprecated/column.png
+share/games/supertux2/images/tiles/castle/deprecated/door.png
+share/games/supertux2/images/tiles/castle/deprecated/foreground.png
+share/games/supertux2/images/tiles/castle/deprecated/grey_brick_moss.png
+share/games/supertux2/images/tiles/castle/deprecated/grey_misc.png
+share/games/supertux2/images/tiles/castle/deprecated/grey_unisolid.png
+share/games/supertux2/images/tiles/castle/deprecated/snowcastle.png
+share/games/supertux2/images/tiles/castle/deprecated/stone.png
+share/games/supertux2/images/tiles/castle/deprecated/stones.png
+share/games/supertux2/images/tiles/castle/deprecated/stonewindow.png
+share/games/supertux2/images/tiles/castle/deprecated/walltorch/flame-0.png
+share/games/supertux2/images/tiles/castle/deprecated/walltorch/flame-1.png
+share/games/supertux2/images/tiles/castle/deprecated/walltorch/flame-2.png
+share/games/supertux2/images/tiles/castle/deprecated/walltorch/flame-3.png
+share/games/supertux2/images/tiles/castle/deprecated/walltorch/flame-4.png
+share/games/supertux2/images/tiles/castle/deprecated/walltorch/flame-5.png
+share/games/supertux2/images/tiles/castle/deprecated/walltorch/flame-6.png
+share/games/supertux2/images/tiles/castle/deprecated/walltorch/flame-base-0.png
+share/games/supertux2/images/tiles/castle/deprecated/window.png
+share/games/supertux2/images/tiles/castle/nolok-statue-forest.png
+share/games/supertux2/images/tiles/castle/nolok-statue-ghost.png
+share/games/supertux2/images/tiles/castle/nolok-statue-sand.png
+share/games/supertux2/images/tiles/castle/nolok-statue-snow.png
+share/games/supertux2/images/tiles/castle/nolok-statue.png
+share/games/supertux2/images/tiles/castle/pedestal.png
+share/games/supertux2/images/tiles/castle/ruin_spikes.png
+share/games/supertux2/images/tiles/castle/ruins.png
+share/games/supertux2/images/tiles/castle/small_chain.png
+share/games/supertux2/images/tiles/crystalcave/crystal_1x1.png
+share/games/supertux2/images/tiles/crystalcave/crystal_1x1_extra.png
+share/games/supertux2/images/tiles/crystalcave/crystal_1x1_extra2.png
+share/games/supertux2/images/tiles/crystalcave/crystal_2x2.png
+share/games/supertux2/images/tiles/crystalcave/crystal_bg.png
+share/games/supertux2/images/tiles/crystalcave/crystal_variants.png
+share/games/supertux2/images/tiles/crystalcave/crystals1.png
+share/games/supertux2/images/tiles/crystalcave/crystals2.png
+share/games/supertux2/images/tiles/crystalcave/deprecated/background.png
+share/games/supertux2/images/tiles/crystalcave/deprecated/crystal_2x2.png
+share/games/supertux2/images/tiles/crystalcave/deprecated/ground.png
+share/games/supertux2/images/tiles/crystalcave/deprecated/ground_extra.png
+share/games/supertux2/images/tiles/doodads/deprecated/blueice.png
+share/games/supertux2/images/tiles/doodads/deprecated/blueicetop.png
+share/games/supertux2/images/tiles/doodads/deprecated/flag-0.png
+share/games/supertux2/images/tiles/doodads/deprecated/flag-1.png
+share/games/supertux2/images/tiles/doodads/deprecated/havoktux-0.png
+share/games/supertux2/images/tiles/doodads/deprecated/platter.png
+share/games/supertux2/images/tiles/doodads/deprecated/stone1.png
+share/games/supertux2/images/tiles/doodads/deprecated/stone2.png
share/games/supertux2/images/tiles/doodads/iceshrub.png
share/games/supertux2/images/tiles/doodads/iceshrub.sprite
-share/games/supertux2/images/tiles/doodads/liane.png
-share/games/supertux2/images/tiles/doodads/mushrooms.png
-share/games/supertux2/images/tiles/doodads/nolok-statue-forest.png
-share/games/supertux2/images/tiles/doodads/nolok-statue-ghost.png
-share/games/supertux2/images/tiles/doodads/nolok-statue-snow.png
-share/games/supertux2/images/tiles/doodads/nolok-statue.png
-share/games/supertux2/images/tiles/doodads/pedestal.png
share/games/supertux2/images/tiles/doodads/plant1.png
-share/games/supertux2/images/tiles/doodads/platter.png
-share/games/supertux2/images/tiles/doodads/stone1.png
-share/games/supertux2/images/tiles/doodads/stone2.png
share/games/supertux2/images/tiles/doodads/tux-statue.png
-share/games/supertux2/images/tiles/forest/branch.png
-share/games/supertux2/images/tiles/forest/brush.png
-share/games/supertux2/images/tiles/forest/brush2.png
+share/games/supertux2/images/tiles/forest/branches.png
share/games/supertux2/images/tiles/forest/ceiling-slopes.png
share/games/supertux2/images/tiles/forest/concave.png
+share/games/supertux2/images/tiles/forest/deprecated/branch.png
+share/games/supertux2/images/tiles/forest/deprecated/brush.png
+share/games/supertux2/images/tiles/forest/deprecated/brush2.png
+share/games/supertux2/images/tiles/forest/deprecated/dangersign.png
+share/games/supertux2/images/tiles/forest/deprecated/exit-tree.png
+share/games/supertux2/images/tiles/forest/deprecated/exit/bottom1.png
+share/games/supertux2/images/tiles/forest/deprecated/exit/bottom2.png
+share/games/supertux2/images/tiles/forest/deprecated/exit/bottom3.png
+share/games/supertux2/images/tiles/forest/deprecated/exit/outhouse.png
+share/games/supertux2/images/tiles/forest/deprecated/exit/top1.png
+share/games/supertux2/images/tiles/forest/deprecated/exit/top2.png
+share/games/supertux2/images/tiles/forest/deprecated/exit/top3.png
+share/games/supertux2/images/tiles/forest/deprecated/foresttiles-10.png
+share/games/supertux2/images/tiles/forest/deprecated/foresttiles-11.png
+share/games/supertux2/images/tiles/forest/deprecated/foresttiles-2.png
+share/games/supertux2/images/tiles/forest/deprecated/foresttiles-3.png
+share/games/supertux2/images/tiles/forest/deprecated/foresttiles-8.png
+share/games/supertux2/images/tiles/forest/deprecated/foresttiles-9.png
+share/games/supertux2/images/tiles/forest/deprecated/foresttiles-9a.png
+share/games/supertux2/images/tiles/forest/deprecated/hole.png
+share/games/supertux2/images/tiles/forest/deprecated/hole2.png
+share/games/supertux2/images/tiles/forest/deprecated/nolok_statue.png
+share/games/supertux2/images/tiles/forest/deprecated/rock1.png
+share/games/supertux2/images/tiles/forest/deprecated/rock2.png
+share/games/supertux2/images/tiles/forest/deprecated/rock3.png
+share/games/supertux2/images/tiles/forest/deprecated/treelarge.png
+share/games/supertux2/images/tiles/forest/deprecated/treesmall.png
+share/games/supertux2/images/tiles/forest/deprecated/vine1.png
share/games/supertux2/images/tiles/forest/earth-floor.png
-share/games/supertux2/images/tiles/forest/exit-tree-bg.png
-share/games/supertux2/images/tiles/forest/exit-tree-fg.png
-share/games/supertux2/images/tiles/forest/exit-tree.png
-share/games/supertux2/images/tiles/forest/exit/bottom1.png
-share/games/supertux2/images/tiles/forest/exit/bottom2.png
-share/games/supertux2/images/tiles/forest/exit/bottom3.png
-share/games/supertux2/images/tiles/forest/exit/outhouse.png
-share/games/supertux2/images/tiles/forest/exit/top1.png
-share/games/supertux2/images/tiles/forest/exit/top2.png
-share/games/supertux2/images/tiles/forest/exit/top3.png
share/games/supertux2/images/tiles/forest/fishbone.png
+share/games/supertux2/images/tiles/forest/forest_swap.png
share/games/supertux2/images/tiles/forest/forestlog.png
+share/games/supertux2/images/tiles/forest/forestmerge.png
share/games/supertux2/images/tiles/forest/foresttiles-1.png
-share/games/supertux2/images/tiles/forest/foresttiles-10.png
-share/games/supertux2/images/tiles/forest/foresttiles-11.png
share/games/supertux2/images/tiles/forest/foresttiles-12.png
share/games/supertux2/images/tiles/forest/foresttiles-13.png
+share/games/supertux2/images/tiles/forest/foresttiles-14.png
share/games/supertux2/images/tiles/forest/foresttiles-1a.png
-share/games/supertux2/images/tiles/forest/foresttiles-2.png
-share/games/supertux2/images/tiles/forest/foresttiles-3.png
share/games/supertux2/images/tiles/forest/foresttiles-5.png
share/games/supertux2/images/tiles/forest/foresttiles-6.png
share/games/supertux2/images/tiles/forest/foresttiles-7.png
-share/games/supertux2/images/tiles/forest/foresttiles-8.png
-share/games/supertux2/images/tiles/forest/foresttiles-9.png
-share/games/supertux2/images/tiles/forest/foresttiles-9a.png
+share/games/supertux2/images/tiles/forest/foresttiles-bush.png
+share/games/supertux2/images/tiles/forest/foresttiles-earth.png
share/games/supertux2/images/tiles/forest/hole.png
-share/games/supertux2/images/tiles/forest/hole2.png
share/games/supertux2/images/tiles/forest/ladder.png
share/games/supertux2/images/tiles/forest/leaf-walljump.png
-share/games/supertux2/images/tiles/forest/nolok_statue.png
-share/games/supertux2/images/tiles/forest/pogonia/base.png
-share/games/supertux2/images/tiles/forest/pogonia/dangersign.png
-share/games/supertux2/images/tiles/forest/pogonia/pogonia-1-flip.png
-share/games/supertux2/images/tiles/forest/pogonia/pogonia-1.png
-share/games/supertux2/images/tiles/forest/pogonia/pogonia-2-flip.png
-share/games/supertux2/images/tiles/forest/pogonia/pogonia-2.png
-share/games/supertux2/images/tiles/forest/pogonia/pogonia-3-flip.png
-share/games/supertux2/images/tiles/forest/pogonia/pogonia-3.png
-share/games/supertux2/images/tiles/forest/pogonia/pogonia-4-flip.png
-share/games/supertux2/images/tiles/forest/pogonia/pogonia-4.png
-share/games/supertux2/images/tiles/forest/pogonia/stalk.png
-share/games/supertux2/images/tiles/forest/rock1.png
-share/games/supertux2/images/tiles/forest/rock2.png
-share/games/supertux2/images/tiles/forest/rock3.png
+share/games/supertux2/images/tiles/forest/liane.png
+share/games/supertux2/images/tiles/forest/mushrooms.png
+share/games/supertux2/images/tiles/forest/plant1.png
+share/games/supertux2/images/tiles/forest/plant2.png
+share/games/supertux2/images/tiles/forest/pogonia.png
share/games/supertux2/images/tiles/forest/rocks-forest.png
-share/games/supertux2/images/tiles/forest/spikevine/spikevine.png
+share/games/supertux2/images/tiles/forest/slope_transitions.png
+share/games/supertux2/images/tiles/forest/spikevine.png
share/games/supertux2/images/tiles/forest/statue.png
share/games/supertux2/images/tiles/forest/statue2.png
share/games/supertux2/images/tiles/forest/steps.png
-share/games/supertux2/images/tiles/forest/treelarge.png
-share/games/supertux2/images/tiles/forest/treesmall.png
+share/games/supertux2/images/tiles/forest/tree1.png
+share/games/supertux2/images/tiles/forest/tree2.png
+share/games/supertux2/images/tiles/forest/tree3.png
+share/games/supertux2/images/tiles/forest/tree_special.png
share/games/supertux2/images/tiles/forest/underground/background1.png
share/games/supertux2/images/tiles/forest/underground/background2.png
-share/games/supertux2/images/tiles/forest/underground/background3.png
share/games/supertux2/images/tiles/forest/underground/ceiling-slopes.png
share/games/supertux2/images/tiles/forest/underground/convex.png
+share/games/supertux2/images/tiles/forest/underground/convex_nograss.png
+share/games/supertux2/images/tiles/forest/underground/deprecated/background.png
+share/games/supertux2/images/tiles/forest/underground/deprecated/variation-1.png
+share/games/supertux2/images/tiles/forest/underground/forest_underground_swap.png
+share/games/supertux2/images/tiles/forest/underground/groundmerge.png
share/games/supertux2/images/tiles/forest/underground/groundtiles-1.png
-share/games/supertux2/images/tiles/forest/underground/groundtiles-1a.png
+share/games/supertux2/images/tiles/forest/underground/groundtiles-2.png
+share/games/supertux2/images/tiles/forest/underground/groundtiles-more.png
share/games/supertux2/images/tiles/forest/underground/roots.png
share/games/supertux2/images/tiles/forest/underground/slope-1.png
share/games/supertux2/images/tiles/forest/underground/slope-2.png
share/games/supertux2/images/tiles/forest/underground/slope-3.png
-share/games/supertux2/images/tiles/forest/underground/variation-1.png
+share/games/supertux2/images/tiles/forest/underground/slope_nograss.png
+share/games/supertux2/images/tiles/forest/underground/slope_transitions.png
+share/games/supertux2/images/tiles/forest/underground/special_nograss.png
+share/games/supertux2/images/tiles/forest/underground/variants.png
+share/games/supertux2/images/tiles/forest/underground/variants2.png
share/games/supertux2/images/tiles/forest/underground/wall.png
-share/games/supertux2/images/tiles/forest/vine1.png
+share/games/supertux2/images/tiles/forest/variants.png
share/games/supertux2/images/tiles/forest/wall.png
-share/games/supertux2/images/tiles/ghostwood/earth-floor.png
+share/games/supertux2/images/tiles/ghostwood/corrupted_forest_swap.png
+share/games/supertux2/images/tiles/ghostwood/corruptvine.png
+share/games/supertux2/images/tiles/ghostwood/deprecated/earth-floor.png
+share/games/supertux2/images/tiles/ghostwood/ghosthole.png
share/games/supertux2/images/tiles/ghostwood/ghostwood-1.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-10.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-11.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-12.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-13.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-14.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-15.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-16.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-17.png
share/games/supertux2/images/tiles/ghostwood/ghostwood-1a.png
share/games/supertux2/images/tiles/ghostwood/ghostwood-2.png
share/games/supertux2/images/tiles/ghostwood/ghostwood-4.png
share/games/supertux2/images/tiles/ghostwood/ghostwood-5.png
share/games/supertux2/images/tiles/ghostwood/ghostwood-6.png
share/games/supertux2/images/tiles/ghostwood/ghostwood-7.png
-share/games/supertux2/images/tiles/goal/exitbg.png
-share/games/supertux2/images/tiles/goal/exitfg.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-8.png
+share/games/supertux2/images/tiles/ghostwood/ghostwood-9.png
+share/games/supertux2/images/tiles/ghostwood/liane_ghost.png
+share/games/supertux2/images/tiles/ghostwood/mushrooms.png
+share/games/supertux2/images/tiles/ghostwood/plant1.png
+share/games/supertux2/images/tiles/ghostwood/plant2.png
+share/games/supertux2/images/tiles/ghostwood/rocks-corrupted.png
+share/games/supertux2/images/tiles/ghostwood/root-walljump.png
+share/games/supertux2/images/tiles/ghostwood/roots.png
+share/games/supertux2/images/tiles/ghostwood/underground/corrupt_convex_nograss.png
+share/games/supertux2/images/tiles/ghostwood/underground/corrupt_slope_nograss.png
+share/games/supertux2/images/tiles/ghostwood/underground/corrupt_special_nograss.png
+share/games/supertux2/images/tiles/ghostwood/underground/corrupt_underground_swap.png
+share/games/supertux2/images/tiles/ghostwood/underground/ghostwood-12_under.png
+share/games/supertux2/images/tiles/ghostwood/underground/ghostwood-13_under.png
+share/games/supertux2/images/tiles/ghostwood/underground/ghostwood-1_under.png
+share/games/supertux2/images/tiles/ghostwood/underground/ghostwood-1a_under.png
+share/games/supertux2/images/tiles/ghostwood/underground/ghostwood-2_under.png
+share/games/supertux2/images/tiles/ghostwood/underground/ghostwood-3_under.png
+share/games/supertux2/images/tiles/ghostwood/underground/ghostwood-4_under.png
+share/games/supertux2/images/tiles/ghostwood/underground/variants2_ghost.png
+share/games/supertux2/images/tiles/ghostwood/underground/variants_ghost.png
+share/games/supertux2/images/tiles/ghostwood/variants_ghost.png
+share/games/supertux2/images/tiles/goal/deprecated/exitbg.png
+share/games/supertux2/images/tiles/goal/deprecated/exitfg.png
share/games/supertux2/images/tiles/goal/goal1-1.png
+share/games/supertux2/images/tiles/goal/goal1-1_secret.png
share/games/supertux2/images/tiles/goal/goal1-2.png
+share/games/supertux2/images/tiles/goal/goal1-2_secret.png
share/games/supertux2/images/tiles/goal/goal1-3.png
+share/games/supertux2/images/tiles/goal/goal1-3_secret.png
share/games/supertux2/images/tiles/goal/goal1-4.png
+share/games/supertux2/images/tiles/goal/goal1-4_secret.png
share/games/supertux2/images/tiles/goal/goal1-5.png
+share/games/supertux2/images/tiles/goal/goal1-5_secret.png
share/games/supertux2/images/tiles/goal/goal2-1.png
+share/games/supertux2/images/tiles/goal/goal2-1_secret.png
share/games/supertux2/images/tiles/goal/goal2-2.png
+share/games/supertux2/images/tiles/goal/goal2-2_secret.png
share/games/supertux2/images/tiles/goal/goal2-3.png
+share/games/supertux2/images/tiles/goal/goal2-3_secret.png
share/games/supertux2/images/tiles/goal/goal2-4.png
+share/games/supertux2/images/tiles/goal/goal2-4_secret.png
share/games/supertux2/images/tiles/goal/goal2-5.png
+share/games/supertux2/images/tiles/goal/goal2-5_secret.png
+share/games/supertux2/images/tiles/goal/goal3-1.png
+share/games/supertux2/images/tiles/goal/goal3-1_secret.png
+share/games/supertux2/images/tiles/goal/goal3-2.png
+share/games/supertux2/images/tiles/goal/goal3-2_secret.png
+share/games/supertux2/images/tiles/goal/goal3-3.png
+share/games/supertux2/images/tiles/goal/goal3-3_secret.png
+share/games/supertux2/images/tiles/goal/goal3-4.png
+share/games/supertux2/images/tiles/goal/goal3-4_secret.png
+share/games/supertux2/images/tiles/goal/goal3-5.png
+share/games/supertux2/images/tiles/goal/goal3-5_secret.png
+share/games/supertux2/images/tiles/goal/goal4-1.png
+share/games/supertux2/images/tiles/goal/goal4-1_secret.png
+share/games/supertux2/images/tiles/goal/goal4-2.png
+share/games/supertux2/images/tiles/goal/goal4-2_secret.png
+share/games/supertux2/images/tiles/goal/goal4-3.png
+share/games/supertux2/images/tiles/goal/goal4-3_secret.png
+share/games/supertux2/images/tiles/goal/goal4-4.png
+share/games/supertux2/images/tiles/goal/goal4-4_secret.png
+share/games/supertux2/images/tiles/goal/goal4-5.png
+share/games/supertux2/images/tiles/goal/goal4-5_secret.png
share/games/supertux2/images/tiles/halloween/base.png
-share/games/supertux2/images/tiles/halloween/black.png
share/games/supertux2/images/tiles/halloween/darkness.png
+share/games/supertux2/images/tiles/halloween/deprecated/black.png
+share/games/supertux2/images/tiles/halloween/halloween_extra.png
share/games/supertux2/images/tiles/halloween/inner.png
share/games/supertux2/images/tiles/halloween/innerdarkness.png
share/games/supertux2/images/tiles/halloween/outerdarkness.png
share/games/supertux2/images/tiles/halloween/variation.png
-share/games/supertux2/images/tiles/jungle/concave.png
-share/games/supertux2/images/tiles/jungle/convex.png
-share/games/supertux2/images/tiles/jungle/jungle12-1.png
-share/games/supertux2/images/tiles/jungle/jungle12-2.png
-share/games/supertux2/images/tiles/jungle/jungle12-3.png
-share/games/supertux2/images/tiles/jungle/jungle12-4.png
-share/games/supertux2/images/tiles/jungle/special.png
+share/games/supertux2/images/tiles/jaggedrock/jagged_rock_1.png
+share/games/supertux2/images/tiles/jaggedrock/jagged_rock_2.png
+share/games/supertux2/images/tiles/jaggedrock/rock_block_tiles.png
+share/games/supertux2/images/tiles/jungle/deprecated/concave.png
+share/games/supertux2/images/tiles/jungle/deprecated/convex.png
+share/games/supertux2/images/tiles/jungle/deprecated/jungle12-1.png
+share/games/supertux2/images/tiles/jungle/deprecated/jungle12-2.png
+share/games/supertux2/images/tiles/jungle/deprecated/jungle12-3.png
+share/games/supertux2/images/tiles/jungle/deprecated/jungle12-4.png
+share/games/supertux2/images/tiles/jungle/deprecated/special.png
+share/games/supertux2/images/tiles/lava/deprecated/lava1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/lava1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/lava1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/lava1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/lava2-1.png
+share/games/supertux2/images/tiles/lava/deprecated/lava2-2.png
+share/games/supertux2/images/tiles/lava/deprecated/lava2-3.png
+share/games/supertux2/images/tiles/lava/deprecated/lava2-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-2-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-2-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-2-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-2-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-bottom-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-bottom-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-bottom-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/body-bottom-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-2-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-2-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-2-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-2-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-bottom-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-bottom-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-bottom-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-bottom-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-in-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-in-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-in-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-in-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-in-2-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-in-2-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-in-2-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-in-2-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-out-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-out-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-out-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-out-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-out-2-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-out-2-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-out-2-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/bubble-out-2-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-flip-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-flip-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-flip-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-flip-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-left-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-left-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-left-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-left-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-right-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-right-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-right-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/edge-right-1-4.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/rest.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/surface-1-1.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/surface-1-2.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/surface-1-3.png
+share/games/supertux2/images/tiles/lava/deprecated/zone/surface-1-4.png
share/games/supertux2/images/tiles/lava/lava-1.png
share/games/supertux2/images/tiles/lava/lava-2.png
share/games/supertux2/images/tiles/lava/lava-3.png
@@ -2592,96 +4006,32 @@ share/games/supertux2/images/tiles/lava/
share/games/supertux2/images/tiles/lava/lava-7.png
share/games/supertux2/images/tiles/lava/lava-8.png
share/games/supertux2/images/tiles/lava/lava.png
-share/games/supertux2/images/tiles/lava/lava1-1.png
-share/games/supertux2/images/tiles/lava/lava1-2.png
-share/games/supertux2/images/tiles/lava/lava1-3.png
-share/games/supertux2/images/tiles/lava/lava1-4.png
-share/games/supertux2/images/tiles/lava/lava2-1.png
-share/games/supertux2/images/tiles/lava/lava2-2.png
-share/games/supertux2/images/tiles/lava/lava2-3.png
-share/games/supertux2/images/tiles/lava/lava2-4.png
-share/games/supertux2/images/tiles/lava/zone/body-1-1.png
-share/games/supertux2/images/tiles/lava/zone/body-1-2.png
-share/games/supertux2/images/tiles/lava/zone/body-1-3.png
-share/games/supertux2/images/tiles/lava/zone/body-1-4.png
-share/games/supertux2/images/tiles/lava/zone/body-2-1.png
-share/games/supertux2/images/tiles/lava/zone/body-2-2.png
-share/games/supertux2/images/tiles/lava/zone/body-2-3.png
-share/games/supertux2/images/tiles/lava/zone/body-2-4.png
-share/games/supertux2/images/tiles/lava/zone/body-bottom-1-1.png
-share/games/supertux2/images/tiles/lava/zone/body-bottom-1-2.png
-share/games/supertux2/images/tiles/lava/zone/body-bottom-1-3.png
-share/games/supertux2/images/tiles/lava/zone/body-bottom-1-4.png
-share/games/supertux2/images/tiles/lava/zone/bubble-1-1.png
-share/games/supertux2/images/tiles/lava/zone/bubble-1-2.png
-share/games/supertux2/images/tiles/lava/zone/bubble-1-3.png
-share/games/supertux2/images/tiles/lava/zone/bubble-1-4.png
-share/games/supertux2/images/tiles/lava/zone/bubble-2-1.png
-share/games/supertux2/images/tiles/lava/zone/bubble-2-2.png
-share/games/supertux2/images/tiles/lava/zone/bubble-2-3.png
-share/games/supertux2/images/tiles/lava/zone/bubble-2-4.png
-share/games/supertux2/images/tiles/lava/zone/bubble-bottom-1-1.png
-share/games/supertux2/images/tiles/lava/zone/bubble-bottom-1-2.png
-share/games/supertux2/images/tiles/lava/zone/bubble-bottom-1-3.png
-share/games/supertux2/images/tiles/lava/zone/bubble-bottom-1-4.png
-share/games/supertux2/images/tiles/lava/zone/bubble-in-1-1.png
-share/games/supertux2/images/tiles/lava/zone/bubble-in-1-2.png
-share/games/supertux2/images/tiles/lava/zone/bubble-in-1-3.png
-share/games/supertux2/images/tiles/lava/zone/bubble-in-1-4.png
-share/games/supertux2/images/tiles/lava/zone/bubble-in-2-1.png
-share/games/supertux2/images/tiles/lava/zone/bubble-in-2-2.png
-share/games/supertux2/images/tiles/lava/zone/bubble-in-2-3.png
-share/games/supertux2/images/tiles/lava/zone/bubble-in-2-4.png
-share/games/supertux2/images/tiles/lava/zone/bubble-out-1-1.png
-share/games/supertux2/images/tiles/lava/zone/bubble-out-1-2.png
-share/games/supertux2/images/tiles/lava/zone/bubble-out-1-3.png
-share/games/supertux2/images/tiles/lava/zone/bubble-out-1-4.png
-share/games/supertux2/images/tiles/lava/zone/bubble-out-2-1.png
-share/games/supertux2/images/tiles/lava/zone/bubble-out-2-2.png
-share/games/supertux2/images/tiles/lava/zone/bubble-out-2-3.png
-share/games/supertux2/images/tiles/lava/zone/bubble-out-2-4.png
-share/games/supertux2/images/tiles/lava/zone/edge-1-1.png
-share/games/supertux2/images/tiles/lava/zone/edge-1-2.png
-share/games/supertux2/images/tiles/lava/zone/edge-1-3.png
-share/games/supertux2/images/tiles/lava/zone/edge-1-4.png
-share/games/supertux2/images/tiles/lava/zone/edge-flip-1-1.png
-share/games/supertux2/images/tiles/lava/zone/edge-flip-1-2.png
-share/games/supertux2/images/tiles/lava/zone/edge-flip-1-3.png
-share/games/supertux2/images/tiles/lava/zone/edge-flip-1-4.png
-share/games/supertux2/images/tiles/lava/zone/edge-left-1-1.png
-share/games/supertux2/images/tiles/lava/zone/edge-left-1-2.png
-share/games/supertux2/images/tiles/lava/zone/edge-left-1-3.png
-share/games/supertux2/images/tiles/lava/zone/edge-left-1-4.png
-share/games/supertux2/images/tiles/lava/zone/edge-right-1-1.png
-share/games/supertux2/images/tiles/lava/zone/edge-right-1-2.png
-share/games/supertux2/images/tiles/lava/zone/edge-right-1-3.png
-share/games/supertux2/images/tiles/lava/zone/edge-right-1-4.png
-share/games/supertux2/images/tiles/lava/zone/rest.png
-share/games/supertux2/images/tiles/lava/zone/surface-1-1.png
-share/games/supertux2/images/tiles/lava/zone/surface-1-2.png
-share/games/supertux2/images/tiles/lava/zone/surface-1-3.png
-share/games/supertux2/images/tiles/lava/zone/surface-1-4.png
share/games/supertux2/images/tiles/lightmap/lightmap-black.png
share/games/supertux2/images/tiles/lightmap/lightmap-bw.png
share/games/supertux2/images/tiles/lightmap/lightmap-white.png
share/games/supertux2/images/tiles/pipe/blue.png
share/games/supertux2/images/tiles/pipe/green.png
+share/games/supertux2/images/tiles/pipe/grey.png
share/games/supertux2/images/tiles/pipe/mask.png
-share/games/supertux2/images/tiles/pole/bend.png
-share/games/supertux2/images/tiles/pole/cross.png
+share/games/supertux2/images/tiles/pole/deprecated/misc.png
+share/games/supertux2/images/tiles/pole/diagonal_ends.png
share/games/supertux2/images/tiles/pole/diagonals.png
-share/games/supertux2/images/tiles/pole/horz.png
-share/games/supertux2/images/tiles/pole/misc.png
-share/games/supertux2/images/tiles/pole/t-cross.png
-share/games/supertux2/images/tiles/pole/vert.png
-share/games/supertux2/images/tiles/retro_snow/bkgd.png
-share/games/supertux2/images/tiles/retro_snow/retro_snow.png
+share/games/supertux2/images/tiles/pole/pole.png
+share/games/supertux2/images/tiles/retro/nolok-statue-retro.png
+share/games/supertux2/images/tiles/retro/retro_background.png
+share/games/supertux2/images/tiles/retro/retro_castle.png
+share/games/supertux2/images/tiles/retro/retro_castlewall.png
+share/games/supertux2/images/tiles/retro/retro_cave.png
+share/games/supertux2/images/tiles/retro/retro_snow.png
+share/games/supertux2/images/tiles/signs/bombhold.png
share/games/supertux2/images/tiles/signs/color_cyan.png
share/games/supertux2/images/tiles/signs/color_green.png
share/games/supertux2/images/tiles/signs/color_magenta.png
share/games/supertux2/images/tiles/signs/color_yellow.png
share/games/supertux2/images/tiles/signs/danger.png
share/games/supertux2/images/tiles/signs/down.png
+share/games/supertux2/images/tiles/signs/hanging-sign-base.png
+share/games/supertux2/images/tiles/signs/hanging-sign-rods.png
share/games/supertux2/images/tiles/signs/icehold.png
share/games/supertux2/images/tiles/signs/left.png
share/games/supertux2/images/tiles/signs/leftdown.png
@@ -2696,34 +4046,72 @@ share/games/supertux2/images/tiles/signs
share/games/supertux2/images/tiles/signs/sign-base.png
share/games/supertux2/images/tiles/signs/trampoline.png
share/games/supertux2/images/tiles/signs/up.png
+share/games/supertux2/images/tiles/signs/vertical-rods.png
+share/games/supertux2/images/tiles/signs/wall-sign-base.png
share/games/supertux2/images/tiles/signs/walljump.png
share/games/supertux2/images/tiles/snow/air.png
share/games/supertux2/images/tiles/snow/background.png
share/games/supertux2/images/tiles/snow/background2.png
+share/games/supertux2/images/tiles/snow/background3.png
+share/games/supertux2/images/tiles/snow/branches.png
share/games/supertux2/images/tiles/snow/concave.png
share/games/supertux2/images/tiles/snow/convex.png
-share/games/supertux2/images/tiles/snow/custom.png
+share/games/supertux2/images/tiles/snow/deprecated/custom.png
+share/games/supertux2/images/tiles/snow/deprecated/fallback_tile.png
+share/games/supertux2/images/tiles/snow/deprecated/spike.png
+share/games/supertux2/images/tiles/snow/deprecated/unisolid.png
share/games/supertux2/images/tiles/snow/flagpole.png
+share/games/supertux2/images/tiles/snow/grass1.png
+share/games/supertux2/images/tiles/snow/grass2.png
+share/games/supertux2/images/tiles/snow/ice-floor-special.png
+share/games/supertux2/images/tiles/snow/ice-floor.png
share/games/supertux2/images/tiles/snow/icechunk.png
-share/games/supertux2/images/tiles/snow/platform.png
+share/games/supertux2/images/tiles/snow/iceshrub.png
+share/games/supertux2/images/tiles/snow/iceslick-displacement.png
+share/games/supertux2/images/tiles/snow/iceslick.png
share/games/supertux2/images/tiles/snow/rocks-snow.png
share/games/supertux2/images/tiles/snow/slope_transitions.png
share/games/supertux2/images/tiles/snow/snow-walljump.png
-share/games/supertux2/images/tiles/snow/snowfort.png
+share/games/supertux2/images/tiles/snow/snow_swap.png
+share/games/supertux2/images/tiles/snow/snowfort_bg.png
+share/games/supertux2/images/tiles/snow/snowfort_fence.png
+share/games/supertux2/images/tiles/snow/snowfort_fg.png
share/games/supertux2/images/tiles/snow/snowmerge.png
+share/games/supertux2/images/tiles/snow/snowy_tree1.png
+share/games/supertux2/images/tiles/snow/snowy_tree2.png
+share/games/supertux2/images/tiles/snow/snowy_tree3.png
+share/games/supertux2/images/tiles/snow/snowy_tree_special.png
+share/games/supertux2/images/tiles/snow/snowy_tree_special2.png
share/games/supertux2/images/tiles/snow/special.png
share/games/supertux2/images/tiles/snow/special2.png
share/games/supertux2/images/tiles/snow/special3.png
share/games/supertux2/images/tiles/snow/spike.png
+share/games/supertux2/images/tiles/snow/underground/background.png
+share/games/supertux2/images/tiles/snow/underground/concave.png
+share/games/supertux2/images/tiles/snow/underground/convex.png
+share/games/supertux2/images/tiles/snow/underground/convex_nosnow.png
+share/games/supertux2/images/tiles/snow/underground/slope.png
+share/games/supertux2/images/tiles/snow/underground/slope_nosnow.png
+share/games/supertux2/images/tiles/snow/underground/slope_transitions.png
+share/games/supertux2/images/tiles/snow/underground/snowmerge.png
+share/games/supertux2/images/tiles/snow/underground/special.png
+share/games/supertux2/images/tiles/snow/underground/special2.png
+share/games/supertux2/images/tiles/snow/underground/underground_swap.png
+share/games/supertux2/images/tiles/snow/underground/variants.png
share/games/supertux2/images/tiles/snow/unisolid.png
share/games/supertux2/images/tiles/snow/unisolid2.png
-share/games/supertux2/images/tiles/snow/unisolid3.png
share/games/supertux2/images/tiles/snow/variants.png
share/games/supertux2/images/tiles/snow/variants2.png
-share/games/supertux2/images/tiles/snowcastle/foreground.png
-share/games/supertux2/images/tiles/snowmountain/ground.png
-share/games/supertux2/images/tiles/snowmountain/ground2.png
-share/games/supertux2/images/tiles/snowmountain/ground3.png
+share/games/supertux2/images/tiles/snowmountain/deprecated/ground.png
+share/games/supertux2/images/tiles/snowmountain/deprecated/ground2.png
+share/games/supertux2/images/tiles/spike/deprecated/spikedown.png
+share/games/supertux2/images/tiles/spike/deprecated/spikedown2.png
+share/games/supertux2/images/tiles/spike/deprecated/spikeleft.png
+share/games/supertux2/images/tiles/spike/deprecated/spikeleft2.png
+share/games/supertux2/images/tiles/spike/deprecated/spikeright.png
+share/games/supertux2/images/tiles/spike/deprecated/spikeright2.png
+share/games/supertux2/images/tiles/spike/deprecated/spikeup.png
+share/games/supertux2/images/tiles/spike/deprecated/spikeup2.png
share/games/supertux2/images/tiles/test/test.png
share/games/supertux2/images/tiles/test/walljump-test.png
share/games/supertux2/images/tiles/water/antarctic-1.png
@@ -2740,64 +4128,35 @@ share/games/supertux2/images/tiles/water
share/games/supertux2/images/tiles/water/antarctic-8.png
share/games/supertux2/images/tiles/water/antarctic-displacement.png
share/games/supertux2/images/tiles/water/antarctic.png
-share/games/supertux2/images/tiles/water/electrified-0.png
-share/games/supertux2/images/tiles/water/electrified-1.png
-share/games/supertux2/images/tiles/water/electrified_waves-0.png
-share/games/supertux2/images/tiles/water/electrified_waves-1.png
-share/games/supertux2/images/tiles/water/water-trans.png
-share/games/supertux2/images/tiles/water/water.png
-share/games/supertux2/images/tiles/water/waves-0.png
-share/games/supertux2/images/tiles/water/waves-1.png
-share/games/supertux2/images/tiles/water/waves-2.png
-share/games/supertux2/images/tiles/water/waves-trans-0.png
-share/games/supertux2/images/tiles/water/waves-trans-1.png
-share/games/supertux2/images/tiles/water/waves-trans-2.png
+share/games/supertux2/images/tiles/water/deprecated/electrified-0.png
+share/games/supertux2/images/tiles/water/deprecated/electrified-1.png
+share/games/supertux2/images/tiles/water/deprecated/electrified_waves-0.png
+share/games/supertux2/images/tiles/water/deprecated/electrified_waves-1.png
+share/games/supertux2/images/tiles/water/deprecated/water-trans.png
+share/games/supertux2/images/tiles/water/deprecated/water.png
+share/games/supertux2/images/tiles/water/deprecated/waves-0.png
+share/games/supertux2/images/tiles/water/deprecated/waves-1.png
+share/games/supertux2/images/tiles/water/deprecated/waves-2.png
+share/games/supertux2/images/tiles/water/deprecated/waves-trans-0.png
+share/games/supertux2/images/tiles/water/deprecated/waves-trans-1.png
+share/games/supertux2/images/tiles/water/deprecated/waves-trans-2.png
+share/games/supertux2/images/tiles/waterfall/deprecated/waterfall-0.png
+share/games/supertux2/images/tiles/waterfall/deprecated/waterfall-1.png
+share/games/supertux2/images/tiles/waterfall/deprecated/waterfall-2.png
+share/games/supertux2/images/tiles/waterfall/deprecated/waterfall-3.png
+share/games/supertux2/images/tiles/waterfall/foam-0.png
+share/games/supertux2/images/tiles/waterfall/foam-1.png
+share/games/supertux2/images/tiles/waterfall/foam-2.png
+share/games/supertux2/images/tiles/waterfall/foam-3.png
+share/games/supertux2/images/tiles/waterfall/trans-0.png
share/games/supertux2/images/tiles/waterfall/trans-1.png
share/games/supertux2/images/tiles/waterfall/trans-2.png
share/games/supertux2/images/tiles/waterfall/trans-3.png
-share/games/supertux2/images/tiles/waterfall/trans-4.png
-share/games/supertux2/images/tiles/waterfall/waterfall-1.png
-share/games/supertux2/images/tiles/waterfall/waterfall-2.png
-share/games/supertux2/images/tiles/waterfall/waterfall-3.png
-share/games/supertux2/images/tiles/waterfall/waterfall-4.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-0-1.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-0-2.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-0-3.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-0-4.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-1-1.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-1-2.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-1-3.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-1-4.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-2-1.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-2-2.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-2-3.png
-share/games/supertux2/images/tiles/waterfall/waterfall0-2-4.png
-share/games/supertux2/images/tiles/waterfall/waterfall1-0-1.png
-share/games/supertux2/images/tiles/waterfall/waterfall1-0-2.png
-share/games/supertux2/images/tiles/waterfall/waterfall1-0-3.png
-share/games/supertux2/images/tiles/waterfall/waterfall1-0-4.png
-share/games/supertux2/images/tiles/waterfall/waterfall1-5-1.png
-share/games/supertux2/images/tiles/waterfall/waterfall1-5-2.png
-share/games/supertux2/images/tiles/waterfall/waterfall1-5-3.png
-share/games/supertux2/images/tiles/waterfall/waterfall1-5-4.png
share/games/supertux2/images/worldmap.strf
-share/games/supertux2/images/worldmap/antarctica/castle.png
-share/games/supertux2/images/worldmap/antarctica/castlepass.png
-share/games/supertux2/images/worldmap/antarctica/icebridge.png
-share/games/supertux2/images/worldmap/antarctica/igloo.png
-share/games/supertux2/images/worldmap/antarctica/pier.png
-share/games/supertux2/images/worldmap/antarctica/roads.png
-share/games/supertux2/images/worldmap/antarctica/secretpaths-editor.png
-share/games/supertux2/images/worldmap/antarctica/snowconcave.png
-share/games/supertux2/images/worldmap/antarctica/snowconvex.png
-share/games/supertux2/images/worldmap/antarctica/snowman.png
-share/games/supertux2/images/worldmap/antarctica/water-editor.png
-share/games/supertux2/images/worldmap/antarctica/water.png
-share/games/supertux2/images/worldmap/antarctica/woodconcave.png
-share/games/supertux2/images/worldmap/antarctica/woodconvex.png
share/games/supertux2/images/worldmap/christmas/snowman.png
share/games/supertux2/images/worldmap/christmas/woodconcave.png
share/games/supertux2/images/worldmap/christmas/woodconvex.png
+share/games/supertux2/images/worldmap/christmas/woodspecial.png
share/games/supertux2/images/worldmap/common/air_swim_down1.png
share/games/supertux2/images/worldmap/common/air_swim_down2.png
share/games/supertux2/images/worldmap/common/air_swim_down3.png
@@ -2838,18 +4197,40 @@ share/games/supertux2/images/worldmap/co
share/games/supertux2/images/worldmap/common/big_swim_up4.png
share/games/supertux2/images/worldmap/common/big_swim_up5.png
share/games/supertux2/images/worldmap/common/boat/boat.sprite
-share/games/supertux2/images/worldmap/common/boat/boat_0.png
+share/games/supertux2/images/worldmap/common/boat/boat_0_air.png
+share/games/supertux2/images/worldmap/common/boat/boat_0_big.png
+share/games/supertux2/images/worldmap/common/boat/boat_0_earth.png
+share/games/supertux2/images/worldmap/common/boat/boat_0_empty.png
share/games/supertux2/images/worldmap/common/boat/boat_0_fire.png
share/games/supertux2/images/worldmap/common/boat/boat_0_ice.png
-share/games/supertux2/images/worldmap/common/boat/boat_1.png
+share/games/supertux2/images/worldmap/common/boat/boat_0_small.png
+share/games/supertux2/images/worldmap/common/boat/boat_1_air.png
+share/games/supertux2/images/worldmap/common/boat/boat_1_big.png
+share/games/supertux2/images/worldmap/common/boat/boat_1_earth.png
+share/games/supertux2/images/worldmap/common/boat/boat_1_empty.png
share/games/supertux2/images/worldmap/common/boat/boat_1_fire.png
share/games/supertux2/images/worldmap/common/boat/boat_1_ice.png
-share/games/supertux2/images/worldmap/common/boat/boat_empty.png
-share/games/supertux2/images/worldmap/common/boat/left_boat_0.png
-share/games/supertux2/images/worldmap/common/boat/left_boat_0_fire.png
-share/games/supertux2/images/worldmap/common/boat/left_boat_1.png
-share/games/supertux2/images/worldmap/common/boat/left_boat_1_fire.png
+share/games/supertux2/images/worldmap/common/boat/boat_1_small.png
+share/games/supertux2/images/worldmap/common/boat/boat_2_air.png
+share/games/supertux2/images/worldmap/common/boat/boat_2_big.png
+share/games/supertux2/images/worldmap/common/boat/boat_2_earth.png
+share/games/supertux2/images/worldmap/common/boat/boat_2_empty.png
+share/games/supertux2/images/worldmap/common/boat/boat_2_fire.png
+share/games/supertux2/images/worldmap/common/boat/boat_2_ice.png
+share/games/supertux2/images/worldmap/common/boat/boat_2_small.png
+share/games/supertux2/images/worldmap/common/boat/boat_3_air.png
+share/games/supertux2/images/worldmap/common/boat/boat_3_big.png
+share/games/supertux2/images/worldmap/common/boat/boat_3_earth.png
+share/games/supertux2/images/worldmap/common/boat/boat_3_empty.png
+share/games/supertux2/images/worldmap/common/boat/boat_3_fire.png
+share/games/supertux2/images/worldmap/common/boat/boat_3_ice.png
+share/games/supertux2/images/worldmap/common/boat/boat_3_small.png
share/games/supertux2/images/worldmap/common/bonusdot.sprite
+share/games/supertux2/images/worldmap/common/campfire-0.png
+share/games/supertux2/images/worldmap/common/campfire-1.png
+share/games/supertux2/images/worldmap/common/campfire-2.png
+share/games/supertux2/images/worldmap/common/campfire-3.png
+share/games/supertux2/images/worldmap/common/campfire.sprite
share/games/supertux2/images/worldmap/common/earth_swim_down1.png
share/games/supertux2/images/worldmap/common/earth_swim_down2.png
share/games/supertux2/images/worldmap/common/earth_swim_down3.png
@@ -2899,6 +4280,35 @@ share/games/supertux2/images/worldmap/co
share/games/supertux2/images/worldmap/common/firetuxwalk7.png
share/games/supertux2/images/worldmap/common/firetuxwalk8.png
share/games/supertux2/images/worldmap/common/ghosttree.sprite
+share/games/supertux2/images/worldmap/common/granito/granito.sprite
+share/games/supertux2/images/worldmap/common/granito/granito_0_air.png
+share/games/supertux2/images/worldmap/common/granito/granito_0_big.png
+share/games/supertux2/images/worldmap/common/granito/granito_0_earth.png
+share/games/supertux2/images/worldmap/common/granito/granito_0_empty.png
+share/games/supertux2/images/worldmap/common/granito/granito_0_fire.png
+share/games/supertux2/images/worldmap/common/granito/granito_0_ice.png
+share/games/supertux2/images/worldmap/common/granito/granito_0_small.png
+share/games/supertux2/images/worldmap/common/granito/granito_1_air.png
+share/games/supertux2/images/worldmap/common/granito/granito_1_big.png
+share/games/supertux2/images/worldmap/common/granito/granito_1_earth.png
+share/games/supertux2/images/worldmap/common/granito/granito_1_empty.png
+share/games/supertux2/images/worldmap/common/granito/granito_1_fire.png
+share/games/supertux2/images/worldmap/common/granito/granito_1_ice.png
+share/games/supertux2/images/worldmap/common/granito/granito_1_small.png
+share/games/supertux2/images/worldmap/common/granito/granito_2_air.png
+share/games/supertux2/images/worldmap/common/granito/granito_2_big.png
+share/games/supertux2/images/worldmap/common/granito/granito_2_earth.png
+share/games/supertux2/images/worldmap/common/granito/granito_2_empty.png
+share/games/supertux2/images/worldmap/common/granito/granito_2_fire.png
+share/games/supertux2/images/worldmap/common/granito/granito_2_ice.png
+share/games/supertux2/images/worldmap/common/granito/granito_2_small.png
+share/games/supertux2/images/worldmap/common/granito/granito_3_air.png
+share/games/supertux2/images/worldmap/common/granito/granito_3_big.png
+share/games/supertux2/images/worldmap/common/granito/granito_3_earth.png
+share/games/supertux2/images/worldmap/common/granito/granito_3_empty.png
+share/games/supertux2/images/worldmap/common/granito/granito_3_fire.png
+share/games/supertux2/images/worldmap/common/granito/granito_3_ice.png
+share/games/supertux2/images/worldmap/common/granito/granito_3_small.png
share/games/supertux2/images/worldmap/common/hiddendot.sprite
share/games/supertux2/images/worldmap/common/ice_swim_down1.png
share/games/supertux2/images/worldmap/common/ice_swim_down2.png
@@ -2925,43 +4335,16 @@ share/games/supertux2/images/worldmap/co
share/games/supertux2/images/worldmap/common/icetuxwalk7.png
share/games/supertux2/images/worldmap/common/icetuxwalk8.png
share/games/supertux2/images/worldmap/common/invisible.png
-share/games/supertux2/images/worldmap/common/laddertux.sprite
-share/games/supertux2/images/worldmap/common/laddertux1.png
-share/games/supertux2/images/worldmap/common/laddertux2.png
-share/games/supertux2/images/worldmap/common/laddertux3.png
-share/games/supertux2/images/worldmap/common/laddertux4.png
-share/games/supertux2/images/worldmap/common/laddertux5.png
-share/games/supertux2/images/worldmap/common/laddertux6.png
-share/games/supertux2/images/worldmap/common/laddertux7.png
-share/games/supertux2/images/worldmap/common/laddertux8.png
-share/games/supertux2/images/worldmap/common/level_star.png
-share/games/supertux2/images/worldmap/common/level_star1.png
-share/games/supertux2/images/worldmap/common/level_star2.png
-share/games/supertux2/images/worldmap/common/level_star3.png
-share/games/supertux2/images/worldmap/common/level_star4.png
-share/games/supertux2/images/worldmap/common/level_star5.png
share/games/supertux2/images/worldmap/common/leveldot.sprite
share/games/supertux2/images/worldmap/common/leveldot_blue-01.png
share/games/supertux2/images/worldmap/common/leveldot_blue-02.png
share/games/supertux2/images/worldmap/common/leveldot_blue-03.png
share/games/supertux2/images/worldmap/common/leveldot_green.png
-share/games/supertux2/images/worldmap/common/leveldot_green_perfect-0.png
-share/games/supertux2/images/worldmap/common/leveldot_green_perfect-1.png
-share/games/supertux2/images/worldmap/common/leveldot_green_perfect-2.png
-share/games/supertux2/images/worldmap/common/leveldot_green_perfect-3.png
+share/games/supertux2/images/worldmap/common/leveldot_perfect.png
+share/games/supertux2/images/worldmap/common/leveldot_perfect_1.png
+share/games/supertux2/images/worldmap/common/leveldot_perfect_2.png
+share/games/supertux2/images/worldmap/common/leveldot_perfect_3.png
share/games/supertux2/images/worldmap/common/leveldot_red.png
-share/games/supertux2/images/worldmap/common/messagedot.png
-share/games/supertux2/images/worldmap/common/messagedot.sprite
-share/games/supertux2/images/worldmap/common/n_stone.png
-share/games/supertux2/images/worldmap/common/n_stone.sprite
-share/games/supertux2/images/worldmap/common/shroom.png
-share/games/supertux2/images/worldmap/common/shroom.sprite
-share/games/supertux2/images/worldmap/common/shroom1.png
-share/games/supertux2/images/worldmap/common/shroom2.png
-share/games/supertux2/images/worldmap/common/shroom3.png
-share/games/supertux2/images/worldmap/common/shroom4.png
-share/games/supertux2/images/worldmap/common/shroom5.png
-share/games/supertux2/images/worldmap/common/shroom6.png
share/games/supertux2/images/worldmap/common/smalltux.png
share/games/supertux2/images/worldmap/common/smalltuxwalk1.png
share/games/supertux2/images/worldmap/common/smalltuxwalk2.png
@@ -2971,10 +4354,6 @@ share/games/supertux2/images/worldmap/co
share/games/supertux2/images/worldmap/common/smalltuxwalk6.png
share/games/supertux2/images/worldmap/common/smalltuxwalk7.png
share/games/supertux2/images/worldmap/common/smalltuxwalk8.png
-share/games/supertux2/images/worldmap/common/smoke1.png
-share/games/supertux2/images/worldmap/common/smoke2.png
-share/games/supertux2/images/worldmap/common/smoke3.png
-share/games/supertux2/images/worldmap/common/smoke4.png
share/games/supertux2/images/worldmap/common/swim.sprite
share/games/supertux2/images/worldmap/common/teleporterdot.png
share/games/supertux2/images/worldmap/common/teleporterdot.sprite
@@ -2982,13 +4361,6 @@ share/games/supertux2/images/worldmap/co
share/games/supertux2/images/worldmap/common/teleporterdot_2.png
share/games/supertux2/images/worldmap/common/teleporterdot_3.png
share/games/supertux2/images/worldmap/common/teleporterdot_4.png
-share/games/supertux2/images/worldmap/common/torch.png
-share/games/supertux2/images/worldmap/common/torch.sprite
-share/games/supertux2/images/worldmap/common/torch1.png
-share/games/supertux2/images/worldmap/common/torch1.sprite
-share/games/supertux2/images/worldmap/common/torch2.png
-share/games/supertux2/images/worldmap/common/torch3.png
-share/games/supertux2/images/worldmap/common/torch4.png
share/games/supertux2/images/worldmap/common/tux.png
share/games/supertux2/images/worldmap/common/tux.sprite
share/games/supertux2/images/worldmap/common/tuxwalk1.png
@@ -3000,60 +4372,84 @@ share/games/supertux2/images/worldmap/co
share/games/supertux2/images/worldmap/common/tuxwalk7.png
share/games/supertux2/images/worldmap/common/tuxwalk8.png
share/games/supertux2/images/worldmap/common/yeti.sprite
-share/games/supertux2/images/worldmap/forest/castlemap.png
-share/games/supertux2/images/worldmap/forest/castlemap_overlay.png
-share/games/supertux2/images/worldmap/forest/castlemap_overlay_full.png
-share/games/supertux2/images/worldmap/forest/cropcircle.png
-share/games/supertux2/images/worldmap/forest/darker_forest.png
-share/games/supertux2/images/worldmap/forest/forest.png
-share/games/supertux2/images/worldmap/forest/forestwood-2.png
-share/games/supertux2/images/worldmap/forest/forestwood.png
-share/games/supertux2/images/worldmap/forest/ghostforest.png
-share/games/supertux2/images/worldmap/forest/ghostwood.png
-share/games/supertux2/images/worldmap/forest/icestream.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/castle.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/castlepass.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/icebridge.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/igloo.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/pier.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/roads.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/secretpaths-editor.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/snowconcave.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/snowconvex.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/snowman.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/water-editor.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/water.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/woodconcave.png
+share/games/supertux2/images/worldmap/deprecated/antarctica/woodconvex.png
+share/games/supertux2/images/worldmap/deprecated/forest/castlemap.png
+share/games/supertux2/images/worldmap/deprecated/forest/castlemap_overlay.png
+share/games/supertux2/images/worldmap/deprecated/forest/castlemap_overlay_full.png
+share/games/supertux2/images/worldmap/deprecated/forest/cropcircle.png
+share/games/supertux2/images/worldmap/deprecated/forest/darker_forest.png
+share/games/supertux2/images/worldmap/deprecated/forest/forest.png
+share/games/supertux2/images/worldmap/deprecated/forest/forestwood-2.png
+share/games/supertux2/images/worldmap/deprecated/forest/forestwood.png
+share/games/supertux2/images/worldmap/deprecated/forest/ghostforest.png
+share/games/supertux2/images/worldmap/deprecated/forest/ghostwood.png
+share/games/supertux2/images/worldmap/deprecated/forest/icestream.png
+share/games/supertux2/images/worldmap/deprecated/forest/path.png
+share/games/supertux2/images/worldmap/deprecated/forest/path_map.png
+share/games/supertux2/images/worldmap/deprecated/forest/small_air.png
+share/games/supertux2/images/worldmap/deprecated/forest/small_air.sprite
+share/games/supertux2/images/worldmap/deprecated/forest/small_earth.png
+share/games/supertux2/images/worldmap/deprecated/forest/small_earth.sprite
+share/games/supertux2/images/worldmap/deprecated/forest/small_fire.png
+share/games/supertux2/images/worldmap/deprecated/forest/small_fire.sprite
+share/games/supertux2/images/worldmap/deprecated/forest/small_water.png
+share/games/supertux2/images/worldmap/deprecated/forest/small_water.sprite
+share/games/supertux2/images/worldmap/deprecated/forest/small_wood.png
+share/games/supertux2/images/worldmap/deprecated/forest/small_wood.sprite
+share/games/supertux2/images/worldmap/deprecated/forest/stream.png
+share/games/supertux2/images/worldmap/deprecated/halloween/home.png
+share/games/supertux2/images/worldmap/deprecated/halloween/roads.png
+share/games/supertux2/images/worldmap/deprecated/halloween/tiles.png
+share/games/supertux2/images/worldmap/deprecated/halloween/tree1.png
+share/games/supertux2/images/worldmap/deprecated/halloween/tree2.png
+share/games/supertux2/images/worldmap/deprecated/ice/icecave.png
+share/games/supertux2/images/worldmap/forest/cave_rocks.png
+share/games/supertux2/images/worldmap/forest/corrupt_roots.png
+share/games/supertux2/images/worldmap/forest/forest_world_special.png
share/games/supertux2/images/worldmap/forest/land.png
share/games/supertux2/images/worldmap/forest/land_ghost.png
share/games/supertux2/images/worldmap/forest/land_mix.png
-share/games/supertux2/images/worldmap/forest/land_underground.png
-share/games/supertux2/images/worldmap/forest/leveldots/door.sprite
-share/games/supertux2/images/worldmap/forest/leveldots/doorclosed.png
-share/games/supertux2/images/worldmap/forest/leveldots/dooropen.png
-share/games/supertux2/images/worldmap/forest/leveldots/small_air.sprite
-share/games/supertux2/images/worldmap/forest/path.png
-share/games/supertux2/images/worldmap/forest/path_map.png
-share/games/supertux2/images/worldmap/forest/small_air.png
-share/games/supertux2/images/worldmap/forest/small_air.sprite
-share/games/supertux2/images/worldmap/forest/small_earth.png
-share/games/supertux2/images/worldmap/forest/small_earth.sprite
-share/games/supertux2/images/worldmap/forest/small_fire.png
-share/games/supertux2/images/worldmap/forest/small_fire.sprite
-share/games/supertux2/images/worldmap/forest/small_water.png
-share/games/supertux2/images/worldmap/forest/small_water.sprite
-share/games/supertux2/images/worldmap/forest/small_wood.png
-share/games/supertux2/images/worldmap/forest/small_wood.sprite
-share/games/supertux2/images/worldmap/forest/stream.png
share/games/supertux2/images/worldmap/forest/trees_bushes.png
+share/games/supertux2/images/worldmap/forest/underground.png
+share/games/supertux2/images/worldmap/forest/underground_ghost.png
share/games/supertux2/images/worldmap/halloween/darkness.png
-share/games/supertux2/images/worldmap/halloween/home.png
-share/games/supertux2/images/worldmap/halloween/roads.png
+share/games/supertux2/images/worldmap/halloween/pumpkin_hut.png
share/games/supertux2/images/worldmap/halloween/scarecrow.png
share/games/supertux2/images/worldmap/halloween/splash1.png
share/games/supertux2/images/worldmap/halloween/splash2.png
share/games/supertux2/images/worldmap/halloween/splash3.png
share/games/supertux2/images/worldmap/halloween/tiles.png
-share/games/supertux2/images/worldmap/halloween/tree1.png
-share/games/supertux2/images/worldmap/halloween/tree2.png
+share/games/supertux2/images/worldmap/halloween/trees.png
share/games/supertux2/images/worldmap/ice/cave_cracks.png
+share/games/supertux2/images/worldmap/ice/cave_crystal.png
share/games/supertux2/images/worldmap/ice/crystal.png
+share/games/supertux2/images/worldmap/ice/deprecated/icecave.png
+share/games/supertux2/images/worldmap/ice/ice_cave.png
+share/games/supertux2/images/worldmap/ice/ice_cave2.png
share/games/supertux2/images/worldmap/ice/ice_cliff.png
-share/games/supertux2/images/worldmap/ice/icecave.png
+share/games/supertux2/images/worldmap/ice/ice_world_special.png
share/games/supertux2/images/worldmap/ice/land.png
share/games/supertux2/images/worldmap/ice/mountain.png
share/games/supertux2/images/worldmap/ice/thin_ice.png
share/games/supertux2/images/worldmap/ice/woodconcave.png
share/games/supertux2/images/worldmap/ice/woodconvex.png
+share/games/supertux2/images/worldmap/shared/black.png
share/games/supertux2/images/worldmap/shared/bridge.png
share/games/supertux2/images/worldmap/shared/castle.png
+share/games/supertux2/images/worldmap/shared/castle_retro.png
share/games/supertux2/images/worldmap/shared/invisible_paths-editor.png
share/games/supertux2/images/worldmap/shared/invisible_paths.png
share/games/supertux2/images/worldmap/shared/ladder.png
@@ -3064,12 +4460,15 @@ share/games/supertux2/images/worldmap/sh
share/games/supertux2/images/worldmap/shared/rocky_paths-editor.png
share/games/supertux2/images/worldmap/shared/rocky_paths.png
share/games/supertux2/images/worldmap/shared/ruin.png
+share/games/supertux2/images/worldmap/shared/ruin_deco.png
share/games/supertux2/images/worldmap/shared/shallow_water.png
+share/games/supertux2/images/worldmap/shared/shallow_water_special.png
share/games/supertux2/images/worldmap/shared/surf-01.png
share/games/supertux2/images/worldmap/shared/surf-02.png
share/games/supertux2/images/worldmap/shared/surf-03.png
share/games/supertux2/images/worldmap/shared/surf-04.png
share/games/supertux2/images/worldmap/shared/tower.png
+share/games/supertux2/images/worldmap/shared/village.png
share/games/supertux2/images/worldmap/shared/water_01.png
share/games/supertux2/images/worldmap/shared/water_02.png
share/games/supertux2/images/worldmap/shared/water_03.png
@@ -3086,560 +4485,173 @@ share/games/supertux2/images/worldmap/sh
share/games/supertux2/images/worldmap/shared/water_14.png
share/games/supertux2/images/worldmap/shared/water_15.png
share/games/supertux2/images/worldmap/shared/water_16.png
-share/games/supertux2/levels/bonus1/abednego-level1.stl
-share/games/supertux2/levels/bonus1/abednego-level2.stl
-share/games/supertux2/levels/bonus1/abednego-level3.stl
-share/games/supertux2/levels/bonus1/abednego-level4.stl
+share/games/supertux2/images/worlds/background/default.png
+share/games/supertux2/images/worlds/background/forest.png
+share/games/supertux2/images/worlds/background/icyisland.png
+share/games/supertux2/images/worlds/icon/icyisland.png
+share/games/supertux2/images/worlds/icon/mountainpeak.png
+share/games/supertux2/images/worlds/icon/rootedforest.png
+share/games/supertux2/images/worlds/icon/tropicalparadise.png
+share/games/supertux2/images/worlds/locked/icyisland.png
+share/games/supertux2/images/worlds/locked/mountainpeak.png
+share/games/supertux2/images/worlds/locked/rootedforest.png
+share/games/supertux2/images/worlds/locked/tropicalparadise.png
share/games/supertux2/levels/bonus1/af_ZA.po
+share/games/supertux2/levels/bonus1/all_that_glistens.stl
+share/games/supertux2/levels/bonus1/another_cold_day.stl
share/games/supertux2/levels/bonus1/ar.po
+share/games/supertux2/levels/bonus1/area_42.stl
share/games/supertux2/levels/bonus1/az.po
share/games/supertux2/levels/bonus1/be.po
share/games/supertux2/levels/bonus1/bg.po
-share/games/supertux2/levels/bonus1/bonus-level1.stl
-share/games/supertux2/levels/bonus1/bonus-level2.stl
-share/games/supertux2/levels/bonus1/bonus-level3.stl
-share/games/supertux2/levels/bonus1/bonus-level4.stl
-share/games/supertux2/levels/bonus1/bonus-level5.stl
+share/games/supertux2/levels/bonus1/bonus_dias.stl
share/games/supertux2/levels/bonus1/br.po
+share/games/supertux2/levels/bonus1/bs.po
share/games/supertux2/levels/bonus1/ca.po
+share/games/supertux2/levels/bonus1/castle_in_sky.stl
+share/games/supertux2/levels/bonus1/cave_of_mirrors.stl
share/games/supertux2/levels/bonus1/cmn.po
+share/games/supertux2/levels/bonus1/crumbel_cavern.stl
share/games/supertux2/levels/bonus1/cs.po
share/games/supertux2/levels/bonus1/da.po
share/games/supertux2/levels/bonus1/de.po
+share/games/supertux2/levels/bonus1/default.nut
share/games/supertux2/levels/bonus1/el.po
+share/games/supertux2/levels/bonus1/end_of_ice_age.stl
share/games/supertux2/levels/bonus1/eo.po
share/games/supertux2/levels/bonus1/es.po
share/games/supertux2/levels/bonus1/es_AR.po
share/games/supertux2/levels/bonus1/et.po
share/games/supertux2/levels/bonus1/eu.po
-share/games/supertux2/levels/bonus1/extro.txt
share/games/supertux2/levels/bonus1/fi.po
+share/games/supertux2/levels/bonus1/fire_in_the_sky.stl
+share/games/supertux2/levels/bonus1/fjerd.stl
+share/games/supertux2/levels/bonus1/flanders_ice_field.stl
share/games/supertux2/levels/bonus1/fr.po
+share/games/supertux2/levels/bonus1/fr_CA.po
share/games/supertux2/levels/bonus1/gd.po
share/games/supertux2/levels/bonus1/gl.po
share/games/supertux2/levels/bonus1/he.po
-share/games/supertux2/levels/bonus1/hi_IN.po
+share/games/supertux2/levels/bonus1/high_gravity.stl
share/games/supertux2/levels/bonus1/hr.po
share/games/supertux2/levels/bonus1/hu.po
+share/games/supertux2/levels/bonus1/hy.po
+share/games/supertux2/levels/bonus1/ice_test.stl
share/games/supertux2/levels/bonus1/id.po
share/games/supertux2/levels/bonus1/info
+share/games/supertux2/levels/bonus1/is.po
share/games/supertux2/levels/bonus1/it.po
share/games/supertux2/levels/bonus1/ja.po
-share/games/supertux2/levels/bonus1/jbo.po
-share/games/supertux2/levels/bonus1/km.po
+share/games/supertux2/levels/bonus1/ka.po
+share/games/supertux2/levels/bonus1/kk.po
share/games/supertux2/levels/bonus1/ko.po
share/games/supertux2/levels/bonus1/la.po
+share/games/supertux2/levels/bonus1/let_us_snow.stl
+share/games/supertux2/levels/bonus1/lies.stl
share/games/supertux2/levels/bonus1/lt.po
-share/games/supertux2/levels/bonus1/matr1x-level1.stl
-share/games/supertux2/levels/bonus1/matr1x-level2.stl
-share/games/supertux2/levels/bonus1/matr1x-level3.stl
+share/games/supertux2/levels/bonus1/luft_airship.stl
+share/games/supertux2/levels/bonus1/mario.stl
+share/games/supertux2/levels/bonus1/maze_in_sky.stl
share/games/supertux2/levels/bonus1/messages.pot
share/games/supertux2/levels/bonus1/ml.po
share/games/supertux2/levels/bonus1/ms_MY.po
+share/games/supertux2/levels/bonus1/mysterious_house_of_ice.stl
share/games/supertux2/levels/bonus1/nb.po
share/games/supertux2/levels/bonus1/nds.po
-share/games/supertux2/levels/bonus1/ne.po
share/games/supertux2/levels/bonus1/nl.po
share/games/supertux2/levels/bonus1/nn.po
+share/games/supertux2/levels/bonus1/noloks_party_pit.stl
+share/games/supertux2/levels/bonus1/penguins_cant_fly.stl
+share/games/supertux2/levels/bonus1/pipe_down_over_there.stl
share/games/supertux2/levels/bonus1/pl.po
share/games/supertux2/levels/bonus1/pt.po
share/games/supertux2/levels/bonus1/pt_BR.po
+share/games/supertux2/levels/bonus1/refisherator.stl
share/games/supertux2/levels/bonus1/ro.po
share/games/supertux2/levels/bonus1/ru.po
+share/games/supertux2/levels/bonus1/semi_frozen.stl
share/games/supertux2/levels/bonus1/sk.po
share/games/supertux2/levels/bonus1/sl.po
+share/games/supertux2/levels/bonus1/snow_bowling.stl
+share/games/supertux2/levels/bonus1/snowmans_land.stl
+share/games/supertux2/levels/bonus1/snowy_sunset.stl
share/games/supertux2/levels/bonus1/sq.po
share/games/supertux2/levels/bonus1/sr.po
share/games/supertux2/levels/bonus1/sv.po
share/games/supertux2/levels/bonus1/te.po
-share/games/supertux2/levels/bonus1/thompson-level1.stl
-share/games/supertux2/levels/bonus1/thompson-level2.stl
-share/games/supertux2/levels/bonus1/torfi-level1.stl
-share/games/supertux2/levels/bonus1/torfi-level2.stl
-share/games/supertux2/levels/bonus1/torfi-level3.stl
+share/games/supertux2/levels/bonus1/tip_of_iceberg.stl
share/games/supertux2/levels/bonus1/tr.po
+share/games/supertux2/levels/bonus1/train_leaves_in_one_minute.nut
+share/games/supertux2/levels/bonus1/train_leaves_in_one_minute.stl
share/games/supertux2/levels/bonus1/tt.po
+share/games/supertux2/levels/bonus1/tux_parties_like_a.nut
share/games/supertux2/levels/bonus1/uk.po
share/games/supertux2/levels/bonus1/uz.po
-share/games/supertux2/levels/bonus1/vi.po
-share/games/supertux2/levels/bonus1/wansti-level1.stl
-share/games/supertux2/levels/bonus1/wansti-level2.stl
-share/games/supertux2/levels/bonus1/wansti-level3.stl
-share/games/supertux2/levels/bonus1/wansti-level4.stl
-share/games/supertux2/levels/bonus1/wansti-level5.stl
+share/games/supertux2/levels/bonus1/where_everything_possible.stl
share/games/supertux2/levels/bonus1/worldmap.stwm
share/games/supertux2/levels/bonus1/zh_CN.po
share/games/supertux2/levels/bonus1/zh_TW.po
-share/games/supertux2/levels/bonus2/af_ZA.po
-share/games/supertux2/levels/bonus2/ar.po
-share/games/supertux2/levels/bonus2/az.po
-share/games/supertux2/levels/bonus2/be.po
-share/games/supertux2/levels/bonus2/bg.po
-share/games/supertux2/levels/bonus2/br.po
-share/games/supertux2/levels/bonus2/ca.po
-share/games/supertux2/levels/bonus2/cmn.po
-share/games/supertux2/levels/bonus2/cs.po
-share/games/supertux2/levels/bonus2/da.po
-share/games/supertux2/levels/bonus2/de.po
-share/games/supertux2/levels/bonus2/el.po
-share/games/supertux2/levels/bonus2/eo.po
-share/games/supertux2/levels/bonus2/es.po
-share/games/supertux2/levels/bonus2/es_AR.po
-share/games/supertux2/levels/bonus2/et.po
-share/games/supertux2/levels/bonus2/eu.po
-share/games/supertux2/levels/bonus2/extro.txt
-share/games/supertux2/levels/bonus2/fi.po
-share/games/supertux2/levels/bonus2/fr.po
-share/games/supertux2/levels/bonus2/gd.po
-share/games/supertux2/levels/bonus2/gl.po
-share/games/supertux2/levels/bonus2/he.po
-share/games/supertux2/levels/bonus2/hi_IN.po
-share/games/supertux2/levels/bonus2/hr.po
-share/games/supertux2/levels/bonus2/hu.po
-share/games/supertux2/levels/bonus2/id.po
-share/games/supertux2/levels/bonus2/info
-share/games/supertux2/levels/bonus2/it.po
-share/games/supertux2/levels/bonus2/ja.po
-share/games/supertux2/levels/bonus2/jbo.po
-share/games/supertux2/levels/bonus2/km.po
-share/games/supertux2/levels/bonus2/ko.po
-share/games/supertux2/levels/bonus2/la.po
-share/games/supertux2/levels/bonus2/level1.stl
-share/games/supertux2/levels/bonus2/level10.stl
-share/games/supertux2/levels/bonus2/level11.stl
-share/games/supertux2/levels/bonus2/level12.stl
-share/games/supertux2/levels/bonus2/level13.stl
-share/games/supertux2/levels/bonus2/level14.stl
-share/games/supertux2/levels/bonus2/level15.stl
-share/games/supertux2/levels/bonus2/level16.stl
-share/games/supertux2/levels/bonus2/level17.stl
-share/games/supertux2/levels/bonus2/level18.stl
-share/games/supertux2/levels/bonus2/level19.stl
-share/games/supertux2/levels/bonus2/level2.stl
-share/games/supertux2/levels/bonus2/level20.stl
-share/games/supertux2/levels/bonus2/level21.stl
-share/games/supertux2/levels/bonus2/level22.stl
-share/games/supertux2/levels/bonus2/level23.stl
-share/games/supertux2/levels/bonus2/level24.stl
-share/games/supertux2/levels/bonus2/level25.stl
-share/games/supertux2/levels/bonus2/level26.stl
-share/games/supertux2/levels/bonus2/level27.stl
-share/games/supertux2/levels/bonus2/level28.stl
-share/games/supertux2/levels/bonus2/level3.stl
-share/games/supertux2/levels/bonus2/level4.stl
-share/games/supertux2/levels/bonus2/level5.stl
-share/games/supertux2/levels/bonus2/level6.stl
-share/games/supertux2/levels/bonus2/level7.stl
-share/games/supertux2/levels/bonus2/level8.stl
-share/games/supertux2/levels/bonus2/level9.stl
-share/games/supertux2/levels/bonus2/lt.po
-share/games/supertux2/levels/bonus2/messages.pot
-share/games/supertux2/levels/bonus2/ml.po
-share/games/supertux2/levels/bonus2/ms_MY.po
-share/games/supertux2/levels/bonus2/nb.po
-share/games/supertux2/levels/bonus2/nds.po
-share/games/supertux2/levels/bonus2/ne.po
-share/games/supertux2/levels/bonus2/nl.po
-share/games/supertux2/levels/bonus2/nn.po
-share/games/supertux2/levels/bonus2/pl.po
-share/games/supertux2/levels/bonus2/pt.po
-share/games/supertux2/levels/bonus2/pt_BR.po
-share/games/supertux2/levels/bonus2/ro.po
-share/games/supertux2/levels/bonus2/ru.po
-share/games/supertux2/levels/bonus2/sk.po
-share/games/supertux2/levels/bonus2/sl.po
-share/games/supertux2/levels/bonus2/sq.po
-share/games/supertux2/levels/bonus2/sr.po
-share/games/supertux2/levels/bonus2/sv.po
-share/games/supertux2/levels/bonus2/te.po
-share/games/supertux2/levels/bonus2/tr.po
-share/games/supertux2/levels/bonus2/tt.po
-share/games/supertux2/levels/bonus2/uk.po
-share/games/supertux2/levels/bonus2/uz.po
-share/games/supertux2/levels/bonus2/vi.po
-share/games/supertux2/levels/bonus2/worldmap.stwm
-share/games/supertux2/levels/bonus2/zh_CN.po
-share/games/supertux2/levels/bonus2/zh_TW.po
-share/games/supertux2/levels/bonus3/-89-2_degrees.stl
-share/games/supertux2/levels/bonus3/Global_Warming.stl
-share/games/supertux2/levels/bonus3/One Night in the Sky.stl
-share/games/supertux2/levels/bonus3/abandoned_castle.stl
-share/games/supertux2/levels/bonus3/af_ZA.po
-share/games/supertux2/levels/bonus3/another_cold_day.stl
-share/games/supertux2/levels/bonus3/antarctic_rain.stl
-share/games/supertux2/levels/bonus3/ar.po
-share/games/supertux2/levels/bonus3/az.po
-share/games/supertux2/levels/bonus3/be.po
-share/games/supertux2/levels/bonus3/bg.po
-share/games/supertux2/levels/bonus3/br.po
-share/games/supertux2/levels/bonus3/but_no_one_can_stop_it.stl
-share/games/supertux2/levels/bonus3/ca.po
-share/games/supertux2/levels/bonus3/cant_climb_higher_clouds.stl
-share/games/supertux2/levels/bonus3/castle_light+darkness-v3.stl
-share/games/supertux2/levels/bonus3/cave_run.stl
-share/games/supertux2/levels/bonus3/cavern_v2.stl
-share/games/supertux2/levels/bonus3/changelog.txt
-share/games/supertux2/levels/bonus3/cmn.po
-share/games/supertux2/levels/bonus3/coconut_fortress.stl
-share/games/supertux2/levels/bonus3/credits.txt
-share/games/supertux2/levels/bonus3/crystal sunset.stl
-share/games/supertux2/levels/bonus3/crystal.stl
-share/games/supertux2/levels/bonus3/crystal_beauty.stl
-share/games/supertux2/levels/bonus3/crystal_cataclysm.stl
-share/games/supertux2/levels/bonus3/crystalfields.stl
-share/games/supertux2/levels/bonus3/cs.po
-share/games/supertux2/levels/bonus3/da.po
-share/games/supertux2/levels/bonus3/dark_castle-v2.stl
-share/games/supertux2/levels/bonus3/dark_castle.stl
-share/games/supertux2/levels/bonus3/de.po
-share/games/supertux2/levels/bonus3/deep_deeper.stl
-share/games/supertux2/levels/bonus3/deepest.stl
-share/games/supertux2/levels/bonus3/default.nut
-share/games/supertux2/levels/bonus3/dungeon_island/dungeon1.stl
-share/games/supertux2/levels/bonus3/dungeon_island/dungeon2.stl
-share/games/supertux2/levels/bonus3/dungeon_island/going_down.stl
-share/games/supertux2/levels/bonus3/el.po
-share/games/supertux2/levels/bonus3/entering_castle.stl
-share/games/supertux2/levels/bonus3/eo.po
-share/games/supertux2/levels/bonus3/es.po
-share/games/supertux2/levels/bonus3/es_AR.po
-share/games/supertux2/levels/bonus3/et.po
-share/games/supertux2/levels/bonus3/eu.po
-share/games/supertux2/levels/bonus3/fi.po
-share/games/supertux2/levels/bonus3/flowers.stl
-share/games/supertux2/levels/bonus3/fr.po
-share/games/supertux2/levels/bonus3/gd.po
-share/games/supertux2/levels/bonus3/gl.po
-share/games/supertux2/levels/bonus3/glaciers.stl
-share/games/supertux2/levels/bonus3/hanging roof.stl
-share/games/supertux2/levels/bonus3/he.po
-share/games/supertux2/levels/bonus3/hi_IN.po
-share/games/supertux2/levels/bonus3/hilly_landscape.stl
-share/games/supertux2/levels/bonus3/hr.po
-share/games/supertux2/levels/bonus3/hu.po
-share/games/supertux2/levels/bonus3/id.po
-share/games/supertux2/levels/bonus3/in_the_spring.stl
-share/games/supertux2/levels/bonus3/info
-share/games/supertux2/levels/bonus3/it.po
-share/games/supertux2/levels/bonus3/its_getting_unfinishable.stl
-share/games/supertux2/levels/bonus3/ja.po
-share/games/supertux2/levels/bonus3/jbo.po
-share/games/supertux2/levels/bonus3/km.po
-share/games/supertux2/levels/bonus3/ko.po
-share/games/supertux2/levels/bonus3/la.po
-share/games/supertux2/levels/bonus3/light_in_the_darkness.stl
-share/games/supertux2/levels/bonus3/lt.po
-share/games/supertux2/levels/bonus3/messages.pot
-share/games/supertux2/levels/bonus3/ml.po
-share/games/supertux2/levels/bonus3/ms_MY.po
-share/games/supertux2/levels/bonus3/nb.po
-share/games/supertux2/levels/bonus3/nds.po
-share/games/supertux2/levels/bonus3/ne.po
-share/games/supertux2/levels/bonus3/niv-1.1.stl
-share/games/supertux2/levels/bonus3/niv-2.1.stl
-share/games/supertux2/levels/bonus3/niv-3.stl
-share/games/supertux2/levels/bonus3/nl.po
-share/games/supertux2/levels/bonus3/nn.po
-share/games/supertux2/levels/bonus3/over_the_ocean.stl
-share/games/supertux2/levels/bonus3/pinksnow.stl
-share/games/supertux2/levels/bonus3/pl.po
-share/games/supertux2/levels/bonus3/pt.po
-share/games/supertux2/levels/bonus3/pt_BR.po
-share/games/supertux2/levels/bonus3/red_alert_forest.stl
-share/games/supertux2/levels/bonus3/ro.po
-share/games/supertux2/levels/bonus3/ru.po
-share/games/supertux2/levels/bonus3/sever_escape.stl
-share/games/supertux2/levels/bonus3/shakespeare-rain.stl
-share/games/supertux2/levels/bonus3/shakespeare-rain_antarctic.stl
-share/games/supertux2/levels/bonus3/sk.po
-share/games/supertux2/levels/bonus3/sl.po
-share/games/supertux2/levels/bonus3/snowy_hill.stl
-share/games/supertux2/levels/bonus3/sq.po
-share/games/supertux2/levels/bonus3/sr.po
-share/games/supertux2/levels/bonus3/sv.po
-share/games/supertux2/levels/bonus3/three_frosty_icebergs.stl
-share/games/supertux2/levels/bonus3/tr.po
-share/games/supertux2/levels/bonus3/tt.po
-share/games/supertux2/levels/bonus3/uk.po
-share/games/supertux2/levels/bonus3/under ice.stl
-share/games/supertux2/levels/bonus3/uz.po
-share/games/supertux2/levels/bonus3/vi.po
-share/games/supertux2/levels/bonus3/worldmap.stwm
-share/games/supertux2/levels/bonus3/zh_CN.po
-share/games/supertux2/levels/bonus3/zh_TW.po
-share/games/supertux2/levels/bonus4/A_Narrow_Path.stl
-share/games/supertux2/levels/bonus4/Beginning_The_Journey.stl
-share/games/supertux2/levels/bonus4/Cave_of_Dreams.stl
-share/games/supertux2/levels/bonus4/Cold_Forest.stl
-share/games/supertux2/levels/bonus4/Crystal_Mania.stl
-share/games/supertux2/levels/bonus4/Deeper_Into_The_Mountains.stl
-share/games/supertux2/levels/bonus4/Feeling_The_Nature.stl
-share/games/supertux2/levels/bonus4/Fog_And_Mist.stl
-share/games/supertux2/levels/bonus4/Forest_Mountains.stl
-share/games/supertux2/levels/bonus4/Generic_Snow_Level.stl
-share/games/supertux2/levels/bonus4/Glacier_Danger.stl
-share/games/supertux2/levels/bonus4/Halloween_Fields.stl
-share/games/supertux2/levels/bonus4/Its_Halloween_Time.stl
-share/games/supertux2/levels/bonus4/Lets_Climb_That_Mountain.stl
-share/games/supertux2/levels/bonus4/Night_Terrors.stl
-share/games/supertux2/levels/bonus4/Penguin_In_The_Bushes.stl
-share/games/supertux2/levels/bonus4/Rainy_Swamps.stl
-share/games/supertux2/levels/bonus4/Sky_High.stl
-share/games/supertux2/levels/bonus4/SnowMansLand.stl
-share/games/supertux2/levels/bonus4/Snowy_Sunset.stl
-share/games/supertux2/levels/bonus4/Some_Icy_Path.stl
-share/games/supertux2/levels/bonus4/Spooky_Mansion.stl
-share/games/supertux2/levels/bonus4/Stormy_Night.stl
-share/games/supertux2/levels/bonus4/Sunshine_Valley.stl
-share/games/supertux2/levels/bonus4/The_Way_Of_The_Snow.stl
-share/games/supertux2/levels/bonus4/Too_Much_Water.stl
-share/games/supertux2/levels/bonus4/Two_Tiny_Towers.stl
-share/games/supertux2/levels/bonus4/af_ZA.po
-share/games/supertux2/levels/bonus4/bg.po
-share/games/supertux2/levels/bonus4/cs.po
-share/games/supertux2/levels/bonus4/da.po
-share/games/supertux2/levels/bonus4/de.po
-share/games/supertux2/levels/bonus4/es.po
-share/games/supertux2/levels/bonus4/es_AR.po
-share/games/supertux2/levels/bonus4/eu.po
-share/games/supertux2/levels/bonus4/fi.po
-share/games/supertux2/levels/bonus4/fr.po
-share/games/supertux2/levels/bonus4/gd.po
-share/games/supertux2/levels/bonus4/gl.po
-share/games/supertux2/levels/bonus4/hu.po
-share/games/supertux2/levels/bonus4/info
-share/games/supertux2/levels/bonus4/it.po
-share/games/supertux2/levels/bonus4/ja.po
-share/games/supertux2/levels/bonus4/ko.po
-share/games/supertux2/levels/bonus4/lt.po
-share/games/supertux2/levels/bonus4/messages.pot
-share/games/supertux2/levels/bonus4/ms_MY.po
-share/games/supertux2/levels/bonus4/nl.po
-share/games/supertux2/levels/bonus4/nn.po
-share/games/supertux2/levels/bonus4/pl.po
-share/games/supertux2/levels/bonus4/pt.po
-share/games/supertux2/levels/bonus4/pt_BR.po
-share/games/supertux2/levels/bonus4/ro.po
-share/games/supertux2/levels/bonus4/ru.po
-share/games/supertux2/levels/bonus4/sl.po
-share/games/supertux2/levels/bonus4/sv.po
-share/games/supertux2/levels/bonus4/tr.po
-share/games/supertux2/levels/bonus4/worldmap.stwm
-share/games/supertux2/levels/bonus4/zh_TW.po
-share/games/supertux2/levels/christmas2016/christmas1.stl
-share/games/supertux2/levels/christmas2016/christmas2.stl
-share/games/supertux2/levels/christmas2016/christmas3.stl
-share/games/supertux2/levels/christmas2016/info
-share/games/supertux2/levels/christmas2016/intro.stl
-share/games/supertux2/levels/christmas2016/intro.txt
-share/games/supertux2/levels/christmas2016/ko.po
-share/games/supertux2/levels/christmas2016/messages.pot
-share/games/supertux2/levels/christmas2016/outro.stl
-share/games/supertux2/levels/christmas2016/outro.txt
-share/games/supertux2/levels/christmas2016/worldmap.stwm
-share/games/supertux2/levels/community2016/Ancient_Ruins (RustyBox).stl
-share/games/supertux2/levels/community2016/By_Arctic_Water (jojo141948).stl
-share/games/supertux2/levels/community2016/Castle_Life (Serano).stl
-share/games/supertux2/levels/community2016/Double_Problems (herobrine).stl
-share/games/supertux2/levels/community2016/Entrance_To_Cave (gelada).stl
-share/games/supertux2/levels/community2016/Entrance_To_Lava_Castle (herobrine).stl
-share/games/supertux2/levels/community2016/HMS_Snowballs_Ahoy (Vellidragon).stl
-share/games/supertux2/levels/community2016/Ice_Under_Water (adharsh).stl
-share/games/supertux2/levels/community2016/Into_The_Palace (ThomyW).stl
-share/games/supertux2/levels/community2016/Is_The_Biggest_Fish (cookie monster).stl
-share/games/supertux2/levels/community2016/Problem_With_Green (herobrine).stl
-share/games/supertux2/levels/community2016/Sunny_Hills (Serano).stl
-share/games/supertux2/levels/community2016/The_Missing_Link (Serano).stl
-share/games/supertux2/levels/community2016/The_Mountains (gelada).stl
-share/games/supertux2/levels/community2016/The_Strange_Thing (herobrine).stl
-share/games/supertux2/levels/community2016/Uncontrolled_Lift (gelada).stl
-share/games/supertux2/levels/community2016/Under_The_Water (davide).stl
-share/games/supertux2/levels/community2016/Up_Or_Down (Serano).stl
-share/games/supertux2/levels/community2016/Welcome_To_Icy_Island (gelada).stl
-share/games/supertux2/levels/community2016/ach.po
-share/games/supertux2/levels/community2016/af_ZA.po
-share/games/supertux2/levels/community2016/ar.po
-share/games/supertux2/levels/community2016/ast_ES.po
-share/games/supertux2/levels/community2016/az.po
-share/games/supertux2/levels/community2016/be.po
-share/games/supertux2/levels/community2016/bg.po
-share/games/supertux2/levels/community2016/bn.po
-share/games/supertux2/levels/community2016/br.po
-share/games/supertux2/levels/community2016/ca.po
-share/games/supertux2/levels/community2016/cmn.po
-share/games/supertux2/levels/community2016/cs.po
-share/games/supertux2/levels/community2016/cy.po
-share/games/supertux2/levels/community2016/da.po
-share/games/supertux2/levels/community2016/de.po
-share/games/supertux2/levels/community2016/el.po
-share/games/supertux2/levels/community2016/eo.po
-share/games/supertux2/levels/community2016/es.po
-share/games/supertux2/levels/community2016/es_AR.po
-share/games/supertux2/levels/community2016/et.po
-share/games/supertux2/levels/community2016/eu.po
-share/games/supertux2/levels/community2016/fa.po
-share/games/supertux2/levels/community2016/fa_IR.po
-share/games/supertux2/levels/community2016/fi.po
-share/games/supertux2/levels/community2016/fr.po
-share/games/supertux2/levels/community2016/fr_CA.po
-share/games/supertux2/levels/community2016/gd.po
-share/games/supertux2/levels/community2016/gl.po
-share/games/supertux2/levels/community2016/he.po
-share/games/supertux2/levels/community2016/hi_IN.po
-share/games/supertux2/levels/community2016/hr.po
-share/games/supertux2/levels/community2016/hu.po
-share/games/supertux2/levels/community2016/hy.po
-share/games/supertux2/levels/community2016/id.po
-share/games/supertux2/levels/community2016/info
-share/games/supertux2/levels/community2016/is.po
-share/games/supertux2/levels/community2016/it.po
-share/games/supertux2/levels/community2016/ja.po
-share/games/supertux2/levels/community2016/jbo.po
-share/games/supertux2/levels/community2016/km.po
-share/games/supertux2/levels/community2016/ko.po
-share/games/supertux2/levels/community2016/la.po
-share/games/supertux2/levels/community2016/lt.po
-share/games/supertux2/levels/community2016/messages.pot
-share/games/supertux2/levels/community2016/ml.po
-share/games/supertux2/levels/community2016/ms_MY.po
-share/games/supertux2/levels/community2016/nb.po
-share/games/supertux2/levels/community2016/nds.po
-share/games/supertux2/levels/community2016/ne.po
-share/games/supertux2/levels/community2016/nl.po
-share/games/supertux2/levels/community2016/nn.po
-share/games/supertux2/levels/community2016/pl.po
-share/games/supertux2/levels/community2016/pt.po
-share/games/supertux2/levels/community2016/pt_BR.po
-share/games/supertux2/levels/community2016/ro.po
-share/games/supertux2/levels/community2016/ru.po
-share/games/supertux2/levels/community2016/sk.po
-share/games/supertux2/levels/community2016/sl.po
-share/games/supertux2/levels/community2016/sq.po
-share/games/supertux2/levels/community2016/sr.po
-share/games/supertux2/levels/community2016/sv.po
-share/games/supertux2/levels/community2016/ta.po
-share/games/supertux2/levels/community2016/te.po
-share/games/supertux2/levels/community2016/th_TH.po
-share/games/supertux2/levels/community2016/tr.po
-share/games/supertux2/levels/community2016/tt.po
-share/games/supertux2/levels/community2016/uk.po
-share/games/supertux2/levels/community2016/uz.po
-share/games/supertux2/levels/community2016/vi.po
-share/games/supertux2/levels/community2016/worldmap.stwm
-share/games/supertux2/levels/community2016/zh_CN.po
-share/games/supertux2/levels/community2016/zh_TW.po
-share/games/supertux2/levels/halloween2014/ar.po
-share/games/supertux2/levels/halloween2014/az.po
-share/games/supertux2/levels/halloween2014/be.po
-share/games/supertux2/levels/halloween2014/bg.po
-share/games/supertux2/levels/halloween2014/br.po
-share/games/supertux2/levels/halloween2014/ca.po
-share/games/supertux2/levels/halloween2014/cmn.po
-share/games/supertux2/levels/halloween2014/cs.po
-share/games/supertux2/levels/halloween2014/da.po
-share/games/supertux2/levels/halloween2014/de.po
-share/games/supertux2/levels/halloween2014/el.po
-share/games/supertux2/levels/halloween2014/eo.po
-share/games/supertux2/levels/halloween2014/es.po
-share/games/supertux2/levels/halloween2014/es_AR.po
-share/games/supertux2/levels/halloween2014/et.po
-share/games/supertux2/levels/halloween2014/eu.po
-share/games/supertux2/levels/halloween2014/fi.po
-share/games/supertux2/levels/halloween2014/fr.po
-share/games/supertux2/levels/halloween2014/gd.po
-share/games/supertux2/levels/halloween2014/gl.po
-share/games/supertux2/levels/halloween2014/halloween1.stl
-share/games/supertux2/levels/halloween2014/halloween2.stl
-share/games/supertux2/levels/halloween2014/halloween3.stl
-share/games/supertux2/levels/halloween2014/he.po
-share/games/supertux2/levels/halloween2014/hi_IN.po
-share/games/supertux2/levels/halloween2014/hr.po
-share/games/supertux2/levels/halloween2014/hu.po
-share/games/supertux2/levels/halloween2014/id.po
-share/games/supertux2/levels/halloween2014/info
-share/games/supertux2/levels/halloween2014/intro.stl
-share/games/supertux2/levels/halloween2014/intro.txt
-share/games/supertux2/levels/halloween2014/it.po
-share/games/supertux2/levels/halloween2014/ja.po
-share/games/supertux2/levels/halloween2014/jbo.po
-share/games/supertux2/levels/halloween2014/km.po
-share/games/supertux2/levels/halloween2014/ko.po
-share/games/supertux2/levels/halloween2014/la.po
-share/games/supertux2/levels/halloween2014/lt.po
-share/games/supertux2/levels/halloween2014/messages.pot
-share/games/supertux2/levels/halloween2014/ml.po
-share/games/supertux2/levels/halloween2014/mound.stl
-share/games/supertux2/levels/halloween2014/ms_MY.po
-share/games/supertux2/levels/halloween2014/nb.po
-share/games/supertux2/levels/halloween2014/nds.po
-share/games/supertux2/levels/halloween2014/ne.po
-share/games/supertux2/levels/halloween2014/nl.po
-share/games/supertux2/levels/halloween2014/nn.po
-share/games/supertux2/levels/halloween2014/outro.stl
-share/games/supertux2/levels/halloween2014/outro.txt
-share/games/supertux2/levels/halloween2014/pl.po
-share/games/supertux2/levels/halloween2014/pools.stl
-share/games/supertux2/levels/halloween2014/pt.po
-share/games/supertux2/levels/halloween2014/pt_BR.po
-share/games/supertux2/levels/halloween2014/ro.po
-share/games/supertux2/levels/halloween2014/ru.po
-share/games/supertux2/levels/halloween2014/sk.po
-share/games/supertux2/levels/halloween2014/sl.po
-share/games/supertux2/levels/halloween2014/sq.po
-share/games/supertux2/levels/halloween2014/sr.po
-share/games/supertux2/levels/halloween2014/sv.po
-share/games/supertux2/levels/halloween2014/te.po
-share/games/supertux2/levels/halloween2014/tr.po
-share/games/supertux2/levels/halloween2014/tt.po
-share/games/supertux2/levels/halloween2014/uk.po
-share/games/supertux2/levels/halloween2014/uz.po
-share/games/supertux2/levels/halloween2014/vi.po
-share/games/supertux2/levels/halloween2014/worldmap.stwm
-share/games/supertux2/levels/halloween2014/zh_CN.po
-share/games/supertux2/levels/halloween2014/zh_TW.po
share/games/supertux2/levels/misc/credits.stl
-share/games/supertux2/levels/misc/da.po
-share/games/supertux2/levels/misc/hu.po
share/games/supertux2/levels/misc/info
share/games/supertux2/levels/misc/menu.stl
+share/games/supertux2/levels/misc/menu_retro.stl
share/games/supertux2/levels/misc/messages.pot
-share/games/supertux2/levels/misc/messages.pot-e
-share/games/supertux2/levels/misc/nb.po
-share/games/supertux2/levels/misc/nn.po
-share/games/supertux2/levels/misc/pt.po
-share/games/supertux2/levels/misc/pt_BR.po
-share/games/supertux2/levels/misc/sl.po
+share/games/supertux2/levels/preload_worldselect.nut
share/games/supertux2/levels/revenge_in_redmond/antarctica.stl
+share/games/supertux2/levels/revenge_in_redmond/ar.po
+share/games/supertux2/levels/revenge_in_redmond/bg.po
+share/games/supertux2/levels/revenge_in_redmond/bs.po
+share/games/supertux2/levels/revenge_in_redmond/cs.po
+share/games/supertux2/levels/revenge_in_redmond/de.po
+share/games/supertux2/levels/revenge_in_redmond/es.po
+share/games/supertux2/levels/revenge_in_redmond/es_AR.po
+share/games/supertux2/levels/revenge_in_redmond/fi.po
+share/games/supertux2/levels/revenge_in_redmond/fr.po
+share/games/supertux2/levels/revenge_in_redmond/fr_CA.po
share/games/supertux2/levels/revenge_in_redmond/get_to_choppa.stl
+share/games/supertux2/levels/revenge_in_redmond/gl.po
+share/games/supertux2/levels/revenge_in_redmond/hr.po
share/games/supertux2/levels/revenge_in_redmond/info
+share/games/supertux2/levels/revenge_in_redmond/intro.stl
+share/games/supertux2/levels/revenge_in_redmond/intro.txt
+share/games/supertux2/levels/revenge_in_redmond/it.po
+share/games/supertux2/levels/revenge_in_redmond/ka.po
share/games/supertux2/levels/revenge_in_redmond/long_office_nights.stl
share/games/supertux2/levels/revenge_in_redmond/messages.pot
-share/games/supertux2/levels/revenge_in_redmond/messages.pot-e
+share/games/supertux2/levels/revenge_in_redmond/nl.po
+share/games/supertux2/levels/revenge_in_redmond/nn.po
+share/games/supertux2/levels/revenge_in_redmond/outro.stl
+share/games/supertux2/levels/revenge_in_redmond/outro.txt
+share/games/supertux2/levels/revenge_in_redmond/pt_BR.po
share/games/supertux2/levels/revenge_in_redmond/redmond_headquarters.stl
+share/games/supertux2/levels/revenge_in_redmond/ru.po
+share/games/supertux2/levels/revenge_in_redmond/sl.po
+share/games/supertux2/levels/revenge_in_redmond/sr.po
+share/games/supertux2/levels/revenge_in_redmond/sv.po
share/games/supertux2/levels/revenge_in_redmond/where_my_super_cape.stl
-share/games/supertux2/levels/revenge_in_redmond/who_is_dawn.stl
+share/games/supertux2/levels/revenge_in_redmond/who_is_gown.stl
share/games/supertux2/levels/revenge_in_redmond/worldmap.stwm
-share/games/supertux2/levels/test/info
-share/games/supertux2/levels/test/messages.pot
-share/games/supertux2/levels/test/swimming.stl
share/games/supertux2/levels/world1/23rd_airborne.stl
share/games/supertux2/levels/world1/above_arctic_skies.stl
share/games/supertux2/levels/world1/af_ZA.po
+share/games/supertux2/levels/world1/antarctic_outpost.stl
share/games/supertux2/levels/world1/ar.po
share/games/supertux2/levels/world1/az.po
-share/games/supertux2/levels/world1/be.po
share/games/supertux2/levels/world1/between_glaciers.stl
share/games/supertux2/levels/world1/bg.po
-share/games/supertux2/levels/world1/br.po
+share/games/supertux2/levels/world1/bouncy_mountainside.stl
+share/games/supertux2/levels/world1/bs.po
share/games/supertux2/levels/world1/ca.po
share/games/supertux2/levels/world1/castle_cutscene.nut
share/games/supertux2/levels/world1/castle_cutscene.stl
share/games/supertux2/levels/world1/castle_of_nolok.stl
-share/games/supertux2/levels/world1/cmn.po
+share/games/supertux2/levels/world1/crystal_mine.nut
share/games/supertux2/levels/world1/crystal_mine.stl
share/games/supertux2/levels/world1/cs.po
share/games/supertux2/levels/world1/da.po
share/games/supertux2/levels/world1/de.po
+share/games/supertux2/levels/world1/deep_dive_chill.stl
+share/games/supertux2/levels/world1/default.nut
share/games/supertux2/levels/world1/el.po
share/games/supertux2/levels/world1/end_of_tunnel.stl
share/games/supertux2/levels/world1/entrance_cave.stl
@@ -3651,43 +4663,35 @@ share/games/supertux2/levels/world1/eu.p
share/games/supertux2/levels/world1/fi.po
share/games/supertux2/levels/world1/fork_in_the_road.stl
share/games/supertux2/levels/world1/fr.po
+share/games/supertux2/levels/world1/fr_CA.po
share/games/supertux2/levels/world1/frosted_fields.stl
-share/games/supertux2/levels/world1/frozen_bridge.stl
share/games/supertux2/levels/world1/gd.po
share/games/supertux2/levels/world1/gl.po
share/games/supertux2/levels/world1/he.po
-share/games/supertux2/levels/world1/hi_IN.po
share/games/supertux2/levels/world1/hr.po
share/games/supertux2/levels/world1/hu.po
+share/games/supertux2/levels/world1/hy.po
share/games/supertux2/levels/world1/ice_in_the_hole.stl
-share/games/supertux2/levels/world1/icy_valley.stl
share/games/supertux2/levels/world1/id.po
share/games/supertux2/levels/world1/info
share/games/supertux2/levels/world1/into_stars.stl
share/games/supertux2/levels/world1/intro.nut
share/games/supertux2/levels/world1/intro.stl
+share/games/supertux2/levels/world1/is.po
share/games/supertux2/levels/world1/it.po
share/games/supertux2/levels/world1/ja.po
-share/games/supertux2/levels/world1/jbo.po
share/games/supertux2/levels/world1/journey_begins.stl
-share/games/supertux2/levels/world1/km.po
share/games/supertux2/levels/world1/ko.po
-share/games/supertux2/levels/world1/la.po
share/games/supertux2/levels/world1/living_inside_fridge.stl
-share/games/supertux2/levels/world1/lt.po
share/games/supertux2/levels/world1/messages.pot
-share/games/supertux2/levels/world1/messages.pot-e
-share/games/supertux2/levels/world1/miyamoto_monument.stl
-share/games/supertux2/levels/world1/ml.po
share/games/supertux2/levels/world1/more_snowballs.stl
share/games/supertux2/levels/world1/ms_MY.po
share/games/supertux2/levels/world1/nb.po
-share/games/supertux2/levels/world1/ne.po
share/games/supertux2/levels/world1/night_chill.stl
share/games/supertux2/levels/world1/nl.po
share/games/supertux2/levels/world1/nn.po
share/games/supertux2/levels/world1/or_just_me.stl
-share/games/supertux2/levels/world1/path_in_the_clouds.stl
+share/games/supertux2/levels/world1/path_in_clouds.stl
share/games/supertux2/levels/world1/pl.po
share/games/supertux2/levels/world1/pt.po
share/games/supertux2/levels/world1/pt_BR.po
@@ -3696,122 +4700,137 @@ share/games/supertux2/levels/world1/ru.p
share/games/supertux2/levels/world1/shattered_bridge.stl
share/games/supertux2/levels/world1/sk.po
share/games/supertux2/levels/world1/sl.po
+share/games/supertux2/levels/world1/slippery_slide.stl
share/games/supertux2/levels/world1/somewhat_smaller_bath.stl
share/games/supertux2/levels/world1/sq.po
share/games/supertux2/levels/world1/sr.po
share/games/supertux2/levels/world1/stone_cold.stl
share/games/supertux2/levels/world1/sv.po
+share/games/supertux2/levels/world1/te.po
share/games/supertux2/levels/world1/tr.po
share/games/supertux2/levels/world1/tt.po
share/games/supertux2/levels/world1/uk.po
share/games/supertux2/levels/world1/under_the_ice.stl
share/games/supertux2/levels/world1/uz.po
-share/games/supertux2/levels/world1/vi.po
-share/games/supertux2/levels/world1/via_nostalgica.stl
share/games/supertux2/levels/world1/welcome_antarctica.stl
share/games/supertux2/levels/world1/worldmap.nut
share/games/supertux2/levels/world1/worldmap.stwm
share/games/supertux2/levels/world1/yeti_boss.stl
share/games/supertux2/levels/world1/yeti_cutscene.nut
share/games/supertux2/levels/world1/yeti_cutscene.stl
+share/games/supertux2/levels/world1/yetiwin_cutscene.nut
+share/games/supertux2/levels/world1/yetiwin_cutscene.stl
share/games/supertux2/levels/world1/zh_CN.po
-share/games/supertux2/levels/world1/zh_TW.po
-share/games/supertux2/levels/world2/ancient_ruins.stl
+share/games/supertux2/levels/world2/ancient_ruin.stl
share/games/supertux2/levels/world2/ar.po
share/games/supertux2/levels/world2/az.po
-share/games/supertux2/levels/world2/be.po
-share/games/supertux2/levels/world2/beside_bushes.stl
share/games/supertux2/levels/world2/bg.po
share/games/supertux2/levels/world2/bouncy_coils.stl
-share/games/supertux2/levels/world2/br.po
-share/games/supertux2/levels/world2/bye_bye_forest.stl
+share/games/supertux2/levels/world2/bs.po
share/games/supertux2/levels/world2/ca.po
-share/games/supertux2/levels/world2/cmn.po
+share/games/supertux2/levels/world2/cave_patrol.stl
+share/games/supertux2/levels/world2/collapse_imminent.stl
+share/games/supertux2/levels/world2/corrupted_cutscene.nut
+share/games/supertux2/levels/world2/corrupted_cutscene.stl
share/games/supertux2/levels/world2/crumbling_path.stl
share/games/supertux2/levels/world2/cs.po
share/games/supertux2/levels/world2/da.po
-share/games/supertux2/levels/world2/darkness_awaits.stl
share/games/supertux2/levels/world2/de.po
+share/games/supertux2/levels/world2/default.nut
+share/games/supertux2/levels/world2/drop_ball.stl
share/games/supertux2/levels/world2/el.po
+share/games/supertux2/levels/world2/entangled_roots.stl
share/games/supertux2/levels/world2/eo.po
share/games/supertux2/levels/world2/es.po
share/games/supertux2/levels/world2/es_AR.po
share/games/supertux2/levels/world2/et.po
share/games/supertux2/levels/world2/eu.po
share/games/supertux2/levels/world2/fi.po
-share/games/supertux2/levels/world2/find_big_fish.stl
+share/games/supertux2/levels/world2/find_bigger_fish.stl
+share/games/supertux2/levels/world2/flooded_chambers.stl
+share/games/supertux2/levels/world2/floral_blossom.nut
+share/games/supertux2/levels/world2/floral_blossom.stl
+share/games/supertux2/levels/world2/forest_intro.nut
share/games/supertux2/levels/world2/forest_intro.stl
share/games/supertux2/levels/world2/fr.po
+share/games/supertux2/levels/world2/fr_CA.po
share/games/supertux2/levels/world2/gd.po
-share/games/supertux2/levels/world2/ghost_cutscene.stl
-share/games/supertux2/levels/world2/ghostforest.nut
-share/games/supertux2/levels/world2/ghostly_misery.stl
-share/games/supertux2/levels/world2/ghosttrees_challenges.stl
-share/games/supertux2/levels/world2/ghouls_lair.stl
+share/games/supertux2/levels/world2/ghosttree_boss.stl
+share/games/supertux2/levels/world2/ghosttree_cutscene.nut
+share/games/supertux2/levels/world2/ghosttree_cutscene.stl
+share/games/supertux2/levels/world2/ghosttreewin_cutscene.nut
+share/games/supertux2/levels/world2/ghosttreewin_cutscene.stl
share/games/supertux2/levels/world2/gl.po
share/games/supertux2/levels/world2/going_underground.stl
+share/games/supertux2/levels/world2/granito_village.stl
share/games/supertux2/levels/world2/he.po
-share/games/supertux2/levels/world2/hi_IN.po
+share/games/supertux2/levels/world2/hollow_earth.stl
+share/games/supertux2/levels/world2/home_dead_home.stl
share/games/supertux2/levels/world2/hr.po
share/games/supertux2/levels/world2/hu.po
-share/games/supertux2/levels/world2/i_spy_with_my_little_eye.stl
+share/games/supertux2/levels/world2/hy.po
share/games/supertux2/levels/world2/id.po
share/games/supertux2/levels/world2/info
+share/games/supertux2/levels/world2/is.po
share/games/supertux2/levels/world2/it.po
share/games/supertux2/levels/world2/ja.po
-share/games/supertux2/levels/world2/jbo.po
-share/games/supertux2/levels/world2/km.po
share/games/supertux2/levels/world2/ko.po
-share/games/supertux2/levels/world2/la.po
-share/games/supertux2/levels/world2/leaf_wind.stl
-share/games/supertux2/levels/world2/lost_village.stl
-share/games/supertux2/levels/world2/lt.po
+share/games/supertux2/levels/world2/lost_sanctuary.stl
share/games/supertux2/levels/world2/messages.pot
-share/games/supertux2/levels/world2/messages.pot-e
share/games/supertux2/levels/world2/ml.po
share/games/supertux2/levels/world2/mouldy_grotto.stl
+share/games/supertux2/levels/world2/mount_crushmore.stl
share/games/supertux2/levels/world2/ms_MY.po
share/games/supertux2/levels/world2/nb.po
-share/games/supertux2/levels/world2/ne.po
share/games/supertux2/levels/world2/nl.po
share/games/supertux2/levels/world2/nn.po
-share/games/supertux2/levels/world2/owls_again.stl
share/games/supertux2/levels/world2/owls_skydive_commando.stl
-share/games/supertux2/levels/world2/penguin_grow_trees.stl
+share/games/supertux2/levels/world2/penguin_on_tree.stl
share/games/supertux2/levels/world2/pl.po
share/games/supertux2/levels/world2/pt.po
share/games/supertux2/levels/world2/pt_BR.po
share/games/supertux2/levels/world2/ro.po
+share/games/supertux2/levels/world2/rock_roll.stl
+share/games/supertux2/levels/world2/root_for_you.stl
+share/games/supertux2/levels/world2/rooted_tower.stl
share/games/supertux2/levels/world2/ru.po
+share/games/supertux2/levels/world2/shallow_green.stl
share/games/supertux2/levels/world2/shocking.stl
share/games/supertux2/levels/world2/sk.po
share/games/supertux2/levels/world2/sl.po
share/games/supertux2/levels/world2/sq.po
+share/games/supertux2/levels/world2/square_root_agony.stl
share/games/supertux2/levels/world2/sr.po
+share/games/supertux2/levels/world2/sticks_stones.stl
+share/games/supertux2/levels/world2/striking_wood.stl
share/games/supertux2/levels/world2/sv.po
-share/games/supertux2/levels/world2/the_forest_is_rotting.stl
+share/games/supertux2/levels/world2/te.po
+share/games/supertux2/levels/world2/three_sheets_wind.stl
share/games/supertux2/levels/world2/through_dark.stl
-share/games/supertux2/levels/world2/tower_cutscene.stl
-share/games/supertux2/levels/world2/tower_of_ghosts.stl
share/games/supertux2/levels/world2/tr.po
share/games/supertux2/levels/world2/tt.po
share/games/supertux2/levels/world2/tux_builder.stl
-share/games/supertux2/levels/world2/tux_own_horror_show.stl
share/games/supertux2/levels/world2/uk.po
share/games/supertux2/levels/world2/uz.po
-share/games/supertux2/levels/world2/vi.po
-share/games/supertux2/levels/world2/walking_leaves.stl
share/games/supertux2/levels/world2/welcome_forest.stl
share/games/supertux2/levels/world2/wooden_roots.stl
+share/games/supertux2/levels/world2/worldmap.nut
share/games/supertux2/levels/world2/worldmap.stwm
+share/games/supertux2/levels/world2/worse_salmonella.stl
share/games/supertux2/levels/world2/zh_CN.po
-share/games/supertux2/levels/world2/zh_TW.po
+share/games/supertux2/levels/world3/info
+share/games/supertux2/levels/world3/messages.pot
+share/games/supertux2/levels/world3/worldmap.stwm
+share/games/supertux2/levels/world4/info
+share/games/supertux2/levels/world4/messages.pot
+share/games/supertux2/levels/world4/worldmap.stwm
share/games/supertux2/locale/af_ZA.po
share/games/supertux2/locale/ar.po
share/games/supertux2/locale/az.po
share/games/supertux2/locale/be.po
share/games/supertux2/locale/bg.po
share/games/supertux2/locale/br.po
+share/games/supertux2/locale/bs.po
share/games/supertux2/locale/ca.po
share/games/supertux2/locale/cmn.po
share/games/supertux2/locale/cs.po
@@ -3825,17 +4844,18 @@ share/games/supertux2/locale/et.po
share/games/supertux2/locale/eu.po
share/games/supertux2/locale/fi.po
share/games/supertux2/locale/fr.po
+share/games/supertux2/locale/fr_CA.po
share/games/supertux2/locale/gd.po
share/games/supertux2/locale/gl.po
share/games/supertux2/locale/he.po
share/games/supertux2/locale/hi_IN.po
share/games/supertux2/locale/hr.po
share/games/supertux2/locale/hu.po
+share/games/supertux2/locale/hy.po
share/games/supertux2/locale/id.po
+share/games/supertux2/locale/is.po
share/games/supertux2/locale/it.po
share/games/supertux2/locale/ja.po
-share/games/supertux2/locale/jbo.po
-share/games/supertux2/locale/km.po
share/games/supertux2/locale/ko.po
share/games/supertux2/locale/la.po
share/games/supertux2/locale/lt.po
@@ -3876,26 +4896,58 @@ share/games/supertux2/music/antarctic/bo
share/games/supertux2/music/antarctic/bossattack.ogg
share/games/supertux2/music/antarctic/cave.music
share/games/supertux2/music/antarctic/cave.ogg
+share/games/supertux2/music/antarctic/cavetheme.music
+share/games/supertux2/music/antarctic/cavetheme.ogg
+share/games/supertux2/music/antarctic/cavetheme_alt.music
+share/games/supertux2/music/antarctic/cavetheme_alt.ogg
share/games/supertux2/music/antarctic/chipdisko.music
share/games/supertux2/music/antarctic/chipdisko.ogg
+share/games/supertux2/music/antarctic/crystalmine_intro.music
+share/games/supertux2/music/antarctic/crystalmine_intro.ogg
+share/games/supertux2/music/antarctic/crystalmine_main.music
+share/games/supertux2/music/antarctic/crystalmine_main.ogg
+share/games/supertux2/music/antarctic/glacier.music
+share/games/supertux2/music/antarctic/glacier.ogg
share/games/supertux2/music/antarctic/jewels.music
share/games/supertux2/music/antarctic/jewels.ogg
+share/games/supertux2/music/antarctic/late_sunset.music
+share/games/supertux2/music/antarctic/late_sunset.ogg
+share/games/supertux2/music/antarctic/midday.music
+share/games/supertux2/music/antarctic/midday.ogg
+share/games/supertux2/music/antarctic/midday_alt.music
+share/games/supertux2/music/antarctic/midday_alt.ogg
+share/games/supertux2/music/antarctic/night.music
+share/games/supertux2/music/antarctic/night.ogg
share/games/supertux2/music/antarctic/salcon.music
share/games/supertux2/music/antarctic/salcon.ogg
+share/games/supertux2/music/antarctic/skylevel.music
+share/games/supertux2/music/antarctic/skylevel.ogg
+share/games/supertux2/music/antarctic/snowfort.music
+share/games/supertux2/music/antarctic/snowfort.ogg
+share/games/supertux2/music/antarctic/sunset.music
+share/games/supertux2/music/antarctic/sunset.ogg
+share/games/supertux2/music/antarctic/underwater.music
+share/games/supertux2/music/antarctic/underwater.ogg
share/games/supertux2/music/antarctic/voc-boss.music
share/games/supertux2/music/antarctic/voc-boss.ogg
share/games/supertux2/music/antarctic/voc-dark.music
share/games/supertux2/music/antarctic/voc-dark.ogg
share/games/supertux2/music/antarctic/voc-daytime.music
share/games/supertux2/music/antarctic/voc-daytime.ogg
-share/games/supertux2/music/antarctic/voc-daytime2.music
-share/games/supertux2/music/antarctic/voc-daytime2.ogg
share/games/supertux2/music/antarctic/voc-night.music
share/games/supertux2/music/antarctic/voc-night.ogg
+share/games/supertux2/music/antarctic/voc_night_alt.music
+share/games/supertux2/music/antarctic/voc_night_alt.ogg
+share/games/supertux2/music/antarctic/worldmap_ice.music
+share/games/supertux2/music/antarctic/worldmap_ice.ogg
+share/games/supertux2/music/antarctic/yetiboss.music
+share/games/supertux2/music/antarctic/yetiboss.ogg
share/games/supertux2/music/castle/darkforestkeep.music
share/games/supertux2/music/castle/darkforestkeep.ogg
share/games/supertux2/music/castle/fortress.music
share/games/supertux2/music/castle/fortress.ogg
+share/games/supertux2/music/castle/icecastle.music
+share/games/supertux2/music/castle/icecastle.ogg
share/games/supertux2/music/forest/beneath_the_rabbit_hole.music
share/games/supertux2/music/forest/beneath_the_rabbit_hole.ogg
share/games/supertux2/music/forest/bright_thunders.music
@@ -3904,9 +4956,12 @@ share/games/supertux2/music/forest/call_
share/games/supertux2/music/forest/call_of_the_winding_path.ogg
share/games/supertux2/music/forest/clavelian_march.music
share/games/supertux2/music/forest/clavelian_march.ogg
+share/games/supertux2/music/forest/counter_current.music
+share/games/supertux2/music/forest/counter_current.ogg
+share/games/supertux2/music/forest/deeply_rooted.music
+share/games/supertux2/music/forest/deeply_rooted.ogg
share/games/supertux2/music/forest/forest-cave.music
share/games/supertux2/music/forest/forest-cave.ogg
-share/games/supertux2/music/forest/forest-map.music
share/games/supertux2/music/forest/forest-sprint.music
share/games/supertux2/music/forest/forest-sprint.ogg
share/games/supertux2/music/forest/forest.music
@@ -3915,9 +4970,12 @@ share/games/supertux2/music/forest/fores
share/games/supertux2/music/forest/forest2.ogg
share/games/supertux2/music/forest/forest3.music
share/games/supertux2/music/forest/forest3.ogg
+share/games/supertux2/music/forest/forest_midday.music
+share/games/supertux2/music/forest/forest_midday.ogg
+share/games/supertux2/music/forest/forest_midday_alt.music
+share/games/supertux2/music/forest/forest_midday_alt.ogg
share/games/supertux2/music/forest/forest_theme.music
share/games/supertux2/music/forest/forest_theme.ogg
-share/games/supertux2/music/forest/forestmap.ogg
share/games/supertux2/music/forest/ghostforest.music
share/games/supertux2/music/forest/ghostforest.ogg
share/games/supertux2/music/forest/ghostforest2.music
@@ -3926,6 +4984,8 @@ share/games/supertux2/music/forest/ghost
share/games/supertux2/music/forest/ghostforest_map.ogg
share/games/supertux2/music/forest/greatgigantic.music
share/games/supertux2/music/forest/greatgigantic.ogg
+share/games/supertux2/music/forest/march_of_the_malevolent.music
+share/games/supertux2/music/forest/march_of_the_malevolent.ogg
share/games/supertux2/music/forest/new_forest_map.music
share/games/supertux2/music/forest/new_forest_map.ogg
share/games/supertux2/music/forest/shallow-green.music
@@ -3938,6 +4998,8 @@ share/games/supertux2/music/misc/battle_
share/games/supertux2/music/misc/battle_theme.ogg
share/games/supertux2/music/misc/bonuscave.music
share/games/supertux2/music/misc/bonuscave.ogg
+share/games/supertux2/music/misc/calm_ocean.music
+share/games/supertux2/music/misc/calm_ocean.ogg
share/games/supertux2/music/misc/christmas_theme.music
share/games/supertux2/music/misc/christmas_theme.ogg
share/games/supertux2/music/misc/credits.music
@@ -3946,6 +5008,7 @@ share/games/supertux2/music/misc/hallowe
share/games/supertux2/music/misc/halloween_1.ogg
share/games/supertux2/music/misc/intro.music
share/games/supertux2/music/misc/intro.ogg
+share/games/supertux2/music/misc/invincible.music
share/games/supertux2/music/misc/invincible.ogg
share/games/supertux2/music/misc/leveldone.ogg
share/games/supertux2/music/misc/theme.music
@@ -3958,6 +5021,8 @@ share/games/supertux2/music/retro/fortre
share/games/supertux2/music/retro/fortress_old.ogg
share/games/supertux2/music/retro/ice_music.music
share/games/supertux2/music/retro/ice_music.ogg
+share/games/supertux2/music/retro/theme_old.music
+share/games/supertux2/music/retro/theme_old.ogg
share/games/supertux2/music/retro/worldmap_old.music
share/games/supertux2/music/retro/worldmap_old.ogg
share/games/supertux2/music/tropical/saharan_penguin.music
@@ -3984,6 +5049,7 @@ share/games/supertux2/sounds/brick.wav
share/games/supertux2/sounds/coin.wav
share/games/supertux2/sounds/coin2.ogg
share/games/supertux2/sounds/coins_cleared.ogg
+share/games/supertux2/sounds/convert_to_mono.sh
share/games/supertux2/sounds/cracking.wav
share/games/supertux2/sounds/crystallo-pop.ogg
share/games/supertux2/sounds/crystallo-shardhit.ogg
@@ -3992,6 +5058,7 @@ share/games/supertux2/sounds/dartfire.wa
share/games/supertux2/sounds/darthit.wav
share/games/supertux2/sounds/door.wav
share/games/supertux2/sounds/empty.wav
+share/games/supertux2/sounds/evil_nolok_jingle.ogg
share/games/supertux2/sounds/excellent.wav
share/games/supertux2/sounds/explosion.wav
share/games/supertux2/sounds/fall.wav
@@ -4003,6 +5070,8 @@ share/games/supertux2/sounds/fizz.wav
share/games/supertux2/sounds/flame.wav
share/games/supertux2/sounds/flip.wav
share/games/supertux2/sounds/flop.ogg
+share/games/supertux2/sounds/ghoul_recovering.ogg
+share/games/supertux2/sounds/ghoul_stunned.ogg
share/games/supertux2/sounds/grow.ogg
share/games/supertux2/sounds/grow.wav
share/games/supertux2/sounds/grunts.ogg
@@ -4019,6 +5088,7 @@ share/games/supertux2/sounds/lava.wav
share/games/supertux2/sounds/lifeup.wav
share/games/supertux2/sounds/lightning.wav
share/games/supertux2/sounds/locked.ogg
+share/games/supertux2/sounds/metal_hit.ogg
share/games/supertux2/sounds/mr_tree.ogg
share/games/supertux2/sounds/mr_treehit.ogg
share/games/supertux2/sounds/normalize.sh
@@ -4045,7 +5115,9 @@ share/games/supertux2/sounds/thunder.wav
share/games/supertux2/sounds/ticking.wav
share/games/supertux2/sounds/totem.ogg
share/games/supertux2/sounds/trampoline.wav
+share/games/supertux2/sounds/tree_hit.ogg
share/games/supertux2/sounds/tree_howling.ogg
+share/games/supertux2/sounds/tree_pinch.ogg
share/games/supertux2/sounds/tree_suck.ogg
share/games/supertux2/sounds/turnkey.ogg
share/games/supertux2/sounds/upgrade.wav
@@ -4055,15 +5127,18 @@ share/games/supertux2/sounds/welldone.og
share/games/supertux2/sounds/willocatch.wav
share/games/supertux2/sounds/willowisp.wav
share/games/supertux2/sounds/wood.wav
-share/games/supertux2/sounds/yeti_finish.ogg
share/games/supertux2/sounds/yeti_gna.wav
share/games/supertux2/sounds/yeti_roar.wav
+share/games/supertux2/sounds/yeti_throw1.wav
+share/games/supertux2/sounds/yeti_throw2.wav
+share/games/supertux2/sounds/yeti_throw3.wav
+share/games/supertux2/sounds/yeti_throw_big.wav
share/games/supertux2/speech/penny_runt_01.ogg
share/games/supertux2/speech/tux_hello.ogg
share/games/supertux2/speech/tux_murp_01.ogg
share/games/supertux2/speech/tux_rap.ogg
share/games/supertux2/speech/tux_upset.ogg
share/icons/hicolor/scalable/apps/supertux2.svg
-share/metainfo/supertux2.appdata.xml
+share/metainfo/org.supertuxproject.SuperTux.metainfo.xml
share/pixmaps/supertux.png
share/pixmaps/supertux.xpm
Index: pkgsrc/games/supertux/distinfo
diff -u pkgsrc/games/supertux/distinfo:1.10 pkgsrc/games/supertux/distinfo:1.11
--- pkgsrc/games/supertux/distinfo:1.10 Sun Sep 28 15:58:14 2025
+++ pkgsrc/games/supertux/distinfo Tue Mar 31 10:47:12 2026
@@ -1,15 +1,12 @@
-$NetBSD: distinfo,v 1.10 2025/09/28 15:58:14 adam Exp $
+$NetBSD: distinfo,v 1.11 2026/03/31 10:47:12 adam Exp $
-BLAKE2s (SuperTux-v0.6.3-Source.tar.gz) = 9a3227e7426b437b3e529654897a95fd52b2c15135ff1ae08957c37704d62d24
-SHA512 (SuperTux-v0.6.3-Source.tar.gz) = c6540bab1b3befbd975756031c4587e5569d9613d9539dc829c728b574d1a4da92816d6a7e68947b32963cc13d9b8b52312701c199138640e9f89e5885433798
-Size (SuperTux-v0.6.3-Source.tar.gz) = 182065428 bytes
-SHA1 (patch-CMakeLists.txt) = 5eb49b7df01402e08f744121dad4b4c533dbdc8f
-SHA1 (patch-external_SDL__ttf_CMakeLists.txt) = bc16239630b099b92f308497d052ff9352c2b8b7
+BLAKE2s (SuperTux-v0.7.0-Source.tar.gz) = 5294f7e605956dc2a5b46e66451af850d81074ff91bc12f0b60d78b1d128ca4b
+SHA512 (SuperTux-v0.7.0-Source.tar.gz) = 15bc4f84e1453be25ac3fa3496443e4e20d805f8c4d50148235f4dc82d188bef974fc720653cab36350d8b631c74539e4a74c33259fdaac6a516f44f8ed65297
+Size (SuperTux-v0.7.0-Source.tar.gz) = 292623271 bytes
+SHA1 (patch-CMakeLists.txt) = 6979c7a97eee2b4ee32d55103b37fa71dad4c42e
SHA1 (patch-external_SDL__ttf_configure) = da5e257847458e0a4410be3b03299062d167d441
-SHA1 (patch-external_partio__zip_zip__manager.hpp) = 9b91692444a55d8a4d3c5c7c82cc591ee52454c3
-SHA1 (patch-external_physfs_src_physfs__platform__unix.c) = 2c8c6d7be1e02098065f5b177038ef71bac35dc5
-SHA1 (patch-external_squirrel_CMakeLists.txt) = 5e294e66a85b4bec48f2c28a38aacb543a9ee389
-SHA1 (patch-external_tinygettext_CMakeLists.txt) = 63ee77cfad60ba524a9fbd6076a48f7d5b48034d
-SHA1 (patch-external_tinygettext_include_tinygettext_iconv.hpp) = 4e9cf8c227af45ca2ae149fb18f29a9ad2a31b98
-SHA1 (patch-src_audio_openal__sound__source.hpp) = 03e62244d028b215c4c173e0f71a2f2667065e48
+SHA1 (patch-mk_cmake_SuperTux_BuildCPack.cmake) = a2f8fe0ab25001d399058ed14fc6df5c7a3e241b
+SHA1 (patch-mk_cmake_SuperTux_BuildInstall.cmake) = c0096b9cf23bce06723ef45d43d3b95d22b0e303
+SHA1 (patch-src_audio_openal__sound__source.hpp) = 6fd1c3baba9b84515ab212154e2b72c5a3edca12
SHA1 (patch-src_audio_sound__manager.hpp) = 702188e8f2e4e9f0d515a1bc2943ac0dd42d6563
+SHA1 (patch-src_supertux_error__handler.cpp) = 6c245d3960ae4e91020848f4c5e1265fcc86aac8
Index: pkgsrc/games/supertux/patches/patch-CMakeLists.txt
diff -u pkgsrc/games/supertux/patches/patch-CMakeLists.txt:1.1 pkgsrc/games/supertux/patches/patch-CMakeLists.txt:1.2
--- pkgsrc/games/supertux/patches/patch-CMakeLists.txt:1.1 Sun Sep 28 15:58:14 2025
+++ pkgsrc/games/supertux/patches/patch-CMakeLists.txt Tue Mar 31 10:47:12 2026
@@ -1,34 +1,15 @@
-$NetBSD: patch-CMakeLists.txt,v 1.1 2025/09/28 15:58:14 adam Exp $
+$NetBSD: patch-CMakeLists.txt,v 1.2 2026/03/31 10:47:12 adam Exp $
-Do not look for boost_system library.
Fix packaging on Darwin.
---- CMakeLists.txt.orig 2021-12-22 23:01:57.000000000 +0000
+--- CMakeLists.txt.orig 2026-03-15 05:38:50.000000000 +0000
+++ CMakeLists.txt
-@@ -39,7 +39,7 @@ project(SUPERTUX)
-
- ### CMake configuration
-
--cmake_minimum_required(VERSION 3.1)
-+cmake_minimum_required(VERSION 3.5)
- if(COMMAND cmake_policy)
- cmake_policy(SET CMP0003 NEW)
- cmake_policy(SET CMP0008 NEW)
-@@ -171,7 +171,7 @@ if(ENABLE_BOOST_STATIC_LIBS)
- else(ENABLE_BOOST_STATIC_LIBS)
- set(Boost_USE_STATIC_LIBS FALSE)
- endif(ENABLE_BOOST_STATIC_LIBS)
--find_package(Boost REQUIRED COMPONENTS filesystem system date_time locale)
-+find_package(Boost REQUIRED COMPONENTS filesystem date_time locale)
- include_directories(SYSTEM ${Boost_INCLUDE_DIR})
- link_directories(${Boost_LIBRARY_DIRS})
-
-@@ -1188,7 +1188,7 @@ configure_file(data/levels/misc/menu.stl
- include(InstallRequiredSystemLibraries)
- set(DIRS ${Boost_LIBRARY_DIRS} ${CMAKE_CURRENT_BINARY_DIR}/external/squirrel ${CMAKE_CURRENT_BINARY_DIR}/external/tinygettext)
-
--if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT DISABLE_CPACK_BUNDLING)
-+if(FALSE)
- set(INFOPLIST_CFBUNDLEEXECUTABLE "SuperTux")
-
- find_package(png)
+@@ -83,7 +83,7 @@ if(WIN32 AND NOT UNIX)
+ set(INSTALL_SUBDIR_SHARE "data" CACHE STRING "Installation subdir for data")
+ set(INSTALL_SUBDIR_DOC "doc" CACHE STRING "Installation subdir for docs")
+ else()
+- if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND DISABLE_CPACK_BUNDLING)
++ if(FALSE)
+ set(INSTALL_SUBDIR_BIN "SuperTux.app/Contents/MacOS" CACHE STRING "Installation subdir for binaries")
+ set(INSTALL_SUBDIR_SHARE "SuperTux.app/Contents/Resources/data" CACHE STRING "Installation subdir for data")
+ set(INSTALL_SUBDIR_DOC "SuperTux.app/Contents/Resources" CACHE STRING "Installation subdir for docs")
Index: pkgsrc/games/supertux/patches/patch-src_audio_openal__sound__source.hpp
diff -u pkgsrc/games/supertux/patches/patch-src_audio_openal__sound__source.hpp:1.1 pkgsrc/games/supertux/patches/patch-src_audio_openal__sound__source.hpp:1.2
--- pkgsrc/games/supertux/patches/patch-src_audio_openal__sound__source.hpp:1.1 Sun Sep 28 15:58:14 2025
+++ pkgsrc/games/supertux/patches/patch-src_audio_openal__sound__source.hpp Tue Mar 31 10:47:13 2026
@@ -1,12 +1,12 @@
-$NetBSD: patch-src_audio_openal__sound__source.hpp,v 1.1 2025/09/28 15:58:14 adam Exp $
+$NetBSD: patch-src_audio_openal__sound__source.hpp,v 1.2 2026/03/31 10:47:13 adam Exp $
Fix build on Darwin.
---- src/audio/openal_sound_source.hpp.orig 2025-09-28 15:35:30.674258557 +0000
+--- src/audio/openal_sound_source.hpp.orig 2026-03-15 05:38:51.000000000 +0000
+++ src/audio/openal_sound_source.hpp
-@@ -17,7 +17,7 @@
- #ifndef HEADER_SUPERTUX_AUDIO_OPENAL_SOUND_SOURCE_HPP
- #define HEADER_SUPERTUX_AUDIO_OPENAL_SOUND_SOURCE_HPP
+@@ -16,7 +16,7 @@
+
+ #pragma once
-#include <al.h>
+#include <AL/al.h>
Added files:
Index: pkgsrc/games/supertux/patches/patch-mk_cmake_SuperTux_BuildCPack.cmake
diff -u /dev/null pkgsrc/games/supertux/patches/patch-mk_cmake_SuperTux_BuildCPack.cmake:1.1
--- /dev/null Tue Mar 31 10:47:13 2026
+++ pkgsrc/games/supertux/patches/patch-mk_cmake_SuperTux_BuildCPack.cmake Tue Mar 31 10:47:13 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-mk_cmake_SuperTux_BuildCPack.cmake,v 1.1 2026/03/31 10:47:13 adam Exp $
+
+On Darwin, don't use app bundle.
+
+--- mk/cmake/SuperTux/BuildCPack.cmake.orig 2026-03-31 09:00:50.296352874 +0000
++++ mk/cmake/SuperTux/BuildCPack.cmake
+@@ -3,7 +3,7 @@ option(DISABLE_CPACK_BUNDLING "Build an
+ include(InstallRequiredSystemLibraries)
+ set(DIRS ${CMAKE_CURRENT_BINARY_DIR}/external/tinygettext ${CMAKE_CURRENT_BINARY_DIR}/external/simplesquirrel)
+
+-if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT DISABLE_CPACK_BUNDLING)
++if(FALSE)
+ set(INFOPLIST_CFBUNDLEEXECUTABLE "SuperTux")
+
+ find_package(PNG)
Index: pkgsrc/games/supertux/patches/patch-mk_cmake_SuperTux_BuildInstall.cmake
diff -u /dev/null pkgsrc/games/supertux/patches/patch-mk_cmake_SuperTux_BuildInstall.cmake:1.1
--- /dev/null Tue Mar 31 10:47:13 2026
+++ pkgsrc/games/supertux/patches/patch-mk_cmake_SuperTux_BuildInstall.cmake Tue Mar 31 10:47:13 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-mk_cmake_SuperTux_BuildInstall.cmake,v 1.1 2026/03/31 10:47:13 adam Exp $
+
+On Darwin, don't use app bundle.
+
+--- mk/cmake/SuperTux/BuildInstall.cmake.orig 2026-03-31 08:54:44.486755619 +0000
++++ mk/cmake/SuperTux/BuildInstall.cmake
+@@ -22,7 +22,7 @@ if(WIN32 AND NOT UNIX)
+ endif()
+
+ else()
+- if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND DISABLE_CPACK_BUNDLING)
++ if(FALSE)
+
+ set(INFOPLIST_CFBUNDLEEXECUTABLE "supertux2")
+
Index: pkgsrc/games/supertux/patches/patch-src_supertux_error__handler.cpp
diff -u /dev/null pkgsrc/games/supertux/patches/patch-src_supertux_error__handler.cpp:1.1
--- /dev/null Tue Mar 31 10:47:13 2026
+++ pkgsrc/games/supertux/patches/patch-src_supertux_error__handler.cpp Tue Mar 31 10:47:13 2026
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_supertux_error__handler.cpp,v 1.1 2026/03/31 10:47:13 adam Exp $
+
+Fix build.
+
+--- src/supertux/error_handler.cpp.orig 2026-03-31 09:23:40.411242374 +0000
++++ src/supertux/error_handler.cpp
+@@ -69,7 +69,7 @@ static PCONTEXT pcontext = NULL;
+ static PCONTEXT pcontext = NULL;
+ #endif
+
+-#ifdef _GNU_SOURCE
++#ifdef __GLIBCXX__
+ # include <cxxabi.h>
+ #endif
+
Home |
Main Index |
Thread Index |
Old Index