Here is an update to widelands 1.2.

https://raw.githubusercontent.com/widelands/widelands/master/ChangeLog


Index: Makefile
===================================================================
RCS file: /cvs/ports/games/widelands/Makefile,v
retrieving revision 1.41
diff -u -p -u -p -r1.41 Makefile
--- Makefile    5 Dec 2023 10:34:28 -0000       1.41
+++ Makefile    13 Apr 2024 02:28:19 -0000
@@ -2,8 +2,7 @@ COMMENT =       economic and military simulati
 
 GH_ACCOUNT =   widelands
 GH_PROJECT =   widelands
-GH_TAGNAME =   v1.1
-REVISION =     0
+GH_TAGNAME =   v1.2
 CATEGORIES =   games
 
 HOMEPAGE =     https://www.widelands.org/
@@ -12,15 +11,16 @@ HOMEPAGE =  https://www.widelands.org/
 PERMIT_PACKAGE =       Yes
 
 WANTLIB += ${COMPILER_LIBCXX} GL GLEW SDL2 SDL2_image SDL2_mixer
-WANTLIB += SDL2_ttf c execinfo icudata icuuc intl m png z
+WANTLIB += SDL2_ttf c execinfo icudata icuuc intl m minizip png z
 
-# c++11
+# C++17
 COMPILER =     base-clang ports-gcc
 
 BUILD_DEPENDS =        devel/asio \
                devel/gettext,-tools
 
-LIB_DEPENDS =  devel/gettext,-runtime \
+LIB_DEPENDS =  archivers/minizip \
+               devel/gettext,-runtime \
                devel/sdl2-image \
                devel/sdl2-mixer \
                devel/sdl2-ttf \
@@ -42,7 +42,6 @@ CONFIGURE_ARGS =      -DWL_INSTALL_DATADIR=${
                        -DWL_INSTALL_BINDIR=${PREFIX}/bin \
                        -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON \
                        -DGTK_UPDATE_ICON_CACHE=False \
-                       -DOPTION_FORCE_EMBEDDED_MINIZIP=ON \
                        -Wno-dev
 
 DEBUG_PACKAGES = ${BUILD_PACKAGES}
Index: distinfo
===================================================================
RCS file: /cvs/ports/games/widelands/distinfo,v
retrieving revision 1.7
diff -u -p -u -p -r1.7 distinfo
--- distinfo    1 Dec 2023 17:26:10 -0000       1.7
+++ distinfo    13 Apr 2024 02:28:19 -0000
@@ -1,2 +1,2 @@
-SHA256 (widelands-1.1.tar.gz) = aFP889rsm2YAVpHlvLADJmNLrwmFrYmn5lEVAmEvZBI=
-SIZE (widelands-1.1.tar.gz) = 416104611
+SHA256 (widelands-1.2.tar.gz) = xr7TcXxUEnb77Yozrc4jCiY3KXWIxxkmj8uWPgdiEOI=
+SIZE (widelands-1.2.tar.gz) = 457713595
Index: patches/patch-CMakeLists_txt
===================================================================
RCS file: /cvs/ports/games/widelands/patches/patch-CMakeLists_txt,v
retrieving revision 1.8
diff -u -p -u -p -r1.8 patch-CMakeLists_txt
--- patches/patch-CMakeLists_txt        1 Dec 2023 17:26:12 -0000       1.8
+++ patches/patch-CMakeLists_txt        13 Apr 2024 02:28:19 -0000
@@ -4,25 +4,16 @@
 Index: CMakeLists.txt
 --- CMakeLists.txt.orig
 +++ CMakeLists.txt
-@@ -228,7 +228,7 @@ elseif(CMAKE_BUILD_TYPE STREQUAL "Release")
+@@ -190,7 +190,7 @@ elseif((CMAKE_BUILD_TYPE STREQUAL "Release") OR (CMAKE
    elseif(MSVC)
      set(WL_OPTIMIZE_FLAGS "/O2")
    else()
 -    set(WL_OPTIMIZE_FLAGS "-O3")
 +    set(WL_OPTIMIZE_FLAGS "-O2")
-   endif ()
-   if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") AND 
(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0))
-     message(WARNING "GCC <7.0.0 is known to cause segfaults in release 
builds. Please consider upgrading to GCC version 7 or newer or using Clang. 
Adding selected overrides to suppress reporting of known bugs.")
-@@ -243,7 +243,7 @@ elseif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo")
-   elseif(MSVC)
-     set(WL_OPTIMIZE_FLAGS "/O2")
-   else()
--    set(WL_OPTIMIZE_FLAGS "-O3")
-+    set(WL_OPTIMIZE_FLAGS "-O2")
-   endif ()
-   set(WL_DEBUG_FLAGS "-DNDEBUG -DNOPARACHUTE")
-   if(NOT OPTION_TSAN)
-@@ -562,15 +562,6 @@ install(
+   endif()
+   if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") AND 
(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.6))
+     message(WARNING "GCC <7.6.0 is known to cause segfaults in release 
builds. Please consider upgrading to GCC version 7.6 or newer or using Clang. 
Adding selected overrides to suppress reporting of known bugs.")
+@@ -544,15 +544,6 @@ install(
    DESTINATION ${WL_INSTALL_BASEDIR}
    CONFIGURATIONS Debug;Release;None
    COMPONENT CoreLicenseFiles
Index: patches/patch-cmake_WlFunctions_cmake
===================================================================
RCS file: patches/patch-cmake_WlFunctions_cmake
diff -N patches/patch-cmake_WlFunctions_cmake
--- patches/patch-cmake_WlFunctions_cmake       5 Dec 2023 10:34:30 -0000       
1.7
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,12 +0,0 @@
-Index: cmake/WlFunctions.cmake
---- cmake/WlFunctions.cmake.orig
-+++ cmake/WlFunctions.cmake
-@@ -101,7 +101,7 @@ macro(_common_compile_tasks)
-       endif()
-   endif()
- 
--  if(ARG_USES_ATOMIC AND NOT APPLE AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL 
"Clang"))
-+  if(ARG_USES_ATOMIC AND CMAKE_SYSTEM MATCHES "Linux" AND 
("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang"))
-     # clang on linux needs explicit linkage against standard library atomic
-     target_link_libraries(${NAME} atomic)
-   endif()
Index: patches/patch-src_graphic_texture_cc
===================================================================
RCS file: patches/patch-src_graphic_texture_cc
diff -N patches/patch-src_graphic_texture_cc
--- patches/patch-src_graphic_texture_cc        1 Dec 2023 17:26:12 -0000       
1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,38 +0,0 @@
-Backport Mesa 23.x fix from upstream.
-https://github.com/widelands/widelands/commit/48e5fd48c3f6418ebb53a145177d0417dc96451b
-Index: src/graphic/texture.cc
---- src/graphic/texture.cc.orig
-+++ src/graphic/texture.cc
-@@ -116,9 +116,11 @@ Texture::Texture(SDL_Surface* surface, bool intensity)
-       uint8_t bpp = surface->format->BytesPerPixel;
- 
-       if ((surface->format->palette != nullptr) || width() != surface->w || 
height() != surface->h ||
--          (bpp != 3 && bpp != 4) || is_bgr_surface(*surface->format)) {
-+          (bpp != 4) || is_bgr_surface(*surface->format)) {
-               SDL_Surface* converted = empty_sdl_surface(width(), height());
--              assert(converted);
-+              if (converted == nullptr) {
-+                      throw wexception("Failed to create SDL_Surface");
-+              }
-               SDL_SetSurfaceAlphaMod(converted, SDL_ALPHA_OPAQUE);
-               SDL_SetSurfaceBlendMode(converted, SDL_BLENDMODE_NONE);
-               SDL_SetSurfaceAlphaMod(surface, SDL_ALPHA_OPAQUE);
-@@ -127,16 +129,15 @@ Texture::Texture(SDL_Surface* surface, bool intensity)
-               SDL_FreeSurface(surface);
-               surface = converted;
-               bpp = surface->format->BytesPerPixel;
-+              assert(bpp == 4);
-       }
- 
--      const GLenum pixels_format = bpp == 4 ? GL_RGBA : GL_RGB;
--
-       SDL_LockSurface(surface);
- 
-       Gl::swap_rows(width(), height(), surface->pitch, bpp, 
static_cast<uint8_t*>(surface->pixels));
- 
-       glTexImage2D(GL_TEXTURE_2D, 0, static_cast<GLint>(intensity ? 
GL_INTENSITY : GL_RGBA), width(),
--                   height(), 0, pixels_format, GL_UNSIGNED_BYTE, 
surface->pixels);
-+                   height(), 0, GL_RGBA, GL_UNSIGNED_BYTE, surface->pixels);
- 
-       SDL_UnlockSurface(surface);
-       SDL_FreeSurface(surface);
Index: patches/patch-src_io_filesystem_zip_filesystem_h
===================================================================
RCS file: patches/patch-src_io_filesystem_zip_filesystem_h
diff -N patches/patch-src_io_filesystem_zip_filesystem_h
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-src_io_filesystem_zip_filesystem_h    13 Apr 2024 02:28:19 
-0000
@@ -0,0 +1,13 @@
+Fix build with minizip 4
+
+Index: src/io/filesystem/zip_filesystem.h
+--- src/io/filesystem/zip_filesystem.h.orig
++++ src/io/filesystem/zip_filesystem.h
+@@ -23,6 +23,7 @@
+ 
+ #include <unzip.h>
+ #include <zip.h>
++#include <zlib.h>
+ 
+ #include "io/filesystem/filesystem.h"
+ #include "io/streamread.h"
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/games/widelands/pkg/PLIST,v
retrieving revision 1.11
diff -u -p -u -p -r1.11 PLIST
--- pkg/PLIST   1 Dec 2023 17:26:14 -0000       1.11
+++ pkg/PLIST   13 Apr 2024 02:28:20 -0000
@@ -489,7 +489,6 @@ share/widelands/campaigns/emp04.wmf/scri
 share/widelands/campaigns/emp04.wmf/scripting/tribes/
 share/widelands/campaigns/emp04.wmf/scripting/tribes/brewery1/
 share/widelands/campaigns/emp04.wmf/scripting/tribes/brewery1/idle_0.5.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/brewery1/idle_00.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/brewery1/idle_1.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/brewery1/idle_2.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/brewery1/idle_4.png
@@ -498,7 +497,6 @@ share/widelands/campaigns/emp04.wmf/scri
 share/widelands/campaigns/emp04.wmf/scripting/tribes/brewery1/register.lua
 share/widelands/campaigns/emp04.wmf/scripting/tribes/farm1/
 share/widelands/campaigns/emp04.wmf/scripting/tribes/farm1/idle_0.5.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/farm1/idle_00.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/farm1/idle_1.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/farm1/idle_2.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/farm1/idle_4.png
@@ -507,7 +505,6 @@ share/widelands/campaigns/emp04.wmf/scri
 share/widelands/campaigns/emp04.wmf/scripting/tribes/farm1/register.lua
 share/widelands/campaigns/emp04.wmf/scripting/tribes/foresters_house1/
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/foresters_house1/idle_0.5.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/foresters_house1/idle_00.png
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/foresters_house1/idle_1.png
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/foresters_house1/idle_2.png
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/foresters_house1/idle_4.png
@@ -517,7 +514,6 @@ share/widelands/campaigns/emp04.wmf/scri
 share/widelands/campaigns/emp04.wmf/scripting/tribes/init.lua
 share/widelands/campaigns/emp04.wmf/scripting/tribes/lumberjacks_house1/
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/lumberjacks_house1/idle_0.5.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/lumberjacks_house1/idle_00.png
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/lumberjacks_house1/idle_1.png
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/lumberjacks_house1/idle_2.png
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/lumberjacks_house1/idle_4.png
@@ -527,8 +523,6 @@ share/widelands/campaigns/emp04.wmf/scri
 share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/
 share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/idle_0.5.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/idle_0.5_pc.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/idle_00.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/idle_00_pc.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/idle_1.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/idle_1_pc.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/idle_2.png
@@ -548,7 +542,6 @@ share/widelands/campaigns/emp04.wmf/scri
 share/widelands/campaigns/emp04.wmf/scripting/tribes/mill1/working_4_pc.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/temple_of_vesta/
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/temple_of_vesta/idle_0.5.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/temple_of_vesta/idle_00.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/temple_of_vesta/idle_1.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/temple_of_vesta/idle_2.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/temple_of_vesta/idle_4.png
@@ -557,7 +550,6 @@ share/widelands/campaigns/emp04.wmf/scri
 
share/widelands/campaigns/emp04.wmf/scripting/tribes/temple_of_vesta/register.lua
 share/widelands/campaigns/emp04.wmf/scripting/tribes/trainingcamp1/
 share/widelands/campaigns/emp04.wmf/scripting/tribes/trainingcamp1/idle_0.5.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/trainingcamp1/idle_00.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/trainingcamp1/idle_1.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/trainingcamp1/idle_2.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/trainingcamp1/idle_4.png
@@ -566,7 +558,6 @@ share/widelands/campaigns/emp04.wmf/scri
 share/widelands/campaigns/emp04.wmf/scripting/tribes/trainingcamp1/register.lua
 share/widelands/campaigns/emp04.wmf/scripting/tribes/well1/
 share/widelands/campaigns/emp04.wmf/scripting/tribes/well1/idle_0.5.png
-share/widelands/campaigns/emp04.wmf/scripting/tribes/well1/idle_00.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/well1/idle_1.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/well1/idle_2.png
 share/widelands/campaigns/emp04.wmf/scripting/tribes/well1/idle_4.png
@@ -621,7 +612,6 @@ share/widelands/campaigns/fri02.wmf/scri
 share/widelands/campaigns/fri02.wmf/scripting/tribes/init.lua
 share/widelands/campaigns/fri02.wmf/scripting/tribes/warehouse/
 share/widelands/campaigns/fri02.wmf/scripting/tribes/warehouse/idle_0.5.png
-share/widelands/campaigns/fri02.wmf/scripting/tribes/warehouse/idle_00.png
 share/widelands/campaigns/fri02.wmf/scripting/tribes/warehouse/idle_1.png
 share/widelands/campaigns/fri02.wmf/scripting/tribes/warehouse/idle_2.png
 share/widelands/campaigns/fri02.wmf/scripting/tribes/warehouse/idle_4.png
@@ -704,6 +694,35 @@ share/widelands/campaigns/fri04.wmf/scri
 
share/widelands/campaigns/fri04.wmf/scripting/tribes/empire_port_large/register.lua
 share/widelands/campaigns/fri04.wmf/scripting/tribes/init.lua
 share/widelands/campaigns/fri04.wmf/version
+share/widelands/campaigns/fri05.wmf/
+share/widelands/campaigns/fri05.wmf/binary/
+share/widelands/campaigns/fri05.wmf/binary/heights
+share/widelands/campaigns/fri05.wmf/binary/mapobjects
+share/widelands/campaigns/fri05.wmf/binary/resource
+share/widelands/campaigns/fri05.wmf/binary/terrain
+share/widelands/campaigns/fri05.wmf/elemental
+share/widelands/campaigns/fri05.wmf/objective
+share/widelands/campaigns/fri05.wmf/pics/
+share/widelands/campaigns/fri05.wmf/pics/background.jpg
+share/widelands/campaigns/fri05.wmf/pics/claus.png
+share/widelands/campaigns/fri05.wmf/pics/henneke.png
+share/widelands/campaigns/fri05.wmf/pics/ketelsen.png
+share/widelands/campaigns/fri05.wmf/pics/reebaud.png
+share/widelands/campaigns/fri05.wmf/player_names
+share/widelands/campaigns/fri05.wmf/player_position
+share/widelands/campaigns/fri05.wmf/port_spaces
+share/widelands/campaigns/fri05.wmf/scripting/
+share/widelands/campaigns/fri05.wmf/scripting/init.lua
+share/widelands/campaigns/fri05.wmf/scripting/init_p1.lua
+share/widelands/campaigns/fri05.wmf/scripting/init_p2.lua
+share/widelands/campaigns/fri05.wmf/scripting/mission_thread.lua
+share/widelands/campaigns/fri05.wmf/scripting/texts.lua
+share/widelands/campaigns/fri05.wmf/scripting/tribes/
+share/widelands/campaigns/fri05.wmf/scripting/tribes/helgoland/
+share/widelands/campaigns/fri05.wmf/scripting/tribes/helgoland/helgoland.png
+share/widelands/campaigns/fri05.wmf/scripting/tribes/helgoland/init.lua
+share/widelands/campaigns/fri05.wmf/scripting/tribes/helgoland/register.lua
+share/widelands/campaigns/fri05.wmf/version
 share/widelands/campaigns/tutorial01_basic_control.wmf/
 share/widelands/campaigns/tutorial01_basic_control.wmf/binary/
 share/widelands/campaigns/tutorial01_basic_control.wmf/binary/heights
@@ -920,6 +939,7 @@ share/widelands/images/players/player_po
 share/widelands/images/players/player_position_pc.png
 share/widelands/images/players/team.png
 share/widelands/images/players/team_pc.png
+share/widelands/images/plugin.png
 share/widelands/images/richtext/
 share/widelands/images/richtext/arrow-right.png
 share/widelands/images/ui_basic/
@@ -987,6 +1007,7 @@ share/widelands/images/wui/buildings/men
 share/widelands/images/wui/buildings/menu_unmute_this.png
 share/widelands/images/wui/buildings/menu_up_train.png
 share/widelands/images/wui/buildings/normal_priority_button.png
+share/widelands/images/wui/buildings/prefer_any.png
 share/widelands/images/wui/buildings/prefer_heroes.png
 share/widelands/images/wui/buildings/prefer_rookies.png
 share/widelands/images/wui/buildings/start_expedition.png
@@ -1025,6 +1046,7 @@ share/widelands/images/wui/editor/menus/
 share/widelands/images/wui/editor/menus/tools.png
 share/widelands/images/wui/editor/menus/toolsize.png
 share/widelands/images/wui/editor/menus/undo.png
+share/widelands/images/wui/editor/menus/upload.png
 share/widelands/images/wui/editor/no_ware.png
 share/widelands/images/wui/editor/sticky_list_item.png
 share/widelands/images/wui/editor/terrain_arable.png
@@ -1064,16 +1086,20 @@ share/widelands/images/wui/fieldaction/m
 share/widelands/images/wui/fieldaction/menu_tab_buildroad.png
 share/widelands/images/wui/fieldaction/menu_tab_buildsmall.png
 share/widelands/images/wui/fieldaction/menu_tab_buildwaterway.png
+share/widelands/images/wui/fieldaction/menu_tab_ferry_targets.png
+share/widelands/images/wui/fieldaction/menu_tab_ship_targets.png
 share/widelands/images/wui/fieldaction/menu_tab_target.png
 share/widelands/images/wui/fieldaction/menu_tab_watch.png
 share/widelands/images/wui/fieldaction/menu_unmark_removal.png
 share/widelands/images/wui/fieldaction/menu_watch_field.png
+share/widelands/images/wui/fieldaction/pinned_note.png
 share/widelands/images/wui/menu_abort.png
 share/widelands/images/wui/menu_okay.png
 share/widelands/images/wui/menus/
 share/widelands/images/wui/menus/CREDITS.txt
 share/widelands/images/wui/menus/chat.png
 share/widelands/images/wui/menus/diplomacy.png
+share/widelands/images/wui/menus/end_infinity.png
 share/widelands/images/wui/menus/exit.png
 share/widelands/images/wui/menus/gamespeed.png
 share/widelands/images/wui/menus/gamespeed_decrease.png
@@ -1090,6 +1116,8 @@ share/widelands/images/wui/menus/message
 share/widelands/images/wui/menus/message_old.png
 share/widelands/images/wui/menus/objectives.png
 share/widelands/images/wui/menus/options.png
+share/widelands/images/wui/menus/quicknav.png
+share/widelands/images/wui/menus/quicknav_set.png
 share/widelands/images/wui/menus/restart_scenario.png
 share/widelands/images/wui/menus/save_game.png
 share/widelands/images/wui/menus/show_workarea_overlap.png
@@ -1124,6 +1152,7 @@ share/widelands/images/wui/messages/mess
 share/widelands/images/wui/messages/message_selection_invert.png
 share/widelands/images/wui/messages/messages_warfare.png
 share/widelands/images/wui/minimap/
+share/widelands/images/wui/minimap/button_artifacts.png
 share/widelands/images/wui/minimap/button_bldns.png
 share/widelands/images/wui/minimap/button_flags.png
 share/widelands/images/wui/minimap/button_owner.png
@@ -1131,20 +1160,39 @@ share/widelands/images/wui/minimap/butto
 share/widelands/images/wui/minimap/button_terrn.png
 share/widelands/images/wui/minimap/button_zoom.png
 share/widelands/images/wui/overlays/
-share/widelands/images/wui/overlays/big.png
+share/widelands/images/wui/overlays/big_0.5.png
+share/widelands/images/wui/overlays/big_1.png
+share/widelands/images/wui/overlays/big_2.png
+share/widelands/images/wui/overlays/big_4.png
 share/widelands/images/wui/overlays/grid_marker.png
 share/widelands/images/wui/overlays/map_spot.png
-share/widelands/images/wui/overlays/medium.png
-share/widelands/images/wui/overlays/mine.png
-share/widelands/images/wui/overlays/port.png
+share/widelands/images/wui/overlays/medium_0.5.png
+share/widelands/images/wui/overlays/medium_1.png
+share/widelands/images/wui/overlays/medium_2.png
+share/widelands/images/wui/overlays/medium_4.png
+share/widelands/images/wui/overlays/mine_0.5.png
+share/widelands/images/wui/overlays/mine_1.png
+share/widelands/images/wui/overlays/mine_2.png
+share/widelands/images/wui/overlays/mine_4.png
+share/widelands/images/wui/overlays/port_0.5.png
+share/widelands/images/wui/overlays/port_1.png
+share/widelands/images/wui/overlays/port_2.png
+share/widelands/images/wui/overlays/port_4.png
 share/widelands/images/wui/overlays/port_hint.png
 share/widelands/images/wui/overlays/road_building_green.png
 share/widelands/images/wui/overlays/road_building_red.png
 share/widelands/images/wui/overlays/road_building_reddown.png
 share/widelands/images/wui/overlays/road_building_yellow.png
 share/widelands/images/wui/overlays/road_building_yellowdown.png
-share/widelands/images/wui/overlays/set_flag.png
-share/widelands/images/wui/overlays/small.png
+share/widelands/images/wui/overlays/set_flag_0.5.png
+share/widelands/images/wui/overlays/set_flag_1.png
+share/widelands/images/wui/overlays/set_flag_2.png
+share/widelands/images/wui/overlays/set_flag_4.png
+share/widelands/images/wui/overlays/small_0.5.png
+share/widelands/images/wui/overlays/small_1.png
+share/widelands/images/wui/overlays/small_2.png
+share/widelands/images/wui/overlays/small_4.png
+share/widelands/images/wui/overlays/special.png
 share/widelands/images/wui/overlays/targeted.png
 share/widelands/images/wui/overlays/waterway_building_down.png
 share/widelands/images/wui/overlays/waterway_building_even.png
@@ -1157,29 +1205,37 @@ share/widelands/images/wui/ship/menu_shi
 share/widelands/images/wui/ship/menu_ship_destination.png
 share/widelands/images/wui/ship/menu_ship_goto.png
 share/widelands/images/wui/ship/menu_ship_sink.png
+share/widelands/images/wui/ship/ship_attack.png
 share/widelands/images/wui/ship/ship_construct_port_space.png
 share/widelands/images/wui/ship/ship_explore_island_ccw.png
 share/widelands/images/wui/ship/ship_explore_island_cw.png
+share/widelands/images/wui/ship/ship_refit_transport.png
+share/widelands/images/wui/ship/ship_refit_warship.png
 share/widelands/images/wui/ship/ship_scout_e.png
 share/widelands/images/wui/ship/ship_scout_ne.png
 share/widelands/images/wui/ship/ship_scout_nw.png
 share/widelands/images/wui/ship/ship_scout_se.png
 share/widelands/images/wui/ship/ship_scout_sw.png
 share/widelands/images/wui/ship/ship_scout_w.png
+share/widelands/images/wui/ship/ship_stay.png
 share/widelands/images/wui/stats/
 share/widelands/images/wui/stats/genstats_artifacts.png
 share/widelands/images/wui/stats/genstats_casualties.png
+share/widelands/images/wui/stats/genstats_civil_blds_defeated.png
 share/widelands/images/wui/stats/genstats_civil_blds_lost.png
 share/widelands/images/wui/stats/genstats_kills.png
 share/widelands/images/wui/stats/genstats_landsize.png
 share/widelands/images/wui/stats/genstats_militarystrength.png
 share/widelands/images/wui/stats/genstats_msites_defeated.png
 share/widelands/images/wui/stats/genstats_msites_lost.png
+share/widelands/images/wui/stats/genstats_naval_losses.png
+share/widelands/images/wui/stats/genstats_naval_victories.png
 share/widelands/images/wui/stats/genstats_nrbuildings.png
 share/widelands/images/wui/stats/genstats_nrwares.png
 share/widelands/images/wui/stats/genstats_nrworkers.png
 share/widelands/images/wui/stats/genstats_points.png
 share/widelands/images/wui/stats/genstats_productivity.png
+share/widelands/images/wui/stats/genstats_ships.png
 share/widelands/images/wui/stats/genstats_territorial_big.png
 share/widelands/images/wui/stats/genstats_territorial_small.png
 share/widelands/images/wui/stats/genstats_trees.png
@@ -1226,6 +1282,7 @@ share/widelands/locale/ar/LC_MESSAGES/sc
 share/widelands/locale/ar/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ar/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ar/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ar/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ar/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ar/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ar/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1259,6 +1316,7 @@ share/widelands/locale/bg/LC_MESSAGES/sc
 share/widelands/locale/bg/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/bg/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/bg/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/bg/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/bg/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/bg/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/bg/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1292,6 +1350,7 @@ share/widelands/locale/br/LC_MESSAGES/sc
 share/widelands/locale/br/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/br/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/br/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/br/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/br/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/br/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/br/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1325,6 +1384,7 @@ share/widelands/locale/ca/LC_MESSAGES/sc
 share/widelands/locale/ca/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ca/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ca/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ca/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ca/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ca/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ca/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1358,6 +1418,7 @@ share/widelands/locale/cs/LC_MESSAGES/sc
 share/widelands/locale/cs/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/cs/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/cs/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/cs/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/cs/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/cs/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/cs/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1391,6 +1452,7 @@ share/widelands/locale/da/LC_MESSAGES/sc
 share/widelands/locale/da/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/da/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/da/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/da/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/da/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/da/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/da/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1424,6 +1486,7 @@ share/widelands/locale/de/LC_MESSAGES/sc
 share/widelands/locale/de/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/de/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/de/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/de/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/de/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/de/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/de/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1457,6 +1520,7 @@ share/widelands/locale/el/LC_MESSAGES/sc
 share/widelands/locale/el/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/el/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/el/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/el/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/el/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/el/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/el/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1490,6 +1554,7 @@ share/widelands/locale/en_GB/LC_MESSAGES
 share/widelands/locale/en_GB/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/en_GB/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/en_GB/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/en_GB/LC_MESSAGES/scenario_fri05.wmf.mo
 
share/widelands/locale/en_GB/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/en_GB/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/en_GB/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1523,6 +1588,7 @@ share/widelands/locale/en_US/LC_MESSAGES
 share/widelands/locale/en_US/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/en_US/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/en_US/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/en_US/LC_MESSAGES/scenario_fri05.wmf.mo
 
share/widelands/locale/en_US/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/en_US/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/en_US/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1556,6 +1622,7 @@ share/widelands/locale/eo/LC_MESSAGES/sc
 share/widelands/locale/eo/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/eo/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/eo/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/eo/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/eo/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/eo/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/eo/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1589,6 +1656,7 @@ share/widelands/locale/es/LC_MESSAGES/sc
 share/widelands/locale/es/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/es/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/es/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/es/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/es/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/es/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/es/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1622,6 +1690,7 @@ share/widelands/locale/eu/LC_MESSAGES/sc
 share/widelands/locale/eu/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/eu/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/eu/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/eu/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/eu/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/eu/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/eu/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1655,6 +1724,7 @@ share/widelands/locale/fa/LC_MESSAGES/sc
 share/widelands/locale/fa/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/fa/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/fa/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/fa/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/fa/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/fa/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/fa/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1688,6 +1758,7 @@ share/widelands/locale/fi/LC_MESSAGES/sc
 share/widelands/locale/fi/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/fi/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/fi/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/fi/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/fi/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/fi/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/fi/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1721,6 +1792,7 @@ share/widelands/locale/fr/LC_MESSAGES/sc
 share/widelands/locale/fr/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/fr/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/fr/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/fr/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/fr/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/fr/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/fr/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1754,6 +1826,7 @@ share/widelands/locale/fy/LC_MESSAGES/sc
 share/widelands/locale/fy/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/fy/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/fy/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/fy/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/fy/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/fy/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/fy/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1787,6 +1860,7 @@ share/widelands/locale/ga/LC_MESSAGES/sc
 share/widelands/locale/ga/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ga/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ga/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ga/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ga/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ga/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ga/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1820,6 +1894,7 @@ share/widelands/locale/gd/LC_MESSAGES/sc
 share/widelands/locale/gd/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/gd/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/gd/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/gd/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/gd/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/gd/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/gd/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1853,6 +1928,7 @@ share/widelands/locale/gl/LC_MESSAGES/sc
 share/widelands/locale/gl/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/gl/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/gl/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/gl/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/gl/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/gl/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/gl/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1886,6 +1962,7 @@ share/widelands/locale/he/LC_MESSAGES/sc
 share/widelands/locale/he/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/he/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/he/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/he/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/he/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/he/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/he/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1919,6 +1996,7 @@ share/widelands/locale/hi/LC_MESSAGES/sc
 share/widelands/locale/hi/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/hi/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/hi/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/hi/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/hi/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/hi/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/hi/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1952,6 +2030,7 @@ share/widelands/locale/hr/LC_MESSAGES/sc
 share/widelands/locale/hr/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/hr/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/hr/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/hr/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/hr/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/hr/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/hr/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -1985,6 +2064,7 @@ share/widelands/locale/hu/LC_MESSAGES/sc
 share/widelands/locale/hu/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/hu/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/hu/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/hu/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/hu/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/hu/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/hu/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2018,6 +2098,7 @@ share/widelands/locale/id/LC_MESSAGES/sc
 share/widelands/locale/id/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/id/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/id/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/id/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/id/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/id/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/id/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2051,6 +2132,7 @@ share/widelands/locale/ig/LC_MESSAGES/sc
 share/widelands/locale/ig/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ig/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ig/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ig/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ig/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ig/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ig/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2084,6 +2166,7 @@ share/widelands/locale/it/LC_MESSAGES/sc
 share/widelands/locale/it/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/it/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/it/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/it/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/it/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/it/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/it/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2117,6 +2200,7 @@ share/widelands/locale/ja/LC_MESSAGES/sc
 share/widelands/locale/ja/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ja/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ja/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ja/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ja/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ja/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ja/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2150,6 +2234,7 @@ share/widelands/locale/ka/LC_MESSAGES/sc
 share/widelands/locale/ka/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ka/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ka/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ka/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ka/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ka/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ka/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2183,6 +2268,7 @@ share/widelands/locale/ko/LC_MESSAGES/sc
 share/widelands/locale/ko/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ko/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ko/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ko/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ko/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ko/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ko/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2216,6 +2302,7 @@ share/widelands/locale/krl/LC_MESSAGES/s
 share/widelands/locale/krl/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/krl/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/krl/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/krl/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/krl/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/krl/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/krl/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2249,6 +2336,7 @@ share/widelands/locale/la/LC_MESSAGES/sc
 share/widelands/locale/la/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/la/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/la/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/la/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/la/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/la/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/la/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2282,6 +2370,7 @@ share/widelands/locale/lt/LC_MESSAGES/sc
 share/widelands/locale/lt/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/lt/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/lt/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/lt/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/lt/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/lt/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/lt/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2315,6 +2404,7 @@ share/widelands/locale/ms/LC_MESSAGES/sc
 share/widelands/locale/ms/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ms/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ms/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ms/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ms/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ms/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ms/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2348,6 +2438,7 @@ share/widelands/locale/nb/LC_MESSAGES/sc
 share/widelands/locale/nb/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/nb/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/nb/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/nb/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/nb/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/nb/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/nb/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2381,6 +2472,7 @@ share/widelands/locale/nds/LC_MESSAGES/s
 share/widelands/locale/nds/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/nds/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/nds/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/nds/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/nds/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/nds/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/nds/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2414,6 +2506,7 @@ share/widelands/locale/nl/LC_MESSAGES/sc
 share/widelands/locale/nl/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/nl/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/nl/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/nl/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/nl/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/nl/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/nl/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2447,6 +2540,7 @@ share/widelands/locale/nn/LC_MESSAGES/sc
 share/widelands/locale/nn/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/nn/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/nn/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/nn/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/nn/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/nn/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/nn/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2480,6 +2574,7 @@ share/widelands/locale/pl/LC_MESSAGES/sc
 share/widelands/locale/pl/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/pl/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/pl/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/pl/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/pl/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/pl/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/pl/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2513,6 +2608,7 @@ share/widelands/locale/pt/LC_MESSAGES/sc
 share/widelands/locale/pt/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/pt/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/pt/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/pt/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/pt/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/pt/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/pt/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2546,6 +2642,7 @@ share/widelands/locale/pt_BR/LC_MESSAGES
 share/widelands/locale/pt_BR/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/pt_BR/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/pt_BR/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/pt_BR/LC_MESSAGES/scenario_fri05.wmf.mo
 
share/widelands/locale/pt_BR/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/pt_BR/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/pt_BR/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2579,6 +2676,7 @@ share/widelands/locale/ro/LC_MESSAGES/sc
 share/widelands/locale/ro/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ro/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ro/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ro/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ro/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ro/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ro/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2612,6 +2710,7 @@ share/widelands/locale/ru/LC_MESSAGES/sc
 share/widelands/locale/ru/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/ru/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/ru/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/ru/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/ru/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/ru/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/ru/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2645,6 +2744,7 @@ share/widelands/locale/sk/LC_MESSAGES/sc
 share/widelands/locale/sk/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/sk/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/sk/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/sk/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/sk/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/sk/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/sk/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2678,6 +2778,7 @@ share/widelands/locale/sl/LC_MESSAGES/sc
 share/widelands/locale/sl/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/sl/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/sl/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/sl/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/sl/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/sl/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/sl/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2711,6 +2812,7 @@ share/widelands/locale/sr/LC_MESSAGES/sc
 share/widelands/locale/sr/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/sr/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/sr/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/sr/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/sr/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/sr/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/sr/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2744,6 +2846,7 @@ share/widelands/locale/sr_RS/LC_MESSAGES
 share/widelands/locale/sr_RS/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/sr_RS/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/sr_RS/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/sr_RS/LC_MESSAGES/scenario_fri05.wmf.mo
 
share/widelands/locale/sr_RS/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/sr_RS/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/sr_RS/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2777,6 +2880,7 @@ share/widelands/locale/sv/LC_MESSAGES/sc
 share/widelands/locale/sv/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/sv/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/sv/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/sv/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/sv/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/sv/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/sv/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2810,6 +2914,7 @@ share/widelands/locale/tr/LC_MESSAGES/sc
 share/widelands/locale/tr/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/tr/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/tr/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/tr/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/tr/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/tr/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/tr/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2843,6 +2948,7 @@ share/widelands/locale/uk/LC_MESSAGES/sc
 share/widelands/locale/uk/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/uk/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/uk/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/uk/LC_MESSAGES/scenario_fri05.wmf.mo
 share/widelands/locale/uk/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/uk/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/uk/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2876,6 +2982,7 @@ share/widelands/locale/zh_CN/LC_MESSAGES
 share/widelands/locale/zh_CN/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/zh_CN/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/zh_CN/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/zh_CN/LC_MESSAGES/scenario_fri05.wmf.mo
 
share/widelands/locale/zh_CN/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/zh_CN/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/zh_CN/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -2909,6 +3016,7 @@ share/widelands/locale/zh_TW/LC_MESSAGES
 share/widelands/locale/zh_TW/LC_MESSAGES/scenario_fri02.wmf.mo
 share/widelands/locale/zh_TW/LC_MESSAGES/scenario_fri03.wmf.mo
 share/widelands/locale/zh_TW/LC_MESSAGES/scenario_fri04.wmf.mo
+share/widelands/locale/zh_TW/LC_MESSAGES/scenario_fri05.wmf.mo
 
share/widelands/locale/zh_TW/LC_MESSAGES/scenario_tutorial01_basic_control.wmf.mo
 share/widelands/locale/zh_TW/LC_MESSAGES/scenario_tutorial02_warfare.wmf.mo
 share/widelands/locale/zh_TW/LC_MESSAGES/scenario_tutorial03_seafaring.wmf.mo
@@ -3299,6 +3407,7 @@ share/widelands/maps/MP_Scenarios/Island
 share/widelands/maps/MP_Scenarios/Island_Hopping.wmf/objective
 share/widelands/maps/MP_Scenarios/Island_Hopping.wmf/player_names
 share/widelands/maps/MP_Scenarios/Island_Hopping.wmf/player_position
+share/widelands/maps/MP_Scenarios/Island_Hopping.wmf/port_spaces
 share/widelands/maps/MP_Scenarios/Island_Hopping.wmf/scripting/
 share/widelands/maps/MP_Scenarios/Island_Hopping.wmf/scripting/first_island.lua
 share/widelands/maps/MP_Scenarios/Island_Hopping.wmf/scripting/hop_island.lua
@@ -3715,10 +3824,8 @@ share/widelands/scripting/editor/toolhis
 share/widelands/scripting/editor/tree_help.lua
 share/widelands/scripting/editor/tree_tooltip.lua
 share/widelands/scripting/field_animations.lua
-share/widelands/scripting/formatting.lua
 share/widelands/scripting/help.lua
 share/widelands/scripting/infrastructure.lua
-share/widelands/scripting/lunit.lua
 share/widelands/scripting/messages.lua
 share/widelands/scripting/objective_utils.lua
 share/widelands/scripting/richtext.lua
@@ -3744,7 +3851,6 @@ share/widelands/scripting/win_conditions
 share/widelands/scripting/win_conditions/collectors.lua
 share/widelands/scripting/win_conditions/defeat_all.lua
 share/widelands/scripting/win_conditions/endless_game.lua
-share/widelands/scripting/win_conditions/endless_game_fogless.lua
 share/widelands/scripting/win_conditions/hq_hunter.lua
 share/widelands/scripting/win_conditions/init.lua
 share/widelands/scripting/win_conditions/territorial_functions.lua
@@ -6001,7 +6107,6 @@ share/widelands/tribes/buildings/product
 share/widelands/tribes/buildings/productionsites/empire/barracks/register.lua
 share/widelands/tribes/buildings/productionsites/empire/brewery/
 share/widelands/tribes/buildings/productionsites/empire/brewery/idle_0.5.png
-share/widelands/tribes/buildings/productionsites/empire/brewery/idle_00.png
 share/widelands/tribes/buildings/productionsites/empire/brewery/idle_1.png
 share/widelands/tribes/buildings/productionsites/empire/brewery/idle_2.png
 share/widelands/tribes/buildings/productionsites/empire/brewery/idle_4.png
@@ -6058,7 +6163,6 @@ share/widelands/tribes/buildings/product
 share/widelands/tribes/buildings/productionsites/empire/donkeyfarm/register.lua
 share/widelands/tribes/buildings/productionsites/empire/farm/
 share/widelands/tribes/buildings/productionsites/empire/farm/idle_0.5.png
-share/widelands/tribes/buildings/productionsites/empire/farm/idle_00.png
 share/widelands/tribes/buildings/productionsites/empire/farm/idle_1.png
 share/widelands/tribes/buildings/productionsites/empire/farm/idle_2.png
 share/widelands/tribes/buildings/productionsites/empire/farm/idle_4.png
@@ -6111,7 +6215,6 @@ share/widelands/tribes/buildings/product
 
share/widelands/tribes/buildings/productionsites/empire/fishers_house/register.lua
 share/widelands/tribes/buildings/productionsites/empire/foresters_house/
 
share/widelands/tribes/buildings/productionsites/empire/foresters_house/idle_0.5.png
-share/widelands/tribes/buildings/productionsites/empire/foresters_house/idle_00.png
 
share/widelands/tribes/buildings/productionsites/empire/foresters_house/idle_1.png
 
share/widelands/tribes/buildings/productionsites/empire/foresters_house/idle_2.png
 
share/widelands/tribes/buildings/productionsites/empire/foresters_house/idle_4.png
@@ -6200,7 +6303,6 @@ share/widelands/tribes/buildings/product
 
share/widelands/tribes/buildings/productionsites/empire/ironmine_deep/working_4.png
 share/widelands/tribes/buildings/productionsites/empire/lumberjacks_house/
 
share/widelands/tribes/buildings/productionsites/empire/lumberjacks_house/idle_0.5.png
-share/widelands/tribes/buildings/productionsites/empire/lumberjacks_house/idle_00.png
 
share/widelands/tribes/buildings/productionsites/empire/lumberjacks_house/idle_1.png
 
share/widelands/tribes/buildings/productionsites/empire/lumberjacks_house/idle_2.png
 
share/widelands/tribes/buildings/productionsites/empire/lumberjacks_house/idle_4.png
@@ -6246,8 +6348,6 @@ share/widelands/tribes/buildings/product
 share/widelands/tribes/buildings/productionsites/empire/mill/build_4.png
 share/widelands/tribes/buildings/productionsites/empire/mill/idle_0.5.png
 share/widelands/tribes/buildings/productionsites/empire/mill/idle_0.5_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/idle_00.png
-share/widelands/tribes/buildings/productionsites/empire/mill/idle_00_pc.png
 share/widelands/tribes/buildings/productionsites/empire/mill/idle_1.png
 share/widelands/tribes/buildings/productionsites/empire/mill/idle_1_pc.png
 share/widelands/tribes/buildings/productionsites/empire/mill/idle_2.png
@@ -6263,47 +6363,7 @@ share/widelands/tribes/buildings/product
 share/widelands/tribes/buildings/productionsites/empire/mill/unoccupied_4.png
 share/widelands/tribes/buildings/productionsites/empire/mill/working_0.5.png
 share/widelands/tribes/buildings/productionsites/empire/mill/working_0.5_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_00.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_00_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_01.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_01_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_02.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_02_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_03.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_03_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_04.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_04_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_05.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_05_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_06.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_06_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_07.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_07_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_08.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_08_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_09.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_09_pc.png
 share/widelands/tribes/buildings/productionsites/empire/mill/working_1.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_10.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_10_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_11.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_11_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_12.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_12_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_13.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_13_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_14.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_14_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_15.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_15_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_16.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_16_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_17.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_17_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_18.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_18_pc.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_19.png
-share/widelands/tribes/buildings/productionsites/empire/mill/working_19_pc.png
 share/widelands/tribes/buildings/productionsites/empire/mill/working_1_pc.png
 share/widelands/tribes/buildings/productionsites/empire/mill/working_2.png
 share/widelands/tribes/buildings/productionsites/empire/mill/working_2_pc.png
@@ -6473,7 +6533,6 @@ share/widelands/tribes/buildings/product
 
share/widelands/tribes/buildings/productionsites/empire/weaving_mill/working_1_pc.png
 share/widelands/tribes/buildings/productionsites/empire/well/
 share/widelands/tribes/buildings/productionsites/empire/well/idle_0.5.png
-share/widelands/tribes/buildings/productionsites/empire/well/idle_00.png
 share/widelands/tribes/buildings/productionsites/empire/well/idle_1.png
 share/widelands/tribes/buildings/productionsites/empire/well/idle_2.png
 share/widelands/tribes/buildings/productionsites/empire/well/idle_4.png
@@ -7836,7 +7895,6 @@ share/widelands/tribes/buildings/trainin
 share/widelands/tribes/buildings/trainingsites/empire/colosseum/register.lua
 share/widelands/tribes/buildings/trainingsites/empire/trainingcamp/
 share/widelands/tribes/buildings/trainingsites/empire/trainingcamp/idle_0.5.png
-share/widelands/tribes/buildings/trainingsites/empire/trainingcamp/idle_00.png
 share/widelands/tribes/buildings/trainingsites/empire/trainingcamp/idle_1.png
 share/widelands/tribes/buildings/trainingsites/empire/trainingcamp/idle_2.png
 share/widelands/tribes/buildings/trainingsites/empire/trainingcamp/idle_4.png
@@ -8055,14 +8113,6 @@ share/widelands/tribes/buildings/warehou
 share/widelands/tribes/buildings/warehouses/empire/port/
 share/widelands/tribes/buildings/warehouses/empire/port/build_0.5.png
 share/widelands/tribes/buildings/warehouses/empire/port/build_0.5_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/build_00.png
-share/widelands/tribes/buildings/warehouses/empire/port/build_00_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/build_01.png
-share/widelands/tribes/buildings/warehouses/empire/port/build_01_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/build_02.png
-share/widelands/tribes/buildings/warehouses/empire/port/build_02_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/build_03.png
-share/widelands/tribes/buildings/warehouses/empire/port/build_03_pc.png
 share/widelands/tribes/buildings/warehouses/empire/port/build_1.png
 share/widelands/tribes/buildings/warehouses/empire/port/build_1_pc.png
 share/widelands/tribes/buildings/warehouses/empire/port/build_2.png
@@ -8071,47 +8121,7 @@ share/widelands/tribes/buildings/warehou
 share/widelands/tribes/buildings/warehouses/empire/port/build_4_pc.png
 share/widelands/tribes/buildings/warehouses/empire/port/idle_0.5.png
 share/widelands/tribes/buildings/warehouses/empire/port/idle_0.5_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_00.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_00_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_01.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_01_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_02.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_02_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_03.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_03_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_04.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_04_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_05.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_05_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_06.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_06_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_07.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_07_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_08.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_08_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_09.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_09_pc.png
 share/widelands/tribes/buildings/warehouses/empire/port/idle_1.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_10.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_10_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_11.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_11_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_12.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_12_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_13.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_13_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_14.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_14_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_15.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_15_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_16.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_16_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_17.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_17_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_18.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_18_pc.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_19.png
-share/widelands/tribes/buildings/warehouses/empire/port/idle_19_pc.png
 share/widelands/tribes/buildings/warehouses/empire/port/idle_1_pc.png
 share/widelands/tribes/buildings/warehouses/empire/port/idle_2.png
 share/widelands/tribes/buildings/warehouses/empire/port/idle_2_pc.png
@@ -8122,7 +8132,6 @@ share/widelands/tribes/buildings/warehou
 share/widelands/tribes/buildings/warehouses/empire/port/register.lua
 share/widelands/tribes/buildings/warehouses/empire/warehouse/
 share/widelands/tribes/buildings/warehouses/empire/warehouse/idle_0.5.png
-share/widelands/tribes/buildings/warehouses/empire/warehouse/idle_00.png
 share/widelands/tribes/buildings/warehouses/empire/warehouse/idle_1.png
 share/widelands/tribes/buildings/warehouses/empire/warehouse/idle_2.png
 share/widelands/tribes/buildings/warehouses/empire/warehouse/idle_4.png
@@ -8547,27 +8556,42 @@ share/widelands/tribes/immovables/berry_
 share/widelands/tribes/immovables/berry_bushes/strawberry/tiny/register.lua
 share/widelands/tribes/immovables/blackrootfield/
 share/widelands/tribes/immovables/blackrootfield/harvested/
-share/widelands/tribes/immovables/blackrootfield/harvested/idle_00.png
+share/widelands/tribes/immovables/blackrootfield/harvested/idle_0.5.png
+share/widelands/tribes/immovables/blackrootfield/harvested/idle_1.png
+share/widelands/tribes/immovables/blackrootfield/harvested/idle_2.png
+share/widelands/tribes/immovables/blackrootfield/harvested/idle_4.png
 share/widelands/tribes/immovables/blackrootfield/harvested/init.lua
 share/widelands/tribes/immovables/blackrootfield/harvested/menu.png
 share/widelands/tribes/immovables/blackrootfield/harvested/register.lua
 share/widelands/tribes/immovables/blackrootfield/medium/
-share/widelands/tribes/immovables/blackrootfield/medium/idle_00.png
+share/widelands/tribes/immovables/blackrootfield/medium/idle_0.5.png
+share/widelands/tribes/immovables/blackrootfield/medium/idle_1.png
+share/widelands/tribes/immovables/blackrootfield/medium/idle_2.png
+share/widelands/tribes/immovables/blackrootfield/medium/idle_4.png
 share/widelands/tribes/immovables/blackrootfield/medium/init.lua
 share/widelands/tribes/immovables/blackrootfield/medium/menu.png
 share/widelands/tribes/immovables/blackrootfield/medium/register.lua
 share/widelands/tribes/immovables/blackrootfield/ripe/
-share/widelands/tribes/immovables/blackrootfield/ripe/idle_00.png
+share/widelands/tribes/immovables/blackrootfield/ripe/idle_0.5.png
+share/widelands/tribes/immovables/blackrootfield/ripe/idle_1.png
+share/widelands/tribes/immovables/blackrootfield/ripe/idle_2.png
+share/widelands/tribes/immovables/blackrootfield/ripe/idle_4.png
 share/widelands/tribes/immovables/blackrootfield/ripe/init.lua
 share/widelands/tribes/immovables/blackrootfield/ripe/menu.png
 share/widelands/tribes/immovables/blackrootfield/ripe/register.lua
 share/widelands/tribes/immovables/blackrootfield/small/
-share/widelands/tribes/immovables/blackrootfield/small/idle_00.png
+share/widelands/tribes/immovables/blackrootfield/small/idle_0.5.png
+share/widelands/tribes/immovables/blackrootfield/small/idle_1.png
+share/widelands/tribes/immovables/blackrootfield/small/idle_2.png
+share/widelands/tribes/immovables/blackrootfield/small/idle_4.png
 share/widelands/tribes/immovables/blackrootfield/small/init.lua
 share/widelands/tribes/immovables/blackrootfield/small/menu.png
 share/widelands/tribes/immovables/blackrootfield/small/register.lua
 share/widelands/tribes/immovables/blackrootfield/tiny/
-share/widelands/tribes/immovables/blackrootfield/tiny/idle_00.png
+share/widelands/tribes/immovables/blackrootfield/tiny/idle_0.5.png
+share/widelands/tribes/immovables/blackrootfield/tiny/idle_1.png
+share/widelands/tribes/immovables/blackrootfield/tiny/idle_2.png
+share/widelands/tribes/immovables/blackrootfield/tiny/idle_4.png
 share/widelands/tribes/immovables/blackrootfield/tiny/init.lua
 share/widelands/tribes/immovables/blackrootfield/tiny/menu.png
 share/widelands/tribes/immovables/blackrootfield/tiny/register.lua
@@ -8614,27 +8638,42 @@ share/widelands/tribes/immovables/cassav
 share/widelands/tribes/immovables/cassavafield/tiny/register.lua
 share/widelands/tribes/immovables/cornfield/
 share/widelands/tribes/immovables/cornfield/harvested/
+share/widelands/tribes/immovables/cornfield/harvested/idle_0.5.png
 share/widelands/tribes/immovables/cornfield/harvested/idle_1.png
+share/widelands/tribes/immovables/cornfield/harvested/idle_2.png
+share/widelands/tribes/immovables/cornfield/harvested/idle_4.png
 share/widelands/tribes/immovables/cornfield/harvested/init.lua
 share/widelands/tribes/immovables/cornfield/harvested/menu.png
 share/widelands/tribes/immovables/cornfield/harvested/register.lua
 share/widelands/tribes/immovables/cornfield/medium/
+share/widelands/tribes/immovables/cornfield/medium/idle_0.5.png
 share/widelands/tribes/immovables/cornfield/medium/idle_1.png
+share/widelands/tribes/immovables/cornfield/medium/idle_2.png
+share/widelands/tribes/immovables/cornfield/medium/idle_4.png
 share/widelands/tribes/immovables/cornfield/medium/init.lua
 share/widelands/tribes/immovables/cornfield/medium/menu.png
 share/widelands/tribes/immovables/cornfield/medium/register.lua
 share/widelands/tribes/immovables/cornfield/ripe/
+share/widelands/tribes/immovables/cornfield/ripe/idle_0.5.png
 share/widelands/tribes/immovables/cornfield/ripe/idle_1.png
+share/widelands/tribes/immovables/cornfield/ripe/idle_2.png
+share/widelands/tribes/immovables/cornfield/ripe/idle_4.png
 share/widelands/tribes/immovables/cornfield/ripe/init.lua
 share/widelands/tribes/immovables/cornfield/ripe/menu.png
 share/widelands/tribes/immovables/cornfield/ripe/register.lua
 share/widelands/tribes/immovables/cornfield/small/
+share/widelands/tribes/immovables/cornfield/small/idle_0.5.png
 share/widelands/tribes/immovables/cornfield/small/idle_1.png
+share/widelands/tribes/immovables/cornfield/small/idle_2.png
+share/widelands/tribes/immovables/cornfield/small/idle_4.png
 share/widelands/tribes/immovables/cornfield/small/init.lua
 share/widelands/tribes/immovables/cornfield/small/menu.png
 share/widelands/tribes/immovables/cornfield/small/register.lua
 share/widelands/tribes/immovables/cornfield/tiny/
+share/widelands/tribes/immovables/cornfield/tiny/idle_0.5.png
 share/widelands/tribes/immovables/cornfield/tiny/idle_1.png
+share/widelands/tribes/immovables/cornfield/tiny/idle_2.png
+share/widelands/tribes/immovables/cornfield/tiny/idle_4.png
 share/widelands/tribes/immovables/cornfield/tiny/init.lua
 share/widelands/tribes/immovables/cornfield/tiny/menu.png
 share/widelands/tribes/immovables/cornfield/tiny/register.lua
@@ -8656,22 +8695,34 @@ share/widelands/tribes/immovables/dike/m
 share/widelands/tribes/immovables/dike/register.lua
 share/widelands/tribes/immovables/grapevine/
 share/widelands/tribes/immovables/grapevine/medium/
-share/widelands/tribes/immovables/grapevine/medium/idle_00.png
+share/widelands/tribes/immovables/grapevine/medium/idle_0.5.png
+share/widelands/tribes/immovables/grapevine/medium/idle_1.png
+share/widelands/tribes/immovables/grapevine/medium/idle_2.png
+share/widelands/tribes/immovables/grapevine/medium/idle_4.png
 share/widelands/tribes/immovables/grapevine/medium/init.lua
 share/widelands/tribes/immovables/grapevine/medium/menu.png
 share/widelands/tribes/immovables/grapevine/medium/register.lua
 share/widelands/tribes/immovables/grapevine/ripe/
-share/widelands/tribes/immovables/grapevine/ripe/idle_00.png
+share/widelands/tribes/immovables/grapevine/ripe/idle_0.5.png
+share/widelands/tribes/immovables/grapevine/ripe/idle_1.png
+share/widelands/tribes/immovables/grapevine/ripe/idle_2.png
+share/widelands/tribes/immovables/grapevine/ripe/idle_4.png
 share/widelands/tribes/immovables/grapevine/ripe/init.lua
 share/widelands/tribes/immovables/grapevine/ripe/menu.png
 share/widelands/tribes/immovables/grapevine/ripe/register.lua
 share/widelands/tribes/immovables/grapevine/small/
-share/widelands/tribes/immovables/grapevine/small/idle_00.png
+share/widelands/tribes/immovables/grapevine/small/idle_0.5.png
+share/widelands/tribes/immovables/grapevine/small/idle_1.png
+share/widelands/tribes/immovables/grapevine/small/idle_2.png
+share/widelands/tribes/immovables/grapevine/small/idle_4.png
 share/widelands/tribes/immovables/grapevine/small/init.lua
 share/widelands/tribes/immovables/grapevine/small/menu.png
 share/widelands/tribes/immovables/grapevine/small/register.lua
 share/widelands/tribes/immovables/grapevine/tiny/
-share/widelands/tribes/immovables/grapevine/tiny/idle_00.png
+share/widelands/tribes/immovables/grapevine/tiny/idle_0.5.png
+share/widelands/tribes/immovables/grapevine/tiny/idle_1.png
+share/widelands/tribes/immovables/grapevine/tiny/idle_2.png
+share/widelands/tribes/immovables/grapevine/tiny/idle_4.png
 share/widelands/tribes/immovables/grapevine/tiny/init.lua
 share/widelands/tribes/immovables/grapevine/tiny/menu.png
 share/widelands/tribes/immovables/grapevine/tiny/register.lua
@@ -8718,22 +8769,34 @@ share/widelands/tribes/immovables/pond/m
 share/widelands/tribes/immovables/pond/mature/register.lua
 share/widelands/tribes/immovables/reedfield/
 share/widelands/tribes/immovables/reedfield/medium/
+share/widelands/tribes/immovables/reedfield/medium/idle_0.5.png
 share/widelands/tribes/immovables/reedfield/medium/idle_1.png
+share/widelands/tribes/immovables/reedfield/medium/idle_2.png
+share/widelands/tribes/immovables/reedfield/medium/idle_4.png
 share/widelands/tribes/immovables/reedfield/medium/init.lua
 share/widelands/tribes/immovables/reedfield/medium/menu.png
 share/widelands/tribes/immovables/reedfield/medium/register.lua
 share/widelands/tribes/immovables/reedfield/ripe/
+share/widelands/tribes/immovables/reedfield/ripe/idle_0.5.png
 share/widelands/tribes/immovables/reedfield/ripe/idle_1.png
+share/widelands/tribes/immovables/reedfield/ripe/idle_2.png
+share/widelands/tribes/immovables/reedfield/ripe/idle_4.png
 share/widelands/tribes/immovables/reedfield/ripe/init.lua
 share/widelands/tribes/immovables/reedfield/ripe/menu.png
 share/widelands/tribes/immovables/reedfield/ripe/register.lua
 share/widelands/tribes/immovables/reedfield/small/
+share/widelands/tribes/immovables/reedfield/small/idle_0.5.png
 share/widelands/tribes/immovables/reedfield/small/idle_1.png
+share/widelands/tribes/immovables/reedfield/small/idle_2.png
+share/widelands/tribes/immovables/reedfield/small/idle_4.png
 share/widelands/tribes/immovables/reedfield/small/init.lua
 share/widelands/tribes/immovables/reedfield/small/menu.png
 share/widelands/tribes/immovables/reedfield/small/register.lua
 share/widelands/tribes/immovables/reedfield/tiny/
+share/widelands/tribes/immovables/reedfield/tiny/idle_0.5.png
 share/widelands/tribes/immovables/reedfield/tiny/idle_1.png
+share/widelands/tribes/immovables/reedfield/tiny/idle_2.png
+share/widelands/tribes/immovables/reedfield/tiny/idle_4.png
 share/widelands/tribes/immovables/reedfield/tiny/init.lua
 share/widelands/tribes/immovables/reedfield/tiny/menu.png
 share/widelands/tribes/immovables/reedfield/tiny/register.lua
@@ -9104,8 +9167,14 @@ share/widelands/tribes/immovables/shipco
 share/widelands/tribes/immovables/shipconstruction_barbarians/menu.png
 share/widelands/tribes/immovables/shipconstruction_barbarians/register.lua
 share/widelands/tribes/immovables/shipconstruction_empire/
+share/widelands/tribes/immovables/shipconstruction_empire/idle_0.5.png
+share/widelands/tribes/immovables/shipconstruction_empire/idle_0.5_pc.png
 share/widelands/tribes/immovables/shipconstruction_empire/idle_1.png
 share/widelands/tribes/immovables/shipconstruction_empire/idle_1_pc.png
+share/widelands/tribes/immovables/shipconstruction_empire/idle_2.png
+share/widelands/tribes/immovables/shipconstruction_empire/idle_2_pc.png
+share/widelands/tribes/immovables/shipconstruction_empire/idle_4.png
+share/widelands/tribes/immovables/shipconstruction_empire/idle_4_pc.png
 share/widelands/tribes/immovables/shipconstruction_empire/init.lua
 share/widelands/tribes/immovables/shipconstruction_empire/menu.png
 share/widelands/tribes/immovables/shipconstruction_empire/register.lua
@@ -9398,27 +9467,42 @@ share/widelands/tribes/immovables/trees/
 share/widelands/tribes/immovables/trees/rubber/terrain_affinity.lua
 share/widelands/tribes/immovables/wheatfield/
 share/widelands/tribes/immovables/wheatfield/harvested/
+share/widelands/tribes/immovables/wheatfield/harvested/idle_0.5.png
 share/widelands/tribes/immovables/wheatfield/harvested/idle_1.png
+share/widelands/tribes/immovables/wheatfield/harvested/idle_2.png
+share/widelands/tribes/immovables/wheatfield/harvested/idle_4.png
 share/widelands/tribes/immovables/wheatfield/harvested/init.lua
 share/widelands/tribes/immovables/wheatfield/harvested/menu.png
 share/widelands/tribes/immovables/wheatfield/harvested/register.lua
 share/widelands/tribes/immovables/wheatfield/medium/
+share/widelands/tribes/immovables/wheatfield/medium/idle_0.5.png
 share/widelands/tribes/immovables/wheatfield/medium/idle_1.png
+share/widelands/tribes/immovables/wheatfield/medium/idle_2.png
+share/widelands/tribes/immovables/wheatfield/medium/idle_4.png
 share/widelands/tribes/immovables/wheatfield/medium/init.lua
 share/widelands/tribes/immovables/wheatfield/medium/menu.png
 share/widelands/tribes/immovables/wheatfield/medium/register.lua
 share/widelands/tribes/immovables/wheatfield/ripe/
+share/widelands/tribes/immovables/wheatfield/ripe/idle_0.5.png
 share/widelands/tribes/immovables/wheatfield/ripe/idle_1.png
+share/widelands/tribes/immovables/wheatfield/ripe/idle_2.png
+share/widelands/tribes/immovables/wheatfield/ripe/idle_4.png
 share/widelands/tribes/immovables/wheatfield/ripe/init.lua
 share/widelands/tribes/immovables/wheatfield/ripe/menu.png
 share/widelands/tribes/immovables/wheatfield/ripe/register.lua
 share/widelands/tribes/immovables/wheatfield/small/
+share/widelands/tribes/immovables/wheatfield/small/idle_0.5.png
 share/widelands/tribes/immovables/wheatfield/small/idle_1.png
+share/widelands/tribes/immovables/wheatfield/small/idle_2.png
+share/widelands/tribes/immovables/wheatfield/small/idle_4.png
 share/widelands/tribes/immovables/wheatfield/small/init.lua
 share/widelands/tribes/immovables/wheatfield/small/menu.png
 share/widelands/tribes/immovables/wheatfield/small/register.lua
 share/widelands/tribes/immovables/wheatfield/tiny/
+share/widelands/tribes/immovables/wheatfield/tiny/idle_0.5.png
 share/widelands/tribes/immovables/wheatfield/tiny/idle_1.png
+share/widelands/tribes/immovables/wheatfield/tiny/idle_2.png
+share/widelands/tribes/immovables/wheatfield/tiny/idle_4.png
 share/widelands/tribes/immovables/wheatfield/tiny/init.lua
 share/widelands/tribes/immovables/wheatfield/tiny/menu.png
 share/widelands/tribes/immovables/wheatfield/tiny/register.lua
@@ -9466,6 +9550,14 @@ share/widelands/tribes/initialization/am
 share/widelands/tribes/initialization/amazons/images/frontier_4.png
 share/widelands/tribes/initialization/amazons/images/frontier_4_pc.png
 share/widelands/tribes/initialization/amazons/images/icon.png
+share/widelands/tribes/initialization/amazons/images/pinned_note_0.5.png
+share/widelands/tribes/initialization/amazons/images/pinned_note_0.5_pc.png
+share/widelands/tribes/initialization/amazons/images/pinned_note_1.png
+share/widelands/tribes/initialization/amazons/images/pinned_note_1_pc.png
+share/widelands/tribes/initialization/amazons/images/pinned_note_2.png
+share/widelands/tribes/initialization/amazons/images/pinned_note_2_pc.png
+share/widelands/tribes/initialization/amazons/images/pinned_note_4.png
+share/widelands/tribes/initialization/amazons/images/pinned_note_4_pc.png
 share/widelands/tribes/initialization/amazons/images/roadt_busy.png
 share/widelands/tribes/initialization/amazons/images/roadt_normal_00.png
 share/widelands/tribes/initialization/amazons/images/roadt_normal_01.png
@@ -9483,12 +9575,30 @@ share/widelands/tribes/initialization/am
 share/widelands/tribes/initialization/amazons/units.lua
 share/widelands/tribes/initialization/atlanteans/
 share/widelands/tribes/initialization/atlanteans/images/
-share/widelands/tribes/initialization/atlanteans/images/bridge_busy_e_0.png
-share/widelands/tribes/initialization/atlanteans/images/bridge_busy_se_0.png
-share/widelands/tribes/initialization/atlanteans/images/bridge_busy_sw_0.png
-share/widelands/tribes/initialization/atlanteans/images/bridge_normal_e_0.png
-share/widelands/tribes/initialization/atlanteans/images/bridge_normal_se_0.png
-share/widelands/tribes/initialization/atlanteans/images/bridge_normal_sw_0.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_e_0.5.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_e_1.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_e_2.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_e_4.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_se_0.5.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_se_1.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_se_2.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_se_4.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_sw_0.5.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_sw_1.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_sw_2.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_busy_sw_4.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_e_0.5.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_e_1.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_e_2.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_e_4.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_se_0.5.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_se_1.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_se_2.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_se_4.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_sw_0.5.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_sw_1.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_sw_2.png
+share/widelands/tribes/initialization/atlanteans/images/bridge_normal_sw_4.png
 share/widelands/tribes/initialization/atlanteans/images/flag_0.5.png
 share/widelands/tribes/initialization/atlanteans/images/flag_0.5_pc.png
 share/widelands/tribes/initialization/atlanteans/images/flag_1.png
@@ -9506,6 +9616,14 @@ share/widelands/tribes/initialization/at
 share/widelands/tribes/initialization/atlanteans/images/frontier_4.png
 share/widelands/tribes/initialization/atlanteans/images/frontier_4_pc.png
 share/widelands/tribes/initialization/atlanteans/images/icon.png
+share/widelands/tribes/initialization/atlanteans/images/pinned_note_0.5.png
+share/widelands/tribes/initialization/atlanteans/images/pinned_note_0.5_pc.png
+share/widelands/tribes/initialization/atlanteans/images/pinned_note_1.png
+share/widelands/tribes/initialization/atlanteans/images/pinned_note_1_pc.png
+share/widelands/tribes/initialization/atlanteans/images/pinned_note_2.png
+share/widelands/tribes/initialization/atlanteans/images/pinned_note_2_pc.png
+share/widelands/tribes/initialization/atlanteans/images/pinned_note_4.png
+share/widelands/tribes/initialization/atlanteans/images/pinned_note_4_pc.png
 share/widelands/tribes/initialization/atlanteans/images/roadt_busy.png
 share/widelands/tribes/initialization/atlanteans/images/roadt_normal_00.png
 share/widelands/tribes/initialization/atlanteans/images/roadt_normal_01.png
@@ -9549,9 +9667,23 @@ share/widelands/tribes/initialization/ba
 share/widelands/tribes/initialization/barbarians/images/bridge_normal_sw_4.png
 share/widelands/tribes/initialization/barbarians/images/flag_1.png
 share/widelands/tribes/initialization/barbarians/images/flag_1_pc.png
-share/widelands/tribes/initialization/barbarians/images/frontier_00.png
-share/widelands/tribes/initialization/barbarians/images/frontier_00_pc.png
+share/widelands/tribes/initialization/barbarians/images/frontier_0.5.png
+share/widelands/tribes/initialization/barbarians/images/frontier_0.5_pc.png
+share/widelands/tribes/initialization/barbarians/images/frontier_1.png
+share/widelands/tribes/initialization/barbarians/images/frontier_1_pc.png
+share/widelands/tribes/initialization/barbarians/images/frontier_2.png
+share/widelands/tribes/initialization/barbarians/images/frontier_2_pc.png
+share/widelands/tribes/initialization/barbarians/images/frontier_4.png
+share/widelands/tribes/initialization/barbarians/images/frontier_4_pc.png
 share/widelands/tribes/initialization/barbarians/images/icon.png
+share/widelands/tribes/initialization/barbarians/images/pinned_note_0.5.png
+share/widelands/tribes/initialization/barbarians/images/pinned_note_0.5_pc.png
+share/widelands/tribes/initialization/barbarians/images/pinned_note_1.png
+share/widelands/tribes/initialization/barbarians/images/pinned_note_1_pc.png
+share/widelands/tribes/initialization/barbarians/images/pinned_note_2.png
+share/widelands/tribes/initialization/barbarians/images/pinned_note_2_pc.png
+share/widelands/tribes/initialization/barbarians/images/pinned_note_4.png
+share/widelands/tribes/initialization/barbarians/images/pinned_note_4_pc.png
 share/widelands/tribes/initialization/barbarians/images/roadt_busy.png
 share/widelands/tribes/initialization/barbarians/images/roadt_normal_00.png
 share/widelands/tribes/initialization/barbarians/images/roadt_normal_01.png
@@ -9569,12 +9701,30 @@ share/widelands/tribes/initialization/ba
 share/widelands/tribes/initialization/barbarians/units.lua
 share/widelands/tribes/initialization/empire/
 share/widelands/tribes/initialization/empire/images/
-share/widelands/tribes/initialization/empire/images/bridge_busy_e_0.png
-share/widelands/tribes/initialization/empire/images/bridge_busy_se_0.png
-share/widelands/tribes/initialization/empire/images/bridge_busy_sw_0.png
-share/widelands/tribes/initialization/empire/images/bridge_normal_e_0.png
-share/widelands/tribes/initialization/empire/images/bridge_normal_se_0.png
-share/widelands/tribes/initialization/empire/images/bridge_normal_sw_0.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_e_0.5.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_e_1.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_e_2.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_e_4.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_se_0.5.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_se_1.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_se_2.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_se_4.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_sw_0.5.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_sw_1.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_sw_2.png
+share/widelands/tribes/initialization/empire/images/bridge_busy_sw_4.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_e_0.5.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_e_1.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_e_2.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_e_4.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_se_0.5.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_se_1.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_se_2.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_se_4.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_sw_0.5.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_sw_1.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_sw_2.png
+share/widelands/tribes/initialization/empire/images/bridge_normal_sw_4.png
 share/widelands/tribes/initialization/empire/images/flag_0.5.png
 share/widelands/tribes/initialization/empire/images/flag_0.5_pc.png
 share/widelands/tribes/initialization/empire/images/flag_1.png
@@ -9592,6 +9742,14 @@ share/widelands/tribes/initialization/em
 share/widelands/tribes/initialization/empire/images/frontier_4.png
 share/widelands/tribes/initialization/empire/images/frontier_4_pc.png
 share/widelands/tribes/initialization/empire/images/icon.png
+share/widelands/tribes/initialization/empire/images/pinned_note_0.5.png
+share/widelands/tribes/initialization/empire/images/pinned_note_0.5_pc.png
+share/widelands/tribes/initialization/empire/images/pinned_note_1.png
+share/widelands/tribes/initialization/empire/images/pinned_note_1_pc.png
+share/widelands/tribes/initialization/empire/images/pinned_note_2.png
+share/widelands/tribes/initialization/empire/images/pinned_note_2_pc.png
+share/widelands/tribes/initialization/empire/images/pinned_note_4.png
+share/widelands/tribes/initialization/empire/images/pinned_note_4_pc.png
 share/widelands/tribes/initialization/empire/images/roadt_busy.png
 share/widelands/tribes/initialization/empire/images/roadt_normal_00.png
 share/widelands/tribes/initialization/empire/images/roadt_normal_01.png
@@ -9610,12 +9768,30 @@ share/widelands/tribes/initialization/em
 share/widelands/tribes/initialization/empire/units.lua
 share/widelands/tribes/initialization/frisians/
 share/widelands/tribes/initialization/frisians/images/
-share/widelands/tribes/initialization/frisians/images/bridge_busy_e_0.png
-share/widelands/tribes/initialization/frisians/images/bridge_busy_se_0.png
-share/widelands/tribes/initialization/frisians/images/bridge_busy_sw_0.png
-share/widelands/tribes/initialization/frisians/images/bridge_normal_e_0.png
-share/widelands/tribes/initialization/frisians/images/bridge_normal_se_0.png
-share/widelands/tribes/initialization/frisians/images/bridge_normal_sw_0.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_e_0.5.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_e_1.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_e_2.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_e_4.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_se_0.5.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_se_1.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_se_2.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_se_4.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_sw_0.5.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_sw_1.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_sw_2.png
+share/widelands/tribes/initialization/frisians/images/bridge_busy_sw_4.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_e_0.5.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_e_1.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_e_2.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_e_4.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_se_0.5.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_se_1.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_se_2.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_se_4.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_sw_0.5.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_sw_1.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_sw_2.png
+share/widelands/tribes/initialization/frisians/images/bridge_normal_sw_4.png
 share/widelands/tribes/initialization/frisians/images/flag_0.5.png
 share/widelands/tribes/initialization/frisians/images/flag_0.5_pc.png
 share/widelands/tribes/initialization/frisians/images/flag_1.png
@@ -9633,6 +9809,14 @@ share/widelands/tribes/initialization/fr
 share/widelands/tribes/initialization/frisians/images/frontier_4.png
 share/widelands/tribes/initialization/frisians/images/frontier_4_pc.png
 share/widelands/tribes/initialization/frisians/images/icon.png
+share/widelands/tribes/initialization/frisians/images/pinned_note_0.5.png
+share/widelands/tribes/initialization/frisians/images/pinned_note_0.5_pc.png
+share/widelands/tribes/initialization/frisians/images/pinned_note_1.png
+share/widelands/tribes/initialization/frisians/images/pinned_note_1_pc.png
+share/widelands/tribes/initialization/frisians/images/pinned_note_2.png
+share/widelands/tribes/initialization/frisians/images/pinned_note_2_pc.png
+share/widelands/tribes/initialization/frisians/images/pinned_note_4.png
+share/widelands/tribes/initialization/frisians/images/pinned_note_4_pc.png
 share/widelands/tribes/initialization/frisians/images/roadt_busy.png
 share/widelands/tribes/initialization/frisians/images/roadt_normal_00.png
 share/widelands/tribes/initialization/frisians/images/roadt_normal_01.png
@@ -9774,24 +9958,66 @@ share/widelands/tribes/ships/barbarians/
 share/widelands/tribes/ships/barbarians/sail_w_1.png
 share/widelands/tribes/ships/barbarians/sail_w_1_pc.png
 share/widelands/tribes/ships/empire/
+share/widelands/tribes/ships/empire/idle_0.5.png
+share/widelands/tribes/ships/empire/idle_0.5_pc.png
 share/widelands/tribes/ships/empire/idle_1.png
 share/widelands/tribes/ships/empire/idle_1_pc.png
+share/widelands/tribes/ships/empire/idle_2.png
+share/widelands/tribes/ships/empire/idle_2_pc.png
+share/widelands/tribes/ships/empire/idle_4.png
+share/widelands/tribes/ships/empire/idle_4_pc.png
 share/widelands/tribes/ships/empire/init.lua
 share/widelands/tribes/ships/empire/menu.png
 share/widelands/tribes/ships/empire/menu_pc.png
 share/widelands/tribes/ships/empire/register.lua
+share/widelands/tribes/ships/empire/sail_e_0.5.png
+share/widelands/tribes/ships/empire/sail_e_0.5_pc.png
 share/widelands/tribes/ships/empire/sail_e_1.png
 share/widelands/tribes/ships/empire/sail_e_1_pc.png
+share/widelands/tribes/ships/empire/sail_e_2.png
+share/widelands/tribes/ships/empire/sail_e_2_pc.png
+share/widelands/tribes/ships/empire/sail_e_4.png
+share/widelands/tribes/ships/empire/sail_e_4_pc.png
+share/widelands/tribes/ships/empire/sail_ne_0.5.png
+share/widelands/tribes/ships/empire/sail_ne_0.5_pc.png
 share/widelands/tribes/ships/empire/sail_ne_1.png
 share/widelands/tribes/ships/empire/sail_ne_1_pc.png
+share/widelands/tribes/ships/empire/sail_ne_2.png
+share/widelands/tribes/ships/empire/sail_ne_2_pc.png
+share/widelands/tribes/ships/empire/sail_ne_4.png
+share/widelands/tribes/ships/empire/sail_ne_4_pc.png
+share/widelands/tribes/ships/empire/sail_nw_0.5.png
+share/widelands/tribes/ships/empire/sail_nw_0.5_pc.png
 share/widelands/tribes/ships/empire/sail_nw_1.png
 share/widelands/tribes/ships/empire/sail_nw_1_pc.png
+share/widelands/tribes/ships/empire/sail_nw_2.png
+share/widelands/tribes/ships/empire/sail_nw_2_pc.png
+share/widelands/tribes/ships/empire/sail_nw_4.png
+share/widelands/tribes/ships/empire/sail_nw_4_pc.png
+share/widelands/tribes/ships/empire/sail_se_0.5.png
+share/widelands/tribes/ships/empire/sail_se_0.5_pc.png
 share/widelands/tribes/ships/empire/sail_se_1.png
 share/widelands/tribes/ships/empire/sail_se_1_pc.png
+share/widelands/tribes/ships/empire/sail_se_2.png
+share/widelands/tribes/ships/empire/sail_se_2_pc.png
+share/widelands/tribes/ships/empire/sail_se_4.png
+share/widelands/tribes/ships/empire/sail_se_4_pc.png
+share/widelands/tribes/ships/empire/sail_sw_0.5.png
+share/widelands/tribes/ships/empire/sail_sw_0.5_pc.png
 share/widelands/tribes/ships/empire/sail_sw_1.png
 share/widelands/tribes/ships/empire/sail_sw_1_pc.png
+share/widelands/tribes/ships/empire/sail_sw_2.png
+share/widelands/tribes/ships/empire/sail_sw_2_pc.png
+share/widelands/tribes/ships/empire/sail_sw_4.png
+share/widelands/tribes/ships/empire/sail_sw_4_pc.png
+share/widelands/tribes/ships/empire/sail_w_0.5.png
+share/widelands/tribes/ships/empire/sail_w_0.5_pc.png
 share/widelands/tribes/ships/empire/sail_w_1.png
 share/widelands/tribes/ships/empire/sail_w_1_pc.png
+share/widelands/tribes/ships/empire/sail_w_2.png
+share/widelands/tribes/ships/empire/sail_w_2_pc.png
+share/widelands/tribes/ships/empire/sail_w_4.png
+share/widelands/tribes/ships/empire/sail_w_4_pc.png
 share/widelands/tribes/ships/frisians/
 share/widelands/tribes/ships/frisians/idle_0.5.png
 share/widelands/tribes/ships/frisians/idle_0.5_pc.png
@@ -9950,7 +10176,10 @@ share/widelands/tribes/wares/beer_strong
 share/widelands/tribes/wares/beer_strong/menu.png
 share/widelands/tribes/wares/beer_strong/register.lua
 share/widelands/tribes/wares/blackroot/
-share/widelands/tribes/wares/blackroot/idle.png
+share/widelands/tribes/wares/blackroot/idle_0.5.png
+share/widelands/tribes/wares/blackroot/idle_1.png
+share/widelands/tribes/wares/blackroot/idle_2.png
+share/widelands/tribes/wares/blackroot/idle_4.png
 share/widelands/tribes/wares/blackroot/init.lua
 share/widelands/tribes/wares/blackroot/menu.png
 share/widelands/tribes/wares/blackroot/register.lua
@@ -9980,27 +10209,42 @@ share/widelands/tribes/wares/boots_swift
 share/widelands/tribes/wares/boots_swift/menu.png
 share/widelands/tribes/wares/boots_swift/register.lua
 share/widelands/tribes/wares/bread_amazons/
-share/widelands/tribes/wares/bread_amazons/idle.png
+share/widelands/tribes/wares/bread_amazons/idle_0.5.png
+share/widelands/tribes/wares/bread_amazons/idle_1.png
+share/widelands/tribes/wares/bread_amazons/idle_2.png
+share/widelands/tribes/wares/bread_amazons/idle_4.png
 share/widelands/tribes/wares/bread_amazons/init.lua
 share/widelands/tribes/wares/bread_amazons/menu.png
 share/widelands/tribes/wares/bread_amazons/register.lua
 share/widelands/tribes/wares/bread_atlanteans/
-share/widelands/tribes/wares/bread_atlanteans/idle.png
+share/widelands/tribes/wares/bread_atlanteans/idle_0.5.png
+share/widelands/tribes/wares/bread_atlanteans/idle_1.png
+share/widelands/tribes/wares/bread_atlanteans/idle_2.png
+share/widelands/tribes/wares/bread_atlanteans/idle_4.png
 share/widelands/tribes/wares/bread_atlanteans/init.lua
 share/widelands/tribes/wares/bread_atlanteans/menu.png
 share/widelands/tribes/wares/bread_atlanteans/register.lua
 share/widelands/tribes/wares/bread_barbarians/
-share/widelands/tribes/wares/bread_barbarians/idle.png
+share/widelands/tribes/wares/bread_barbarians/idle_0.5.png
+share/widelands/tribes/wares/bread_barbarians/idle_1.png
+share/widelands/tribes/wares/bread_barbarians/idle_2.png
+share/widelands/tribes/wares/bread_barbarians/idle_4.png
 share/widelands/tribes/wares/bread_barbarians/init.lua
 share/widelands/tribes/wares/bread_barbarians/menu.png
 share/widelands/tribes/wares/bread_barbarians/register.lua
 share/widelands/tribes/wares/bread_empire/
-share/widelands/tribes/wares/bread_empire/idle.png
+share/widelands/tribes/wares/bread_empire/idle_0.5.png
+share/widelands/tribes/wares/bread_empire/idle_1.png
+share/widelands/tribes/wares/bread_empire/idle_2.png
+share/widelands/tribes/wares/bread_empire/idle_4.png
 share/widelands/tribes/wares/bread_empire/init.lua
 share/widelands/tribes/wares/bread_empire/menu.png
 share/widelands/tribes/wares/bread_empire/register.lua
 share/widelands/tribes/wares/bread_frisians/
-share/widelands/tribes/wares/bread_frisians/idle.png
+share/widelands/tribes/wares/bread_frisians/idle_0.5.png
+share/widelands/tribes/wares/bread_frisians/idle_1.png
+share/widelands/tribes/wares/bread_frisians/idle_2.png
+share/widelands/tribes/wares/bread_frisians/idle_4.png
 share/widelands/tribes/wares/bread_frisians/init.lua
 share/widelands/tribes/wares/bread_frisians/menu.png
 share/widelands/tribes/wares/bread_frisians/register.lua
@@ -10049,13 +10293,22 @@ share/widelands/tribes/wares/clay/init.l
 share/widelands/tribes/wares/clay/menu.png
 share/widelands/tribes/wares/clay/register.lua
 share/widelands/tribes/wares/cloth/
-share/widelands/tribes/wares/cloth/idle.png
-share/widelands/tribes/wares/cloth/idle_pc.png
+share/widelands/tribes/wares/cloth/idle_0.5.png
+share/widelands/tribes/wares/cloth/idle_0.5_pc.png
+share/widelands/tribes/wares/cloth/idle_1.png
+share/widelands/tribes/wares/cloth/idle_1_pc.png
+share/widelands/tribes/wares/cloth/idle_2.png
+share/widelands/tribes/wares/cloth/idle_2_pc.png
+share/widelands/tribes/wares/cloth/idle_4.png
+share/widelands/tribes/wares/cloth/idle_4_pc.png
 share/widelands/tribes/wares/cloth/init.lua
 share/widelands/tribes/wares/cloth/menu.png
 share/widelands/tribes/wares/cloth/register.lua
 share/widelands/tribes/wares/coal/
-share/widelands/tribes/wares/coal/idle.png
+share/widelands/tribes/wares/coal/idle_0.5.png
+share/widelands/tribes/wares/coal/idle_1.png
+share/widelands/tribes/wares/coal/idle_2.png
+share/widelands/tribes/wares/coal/idle_4.png
 share/widelands/tribes/wares/coal/init.lua
 share/widelands/tribes/wares/coal/menu.png
 share/widelands/tribes/wares/coal/register.lua
@@ -10078,7 +10331,10 @@ share/widelands/tribes/wares/cornmeal/in
 share/widelands/tribes/wares/cornmeal/menu.png
 share/widelands/tribes/wares/cornmeal/register.lua
 share/widelands/tribes/wares/diamond/
-share/widelands/tribes/wares/diamond/idle.png
+share/widelands/tribes/wares/diamond/idle_0.5.png
+share/widelands/tribes/wares/diamond/idle_1.png
+share/widelands/tribes/wares/diamond/idle_2.png
+share/widelands/tribes/wares/diamond/idle_4.png
 share/widelands/tribes/wares/diamond/init.lua
 share/widelands/tribes/wares/diamond/menu.png
 share/widelands/tribes/wares/diamond/register.lua
@@ -10092,6 +10348,11 @@ share/widelands/tribes/wares/fire_tongs/
 share/widelands/tribes/wares/fire_tongs/init.lua
 share/widelands/tribes/wares/fire_tongs/menu.png
 share/widelands/tribes/wares/fire_tongs/register.lua
+share/widelands/tribes/wares/firestones/
+share/widelands/tribes/wares/firestones/idle.png
+share/widelands/tribes/wares/firestones/init.lua
+share/widelands/tribes/wares/firestones/menu.png
+share/widelands/tribes/wares/firestones/register.lua
 share/widelands/tribes/wares/fish/
 share/widelands/tribes/wares/fish/idle.png
 share/widelands/tribes/wares/fish/init.lua
@@ -10121,7 +10382,10 @@ share/widelands/tribes/wares/fruit/init.
 share/widelands/tribes/wares/fruit/menu.png
 share/widelands/tribes/wares/fruit/register.lua
 share/widelands/tribes/wares/fur/
-share/widelands/tribes/wares/fur/idle.png
+share/widelands/tribes/wares/fur/idle_0.5.png
+share/widelands/tribes/wares/fur/idle_1.png
+share/widelands/tribes/wares/fur/idle_2.png
+share/widelands/tribes/wares/fur/idle_4.png
 share/widelands/tribes/wares/fur/init.lua
 share/widelands/tribes/wares/fur/menu.png
 share/widelands/tribes/wares/fur/register.lua
@@ -10170,7 +10434,10 @@ share/widelands/tribes/wares/fur_garment
 share/widelands/tribes/wares/fur_garment_studded/menu.png
 share/widelands/tribes/wares/fur_garment_studded/register.lua
 share/widelands/tribes/wares/gold/
-share/widelands/tribes/wares/gold/idle.png
+share/widelands/tribes/wares/gold/idle_0.5.png
+share/widelands/tribes/wares/gold/idle_1.png
+share/widelands/tribes/wares/gold/idle_2.png
+share/widelands/tribes/wares/gold/idle_4.png
 share/widelands/tribes/wares/gold/init.lua
 share/widelands/tribes/wares/gold/menu.png
 share/widelands/tribes/wares/gold/register.lua
@@ -10183,7 +10450,10 @@ share/widelands/tribes/wares/gold_dust/i
 share/widelands/tribes/wares/gold_dust/menu.png
 share/widelands/tribes/wares/gold_dust/register.lua
 share/widelands/tribes/wares/gold_ore/
-share/widelands/tribes/wares/gold_ore/idle.png
+share/widelands/tribes/wares/gold_ore/idle_0.5.png
+share/widelands/tribes/wares/gold_ore/idle_1.png
+share/widelands/tribes/wares/gold_ore/idle_2.png
+share/widelands/tribes/wares/gold_ore/idle_4.png
 share/widelands/tribes/wares/gold_ore/init.lua
 share/widelands/tribes/wares/gold_ore/menu.png
 share/widelands/tribes/wares/gold_ore/register.lua
@@ -10193,7 +10463,10 @@ share/widelands/tribes/wares/gold_thread
 share/widelands/tribes/wares/gold_thread/menu.png
 share/widelands/tribes/wares/gold_thread/register.lua
 share/widelands/tribes/wares/granite/
-share/widelands/tribes/wares/granite/idle.png
+share/widelands/tribes/wares/granite/idle_0.5.png
+share/widelands/tribes/wares/granite/idle_1.png
+share/widelands/tribes/wares/granite/idle_2.png
+share/widelands/tribes/wares/granite/idle_4.png
 share/widelands/tribes/wares/granite/init.lua
 share/widelands/tribes/wares/granite/menu.png
 share/widelands/tribes/wares/granite/register.lua
@@ -10246,7 +10519,10 @@ share/widelands/tribes/wares/honey/init.
 share/widelands/tribes/wares/honey/menu.png
 share/widelands/tribes/wares/honey/register.lua
 share/widelands/tribes/wares/honey_bread/
-share/widelands/tribes/wares/honey_bread/idle.png
+share/widelands/tribes/wares/honey_bread/idle_0.5.png
+share/widelands/tribes/wares/honey_bread/idle_1.png
+share/widelands/tribes/wares/honey_bread/idle_2.png
+share/widelands/tribes/wares/honey_bread/idle_4.png
 share/widelands/tribes/wares/honey_bread/init.lua
 share/widelands/tribes/wares/honey_bread/menu.png
 share/widelands/tribes/wares/honey_bread/register.lua
@@ -10266,12 +10542,18 @@ share/widelands/tribes/wares/hunting_spe
 share/widelands/tribes/wares/hunting_spear/menu.png
 share/widelands/tribes/wares/hunting_spear/register.lua
 share/widelands/tribes/wares/iron/
-share/widelands/tribes/wares/iron/idle.png
+share/widelands/tribes/wares/iron/idle_0.5.png
+share/widelands/tribes/wares/iron/idle_1.png
+share/widelands/tribes/wares/iron/idle_2.png
+share/widelands/tribes/wares/iron/idle_4.png
 share/widelands/tribes/wares/iron/init.lua
 share/widelands/tribes/wares/iron/menu.png
 share/widelands/tribes/wares/iron/register.lua
 share/widelands/tribes/wares/iron_ore/
-share/widelands/tribes/wares/iron_ore/idle.png
+share/widelands/tribes/wares/iron_ore/idle_0.5.png
+share/widelands/tribes/wares/iron_ore/idle_1.png
+share/widelands/tribes/wares/iron_ore/idle_2.png
+share/widelands/tribes/wares/iron_ore/idle_4.png
 share/widelands/tribes/wares/iron_ore/init.lua
 share/widelands/tribes/wares/iron_ore/menu.png
 share/widelands/tribes/wares/iron_ore/register.lua
@@ -10297,7 +10579,10 @@ share/widelands/tribes/wares/liana/init.
 share/widelands/tribes/wares/liana/menu.png
 share/widelands/tribes/wares/liana/register.lua
 share/widelands/tribes/wares/log/
-share/widelands/tribes/wares/log/idle.png
+share/widelands/tribes/wares/log/idle_0.5.png
+share/widelands/tribes/wares/log/idle_1.png
+share/widelands/tribes/wares/log/idle_2.png
+share/widelands/tribes/wares/log/idle_4.png
 share/widelands/tribes/wares/log/init.lua
 share/widelands/tribes/wares/log/menu.png
 share/widelands/tribes/wares/log/register.lua
@@ -10310,12 +10595,18 @@ share/widelands/tribes/wares/machete/ini
 share/widelands/tribes/wares/machete/menu.png
 share/widelands/tribes/wares/machete/register.lua
 share/widelands/tribes/wares/marble/
-share/widelands/tribes/wares/marble/idle.png
+share/widelands/tribes/wares/marble/idle_0.5.png
+share/widelands/tribes/wares/marble/idle_1.png
+share/widelands/tribes/wares/marble/idle_2.png
+share/widelands/tribes/wares/marble/idle_4.png
 share/widelands/tribes/wares/marble/init.lua
 share/widelands/tribes/wares/marble/menu.png
 share/widelands/tribes/wares/marble/register.lua
 share/widelands/tribes/wares/marble_column/
-share/widelands/tribes/wares/marble_column/idle.png
+share/widelands/tribes/wares/marble_column/idle_0.5.png
+share/widelands/tribes/wares/marble_column/idle_1.png
+share/widelands/tribes/wares/marble_column/idle_2.png
+share/widelands/tribes/wares/marble_column/idle_4.png
 share/widelands/tribes/wares/marble_column/init.lua
 share/widelands/tribes/wares/marble_column/menu.png
 share/widelands/tribes/wares/marble_column/register.lua
@@ -10325,7 +10616,10 @@ share/widelands/tribes/wares/mead/init.l
 share/widelands/tribes/wares/mead/menu.png
 share/widelands/tribes/wares/mead/register.lua
 share/widelands/tribes/wares/meal/
-share/widelands/tribes/wares/meal/idle.png
+share/widelands/tribes/wares/meal/idle_0.5.png
+share/widelands/tribes/wares/meal/idle_1.png
+share/widelands/tribes/wares/meal/idle_2.png
+share/widelands/tribes/wares/meal/idle_4.png
 share/widelands/tribes/wares/meal/init.lua
 share/widelands/tribes/wares/meal/menu.png
 share/widelands/tribes/wares/meal/register.lua
@@ -10350,7 +10644,10 @@ share/widelands/tribes/wares/pick/init.l
 share/widelands/tribes/wares/pick/menu.png
 share/widelands/tribes/wares/pick/register.lua
 share/widelands/tribes/wares/planks/
-share/widelands/tribes/wares/planks/idle.png
+share/widelands/tribes/wares/planks/idle_0.5.png
+share/widelands/tribes/wares/planks/idle_1.png
+share/widelands/tribes/wares/planks/idle_2.png
+share/widelands/tribes/wares/planks/idle_4.png
 share/widelands/tribes/wares/planks/init.lua
 share/widelands/tribes/wares/planks/menu.png
 share/widelands/tribes/wares/planks/register.lua
@@ -10363,12 +10660,18 @@ share/widelands/tribes/wares/protector_p
 share/widelands/tribes/wares/protector_padded/menu.png
 share/widelands/tribes/wares/protector_padded/register.lua
 share/widelands/tribes/wares/quartz/
-share/widelands/tribes/wares/quartz/idle.png
+share/widelands/tribes/wares/quartz/idle_0.5.png
+share/widelands/tribes/wares/quartz/idle_1.png
+share/widelands/tribes/wares/quartz/idle_2.png
+share/widelands/tribes/wares/quartz/idle_4.png
 share/widelands/tribes/wares/quartz/init.lua
 share/widelands/tribes/wares/quartz/menu.png
 share/widelands/tribes/wares/quartz/register.lua
 share/widelands/tribes/wares/ration/
-share/widelands/tribes/wares/ration/idle.png
+share/widelands/tribes/wares/ration/idle_0.5.png
+share/widelands/tribes/wares/ration/idle_1.png
+share/widelands/tribes/wares/ration/idle_2.png
+share/widelands/tribes/wares/ration/idle_4.png
 share/widelands/tribes/wares/ration/init.lua
 share/widelands/tribes/wares/ration/menu.png
 share/widelands/tribes/wares/ration/register.lua
@@ -10399,7 +10702,10 @@ share/widelands/tribes/wares/saw/init.lu
 share/widelands/tribes/wares/saw/menu.png
 share/widelands/tribes/wares/saw/register.lua
 share/widelands/tribes/wares/scrap_iron/
-share/widelands/tribes/wares/scrap_iron/idle.png
+share/widelands/tribes/wares/scrap_iron/idle_0.5.png
+share/widelands/tribes/wares/scrap_iron/idle_1.png
+share/widelands/tribes/wares/scrap_iron/idle_2.png
+share/widelands/tribes/wares/scrap_iron/idle_4.png
 share/widelands/tribes/wares/scrap_iron/init.lua
 share/widelands/tribes/wares/scrap_iron/menu.png
 share/widelands/tribes/wares/scrap_iron/register.lua
@@ -10439,7 +10745,10 @@ share/widelands/tribes/wares/smoked_meat
 share/widelands/tribes/wares/smoked_meat/menu.png
 share/widelands/tribes/wares/smoked_meat/register.lua
 share/widelands/tribes/wares/snack/
-share/widelands/tribes/wares/snack/idle.png
+share/widelands/tribes/wares/snack/idle_0.5.png
+share/widelands/tribes/wares/snack/idle_1.png
+share/widelands/tribes/wares/snack/idle_2.png
+share/widelands/tribes/wares/snack/idle_4.png
 share/widelands/tribes/wares/snack/init.lua
 share/widelands/tribes/wares/snack/menu.png
 share/widelands/tribes/wares/snack/register.lua
@@ -10484,8 +10793,14 @@ share/widelands/tribes/wares/spider_silk
 share/widelands/tribes/wares/spider_silk/menu.png
 share/widelands/tribes/wares/spider_silk/register.lua
 share/widelands/tribes/wares/spidercloth/
-share/widelands/tribes/wares/spidercloth/idle.png
-share/widelands/tribes/wares/spidercloth/idle_pc.png
+share/widelands/tribes/wares/spidercloth/idle_0.5.png
+share/widelands/tribes/wares/spidercloth/idle_0.5_pc.png
+share/widelands/tribes/wares/spidercloth/idle_1.png
+share/widelands/tribes/wares/spidercloth/idle_1_pc.png
+share/widelands/tribes/wares/spidercloth/idle_2.png
+share/widelands/tribes/wares/spidercloth/idle_2_pc.png
+share/widelands/tribes/wares/spidercloth/idle_4.png
+share/widelands/tribes/wares/spidercloth/idle_4_pc.png
 share/widelands/tribes/wares/spidercloth/init.lua
 share/widelands/tribes/wares/spidercloth/menu.png
 share/widelands/tribes/wares/spidercloth/register.lua
@@ -21731,6 +22046,7 @@ share/widelands/txts/tips/
 share/widelands/txts/tips/amazons.lua
 share/widelands/txts/tips/atlanteans.lua
 share/widelands/txts/tips/barbarians.lua
+share/widelands/txts/tips/crash.lua
 share/widelands/txts/tips/editor.lua
 share/widelands/txts/tips/empire.lua
 share/widelands/txts/tips/frisians.lua

Reply via email to