aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--games/colobot/Makefile13
-rw-r--r--games/colobot/distinfo10
-rw-r--r--games/colobot/files/patch-CMakeLists.txt21
-rw-r--r--games/colobot/files/patch-src_common_config.h.cmake10
-rw-r--r--games/colobot/files/patch-src_common_system_system.cpp20
-rw-r--r--games/colobot/files/patch-src_common_system_system__linux.cpp11
-rw-r--r--games/colobot/files/patch-src_object_task_taskgoto.h11
-rw-r--r--games/colobot/pkg-plist649
8 files changed, 682 insertions, 63 deletions
diff --git a/games/colobot/Makefile b/games/colobot/Makefile
index 80d6403dc73a..2f98155ce9ab 100644
--- a/games/colobot/Makefile
+++ b/games/colobot/Makefile
@@ -1,10 +1,10 @@
PORTNAME= colobot
DISTVERSIONPREFIX= ${PORTNAME}-gold-
-DISTVERSION= 0.1.12
+DISTVERSION= 0.2.0
DISTVERSIONSUFFIX= -alpha
-PORTREVISION= 8
CATEGORIES= games education
MASTER_SITES= https://colobot.info/files/music/:music
+# music files are identical, keep old distfile for now
DISTFILES= colobot-music_ogg_0.1.12-alpha.tar.gz:music
MAINTAINER= makc@FreeBSD.org
@@ -32,25 +32,22 @@ USE_SDL= image2 ttf2
USE_LDCONFIG= yes
USE_GITHUB= yes
-GH_TUPLE= colobot:colobot-data:c467bd9:data
+GH_TUPLE= colobot:colobot-data:0ac8197:data
-CMAKE_ON= PLATFORM_BSD
LDFLAGS_i386= -Wl,-znotext
SHEBANG_FILES= data/i18n-tools/scripts/process_translations.py
BINARY_ALIAS= xmlstarlet=${LOCALBASE}/bin/xml
post-extract:
- @${MV} ${WRKDIR}/colobot-data-c467bd9/* ${WRKSRC}/data
+ @${MV} ${WRKDIR}/colobot-data-0ac8197/* ${WRKSRC}/data
@${MV} ${WRKDIR}/*.ogg ${WRKDIR}/LICENSE.txt ${WRKSRC}/data/music/
post-patch:
${REINPLACE_CMD} '/COLOBOT_INSTALL_BIN_DIR/s|games|bin|' \
${WRKSRC}/CMakeLists.txt
- ${REINPLACE_CMD} 's|PLATFORM_GNU|PLATFORM_GNU OR PLATFORM_BSD|g' \
+ ${REINPLACE_CMD} 's|PLATFORM_GNU|PLATFORM_GNU OR PLATFORM_FREEBSD|g' \
${WRKSRC}/desktop/CMakeLists.txt
- ${REINPLACE_CMD} 's|PLATFORM_MACOSX|PLATFORM_MACOSX OR PLATFORM_BSD|g' \
- ${WRKSRC}/src/CMakeLists.txt
${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' \
${WRKSRC}/cmake/Find*.cmake \
${WRKSRC}/tools/check-levels.sh
diff --git a/games/colobot/distinfo b/games/colobot/distinfo
index b14d49bc200e..a11cb5c8b7fd 100644
--- a/games/colobot/distinfo
+++ b/games/colobot/distinfo
@@ -1,7 +1,7 @@
-TIMESTAMP = 1551719919
+TIMESTAMP = 1630259482
SHA256 (colobot-music_ogg_0.1.12-alpha.tar.gz) = 55e89d244f1f63e2467ef71253ca881ee31279f02aac9ac4706ef26c466306e9
SIZE (colobot-music_ogg_0.1.12-alpha.tar.gz) = 55596353
-SHA256 (colobot-colobot-colobot-gold-0.1.12-alpha_GH0.tar.gz) = 38e01a6fb8c670203b86e7a100c79ed4ab4a9a4dcc01fd26a6a57f40fa1a8b5c
-SIZE (colobot-colobot-colobot-gold-0.1.12-alpha_GH0.tar.gz) = 1468594
-SHA256 (colobot-colobot-data-c467bd9_GH0.tar.gz) = 4a6a53ea22970870d05a12ebf56f595d34d765a789ab3b0aae618f2747312c35
-SIZE (colobot-colobot-data-c467bd9_GH0.tar.gz) = 54728879
+SHA256 (colobot-colobot-colobot-gold-0.2.0-alpha_GH0.tar.gz) = 633ce4ec9b54c657942453e769a2339befb2d0afff8b8b3589a73d005e097ab6
+SIZE (colobot-colobot-colobot-gold-0.2.0-alpha_GH0.tar.gz) = 1514455
+SHA256 (colobot-colobot-data-0ac8197_GH0.tar.gz) = b9d47f214fb98b00a87d20a2c2c0c97b9c21e944b879d32c31617cc5eecaa488
+SIZE (colobot-colobot-data-0ac8197_GH0.tar.gz) = 57792334
diff --git a/games/colobot/files/patch-CMakeLists.txt b/games/colobot/files/patch-CMakeLists.txt
index 2e7b482c273c..f0f2a9ddd173 100644
--- a/games/colobot/files/patch-CMakeLists.txt
+++ b/games/colobot/files/patch-CMakeLists.txt
@@ -1,6 +1,17 @@
---- CMakeLists.txt.orig 2021-12-03 18:38:49 UTC
+--- CMakeLists.txt.orig 2021-08-21 20:57:34 UTC
+++ CMakeLists.txt
-@@ -135,15 +135,8 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
+@@ -115,8 +115,8 @@ elseif("${CMAKE_SYSTEM_NAME}" MATCHES "FreeBSD")
+
+ # Platform-dependent implementation of system.h
+ # On FreeBSD we can use *_other
+- set(SYSTEM_CPP_MODULE "system_other.cpp")
+- set(SYSTEM_H_MODULE "system_other.h")
++ set(SYSTEM_CPP_MODULE "system_linux.cpp")
++ set(SYSTEM_H_MODULE "system_linux.h")
+ # To avoid CMake warning
+ set(CMAKE_MACOSX_RPATH 1)
+ else()
+@@ -155,15 +155,8 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
message(STATUS "Detected GCC version 4.7+")
@@ -17,10 +28,14 @@
set(TEST_CXX_FLAGS "-pthread")
add_definitions(-DNOEXCEPT=noexcept -DHAVE_DEMANGLE)
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
-@@ -153,10 +146,7 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
+@@ -173,14 +166,7 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
message(STATUS "Detected Clang version 3.1+")
+- if (${PLATFORM_FREEBSD})
+- set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fuse-ld=bfd")
+- endif()
+-
- set(NORMAL_CXX_FLAGS "-std=c++11 -Wall -Werror -Wold-style-cast -pedantic-errors -Wmissing-prototypes")
- set(NORMAL_CXX_FLAGS "${NORMAL_CXX_FLAGS} -Wno-error=deprecated-declarations") # updated version of physfs is not available on some platforms so we keep using deprecated functions, see #958
- set(RELEASE_CXX_FLAGS "-O2")
diff --git a/games/colobot/files/patch-src_common_config.h.cmake b/games/colobot/files/patch-src_common_config.h.cmake
new file mode 100644
index 000000000000..2817a913d30b
--- /dev/null
+++ b/games/colobot/files/patch-src_common_config.h.cmake
@@ -0,0 +1,10 @@
+--- src/common/config.h.cmake.orig 2021-12-03 23:29:13 UTC
++++ src/common/config.h.cmake
+@@ -2,6 +2,7 @@
+
+ // Macros set by CMake
+ #cmakedefine PLATFORM_WINDOWS @PLATFORM_WINDOWS@
++#cmakedefine PLATFORM_FREEBSD @PLATFORM_FREEBSD@
+ #cmakedefine PLATFORM_LINUX @PLATFORM_LINUX@
+ #cmakedefine PLATFORM_GNU @PLATFORM_GNU@
+ #cmakedefine PLATFORM_MACOSX @PLATFORM_MACOSX@
diff --git a/games/colobot/files/patch-src_common_system_system.cpp b/games/colobot/files/patch-src_common_system_system.cpp
new file mode 100644
index 000000000000..88d93b0e2ee7
--- /dev/null
+++ b/games/colobot/files/patch-src_common_system_system.cpp
@@ -0,0 +1,20 @@
+--- src/common/system/system.cpp.orig 2021-08-21 20:57:34 UTC
++++ src/common/system/system.cpp
+@@ -24,7 +24,7 @@
+
+ #if defined(PLATFORM_WINDOWS)
+ #include "common/system/system_windows.h"
+-#elif defined(PLATFORM_LINUX)
++#elif defined(PLATFORM_LINUX) || defined(PLATFORM_FREEBSD)
+ #include "common/system/system_linux.h"
+ #elif defined(PLATFORM_MACOSX)
+ #include "common/system/system_macosx.h"
+@@ -43,7 +43,7 @@ std::unique_ptr<CSystemUtils> CSystemUtils::Create()
+ std::unique_ptr<CSystemUtils> instance;
+ #if defined(PLATFORM_WINDOWS)
+ instance = MakeUnique<CSystemUtilsWindows>();
+-#elif defined(PLATFORM_LINUX)
++#elif defined(PLATFORM_LINUX) || defined(PLATFORM_FREEBSD)
+ instance = MakeUnique<CSystemUtilsLinux>();
+ #elif defined(PLATFORM_MACOSX)
+ instance = MakeUnique<CSystemUtilsMacOSX>();
diff --git a/games/colobot/files/patch-src_common_system_system__linux.cpp b/games/colobot/files/patch-src_common_system_system__linux.cpp
new file mode 100644
index 000000000000..f8c50217d45b
--- /dev/null
+++ b/games/colobot/files/patch-src_common_system_system__linux.cpp
@@ -0,0 +1,11 @@
+--- src/common/system/system_linux.cpp.orig 2021-12-03 22:35:25 UTC
++++ src/common/system/system_linux.cpp
+@@ -98,7 +98,7 @@ void CSystemUtilsLinux::InterpolateTimeStamp(SystemTim
+
+ void CSystemUtilsLinux::GetCurrentTimeStamp(SystemTimeStamp *stamp)
+ {
+- clock_gettime(CLOCK_MONOTONIC_RAW, &stamp->clockTime);
++ clock_gettime(CLOCK_MONOTONIC, &stamp->clockTime);
+ }
+
+ long long CSystemUtilsLinux::TimeStampExactDiff(SystemTimeStamp *before, SystemTimeStamp *after)
diff --git a/games/colobot/files/patch-src_object_task_taskgoto.h b/games/colobot/files/patch-src_object_task_taskgoto.h
deleted file mode 100644
index 1ed370fc0815..000000000000
--- a/games/colobot/files/patch-src_object_task_taskgoto.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/object/task/taskgoto.h.orig 2019-10-18 08:14:46 UTC
-+++ src/object/task/taskgoto.h
-@@ -147,7 +147,7 @@ class CTaskGoto : public CForegroundTask (protected)
- int m_bmTotal = 0; // number of points in m_bmPoints
- int m_bmIndex = 0; // index in m_bmPoints
- Math::Vector m_bmPoints[MAXPOINTS+2];
-- char m_bmIter[MAXPOINTS+2] = {};
-+ signed char m_bmIter[MAXPOINTS+2] = {};
- int m_bmIterCounter = 0;
- CObject* m_bmCargoObject = nullptr;
- float m_bmFinalMove = 0.0f; // final advance distance
diff --git a/games/colobot/pkg-plist b/games/colobot/pkg-plist
index 41eb8ac3eb26..a7fd6f3659b7 100644
--- a/games/colobot/pkg-plist
+++ b/games/colobot/pkg-plist
@@ -150,7 +150,6 @@ share/games/colobot/help/B/cbot/bool.txt
share/games/colobot/help/B/cbot/break.txt
share/games/colobot/help/B/cbot/build.txt
share/games/colobot/help/B/cbot/buildingenabled.txt
-share/games/colobot/help/B/cbot/busy.txt
share/games/colobot/help/B/cbot/canbuild.txt
share/games/colobot/help/B/cbot/canresearch.txt
share/games/colobot/help/B/cbot/category.txt
@@ -161,6 +160,7 @@ share/games/colobot/help/B/cbot/colors.txt
share/games/colobot/help/B/cbot/cond.txt
share/games/colobot/help/B/cbot/continue.txt
share/games/colobot/help/B/cbot/cos.txt
+share/games/colobot/help/B/cbot/deflag.txt
share/games/colobot/help/B/cbot/deletef.txt
share/games/colobot/help/B/cbot/delinfo.txt
share/games/colobot/help/B/cbot/destroy.txt
@@ -179,6 +179,7 @@ share/games/colobot/help/B/cbot/factory.txt
share/games/colobot/help/B/cbot/false.txt
share/games/colobot/help/B/cbot/file.txt
share/games/colobot/help/B/cbot/fire.txt
+share/games/colobot/help/B/cbot/flag.txt
share/games/colobot/help/B/cbot/flatgrnd.txt
share/games/colobot/help/B/cbot/flatspace.txt
share/games/colobot/help/B/cbot/float.txt
@@ -189,6 +190,7 @@ share/games/colobot/help/B/cbot/goto.txt
share/games/colobot/help/B/cbot/grab.txt
share/games/colobot/help/B/cbot/if.txt
share/games/colobot/help/B/cbot/int.txt
+share/games/colobot/help/B/cbot/isbusy.txt
share/games/colobot/help/B/cbot/jet.txt
share/games/colobot/help/B/cbot/message.txt
share/games/colobot/help/B/cbot/motor.txt
@@ -297,9 +299,12 @@ share/games/colobot/help/B/object/botsub.txt
share/games/colobot/help/B/object/bottarg.txt
share/games/colobot/help/B/object/bottr.txt
share/games/colobot/help/B/object/bottump.txt
+share/games/colobot/help/B/object/bromush.txt
share/games/colobot/help/B/object/bullet.txt
+share/games/colobot/help/B/object/bush.txt
share/games/colobot/help/B/object/captor.txt
share/games/colobot/help/B/object/convert.txt
+share/games/colobot/help/B/object/crystal.txt
share/games/colobot/help/B/object/derrick.txt
share/games/colobot/help/B/object/destroy.txt
share/games/colobot/help/B/object/egg.txt
@@ -309,6 +314,8 @@ share/games/colobot/help/B/object/exchange.txt
share/games/colobot/help/B/object/factory.txt
share/games/colobot/help/B/object/flag.txt
share/games/colobot/help/B/object/goal.txt
+share/games/colobot/help/B/object/gravi.txt
+share/games/colobot/help/B/object/gremush.txt
share/games/colobot/help/B/object/human.txt
share/games/colobot/help/B/object/huston.txt
share/games/colobot/help/B/object/key.txt
@@ -353,6 +360,7 @@ share/games/colobot/help/B/programs/5_CollectTitanium2_link.txt
share/games/colobot/help/B/programs/6_KillAnt1.txt
share/games/colobot/help/B/programs/6_KillAnt1_link.txt
share/games/colobot/help/B/programs/7_CollectTitanium3.txt
+share/games/colobot/help/B/programs/7_CollectTitanium3_link.txt
share/games/colobot/help/B/programs/8_ServiceTower1.txt
share/games/colobot/help/B/programs/8_ServiceTower1_link.txt
share/games/colobot/help/B/programs/9_terranova.txt
@@ -372,7 +380,6 @@ share/games/colobot/help/C/cbot/bool.txt
share/games/colobot/help/C/cbot/break.txt
share/games/colobot/help/C/cbot/build.txt
share/games/colobot/help/C/cbot/buildingenabled.txt
-share/games/colobot/help/C/cbot/busy.txt
share/games/colobot/help/C/cbot/canbuild.txt
share/games/colobot/help/C/cbot/canresearch.txt
share/games/colobot/help/C/cbot/category.txt
@@ -383,6 +390,7 @@ share/games/colobot/help/C/cbot/colors.txt
share/games/colobot/help/C/cbot/cond.txt
share/games/colobot/help/C/cbot/continue.txt
share/games/colobot/help/C/cbot/cos.txt
+share/games/colobot/help/C/cbot/deflag.txt
share/games/colobot/help/C/cbot/deletef.txt
share/games/colobot/help/C/cbot/delinfo.txt
share/games/colobot/help/C/cbot/destroy.txt
@@ -401,6 +409,7 @@ share/games/colobot/help/C/cbot/factory.txt
share/games/colobot/help/C/cbot/false.txt
share/games/colobot/help/C/cbot/file.txt
share/games/colobot/help/C/cbot/fire.txt
+share/games/colobot/help/C/cbot/flag.txt
share/games/colobot/help/C/cbot/flatgrnd.txt
share/games/colobot/help/C/cbot/flatspace.txt
share/games/colobot/help/C/cbot/float.txt
@@ -411,6 +420,7 @@ share/games/colobot/help/C/cbot/goto.txt
share/games/colobot/help/C/cbot/grab.txt
share/games/colobot/help/C/cbot/if.txt
share/games/colobot/help/C/cbot/int.txt
+share/games/colobot/help/C/cbot/isbusy.txt
share/games/colobot/help/C/cbot/jet.txt
share/games/colobot/help/C/cbot/message.txt
share/games/colobot/help/C/cbot/motor.txt
@@ -519,9 +529,12 @@ share/games/colobot/help/C/object/botsub.txt
share/games/colobot/help/C/object/bottarg.txt
share/games/colobot/help/C/object/bottr.txt
share/games/colobot/help/C/object/bottump.txt
+share/games/colobot/help/C/object/bromush.txt
share/games/colobot/help/C/object/bullet.txt
+share/games/colobot/help/C/object/bush.txt
share/games/colobot/help/C/object/captor.txt
share/games/colobot/help/C/object/convert.txt
+share/games/colobot/help/C/object/crystal.txt
share/games/colobot/help/C/object/derrick.txt
share/games/colobot/help/C/object/destroy.txt
share/games/colobot/help/C/object/egg.txt
@@ -531,6 +544,8 @@ share/games/colobot/help/C/object/exchange.txt
share/games/colobot/help/C/object/factory.txt
share/games/colobot/help/C/object/flag.txt
share/games/colobot/help/C/object/goal.txt
+share/games/colobot/help/C/object/gravi.txt
+share/games/colobot/help/C/object/gremush.txt
share/games/colobot/help/C/object/human.txt
share/games/colobot/help/C/object/huston.txt
share/games/colobot/help/C/object/key.txt
@@ -575,6 +590,7 @@ share/games/colobot/help/C/programs/5_CollectTitanium2_link.txt
share/games/colobot/help/C/programs/6_KillAnt1.txt
share/games/colobot/help/C/programs/6_KillAnt1_link.txt
share/games/colobot/help/C/programs/7_CollectTitanium3.txt
+share/games/colobot/help/C/programs/7_CollectTitanium3_link.txt
share/games/colobot/help/C/programs/8_ServiceTower1.txt
share/games/colobot/help/C/programs/8_ServiceTower1_link.txt
share/games/colobot/help/C/programs/9_terranova.txt
@@ -594,7 +610,6 @@ share/games/colobot/help/D/cbot/bool.txt
share/games/colobot/help/D/cbot/break.txt
share/games/colobot/help/D/cbot/build.txt
share/games/colobot/help/D/cbot/buildingenabled.txt
-share/games/colobot/help/D/cbot/busy.txt
share/games/colobot/help/D/cbot/canbuild.txt
share/games/colobot/help/D/cbot/canresearch.txt
share/games/colobot/help/D/cbot/category.txt
@@ -605,6 +620,7 @@ share/games/colobot/help/D/cbot/colors.txt
share/games/colobot/help/D/cbot/cond.txt
share/games/colobot/help/D/cbot/continue.txt
share/games/colobot/help/D/cbot/cos.txt
+share/games/colobot/help/D/cbot/deflag.txt
share/games/colobot/help/D/cbot/deletef.txt
share/games/colobot/help/D/cbot/delinfo.txt
share/games/colobot/help/D/cbot/destroy.txt
@@ -623,6 +639,7 @@ share/games/colobot/help/D/cbot/factory.txt
share/games/colobot/help/D/cbot/false.txt
share/games/colobot/help/D/cbot/file.txt
share/games/colobot/help/D/cbot/fire.txt
+share/games/colobot/help/D/cbot/flag.txt
share/games/colobot/help/D/cbot/flatgrnd.txt
share/games/colobot/help/D/cbot/flatspace.txt
share/games/colobot/help/D/cbot/float.txt
@@ -633,6 +650,7 @@ share/games/colobot/help/D/cbot/goto.txt
share/games/colobot/help/D/cbot/grab.txt
share/games/colobot/help/D/cbot/if.txt
share/games/colobot/help/D/cbot/int.txt
+share/games/colobot/help/D/cbot/isbusy.txt
share/games/colobot/help/D/cbot/jet.txt
share/games/colobot/help/D/cbot/message.txt
share/games/colobot/help/D/cbot/motor.txt
@@ -741,9 +759,12 @@ share/games/colobot/help/D/object/botsub.txt
share/games/colobot/help/D/object/bottarg.txt
share/games/colobot/help/D/object/bottr.txt
share/games/colobot/help/D/object/bottump.txt
+share/games/colobot/help/D/object/bromush.txt
share/games/colobot/help/D/object/bullet.txt
+share/games/colobot/help/D/object/bush.txt
share/games/colobot/help/D/object/captor.txt
share/games/colobot/help/D/object/convert.txt
+share/games/colobot/help/D/object/crystal.txt
share/games/colobot/help/D/object/derrick.txt
share/games/colobot/help/D/object/destroy.txt
share/games/colobot/help/D/object/egg.txt
@@ -753,6 +774,8 @@ share/games/colobot/help/D/object/exchange.txt
share/games/colobot/help/D/object/factory.txt
share/games/colobot/help/D/object/flag.txt
share/games/colobot/help/D/object/goal.txt
+share/games/colobot/help/D/object/gravi.txt
+share/games/colobot/help/D/object/gremush.txt
share/games/colobot/help/D/object/human.txt
share/games/colobot/help/D/object/huston.txt
share/games/colobot/help/D/object/key.txt
@@ -797,6 +820,7 @@ share/games/colobot/help/D/programs/5_CollectTitanium2_link.txt
share/games/colobot/help/D/programs/6_KillAnt1.txt
share/games/colobot/help/D/programs/6_KillAnt1_link.txt
share/games/colobot/help/D/programs/7_CollectTitanium3.txt
+share/games/colobot/help/D/programs/7_CollectTitanium3_link.txt
share/games/colobot/help/D/programs/8_ServiceTower1.txt
share/games/colobot/help/D/programs/8_ServiceTower1_link.txt
share/games/colobot/help/D/programs/9_terranova.txt
@@ -816,7 +840,6 @@ share/games/colobot/help/E/cbot/bool.txt
share/games/colobot/help/E/cbot/break.txt
share/games/colobot/help/E/cbot/build.txt
share/games/colobot/help/E/cbot/buildingenabled.txt
-share/games/colobot/help/E/cbot/busy.txt
share/games/colobot/help/E/cbot/canbuild.txt
share/games/colobot/help/E/cbot/canresearch.txt
share/games/colobot/help/E/cbot/category.txt
@@ -827,6 +850,7 @@ share/games/colobot/help/E/cbot/colors.txt
share/games/colobot/help/E/cbot/cond.txt
share/games/colobot/help/E/cbot/continue.txt
share/games/colobot/help/E/cbot/cos.txt
+share/games/colobot/help/E/cbot/deflag.txt
share/games/colobot/help/E/cbot/deletef.txt
share/games/colobot/help/E/cbot/delinfo.txt
share/games/colobot/help/E/cbot/destroy.txt
@@ -845,6 +869,7 @@ share/games/colobot/help/E/cbot/factory.txt
share/games/colobot/help/E/cbot/false.txt
share/games/colobot/help/E/cbot/file.txt
share/games/colobot/help/E/cbot/fire.txt
+share/games/colobot/help/E/cbot/flag.txt
share/games/colobot/help/E/cbot/flatgrnd.txt
share/games/colobot/help/E/cbot/flatspace.txt
share/games/colobot/help/E/cbot/float.txt
@@ -855,6 +880,7 @@ share/games/colobot/help/E/cbot/goto.txt
share/games/colobot/help/E/cbot/grab.txt
share/games/colobot/help/E/cbot/if.txt
share/games/colobot/help/E/cbot/int.txt
+share/games/colobot/help/E/cbot/isbusy.txt
share/games/colobot/help/E/cbot/jet.txt
share/games/colobot/help/E/cbot/message.txt
share/games/colobot/help/E/cbot/motor.txt
@@ -963,9 +989,12 @@ share/games/colobot/help/E/object/botsub.txt
share/games/colobot/help/E/object/bottarg.txt
share/games/colobot/help/E/object/bottr.txt
share/games/colobot/help/E/object/bottump.txt
+share/games/colobot/help/E/object/bromush.txt
share/games/colobot/help/E/object/bullet.txt
+share/games/colobot/help/E/object/bush.txt
share/games/colobot/help/E/object/captor.txt
share/games/colobot/help/E/object/convert.txt
+share/games/colobot/help/E/object/crystal.txt
share/games/colobot/help/E/object/derrick.txt
share/games/colobot/help/E/object/destroy.txt
share/games/colobot/help/E/object/egg.txt
@@ -975,6 +1004,8 @@ share/games/colobot/help/E/object/exchange.txt
share/games/colobot/help/E/object/factory.txt
share/games/colobot/help/E/object/flag.txt
share/games/colobot/help/E/object/goal.txt
+share/games/colobot/help/E/object/gravi.txt
+share/games/colobot/help/E/object/gremush.txt
share/games/colobot/help/E/object/human.txt
share/games/colobot/help/E/object/huston.txt
share/games/colobot/help/E/object/key.txt
@@ -1019,6 +1050,7 @@ share/games/colobot/help/E/programs/5_CollectTitanium2_link.txt
share/games/colobot/help/E/programs/6_KillAnt1.txt
share/games/colobot/help/E/programs/6_KillAnt1_link.txt
share/games/colobot/help/E/programs/7_CollectTitanium3.txt
+share/games/colobot/help/E/programs/7_CollectTitanium3_link.txt
share/games/colobot/help/E/programs/8_ServiceTower1.txt
share/games/colobot/help/E/programs/8_ServiceTower1_link.txt
share/games/colobot/help/E/programs/9_terranova.txt
@@ -1038,7 +1070,6 @@ share/games/colobot/help/F/cbot/bool.txt
share/games/colobot/help/F/cbot/break.txt
share/games/colobot/help/F/cbot/build.txt
share/games/colobot/help/F/cbot/buildingenabled.txt
-share/games/colobot/help/F/cbot/busy.txt
share/games/colobot/help/F/cbot/canbuild.txt
share/games/colobot/help/F/cbot/canresearch.txt
share/games/colobot/help/F/cbot/category.txt
@@ -1049,6 +1080,7 @@ share/games/colobot/help/F/cbot/colors.txt
share/games/colobot/help/F/cbot/cond.txt
share/games/colobot/help/F/cbot/continue.txt
share/games/colobot/help/F/cbot/cos.txt
+share/games/colobot/help/F/cbot/deflag.txt
share/games/colobot/help/F/cbot/deletef.txt
share/games/colobot/help/F/cbot/delinfo.txt
share/games/colobot/help/F/cbot/destroy.txt
@@ -1067,6 +1099,7 @@ share/games/colobot/help/F/cbot/factory.txt
share/games/colobot/help/F/cbot/false.txt
share/games/colobot/help/F/cbot/file.txt
share/games/colobot/help/F/cbot/fire.txt
+share/games/colobot/help/F/cbot/flag.txt
share/games/colobot/help/F/cbot/flatgrnd.txt
share/games/colobot/help/F/cbot/flatspace.txt
share/games/colobot/help/F/cbot/float.txt
@@ -1077,6 +1110,7 @@ share/games/colobot/help/F/cbot/goto.txt
share/games/colobot/help/F/cbot/grab.txt
share/games/colobot/help/F/cbot/if.txt
share/games/colobot/help/F/cbot/int.txt
+share/games/colobot/help/F/cbot/isbusy.txt
share/games/colobot/help/F/cbot/jet.txt
share/games/colobot/help/F/cbot/message.txt
share/games/colobot/help/F/cbot/motor.txt
@@ -1185,9 +1219,12 @@ share/games/colobot/help/F/object/botsub.txt
share/games/colobot/help/F/object/bottarg.txt
share/games/colobot/help/F/object/bottr.txt
share/games/colobot/help/F/object/bottump.txt
+share/games/colobot/help/F/object/bromush.txt
share/games/colobot/help/F/object/bullet.txt
+share/games/colobot/help/F/object/bush.txt
share/games/colobot/help/F/object/captor.txt
share/games/colobot/help/F/object/convert.txt
+share/games/colobot/help/F/object/crystal.txt
share/games/colobot/help/F/object/derrick.txt
share/games/colobot/help/F/object/destroy.txt
share/games/colobot/help/F/object/egg.txt
@@ -1197,6 +1234,8 @@ share/games/colobot/help/F/object/exchange.txt
share/games/colobot/help/F/object/factory.txt
share/games/colobot/help/F/object/flag.txt
share/games/colobot/help/F/object/goal.txt
+share/games/colobot/help/F/object/gravi.txt
+share/games/colobot/help/F/object/gremush.txt
share/games/colobot/help/F/object/human.txt
share/games/colobot/help/F/object/huston.txt
share/games/colobot/help/F/object/key.txt
@@ -1241,6 +1280,7 @@ share/games/colobot/help/F/programs/5_CollectTitanium2_link.txt
share/games/colobot/help/F/programs/6_KillAnt1.txt
share/games/colobot/help/F/programs/6_KillAnt1_link.txt
share/games/colobot/help/F/programs/7_CollectTitanium3.txt
+share/games/colobot/help/F/programs/7_CollectTitanium3_link.txt
share/games/colobot/help/F/programs/8_ServiceTower1.txt
share/games/colobot/help/F/programs/8_ServiceTower1_link.txt
share/games/colobot/help/F/programs/9_terranova.txt
@@ -1260,7 +1300,6 @@ share/games/colobot/help/P/cbot/bool.txt
share/games/colobot/help/P/cbot/break.txt
share/games/colobot/help/P/cbot/build.txt
share/games/colobot/help/P/cbot/buildingenabled.txt
-share/games/colobot/help/P/cbot/busy.txt
share/games/colobot/help/P/cbot/canbuild.txt
share/games/colobot/help/P/cbot/canresearch.txt
share/games/colobot/help/P/cbot/category.txt
@@ -1271,6 +1310,7 @@ share/games/colobot/help/P/cbot/colors.txt
share/games/colobot/help/P/cbot/cond.txt
share/games/colobot/help/P/cbot/continue.txt
share/games/colobot/help/P/cbot/cos.txt
+share/games/colobot/help/P/cbot/deflag.txt
share/games/colobot/help/P/cbot/deletef.txt
share/games/colobot/help/P/cbot/delinfo.txt
share/games/colobot/help/P/cbot/destroy.txt
@@ -1289,6 +1329,7 @@ share/games/colobot/help/P/cbot/factory.txt
share/games/colobot/help/P/cbot/false.txt
share/games/colobot/help/P/cbot/file.txt
share/games/colobot/help/P/cbot/fire.txt
+share/games/colobot/help/P/cbot/flag.txt
share/games/colobot/help/P/cbot/flatgrnd.txt
share/games/colobot/help/P/cbot/flatspace.txt
share/games/colobot/help/P/cbot/float.txt
@@ -1299,6 +1340,7 @@ share/games/colobot/help/P/cbot/goto.txt
share/games/colobot/help/P/cbot/grab.txt
share/games/colobot/help/P/cbot/if.txt
share/games/colobot/help/P/cbot/int.txt
+share/games/colobot/help/P/cbot/isbusy.txt
share/games/colobot/help/P/cbot/jet.txt
share/games/colobot/help/P/cbot/message.txt
share/games/colobot/help/P/cbot/motor.txt
@@ -1407,9 +1449,12 @@ share/games/colobot/help/P/object/botsub.txt
share/games/colobot/help/P/object/bottarg.txt
share/games/colobot/help/P/object/bottr.txt
share/games/colobot/help/P/object/bottump.txt
+share/games/colobot/help/P/object/bromush.txt
share/games/colobot/help/P/object/bullet.txt
+share/games/colobot/help/P/object/bush.txt
share/games/colobot/help/P/object/captor.txt
share/games/colobot/help/P/object/convert.txt
+share/games/colobot/help/P/object/crystal.txt
share/games/colobot/help/P/object/derrick.txt
share/games/colobot/help/P/object/destroy.txt
share/games/colobot/help/P/object/egg.txt
@@ -1419,6 +1464,8 @@ share/games/colobot/help/P/object/exchange.txt
share/games/colobot/help/P/object/factory.txt
share/games/colobot/help/P/object/flag.txt
share/games/colobot/help/P/object/goal.txt
+share/games/colobot/help/P/object/gravi.txt
+share/games/colobot/help/P/object/gremush.txt
share/games/colobot/help/P/object/human.txt
share/games/colobot/help/P/object/huston.txt
share/games/colobot/help/P/object/key.txt
@@ -1463,6 +1510,7 @@ share/games/colobot/help/P/programs/5_CollectTitanium2_link.txt
share/games/colobot/help/P/programs/6_KillAnt1.txt
share/games/colobot/help/P/programs/6_KillAnt1_link.txt
share/games/colobot/help/P/programs/7_CollectTitanium3.txt
+share/games/colobot/help/P/programs/7_CollectTitanium3_link.txt
share/games/colobot/help/P/programs/8_ServiceTower1.txt
share/games/colobot/help/P/programs/8_ServiceTower1_link.txt
share/games/colobot/help/P/programs/9_terranova.txt
@@ -1482,7 +1530,6 @@ share/games/colobot/help/R/cbot/bool.txt
share/games/colobot/help/R/cbot/break.txt
share/games/colobot/help/R/cbot/build.txt
share/games/colobot/help/R/cbot/buildingenabled.txt
-share/games/colobot/help/R/cbot/busy.txt
share/games/colobot/help/R/cbot/canbuild.txt
share/games/colobot/help/R/cbot/canresearch.txt
share/games/colobot/help/R/cbot/category.txt
@@ -1493,6 +1540,7 @@ share/games/colobot/help/R/cbot/colors.txt
share/games/colobot/help/R/cbot/cond.txt
share/games/colobot/help/R/cbot/continue.txt
share/games/colobot/help/R/cbot/cos.txt
+share/games/colobot/help/R/cbot/deflag.txt
share/games/colobot/help/R/cbot/deletef.txt
share/games/colobot/help/R/cbot/delinfo.txt
share/games/colobot/help/R/cbot/destroy.txt
@@ -1511,6 +1559,7 @@ share/games/colobot/help/R/cbot/factory.txt
share/games/colobot/help/R/cbot/false.txt
share/games/colobot/help/R/cbot/file.txt
share/games/colobot/help/R/cbot/fire.txt
+share/games/colobot/help/R/cbot/flag.txt
share/games/colobot/help/R/cbot/flatgrnd.txt
share/games/colobot/help/R/cbot/flatspace.txt
share/games/colobot/help/R/cbot/float.txt
@@ -1521,6 +1570,7 @@ share/games/colobot/help/R/cbot/goto.txt
share/games/colobot/help/R/cbot/grab.txt
share/games/colobot/help/R/cbot/if.txt
share/games/colobot/help/R/cbot/int.txt
+share/games/colobot/help/R/cbot/isbusy.txt
share/games/colobot/help/R/cbot/jet.txt
share/games/colobot/help/R/cbot/message.txt
share/games/colobot/help/R/cbot/motor.txt
@@ -1629,9 +1679,12 @@ share/games/colobot/help/R/object/botsub.txt
share/games/colobot/help/R/object/bottarg.txt
share/games/colobot/help/R/object/bottr.txt
share/games/colobot/help/R/object/bottump.txt
+share/games/colobot/help/R/object/bromush.txt
share/games/colobot/help/R/object/bullet.txt
+share/games/colobot/help/R/object/bush.txt
share/games/colobot/help/R/object/captor.txt
share/games/colobot/help/R/object/convert.txt
+share/games/colobot/help/R/object/crystal.txt
share/games/colobot/help/R/object/derrick.txt
share/games/colobot/help/R/object/destroy.txt
share/games/colobot/help/R/object/egg.txt
@@ -1641,6 +1694,8 @@ share/games/colobot/help/R/object/exchange.txt
share/games/colobot/help/R/object/factory.txt
share/games/colobot/help/R/object/flag.txt
share/games/colobot/help/R/object/goal.txt
+share/games/colobot/help/R/object/gravi.txt
+share/games/colobot/help/R/object/gremush.txt
share/games/colobot/help/R/object/human.txt
share/games/colobot/help/R/object/huston.txt
share/games/colobot/help/R/object/key.txt
@@ -1685,6 +1740,7 @@ share/games/colobot/help/R/programs/5_CollectTitanium2_link.txt
share/games/colobot/help/R/programs/6_KillAnt1.txt
share/games/colobot/help/R/programs/6_KillAnt1_link.txt
share/games/colobot/help/R/programs/7_CollectTitanium3.txt
+share/games/colobot/help/R/programs/7_CollectTitanium3_link.txt
share/games/colobot/help/R/programs/8_ServiceTower1.txt
share/games/colobot/help/R/programs/8_ServiceTower1_link.txt
share/games/colobot/help/R/programs/9_terranova.txt
@@ -1720,15 +1776,20 @@ share/games/colobot/icons/botsub.png
share/games/colobot/icons/bottarg.png
share/games/colobot/icons/bottr.png
share/games/colobot/icons/bottump.png
+share/games/colobot/icons/bromush.png
share/games/colobot/icons/bullet.png
+share/games/colobot/icons/bush.png
share/games/colobot/icons/captor.png
share/games/colobot/icons/convert.png
+share/games/colobot/icons/crystal.png
share/games/colobot/icons/derrick.png
share/games/colobot/icons/destroy.png
share/games/colobot/icons/energy.png
share/games/colobot/icons/enerspot.png
share/games/colobot/icons/factory.png
share/games/colobot/icons/flag.png
+share/games/colobot/icons/gravi.png
+share/games/colobot/icons/gremush.png
share/games/colobot/icons/human.png
share/games/colobot/icons/huston.png
share/games/colobot/icons/info.png
@@ -1736,6 +1797,7 @@ share/games/colobot/icons/key.png
share/games/colobot/icons/labo.png
share/games/colobot/icons/mine.png
share/games/colobot/icons/mother.png
+share/games/colobot/icons/nest.png
share/games/colobot/icons/nuclear.png
share/games/colobot/icons/power.png
share/games/colobot/icons/productionline1.png
@@ -1746,6 +1808,7 @@ share/games/colobot/icons/radar2.png
share/games/colobot/icons/radar2_cs.png
share/games/colobot/icons/repair.png
share/games/colobot/icons/research.png
+share/games/colobot/icons/ruin.png
share/games/colobot/icons/safe.png
share/games/colobot/icons/sniff1.png
share/games/colobot/icons/spider.png
@@ -1787,6 +1850,7 @@ share/games/colobot/icons/uranspot.png
share/games/colobot/icons/wasp.png
share/games/colobot/icons/waypoint.png
share/games/colobot/icons/worm.png
+share/games/colobot/icons/wreck.png
share/games/colobot/levels/battles/chapter001/chaptertitle.txt
share/games/colobot/levels/battles/chapter001/level001/help/help.B.txt
share/games/colobot/levels/battles/chapter001/level001/help/help.C.txt
@@ -1803,16 +1867,7 @@ share/games/colobot/levels/battles/chapter001/level002/help/help.E.txt
share/games/colobot/levels/battles/chapter001/level002/help/help.F.txt
share/games/colobot/levels/battles/chapter001/level002/help/help.P.txt
share/games/colobot/levels/battles/chapter001/level002/help/help.R.txt
-share/games/colobot/levels/battles/chapter001/level002/program.txt
share/games/colobot/levels/battles/chapter001/level002/scene.txt
-share/games/colobot/levels/battles/chapter001/level003/help/help.B.txt
-share/games/colobot/levels/battles/chapter001/level003/help/help.C.txt
-share/games/colobot/levels/battles/chapter001/level003/help/help.D.txt
-share/games/colobot/levels/battles/chapter001/level003/help/help.E.txt
-share/games/colobot/levels/battles/chapter001/level003/help/help.F.txt
-share/games/colobot/levels/battles/chapter001/level003/help/help.P.txt
-share/games/colobot/levels/battles/chapter001/level003/help/help.R.txt
-share/games/colobot/levels/battles/chapter001/level003/scene.txt
share/games/colobot/levels/battles/chapter002/chaptertitle.txt
share/games/colobot/levels/battles/chapter002/level001/help/help.B.txt
share/games/colobot/levels/battles/chapter002/level001/help/help.C.txt
@@ -1829,7 +1884,8 @@ share/games/colobot/levels/battles/chapter002/level002/help/help.E.txt
share/games/colobot/levels/battles/chapter002/level002/help/help.F.txt
share/games/colobot/levels/battles/chapter002/level002/help/help.P.txt
share/games/colobot/levels/battles/chapter002/level002/help/help.R.txt
-share/games/colobot/levels/battles/chapter002/level002/program.txt
+share/games/colobot/levels/battles/chapter002/level002/program-a.txt
+share/games/colobot/levels/battles/chapter002/level002/program-b.txt
share/games/colobot/levels/battles/chapter002/level002/scene.txt
share/games/colobot/levels/battles/chapter002/level003/help/help.B.txt
share/games/colobot/levels/battles/chapter002/level003/help/help.C.txt
@@ -1839,6 +1895,16 @@ share/games/colobot/levels/battles/chapter002/level003/help/help.F.txt
share/games/colobot/levels/battles/chapter002/level003/help/help.P.txt
share/games/colobot/levels/battles/chapter002/level003/help/help.R.txt
share/games/colobot/levels/battles/chapter002/level003/scene.txt
+share/games/colobot/levels/battles/chapter002/level004/help/help.B.txt
+share/games/colobot/levels/battles/chapter002/level004/help/help.C.txt
+share/games/colobot/levels/battles/chapter002/level004/help/help.D.txt
+share/games/colobot/levels/battles/chapter002/level004/help/help.E.txt
+share/games/colobot/levels/battles/chapter002/level004/help/help.F.txt
+share/games/colobot/levels/battles/chapter002/level004/help/help.P.txt
+share/games/colobot/levels/battles/chapter002/level004/help/help.R.txt
+share/games/colobot/levels/battles/chapter002/level004/program.txt
+share/games/colobot/levels/battles/chapter002/level004/scene.txt
+share/games/colobot/levels/battles/deruiner.txt
share/games/colobot/levels/battles/level_common.txt
share/games/colobot/levels/battles/relief.png
share/games/colobot/levels/battles/res.png
@@ -2261,24 +2327,24 @@ share/games/colobot/levels/exercises/chapter007/level003/help/help.F.txt
share/games/colobot/levels/exercises/chapter007/level003/help/help.P.txt
share/games/colobot/levels/exercises/chapter007/level003/help/help.R.txt
share/games/colobot/levels/exercises/chapter007/level003/scene.txt
-share/games/colobot/levels/freemissions/chapter001/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter001/level001/scene.txt
-share/games/colobot/levels/freemissions/chapter002/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter002/level001/scene.txt
-share/games/colobot/levels/freemissions/chapter003/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter003/level001/scene.txt
-share/games/colobot/levels/freemissions/chapter004/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter004/level001/scene.txt
-share/games/colobot/levels/freemissions/chapter005/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter005/level001/scene.txt
-share/games/colobot/levels/freemissions/chapter006/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter006/level001/scene.txt
-share/games/colobot/levels/freemissions/chapter007/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter007/level001/scene.txt
-share/games/colobot/levels/freemissions/chapter008/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter008/level001/scene.txt
-share/games/colobot/levels/freemissions/chapter009/chaptertitle.txt
-share/games/colobot/levels/freemissions/chapter009/level001/scene.txt
+share/games/colobot/levels/free/chapter001/chaptertitle.txt
+share/games/colobot/levels/free/chapter001/level001/scene.txt
+share/games/colobot/levels/free/chapter002/chaptertitle.txt
+share/games/colobot/levels/free/chapter002/level001/scene.txt
+share/games/colobot/levels/free/chapter003/chaptertitle.txt
+share/games/colobot/levels/free/chapter003/level001/scene.txt
+share/games/colobot/levels/free/chapter004/chaptertitle.txt
+share/games/colobot/levels/free/chapter004/level001/scene.txt
+share/games/colobot/levels/free/chapter005/chaptertitle.txt
+share/games/colobot/levels/free/chapter005/level001/scene.txt
+share/games/colobot/levels/free/chapter006/chaptertitle.txt
+share/games/colobot/levels/free/chapter006/level001/scene.txt
+share/games/colobot/levels/free/chapter007/chaptertitle.txt
+share/games/colobot/levels/free/chapter007/level001/scene.txt
+share/games/colobot/levels/free/chapter008/chaptertitle.txt
+share/games/colobot/levels/free/chapter008/level001/scene.txt
+share/games/colobot/levels/free/chapter009/chaptertitle.txt
+share/games/colobot/levels/free/chapter009/level001/scene.txt
share/games/colobot/levels/missions/chapter001/chaptertitle.txt
share/games/colobot/levels/missions/chapter001/level001/help/help.B.txt
share/games/colobot/levels/missions/chapter001/level001/help/help.C.txt
@@ -3086,6 +3152,495 @@ share/games/colobot/levels/other/win604.txt
share/games/colobot/levels/other/win605.txt
share/games/colobot/levels/other/win704.txt
share/games/colobot/levels/other/win904.txt
+share/games/colobot/levels/plus/chapter001/chaptertitle.txt
+share/games/colobot/levels/plus/chapter001/level001/carry.txt
+share/games/colobot/levels/plus/chapter001/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter001/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter001/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter001/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter001/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter001/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter001/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter001/level001/scene.txt
+share/games/colobot/levels/plus/chapter001/planet.txt
+share/games/colobot/levels/plus/chapter001/terrain.txt
+share/games/colobot/levels/plus/chapter002/chaptertitle.txt
+share/games/colobot/levels/plus/chapter002/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter002/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter002/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter002/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter002/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter002/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter002/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter002/level001/help/report.B.txt
+share/games/colobot/levels/plus/chapter002/level001/help/report.C.txt
+share/games/colobot/levels/plus/chapter002/level001/help/report.D.txt
+share/games/colobot/levels/plus/chapter002/level001/help/report.E.txt
+share/games/colobot/levels/plus/chapter002/level001/help/report.F.txt
+share/games/colobot/levels/plus/chapter002/level001/help/report.P.txt
+share/games/colobot/levels/plus/chapter002/level001/help/report.R.txt
+share/games/colobot/levels/plus/chapter002/level001/scene.txt
+share/games/colobot/levels/plus/chapter002/level002/help/help.B.txt
+share/games/colobot/levels/plus/chapter002/level002/help/help.C.txt
+share/games/colobot/levels/plus/chapter002/level002/help/help.D.txt
+share/games/colobot/levels/plus/chapter002/level002/help/help.E.txt
+share/games/colobot/levels/plus/chapter002/level002/help/help.F.txt
+share/games/colobot/levels/plus/chapter002/level002/help/help.P.txt
+share/games/colobot/levels/plus/chapter002/level002/help/help.R.txt
+share/games/colobot/levels/plus/chapter002/level002/help/report.B.txt
+share/games/colobot/levels/plus/chapter002/level002/help/report.C.txt
+share/games/colobot/levels/plus/chapter002/level002/help/report.D.txt
+share/games/colobot/levels/plus/chapter002/level002/help/report.E.txt
+share/games/colobot/levels/plus/chapter002/level002/help/report.F.txt
+share/games/colobot/levels/plus/chapter002/level002/help/report.P.txt
+share/games/colobot/levels/plus/chapter002/level002/help/report.R.txt
+share/games/colobot/levels/plus/chapter002/level002/scene.txt
+share/games/colobot/levels/plus/chapter002/level003/help/help.B.txt
+share/games/colobot/levels/plus/chapter002/level003/help/help.C.txt
+share/games/colobot/levels/plus/chapter002/level003/help/help.D.txt
+share/games/colobot/levels/plus/chapter002/level003/help/help.E.txt
+share/games/colobot/levels/plus/chapter002/level003/help/help.F.txt
+share/games/colobot/levels/plus/chapter002/level003/help/help.P.txt
+share/games/colobot/levels/plus/chapter002/level003/help/help.R.txt
+share/games/colobot/levels/plus/chapter002/level003/help/report.B.txt
+share/games/colobot/levels/plus/chapter002/level003/help/report.C.txt
+share/games/colobot/levels/plus/chapter002/level003/help/report.D.txt
+share/games/colobot/levels/plus/chapter002/level003/help/report.E.txt
+share/games/colobot/levels/plus/chapter002/level003/help/report.F.txt
+share/games/colobot/levels/plus/chapter002/level003/help/report.P.txt
+share/games/colobot/levels/plus/chapter002/level003/help/report.R.txt
+share/games/colobot/levels/plus/chapter002/level003/scene.txt
+share/games/colobot/levels/plus/chapter002/planet.txt
+share/games/colobot/levels/plus/chapter002/terrain.txt
+share/games/colobot/levels/plus/chapter003/chaptertitle.txt
+share/games/colobot/levels/plus/chapter003/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter003/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter003/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter003/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter003/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter003/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter003/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter003/level001/help/report.B.txt
+share/games/colobot/levels/plus/chapter003/level001/help/report.C.txt
+share/games/colobot/levels/plus/chapter003/level001/help/report.D.txt
+share/games/colobot/levels/plus/chapter003/level001/help/report.E.txt
+share/games/colobot/levels/plus/chapter003/level001/help/report.F.txt
+share/games/colobot/levels/plus/chapter003/level001/help/report.P.txt
+share/games/colobot/levels/plus/chapter003/level001/help/report.R.txt
+share/games/colobot/levels/plus/chapter003/level001/scene.txt
+share/games/colobot/levels/plus/chapter003/level002/help/help.B.txt
+share/games/colobot/levels/plus/chapter003/level002/help/help.C.txt
+share/games/colobot/levels/plus/chapter003/level002/help/help.D.txt
+share/games/colobot/levels/plus/chapter003/level002/help/help.E.txt
+share/games/colobot/levels/plus/chapter003/level002/help/help.F.txt
+share/games/colobot/levels/plus/chapter003/level002/help/help.P.txt
+share/games/colobot/levels/plus/chapter003/level002/help/help.R.txt
+share/games/colobot/levels/plus/chapter003/level002/help/report.B.txt
+share/games/colobot/levels/plus/chapter003/level002/help/report.C.txt
+share/games/colobot/levels/plus/chapter003/level002/help/report.D.txt
+share/games/colobot/levels/plus/chapter003/level002/help/report.E.txt
+share/games/colobot/levels/plus/chapter003/level002/help/report.F.txt
+share/games/colobot/levels/plus/chapter003/level002/help/report.P.txt
+share/games/colobot/levels/plus/chapter003/level002/help/report.R.txt
+share/games/colobot/levels/plus/chapter003/level002/scene.txt
+share/games/colobot/levels/plus/chapter003/level003/help/help.B.txt
+share/games/colobot/levels/plus/chapter003/level003/help/help.C.txt
+share/games/colobot/levels/plus/chapter003/level003/help/help.D.txt
+share/games/colobot/levels/plus/chapter003/level003/help/help.E.txt
+share/games/colobot/levels/plus/chapter003/level003/help/help.F.txt
+share/games/colobot/levels/plus/chapter003/level003/help/help.P.txt
+share/games/colobot/levels/plus/chapter003/level003/help/help.R.txt
+share/games/colobot/levels/plus/chapter003/level003/help/report.B.txt
+share/games/colobot/levels/plus/chapter003/level003/help/report.C.txt
+share/games/colobot/levels/plus/chapter003/level003/help/report.D.txt
+share/games/colobot/levels/plus/chapter003/level003/help/report.E.txt
+share/games/colobot/levels/plus/chapter003/level003/help/report.F.txt
+share/games/colobot/levels/plus/chapter003/level003/help/report.P.txt
+share/games/colobot/levels/plus/chapter003/level003/help/report.R.txt
+share/games/colobot/levels/plus/chapter003/level003/scene.txt
+share/games/colobot/levels/plus/chapter003/planet.txt
+share/games/colobot/levels/plus/chapter003/terrain.txt
+share/games/colobot/levels/plus/chapter004/chaptertitle.txt
+share/games/colobot/levels/plus/chapter004/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter004/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter004/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter004/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter004/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter004/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter004/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter004/level001/help/report.B.txt
+share/games/colobot/levels/plus/chapter004/level001/help/report.C.txt
+share/games/colobot/levels/plus/chapter004/level001/help/report.D.txt
+share/games/colobot/levels/plus/chapter004/level001/help/report.E.txt
+share/games/colobot/levels/plus/chapter004/level001/help/report.F.txt
+share/games/colobot/levels/plus/chapter004/level001/help/report.P.txt
+share/games/colobot/levels/plus/chapter004/level001/help/report.R.txt
+share/games/colobot/levels/plus/chapter004/level001/scene.txt
+share/games/colobot/levels/plus/chapter004/level002/help/help.B.txt
+share/games/colobot/levels/plus/chapter004/level002/help/help.C.txt
+share/games/colobot/levels/plus/chapter004/level002/help/help.D.txt
+share/games/colobot/levels/plus/chapter004/level002/help/help.E.txt
+share/games/colobot/levels/plus/chapter004/level002/help/help.F.txt
+share/games/colobot/levels/plus/chapter004/level002/help/help.P.txt
+share/games/colobot/levels/plus/chapter004/level002/help/help.R.txt
+share/games/colobot/levels/plus/chapter004/level002/help/report.B.txt
+share/games/colobot/levels/plus/chapter004/level002/help/report.C.txt
+share/games/colobot/levels/plus/chapter004/level002/help/report.D.txt
+share/games/colobot/levels/plus/chapter004/level002/help/report.E.txt
+share/games/colobot/levels/plus/chapter004/level002/help/report.F.txt
+share/games/colobot/levels/plus/chapter004/level002/help/report.P.txt
+share/games/colobot/levels/plus/chapter004/level002/help/report.R.txt
+share/games/colobot/levels/plus/chapter004/level002/scene.txt
+share/games/colobot/levels/plus/chapter004/level003/help/help.B.txt
+share/games/colobot/levels/plus/chapter004/level003/help/help.C.txt
+share/games/colobot/levels/plus/chapter004/level003/help/help.D.txt
+share/games/colobot/levels/plus/chapter004/level003/help/help.E.txt
+share/games/colobot/levels/plus/chapter004/level003/help/help.F.txt
+share/games/colobot/levels/plus/chapter004/level003/help/help.P.txt
+share/games/colobot/levels/plus/chapter004/level003/help/help.R.txt
+share/games/colobot/levels/plus/chapter004/level003/help/report.B.txt
+share/games/colobot/levels/plus/chapter004/level003/help/report.C.txt
+share/games/colobot/levels/plus/chapter004/level003/help/report.D.txt
+share/games/colobot/levels/plus/chapter004/level003/help/report.E.txt
+share/games/colobot/levels/plus/chapter004/level003/help/report.F.txt
+share/games/colobot/levels/plus/chapter004/level003/help/report.P.txt
+share/games/colobot/levels/plus/chapter004/level003/help/report.R.txt
+share/games/colobot/levels/plus/chapter004/level003/scene.txt
+share/games/colobot/levels/plus/chapter004/level004/help/help.B.txt
+share/games/colobot/levels/plus/chapter004/level004/help/help.C.txt
+share/games/colobot/levels/plus/chapter004/level004/help/help.D.txt
+share/games/colobot/levels/plus/chapter004/level004/help/help.E.txt
+share/games/colobot/levels/plus/chapter004/level004/help/help.F.txt
+share/games/colobot/levels/plus/chapter004/level004/help/help.P.txt
+share/games/colobot/levels/plus/chapter004/level004/help/help.R.txt
+share/games/colobot/levels/plus/chapter004/level004/help/report.B.txt
+share/games/colobot/levels/plus/chapter004/level004/help/report.C.txt
+share/games/colobot/levels/plus/chapter004/level004/help/report.D.txt
+share/games/colobot/levels/plus/chapter004/level004/help/report.E.txt
+share/games/colobot/levels/plus/chapter004/level004/help/report.F.txt
+share/games/colobot/levels/plus/chapter004/level004/help/report.P.txt
+share/games/colobot/levels/plus/chapter004/level004/help/report.R.txt
+share/games/colobot/levels/plus/chapter004/level004/scene.txt
+share/games/colobot/levels/plus/chapter004/planet.txt
+share/games/colobot/levels/plus/chapter004/terrain.txt
+share/games/colobot/levels/plus/chapter005/chaptertitle.txt
+share/games/colobot/levels/plus/chapter005/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter005/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter005/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter005/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter005/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter005/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter005/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter005/level001/help/report.B.txt
+share/games/colobot/levels/plus/chapter005/level001/help/report.C.txt
+share/games/colobot/levels/plus/chapter005/level001/help/report.D.txt
+share/games/colobot/levels/plus/chapter005/level001/help/report.E.txt
+share/games/colobot/levels/plus/chapter005/level001/help/report.F.txt
+share/games/colobot/levels/plus/chapter005/level001/help/report.P.txt
+share/games/colobot/levels/plus/chapter005/level001/help/report.R.txt
+share/games/colobot/levels/plus/chapter005/level001/scene.txt
+share/games/colobot/levels/plus/chapter005/level002/help/help.B.txt
+share/games/colobot/levels/plus/chapter005/level002/help/help.C.txt
+share/games/colobot/levels/plus/chapter005/level002/help/help.D.txt
+share/games/colobot/levels/plus/chapter005/level002/help/help.E.txt
+share/games/colobot/levels/plus/chapter005/level002/help/help.F.txt
+share/games/colobot/levels/plus/chapter005/level002/help/help.P.txt
+share/games/colobot/levels/plus/chapter005/level002/help/help.R.txt
+share/games/colobot/levels/plus/chapter005/level002/help/report.B.txt
+share/games/colobot/levels/plus/chapter005/level002/help/report.C.txt
+share/games/colobot/levels/plus/chapter005/level002/help/report.D.txt
+share/games/colobot/levels/plus/chapter005/level002/help/report.E.txt
+share/games/colobot/levels/plus/chapter005/level002/help/report.F.txt
+share/games/colobot/levels/plus/chapter005/level002/help/report.P.txt
+share/games/colobot/levels/plus/chapter005/level002/help/report.R.txt
+share/games/colobot/levels/plus/chapter005/level002/scene.txt
+share/games/colobot/levels/plus/chapter005/level003/help/help.B.txt
+share/games/colobot/levels/plus/chapter005/level003/help/help.C.txt
+share/games/colobot/levels/plus/chapter005/level003/help/help.D.txt
+share/games/colobot/levels/plus/chapter005/level003/help/help.E.txt
+share/games/colobot/levels/plus/chapter005/level003/help/help.F.txt
+share/games/colobot/levels/plus/chapter005/level003/help/help.P.txt
+share/games/colobot/levels/plus/chapter005/level003/help/help.R.txt
+share/games/colobot/levels/plus/chapter005/level003/help/report.B.txt
+share/games/colobot/levels/plus/chapter005/level003/help/report.C.txt
+share/games/colobot/levels/plus/chapter005/level003/help/report.D.txt
+share/games/colobot/levels/plus/chapter005/level003/help/report.E.txt
+share/games/colobot/levels/plus/chapter005/level003/help/report.F.txt
+share/games/colobot/levels/plus/chapter005/level003/help/report.P.txt
+share/games/colobot/levels/plus/chapter005/level003/help/report.R.txt
+share/games/colobot/levels/plus/chapter005/level003/scene.txt
+share/games/colobot/levels/plus/chapter005/planet.txt
+share/games/colobot/levels/plus/chapter005/terrain.txt
+share/games/colobot/levels/plus/chapter006/chaptertitle.txt
+share/games/colobot/levels/plus/chapter006/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter006/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter006/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter006/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter006/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter006/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter006/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter006/level001/help/report.B.txt
+share/games/colobot/levels/plus/chapter006/level001/help/report.C.txt
+share/games/colobot/levels/plus/chapter006/level001/help/report.D.txt
+share/games/colobot/levels/plus/chapter006/level001/help/report.E.txt
+share/games/colobot/levels/plus/chapter006/level001/help/report.F.txt
+share/games/colobot/levels/plus/chapter006/level001/help/report.P.txt
+share/games/colobot/levels/plus/chapter006/level001/help/report.R.txt
+share/games/colobot/levels/plus/chapter006/level001/scene.txt
+share/games/colobot/levels/plus/chapter006/level002/help/help.B.txt
+share/games/colobot/levels/plus/chapter006/level002/help/help.C.txt
+share/games/colobot/levels/plus/chapter006/level002/help/help.D.txt
+share/games/colobot/levels/plus/chapter006/level002/help/help.E.txt
+share/games/colobot/levels/plus/chapter006/level002/help/help.F.txt
+share/games/colobot/levels/plus/chapter006/level002/help/help.P.txt
+share/games/colobot/levels/plus/chapter006/level002/help/help.R.txt
+share/games/colobot/levels/plus/chapter006/level002/help/report.B.txt
+share/games/colobot/levels/plus/chapter006/level002/help/report.C.txt
+share/games/colobot/levels/plus/chapter006/level002/help/report.D.txt
+share/games/colobot/levels/plus/chapter006/level002/help/report.E.txt
+share/games/colobot/levels/plus/chapter006/level002/help/report.F.txt
+share/games/colobot/levels/plus/chapter006/level002/help/report.P.txt
+share/games/colobot/levels/plus/chapter006/level002/help/report.R.txt
+share/games/colobot/levels/plus/chapter006/level002/relief.png
+share/games/colobot/levels/plus/chapter006/level002/res.png
+share/games/colobot/levels/plus/chapter006/level002/scene.txt
+share/games/colobot/levels/plus/chapter006/level003/help/help.B.txt
+share/games/colobot/levels/plus/chapter006/level003/help/help.C.txt
+share/games/colobot/levels/plus/chapter006/level003/help/help.D.txt
+share/games/colobot/levels/plus/chapter006/level003/help/help.E.txt
+share/games/colobot/levels/plus/chapter006/level003/help/help.F.txt
+share/games/colobot/levels/plus/chapter006/level003/help/help.P.txt
+share/games/colobot/levels/plus/chapter006/level003/help/help.R.txt
+share/games/colobot/levels/plus/chapter006/level003/help/report.B.txt
+share/games/colobot/levels/plus/chapter006/level003/help/report.C.txt
+share/games/colobot/levels/plus/chapter006/level003/help/report.D.txt
+share/games/colobot/levels/plus/chapter006/level003/help/report.E.txt
+share/games/colobot/levels/plus/chapter006/level003/help/report.F.txt
+share/games/colobot/levels/plus/chapter006/level003/help/report.P.txt
+share/games/colobot/levels/plus/chapter006/level003/help/report.R.txt
+share/games/colobot/levels/plus/chapter006/level003/scene.txt
+share/games/colobot/levels/plus/chapter006/level004/help/help.B.txt
+share/games/colobot/levels/plus/chapter006/level004/help/help.C.txt
+share/games/colobot/levels/plus/chapter006/level004/help/help.D.txt
+share/games/colobot/levels/plus/chapter006/level004/help/help.E.txt
+share/games/colobot/levels/plus/chapter006/level004/help/help.F.txt
+share/games/colobot/levels/plus/chapter006/level004/help/help.P.txt
+share/games/colobot/levels/plus/chapter006/level004/help/help.R.txt
+share/games/colobot/levels/plus/chapter006/level004/help/report.B.txt
+share/games/colobot/levels/plus/chapter006/level004/help/report.C.txt
+share/games/colobot/levels/plus/chapter006/level004/help/report.D.txt
+share/games/colobot/levels/plus/chapter006/level004/help/report.E.txt
+share/games/colobot/levels/plus/chapter006/level004/help/report.F.txt
+share/games/colobot/levels/plus/chapter006/level004/help/report.P.txt
+share/games/colobot/levels/plus/chapter006/level004/help/report.R.txt
+share/games/colobot/levels/plus/chapter006/level004/scene.txt
+share/games/colobot/levels/plus/chapter006/level005/help/help.B.txt
+share/games/colobot/levels/plus/chapter006/level005/help/help.C.txt
+share/games/colobot/levels/plus/chapter006/level005/help/help.D.txt
+share/games/colobot/levels/plus/chapter006/level005/help/help.E.txt
+share/games/colobot/levels/plus/chapter006/level005/help/help.F.txt
+share/games/colobot/levels/plus/chapter006/level005/help/help.P.txt
+share/games/colobot/levels/plus/chapter006/level005/help/help.R.txt
+share/games/colobot/levels/plus/chapter006/level005/help/report.B.txt
+share/games/colobot/levels/plus/chapter006/level005/help/report.C.txt
+share/games/colobot/levels/plus/chapter006/level005/help/report.D.txt
+share/games/colobot/levels/plus/chapter006/level005/help/report.E.txt
+share/games/colobot/levels/plus/chapter006/level005/help/report.F.txt
+share/games/colobot/levels/plus/chapter006/level005/help/report.P.txt
+share/games/colobot/levels/plus/chapter006/level005/help/report.R.txt
+share/games/colobot/levels/plus/chapter006/level005/safehome.txt
+share/games/colobot/levels/plus/chapter006/level005/scene.txt
+share/games/colobot/levels/plus/chapter006/level006/help/help.B.txt
+share/games/colobot/levels/plus/chapter006/level006/help/help.C.txt
+share/games/colobot/levels/plus/chapter006/level006/help/help.D.txt
+share/games/colobot/levels/plus/chapter006/level006/help/help.E.txt
+share/games/colobot/levels/plus/chapter006/level006/help/help.F.txt
+share/games/colobot/levels/plus/chapter006/level006/help/help.P.txt
+share/games/colobot/levels/plus/chapter006/level006/help/help.R.txt
+share/games/colobot/levels/plus/chapter006/level006/help/report.B.txt
+share/games/colobot/levels/plus/chapter006/level006/help/report.C.txt
+share/games/colobot/levels/plus/chapter006/level006/help/report.D.txt
+share/games/colobot/levels/plus/chapter006/level006/help/report.E.txt
+share/games/colobot/levels/plus/chapter006/level006/help/report.F.txt
+share/games/colobot/levels/plus/chapter006/level006/help/report.P.txt
+share/games/colobot/levels/plus/chapter006/level006/help/report.R.txt
+share/games/colobot/levels/plus/chapter006/level006/scene.txt
+share/games/colobot/levels/plus/chapter006/planet.txt
+share/games/colobot/levels/plus/chapter006/terrain.txt
+share/games/colobot/levels/plus/chapter007/chaptertitle.txt
+share/games/colobot/levels/plus/chapter007/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter007/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter007/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter007/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter007/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter007/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter007/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter007/level001/help/report.B.txt
+share/games/colobot/levels/plus/chapter007/level001/help/report.C.txt
+share/games/colobot/levels/plus/chapter007/level001/help/report.D.txt
+share/games/colobot/levels/plus/chapter007/level001/help/report.E.txt
+share/games/colobot/levels/plus/chapter007/level001/help/report.F.txt
+share/games/colobot/levels/plus/chapter007/level001/help/report.P.txt
+share/games/colobot/levels/plus/chapter007/level001/help/report.R.txt
+share/games/colobot/levels/plus/chapter007/level001/scene.txt
+share/games/colobot/levels/plus/chapter007/level002/help/help.B.txt
+share/games/colobot/levels/plus/chapter007/level002/help/help.C.txt
+share/games/colobot/levels/plus/chapter007/level002/help/help.D.txt
+share/games/colobot/levels/plus/chapter007/level002/help/help.E.txt
+share/games/colobot/levels/plus/chapter007/level002/help/help.F.txt
+share/games/colobot/levels/plus/chapter007/level002/help/help.P.txt
+share/games/colobot/levels/plus/chapter007/level002/help/help.R.txt
+share/games/colobot/levels/plus/chapter007/level002/help/report.B.txt
+share/games/colobot/levels/plus/chapter007/level002/help/report.C.txt
+share/games/colobot/levels/plus/chapter007/level002/help/report.D.txt
+share/games/colobot/levels/plus/chapter007/level002/help/report.E.txt
+share/games/colobot/levels/plus/chapter007/level002/help/report.F.txt
+share/games/colobot/levels/plus/chapter007/level002/help/report.P.txt
+share/games/colobot/levels/plus/chapter007/level002/help/report.R.txt
+share/games/colobot/levels/plus/chapter007/level002/scene.txt
+share/games/colobot/levels/plus/chapter007/level003/help/help.B.txt
+share/games/colobot/levels/plus/chapter007/level003/help/help.C.txt
+share/games/colobot/levels/plus/chapter007/level003/help/help.D.txt
+share/games/colobot/levels/plus/chapter007/level003/help/help.E.txt
+share/games/colobot/levels/plus/chapter007/level003/help/help.F.txt
+share/games/colobot/levels/plus/chapter007/level003/help/help.P.txt
+share/games/colobot/levels/plus/chapter007/level003/help/help.R.txt
+share/games/colobot/levels/plus/chapter007/level003/help/report.B.txt
+share/games/colobot/levels/plus/chapter007/level003/help/report.C.txt
+share/games/colobot/levels/plus/chapter007/level003/help/report.D.txt
+share/games/colobot/levels/plus/chapter007/level003/help/report.E.txt
+share/games/colobot/levels/plus/chapter007/level003/help/report.F.txt
+share/games/colobot/levels/plus/chapter007/level003/help/report.P.txt
+share/games/colobot/levels/plus/chapter007/level003/help/report.R.txt
+share/games/colobot/levels/plus/chapter007/level003/scene.txt
+share/games/colobot/levels/plus/chapter007/level004/help/help.B.txt
+share/games/colobot/levels/plus/chapter007/level004/help/help.C.txt
+share/games/colobot/levels/plus/chapter007/level004/help/help.D.txt
+share/games/colobot/levels/plus/chapter007/level004/help/help.E.txt
+share/games/colobot/levels/plus/chapter007/level004/help/help.F.txt
+share/games/colobot/levels/plus/chapter007/level004/help/help.P.txt
+share/games/colobot/levels/plus/chapter007/level004/help/help.R.txt
+share/games/colobot/levels/plus/chapter007/level004/help/report.B.txt
+share/games/colobot/levels/plus/chapter007/level004/help/report.C.txt
+share/games/colobot/levels/plus/chapter007/level004/help/report.D.txt
+share/games/colobot/levels/plus/chapter007/level004/help/report.E.txt
+share/games/colobot/levels/plus/chapter007/level004/help/report.F.txt
+share/games/colobot/levels/plus/chapter007/level004/help/report.P.txt
+share/games/colobot/levels/plus/chapter007/level004/help/report.R.txt
+share/games/colobot/levels/plus/chapter007/level004/scene.txt
+share/games/colobot/levels/plus/chapter007/level005/help/help.B.txt
+share/games/colobot/levels/plus/chapter007/level005/help/help.C.txt
+share/games/colobot/levels/plus/chapter007/level005/help/help.D.txt
+share/games/colobot/levels/plus/chapter007/level005/help/help.E.txt
+share/games/colobot/levels/plus/chapter007/level005/help/help.F.txt
+share/games/colobot/levels/plus/chapter007/level005/help/help.P.txt
+share/games/colobot/levels/plus/chapter007/level005/help/help.R.txt
+share/games/colobot/levels/plus/chapter007/level005/help/report.B.txt
+share/games/colobot/levels/plus/chapter007/level005/help/report.C.txt
+share/games/colobot/levels/plus/chapter007/level005/help/report.D.txt
+share/games/colobot/levels/plus/chapter007/level005/help/report.E.txt
+share/games/colobot/levels/plus/chapter007/level005/help/report.F.txt
+share/games/colobot/levels/plus/chapter007/level005/help/report.P.txt
+share/games/colobot/levels/plus/chapter007/level005/help/report.R.txt
+share/games/colobot/levels/plus/chapter007/level005/scene.txt
+share/games/colobot/levels/plus/chapter007/planet.txt
+share/games/colobot/levels/plus/chapter007/terrain.txt
+share/games/colobot/levels/plus/chapter008/chaptertitle.txt
+share/games/colobot/levels/plus/chapter008/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter008/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter008/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter008/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter008/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter008/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter008/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter008/level001/help/report.B.txt
+share/games/colobot/levels/plus/chapter008/level001/help/report.C.txt
+share/games/colobot/levels/plus/chapter008/level001/help/report.D.txt
+share/games/colobot/levels/plus/chapter008/level001/help/report.E.txt
+share/games/colobot/levels/plus/chapter008/level001/help/report.F.txt
+share/games/colobot/levels/plus/chapter008/level001/help/report.P.txt
+share/games/colobot/levels/plus/chapter008/level001/help/report.R.txt
+share/games/colobot/levels/plus/chapter008/level001/scene.txt
+share/games/colobot/levels/plus/chapter008/level002/help/help.B.txt
+share/games/colobot/levels/plus/chapter008/level002/help/help.C.txt
+share/games/colobot/levels/plus/chapter008/level002/help/help.D.txt
+share/games/colobot/levels/plus/chapter008/level002/help/help.E.txt
+share/games/colobot/levels/plus/chapter008/level002/help/help.F.txt
+share/games/colobot/levels/plus/chapter008/level002/help/help.P.txt
+share/games/colobot/levels/plus/chapter008/level002/help/help.R.txt
+share/games/colobot/levels/plus/chapter008/level002/help/report.B.txt
+share/games/colobot/levels/plus/chapter008/level002/help/report.C.txt
+share/games/colobot/levels/plus/chapter008/level002/help/report.D.txt
+share/games/colobot/levels/plus/chapter008/level002/help/report.E.txt
+share/games/colobot/levels/plus/chapter008/level002/help/report.F.txt
+share/games/colobot/levels/plus/chapter008/level002/help/report.P.txt
+share/games/colobot/levels/plus/chapter008/level002/help/report.R.txt
+share/games/colobot/levels/plus/chapter008/level002/scene.txt
+share/games/colobot/levels/plus/chapter008/planet.txt
+share/games/colobot/levels/plus/chapter008/terrain.txt
+share/games/colobot/levels/plus/chapter009/chaptertitle.txt
+share/games/colobot/levels/plus/chapter009/level001/help/help.B.txt
+share/games/colobot/levels/plus/chapter009/level001/help/help.C.txt
+share/games/colobot/levels/plus/chapter009/level001/help/help.D.txt
+share/games/colobot/levels/plus/chapter009/level001/help/help.E.txt
+share/games/colobot/levels/plus/chapter009/level001/help/help.F.txt
+share/games/colobot/levels/plus/chapter009/level001/help/help.P.txt
+share/games/colobot/levels/plus/chapter009/level001/help/help.R.txt
+share/games/colobot/levels/plus/chapter009/level001/help/report.B.txt
+share/games/colobot/levels/plus/chapter009/level001/help/report.C.txt
+share/games/colobot/levels/plus/chapter009/level001/help/report.D.txt
+share/games/colobot/levels/plus/chapter009/level001/help/report.E.txt
+share/games/colobot/levels/plus/chapter009/level001/help/report.F.txt
+share/games/colobot/levels/plus/chapter009/level001/help/report.P.txt
+share/games/colobot/levels/plus/chapter009/level001/help/report.R.txt
+share/games/colobot/levels/plus/chapter009/level001/scene.txt
+share/games/colobot/levels/plus/chapter009/level002/help/help.B.txt
+share/games/colobot/levels/plus/chapter009/level002/help/help.C.txt
+share/games/colobot/levels/plus/chapter009/level002/help/help.D.txt
+share/games/colobot/levels/plus/chapter009/level002/help/help.E.txt
+share/games/colobot/levels/plus/chapter009/level002/help/help.F.txt
+share/games/colobot/levels/plus/chapter009/level002/help/help.P.txt
+share/games/colobot/levels/plus/chapter009/level002/help/help.R.txt
+share/games/colobot/levels/plus/chapter009/level002/help/report.B.txt
+share/games/colobot/levels/plus/chapter009/level002/help/report.C.txt
+share/games/colobot/levels/plus/chapter009/level002/help/report.D.txt
+share/games/colobot/levels/plus/chapter009/level002/help/report.E.txt
+share/games/colobot/levels/plus/chapter009/level002/help/report.F.txt
+share/games/colobot/levels/plus/chapter009/level002/help/report.P.txt
+share/games/colobot/levels/plus/chapter009/level002/help/report.R.txt
+share/games/colobot/levels/plus/chapter009/level002/scene.txt
+share/games/colobot/levels/plus/chapter009/level003/help/help.B.txt
+share/games/colobot/levels/plus/chapter009/level003/help/help.C.txt
+share/games/colobot/levels/plus/chapter009/level003/help/help.D.txt
+share/games/colobot/levels/plus/chapter009/level003/help/help.E.txt
+share/games/colobot/levels/plus/chapter009/level003/help/help.F.txt
+share/games/colobot/levels/plus/chapter009/level003/help/help.P.txt
+share/games/colobot/levels/plus/chapter009/level003/help/help.R.txt
+share/games/colobot/levels/plus/chapter009/level003/help/report.B.txt
+share/games/colobot/levels/plus/chapter009/level003/help/report.C.txt
+share/games/colobot/levels/plus/chapter009/level003/help/report.D.txt
+share/games/colobot/levels/plus/chapter009/level003/help/report.E.txt
+share/games/colobot/levels/plus/chapter009/level003/help/report.F.txt
+share/games/colobot/levels/plus/chapter009/level003/help/report.P.txt
+share/games/colobot/levels/plus/chapter009/level003/help/report.R.txt
+share/games/colobot/levels/plus/chapter009/level003/scene.txt
+share/games/colobot/levels/plus/chapter009/level004/help/help.B.txt
+share/games/colobot/levels/plus/chapter009/level004/help/help.C.txt
+share/games/colobot/levels/plus/chapter009/level004/help/help.D.txt
+share/games/colobot/levels/plus/chapter009/level004/help/help.E.txt
+share/games/colobot/levels/plus/chapter009/level004/help/help.F.txt
+share/games/colobot/levels/plus/chapter009/level004/help/help.P.txt
+share/games/colobot/levels/plus/chapter009/level004/help/help.R.txt
+share/games/colobot/levels/plus/chapter009/level004/help/report.B.txt
+share/games/colobot/levels/plus/chapter009/level004/help/report.C.txt
+share/games/colobot/levels/plus/chapter009/level004/help/report.D.txt
+share/games/colobot/levels/plus/chapter009/level004/help/report.E.txt
+share/games/colobot/levels/plus/chapter009/level004/help/report.F.txt
+share/games/colobot/levels/plus/chapter009/level004/help/report.P.txt
+share/games/colobot/levels/plus/chapter009/level004/help/report.R.txt
+share/games/colobot/levels/plus/chapter009/level004/scene.txt
+share/games/colobot/levels/plus/chapter009/planet.txt
+share/games/colobot/levels/plus/chapter009/terrain.txt
share/games/colobot/models/ant1.mod
share/games/colobot/models/ant2.mod
share/games/colobot/models/ant3.mod
@@ -3390,6 +3945,14 @@ share/games/colobot/models/toto3.mod
share/games/colobot/models/toto4.mod
share/games/colobot/models/toto5.mod
share/games/colobot/models/tower.mod
+share/games/colobot/models/trainer.mod
+share/games/colobot/models/trainera.mod
+share/games/colobot/models/trainerf.mod
+share/games/colobot/models/trainerg.mod
+share/games/colobot/models/traineri.mod
+share/games/colobot/models/trainerr.mod
+share/games/colobot/models/trainers.mod
+share/games/colobot/models/trainert.mod
share/games/colobot/models/trainerw.mod
share/games/colobot/models/tree0.mod
share/games/colobot/models/tree1.mod
@@ -3402,6 +3965,20 @@ share/games/colobot/models/winfire.mod
share/games/colobot/models/worm1.mod
share/games/colobot/models/worm2.mod
share/games/colobot/models/worm3.mod
+share/games/colobot/mods/AltTextures/manifest.txt
+share/games/colobot/mods/AltTextures/textures/effect00.png
+share/games/colobot/mods/AltTextures/textures/effect01.png
+share/games/colobot/mods/AltTextures/textures/effect02.png
+share/games/colobot/mods/AltTextures/textures/effect03.png
+share/games/colobot/mods/AltTextures/textures/objects/apollo.png
+share/games/colobot/mods/AltTextures/textures/objects/base1.png
+share/games/colobot/mods/AltTextures/textures/objects/convert.png
+share/games/colobot/mods/AltTextures/textures/objects/derrick.png
+share/games/colobot/mods/AltTextures/textures/objects/factory.png
+share/games/colobot/mods/AltTextures/textures/objects/lemt.png
+share/games/colobot/mods/AltTextures/textures/objects/roller.png
+share/games/colobot/mods/AltTextures/textures/objects/search.png
+share/games/colobot/mods/AltTextures/textures/objects/subm.png
share/games/colobot/music/Constructive.ogg
share/games/colobot/music/Humanitarian.ogg
share/games/colobot/music/Hv2.ogg
@@ -3591,6 +4168,7 @@ share/games/colobot/textures/objects/lemt.png
share/games/colobot/textures/objects/mother.png
share/games/colobot/textures/objects/plant.png
share/games/colobot/textures/objects/roller.png
+share/games/colobot/textures/objects/rollert.png
share/games/colobot/textures/objects/search.png
share/games/colobot/textures/objects/subm.png
share/games/colobot/textures/objects/vegetal.png
@@ -3680,4 +4258,3 @@ share/locale/pt/LC_MESSAGES/colobot.mo
share/locale/ru/LC_MESSAGES/colobot.mo
share/man/man6/colobot.6.gz
share/metainfo/info.colobot.Colobot.appdata.xml
-@dir share/games/colobot/mods