aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--games/wesnoth-devel/Makefile33
-rw-r--r--games/wesnoth-devel/distinfo8
-rw-r--r--games/wesnoth-devel/files/patch-configure74
-rw-r--r--games/wesnoth-devel/files/patch-src::Makefile.in12
-rw-r--r--games/wesnoth-devel/files/patch-src::help.cpp7
-rw-r--r--games/wesnoth-devel/files/patch-src::scoped_resource.hpp11
-rw-r--r--games/wesnoth-devel/pkg-plist1283
-rw-r--r--games/wesnoth/Makefile33
-rw-r--r--games/wesnoth/distinfo8
-rw-r--r--games/wesnoth/files/patch-configure74
-rw-r--r--games/wesnoth/files/patch-src::Makefile.in12
-rw-r--r--games/wesnoth/files/patch-src::help.cpp7
-rw-r--r--games/wesnoth/files/patch-src::scoped_resource.hpp11
-rw-r--r--games/wesnoth/pkg-plist1283
14 files changed, 2322 insertions, 534 deletions
diff --git a/games/wesnoth-devel/Makefile b/games/wesnoth-devel/Makefile
index cc54c5f53f9b..95810f0d47cf 100644
--- a/games/wesnoth-devel/Makefile
+++ b/games/wesnoth-devel/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= wesnoth
-PORTVERSION= 0.8
+PORTVERSION= 0.8.5
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= wesnoth
@@ -18,12 +18,21 @@ DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
MAINTAINER= mezz@FreeBSD.org
COMMENT= A fantasy turn-based strategy game
+USE_GCC= 3.4
USE_SDL= image mixer net ttf
USE_GNOME= gnometarget
+USE_GMAKE= yes
WANT_GNOME= yes
+USE_GETTEXT= yes
USE_X_PREFIX= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --disable-sdltest \
+ --with-libiconv-prefix=${LOCALBASE} \
+ --with-libintl-prefix=${LOCALBASE} \
+ --with-localedir=${PREFIX}/share/locale
+CONFIGURE_ENV= CPPFLAGS="-ftemplate-depth-45" \
+ LDFLAGS="-L${LOCALBASE}/lib -lintl"
MAN6= wesnoth.6 wesnoth_editor.6 wesnothd.6
@@ -34,6 +43,13 @@ PLIST_SUB+= LITE:="@comment "
PLIST_SUB+= LITE:=""
.endif
+.if defined(WITH_CAMPAIGN) || defined(PACKAGE_BUILDING)
+CONFIGURE_ARGS+= --enable-campaign-server
+PLIST_SUB+= CAMPAIGN:=""
+.else
+PLIST_SUB+= CAMPAIGN:="@comment "
+.endif
+
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+= --enable-debug
.endif
@@ -62,38 +78,41 @@ PLIST_SUB+= TOOLS:="@comment "
.include <bsd.port.pre.mk>
.if ${HAVE_GNOME:Mgnomehier}!=""
-CONFIGURE_ARGS+= --enable-gnome
+CONFIGURE_ARGS+= --with-gnome
PLIST_SUB+= GNOME:=""
.else
PLIST_SUB+= GNOME:="@comment "
.endif
.if exists(${LOCALBASE}/bin/kde-config)
-CONFIGURE_ARGS+= --enable-kde
+CONFIGURE_ARGS+= --with-kde
PLIST_SUB+= KDE:=""
.else
PLIST_SUB+= KDE:="@comment "
.endif
pre-everything::
-.if !defined(LITE) || !defined(WITH_DEBUG) || !defined(WITH_EDITOR) || !defined(WITH_SERVER) || !defined(WITH_TOOLS)
+.if !defined(LITE) || !defined(WITH_CAMPAIGN) || !defined(WITH_DEBUG) || !defined(WITH_EDITOR) || !defined(WITH_SERVER) || !defined(WITH_TOOLS)
@${ECHO_MSG} "You may specify the following on the command line:"
@${ECHO_MSG} " "
.endif
.if !defined(LITE)
@${ECHO_MSG} "LITE=yes for lite version of Wesnoth (without music)."
.endif
+.if !defined(WITH_CAMPAIGN)
+ @${ECHO_MSG} "WITH_CAMPAIGN=yes to enable compilation of campaign server."
+.endif
.if !defined(WITH_DEBUG)
@${ECHO_MSG} "WITH_DEBUG=yes to enable debugging in Wesnoth."
.endif
.if !defined(WITH_EDITOR)
- @${ECHO_MSG} "WITH_EDITOR=yes for enable compilation editor."
+ @${ECHO_MSG} "WITH_EDITOR=yes to enable compilation of map editor."
.endif
.if !defined(WITH_SERVER)
- @${ECHO_MSG} "WITH_SERVER=yes for enable compilation of server."
+ @${ECHO_MSG} "WITH_SERVER=yes to enable compilation of server."
.endif
.if !defined(WITH_TOOLS)
- @${ECHO_MSG} "WITH_TOOLS=yes for enable compilation of translation tools."
+ @${ECHO_MSG} "WITH_TOOLS=yes to enable compilation of tools for translators and artists."
.endif
post-patch:
diff --git a/games/wesnoth-devel/distinfo b/games/wesnoth-devel/distinfo
index 18ccce33c70e..c5acba1dc904 100644
--- a/games/wesnoth-devel/distinfo
+++ b/games/wesnoth-devel/distinfo
@@ -1,4 +1,4 @@
-MD5 (wesnoth-0.8.tar.gz) = c6258d08645a97c311c9538128f5af6e
-SIZE (wesnoth-0.8.tar.gz) = 22171378
-MD5 (wesnoth-lite-0.8.tar.gz) = 81d25853f528c13886f083a2585719c3
-SIZE (wesnoth-lite-0.8.tar.gz) = 8872249
+MD5 (wesnoth-0.8.5.tar.gz) = 2b7cee60a6a37662f628e8971f18b5fc
+SIZE (wesnoth-0.8.5.tar.gz) = 31763952
+MD5 (wesnoth-lite-0.8.5.tar.gz) = e3e12fbf733b28d54d91274f56f636b7
+SIZE (wesnoth-lite-0.8.5.tar.gz) = 17669038
diff --git a/games/wesnoth-devel/files/patch-configure b/games/wesnoth-devel/files/patch-configure
new file mode 100644
index 000000000000..2461bb21a243
--- /dev/null
+++ b/games/wesnoth-devel/files/patch-configure
@@ -0,0 +1,74 @@
+--- configure.orig Tue Oct 5 23:42:20 2004
++++ configure Tue Oct 5 23:43:44 2004
+@@ -10043,36 +10043,6 @@
+
+
+
+-if test x$kde = xyes && test x$kdefound = xyes; then
+- KDE_TRUE=
+- KDE_FALSE='#'
+-else
+- KDE_TRUE='#'
+- KDE_FALSE=
+-fi
+-
+-
+-
+-if test x$gnome = xyes && test x$gnome1found = xyes; then
+- GNOME1_TRUE=
+- GNOME1_FALSE='#'
+-else
+- GNOME1_TRUE='#'
+- GNOME1_FALSE=
+-fi
+-
+-
+-
+-if test x$gnome = xyes && test x$gnome1found = xno; then
+- GNOME2_TRUE=
+- GNOME2_FALSE='#'
+-else
+- GNOME2_TRUE='#'
+- GNOME2_FALSE=
+-fi
+-
+-
+-
+ if test x$GXX = xyes; then
+ GCC_TRUE=
+ GCC_FALSE='#'
+@@ -13259,6 +13229,34 @@
+ fi
+
+
++
++if test x$kde = xyes && test x$kdefound = xyes; then
++ KDE_TRUE=
++ KDE_FALSE='#'
++else
++ KDE_TRUE='#'
++ KDE_FALSE=
++fi
++
++
++
++if test x$gnome = xyes && test x$gnome1found = xyes; then
++ GNOME1_TRUE=
++ GNOME1_FALSE='#'
++else
++ GNOME1_TRUE='#'
++ GNOME1_FALSE=
++fi
++
++
++
++if test x$gnome = xyes && test x$gnome1found = xno; then
++ GNOME2_TRUE=
++ GNOME2_FALSE='#'
++else
++ GNOME2_TRUE='#'
++ GNOME2_FALSE=
++fi
+
+
+
diff --git a/games/wesnoth-devel/files/patch-src::Makefile.in b/games/wesnoth-devel/files/patch-src::Makefile.in
new file mode 100644
index 000000000000..8da0562ab287
--- /dev/null
+++ b/games/wesnoth-devel/files/patch-src::Makefile.in
@@ -0,0 +1,12 @@
+--- src/Makefile.in.orig Tue Oct 5 23:45:33 2004
++++ src/Makefile.in Tue Oct 5 23:45:59 2004
+@@ -660,8 +660,7 @@
+ wesconfig.h
+
+ AM_CXXFLAGS = @SDL_CFLAGS@ -DWESNOTH_PATH=\"$(pkgdatadir)\" \
+- -DLOCALEDIR=\"$(LOCALEDIR)\" -DHAS_RELATIVE_LOCALEDIR=$(HAS_RELATIVE_LOCALEDIR) \
+- -I../intl -I$(top_srcdir)/intl
++ -DLOCALEDIR=\"$(LOCALEDIR)\" -DHAS_RELATIVE_LOCALEDIR=$(HAS_RELATIVE_LOCALEDIR)
+
+ CXXLD = $(LDPREFIX) $(CXX)
+ all: all-recursive
diff --git a/games/wesnoth-devel/files/patch-src::help.cpp b/games/wesnoth-devel/files/patch-src::help.cpp
index a383d415a4e9..836c0540340d 100644
--- a/games/wesnoth-devel/files/patch-src::help.cpp
+++ b/games/wesnoth-devel/files/patch-src::help.cpp
@@ -1,10 +1,11 @@
---- src/help.cpp.orig Sat Jul 3 20:44:17 2004
-+++ src/help.cpp Sat Jul 3 20:44:25 2004
-@@ -27,7 +27,6 @@
+--- src/help.cpp.orig Tue Oct 5 23:47:06 2004
++++ src/help.cpp Tue Oct 5 23:47:19 2004
+@@ -29,7 +29,7 @@
#include <cassert>
#include <algorithm>
#include <iostream>
-#include <locale>
++#include <locale.h>
#include <queue>
#include <set>
#include <stack>
diff --git a/games/wesnoth-devel/files/patch-src::scoped_resource.hpp b/games/wesnoth-devel/files/patch-src::scoped_resource.hpp
deleted file mode 100644
index 38256248cdab..000000000000
--- a/games/wesnoth-devel/files/patch-src::scoped_resource.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/scoped_resource.hpp.orig Sat Jul 3 16:23:45 2004
-+++ src/scoped_resource.hpp Sat Jul 3 16:24:35 2004
-@@ -13,6 +13,8 @@
- #ifndef SCOPED_RESOURCE_H_INCLUDED
- #define SCOPED_RESOURCE_H_INCLUDED
-
-+#include <cstdio>
-+
- /**
- * The util namespace should take all classes which are of a generic type,
- * used to perform common tasks which are not BibleTime-specific. See
diff --git a/games/wesnoth-devel/pkg-plist b/games/wesnoth-devel/pkg-plist
index 927962c8657d..8268fa975bb8 100644
--- a/games/wesnoth-devel/pkg-plist
+++ b/games/wesnoth-devel/pkg-plist
@@ -1,33 +1,188 @@
+%%CAMPAIGN:%%bin/campaignd
%%TOOLS:%%bin/make_translation
%%TOOLS:%%bin/merge_translations
bin/wesnoth
%%EDITOR:%%bin/wesnoth_editor
%%SERVER:%%bin/wesnothd
-share/wesnoth/data/battleworld.cfg
+share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
+share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
+share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
+share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
+share/locale/ca/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/ca/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/ca/LC_MESSAGES/wesnoth-trow.mo
+share/locale/ca/LC_MESSAGES/wesnoth.mo
+share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
+share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
+share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
+share/locale/cs/LC_MESSAGES/wesnoth-lib.mo
+share/locale/cs/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/cs/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/cs/LC_MESSAGES/wesnoth-trow.mo
+share/locale/cs/LC_MESSAGES/wesnoth.mo
+share/locale/da/LC_MESSAGES/wesnoth-editor.mo
+share/locale/da/LC_MESSAGES/wesnoth-ei.mo
+share/locale/da/LC_MESSAGES/wesnoth-httt.mo
+share/locale/da/LC_MESSAGES/wesnoth-lib.mo
+share/locale/da/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/da/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/da/LC_MESSAGES/wesnoth-trow.mo
+share/locale/da/LC_MESSAGES/wesnoth.mo
+share/locale/de/LC_MESSAGES/wesnoth-editor.mo
+share/locale/de/LC_MESSAGES/wesnoth-ei.mo
+share/locale/de/LC_MESSAGES/wesnoth-httt.mo
+share/locale/de/LC_MESSAGES/wesnoth-lib.mo
+share/locale/de/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/de/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/de/LC_MESSAGES/wesnoth-trow.mo
+share/locale/de/LC_MESSAGES/wesnoth.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-editor.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-ei.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-httt.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-lib.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-trow.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth.mo
+share/locale/es/LC_MESSAGES/wesnoth-editor.mo
+share/locale/es/LC_MESSAGES/wesnoth-ei.mo
+share/locale/es/LC_MESSAGES/wesnoth-httt.mo
+share/locale/es/LC_MESSAGES/wesnoth-lib.mo
+share/locale/es/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/es/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/es/LC_MESSAGES/wesnoth-trow.mo
+share/locale/es/LC_MESSAGES/wesnoth.mo
+share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
+share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
+share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
+share/locale/eu/LC_MESSAGES/wesnoth-lib.mo
+share/locale/eu/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/eu/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/eu/LC_MESSAGES/wesnoth-trow.mo
+share/locale/eu/LC_MESSAGES/wesnoth.mo
+share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
+share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
+share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
+share/locale/fi/LC_MESSAGES/wesnoth-lib.mo
+share/locale/fi/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/fi/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/fi/LC_MESSAGES/wesnoth-trow.mo
+share/locale/fi/LC_MESSAGES/wesnoth.mo
+share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
+share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
+share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
+share/locale/fr/LC_MESSAGES/wesnoth-lib.mo
+share/locale/fr/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/fr/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/fr/LC_MESSAGES/wesnoth-trow.mo
+share/locale/fr/LC_MESSAGES/wesnoth.mo
+share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
+share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
+share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
+share/locale/hu/LC_MESSAGES/wesnoth-lib.mo
+share/locale/hu/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/hu/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/hu/LC_MESSAGES/wesnoth-trow.mo
+share/locale/hu/LC_MESSAGES/wesnoth.mo
+share/locale/it/LC_MESSAGES/wesnoth-editor.mo
+share/locale/it/LC_MESSAGES/wesnoth-ei.mo
+share/locale/it/LC_MESSAGES/wesnoth-httt.mo
+share/locale/it/LC_MESSAGES/wesnoth-lib.mo
+share/locale/it/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/it/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/it/LC_MESSAGES/wesnoth-trow.mo
+share/locale/it/LC_MESSAGES/wesnoth.mo
+share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
+share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
+share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
+share/locale/nl/LC_MESSAGES/wesnoth-lib.mo
+share/locale/nl/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/nl/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/nl/LC_MESSAGES/wesnoth-trow.mo
+share/locale/nl/LC_MESSAGES/wesnoth.mo
+share/locale/no/LC_MESSAGES/wesnoth-editor.mo
+share/locale/no/LC_MESSAGES/wesnoth-ei.mo
+share/locale/no/LC_MESSAGES/wesnoth-httt.mo
+share/locale/no/LC_MESSAGES/wesnoth-lib.mo
+share/locale/no/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/no/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/no/LC_MESSAGES/wesnoth-trow.mo
+share/locale/no/LC_MESSAGES/wesnoth.mo
+share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
+share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
+share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
+share/locale/pl/LC_MESSAGES/wesnoth-lib.mo
+share/locale/pl/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/pl/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/pl/LC_MESSAGES/wesnoth-trow.mo
+share/locale/pl/LC_MESSAGES/wesnoth.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-trow.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth.mo
+share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
+share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
+share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
+share/locale/ru/LC_MESSAGES/wesnoth-lib.mo
+share/locale/ru/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/ru/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/ru/LC_MESSAGES/wesnoth-trow.mo
+share/locale/ru/LC_MESSAGES/wesnoth.mo
+share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
+share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
+share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
+share/locale/sk/LC_MESSAGES/wesnoth-lib.mo
+share/locale/sk/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/sk/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/sk/LC_MESSAGES/wesnoth-trow.mo
+share/locale/sk/LC_MESSAGES/wesnoth.mo
+share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
+share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
+share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
+share/locale/sv/LC_MESSAGES/wesnoth-lib.mo
+share/locale/sv/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/sv/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/sv/LC_MESSAGES/wesnoth-trow.mo
+share/locale/sv/LC_MESSAGES/wesnoth.mo
+share/wesnoth/data/campaigns/Eastern_Invasion.cfg
+share/wesnoth/data/campaigns/Heir_To_The_Throne.cfg
share/wesnoth/data/campaigns/README
+share/wesnoth/data/campaigns/Son_Of_The_Black_Eye.cfg
+share/wesnoth/data/campaigns/The_Dark_Hordes.cfg
+share/wesnoth/data/campaigns/The_Rise_of_Wesnoth.cfg
share/wesnoth/data/convert.pl
-share/wesnoth/data/deaths.cfg
share/wesnoth/data/game.cfg
share/wesnoth/data/help.cfg
-share/wesnoth/data/intro.cfg
share/wesnoth/data/items.cfg
share/wesnoth/data/maps/Eastern_Invasion/An_Elven_Alliance
share/wesnoth/data/maps/Eastern_Invasion/An_Unexpected_Appearance
+share/wesnoth/data/maps/Eastern_Invasion/Approaching_Weldyn
share/wesnoth/data/maps/Eastern_Invasion/Captured
+share/wesnoth/data/maps/Eastern_Invasion/Drowned_Plains
+share/wesnoth/data/maps/Eastern_Invasion/Evacuation
share/wesnoth/data/maps/Eastern_Invasion/Lake_Vrug
share/wesnoth/data/maps/Eastern_Invasion/Mal-Ravanals_Capital
share/wesnoth/data/maps/Eastern_Invasion/Northern_Outpost
+share/wesnoth/data/maps/Eastern_Invasion/Peasant_Revolt
+share/wesnoth/data/maps/Eastern_Invasion/The_Arena
share/wesnoth/data/maps/Eastern_Invasion/The_Crossing
share/wesnoth/data/maps/Eastern_Invasion/The_Escape_Tunnel
share/wesnoth/data/maps/Eastern_Invasion/The_Outpost
share/wesnoth/data/maps/Eastern_Invasion/The_Undead_Border_Patrol
+share/wesnoth/data/maps/Eastern_Invasion/Throne_Room
share/wesnoth/data/maps/Eastern_Invasion/Training_the_Ogres
share/wesnoth/data/maps/Eastern_Invasion/Tribal_Warfare
share/wesnoth/data/maps/Eastern_Invasion/Two_Paths
share/wesnoth/data/maps/Eastern_Invasion/Undead_Crossing
+share/wesnoth/data/maps/Eastern_Invasion/Weldyn_Besieged
share/wesnoth/data/maps/Eastern_Invasion/Weldyn_under_Attack
share/wesnoth/data/maps/Eastern_Invasion/loyalistmap11
share/wesnoth/data/maps/Heir_To_The_Throne/A_Choice_Must_Be_Made
+share/wesnoth/data/maps/Heir_To_The_Throne/Battle_for_Wesnoth
share/wesnoth/data/maps/Heir_To_The_Throne/Bay_of_Pearls
share/wesnoth/data/maps/Heir_To_The_Throne/Blackwater_Port
share/wesnoth/data/maps/Heir_To_The_Throne/Crossroads
@@ -53,14 +208,8 @@ share/wesnoth/data/maps/Heir_To_The_Throne/Swamp_Of_Dread
share/wesnoth/data/maps/Heir_To_The_Throne/The_Lost_General
share/wesnoth/data/maps/Heir_To_The_Throne/The_Siege_of_Elensefar
share/wesnoth/data/maps/Heir_To_The_Throne/Valley_of_Death
-share/wesnoth/data/maps/Multiplayer/BattleWorld
-share/wesnoth/data/maps/Multiplayer/Castles
-share/wesnoth/data/maps/Multiplayer/ForestofFear
-share/wesnoth/data/maps/Multiplayer/King_of_the_Hill
-share/wesnoth/data/maps/Multiplayer/Three_Rivers
-share/wesnoth/data/maps/Multiplayer/Wesbowl
-share/wesnoth/data/maps/Multiplayer/Weslin
share/wesnoth/data/maps/Son_Of_The_Black_Eye/Black_Flag
+share/wesnoth/data/maps/Son_Of_The_Black_Eye/Clash_Of_Armies
share/wesnoth/data/maps/Son_Of_The_Black_Eye/Desert_Of_Death
share/wesnoth/data/maps/Son_Of_The_Black_Eye/End_Of_Peace
share/wesnoth/data/maps/Son_Of_The_Black_Eye/Saving_Inarix
@@ -76,21 +225,61 @@ share/wesnoth/data/maps/The_Dark_Hordes/Crelanus_Book
share/wesnoth/data/maps/The_Dark_Hordes/Inside_The_Tower
share/wesnoth/data/maps/The_Dark_Hordes/Mages_And_Elves
share/wesnoth/data/maps/The_Dark_Hordes/The_Skull_of_Agarash
-share/wesnoth/data/maps/Tutorial/Tutorial1
-share/wesnoth/data/maps/Tutorial/Tutorial2
+share/wesnoth/data/maps/The_Dark_Hordes/Underground_Pool
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_Beach
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_Final_Spring
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_Harrowing_Escape
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_New_Land
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_Summer_of_Storms
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Clearwater_Port
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Cursed_Isle
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Elf_Lords
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Fallen_Lich_Point
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Peoples_in_Decline
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Return_of_the_Fleet
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Rise_of_Wesnoth
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Rough_Landing
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Sewer
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Southbay_in_Winter
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Temple_in_the_Deep
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Dragon
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Fall
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Midlands
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Oldwood
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Plan
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_River_Road
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Vanguard
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Troll_Hole
+share/wesnoth/data/maps/Tutorial/Basic_Training
+share/wesnoth/data/maps/Tutorial/Traits_and_Specialties
+share/wesnoth/data/maps/multiplayer/BattleWorld
+share/wesnoth/data/maps/multiplayer/Blitz
+share/wesnoth/data/maps/multiplayer/CastleHoppingIsle
+share/wesnoth/data/maps/multiplayer/Castles
+share/wesnoth/data/maps/multiplayer/ForestofFear
+share/wesnoth/data/maps/multiplayer/King_of_the_Hill
+share/wesnoth/data/maps/multiplayer/Three_Rivers
+share/wesnoth/data/maps/multiplayer/Wesbowl
+share/wesnoth/data/maps/multiplayer/Weslin
share/wesnoth/data/multiplayer.cfg
share/wesnoth/data/names.cfg
share/wesnoth/data/sample_translation.cfg
share/wesnoth/data/scenario-test.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/Approaching_Weldyn.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Captured.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Crossing.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Elven_Alliance.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Escape_Tunnel.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/Evacuation.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Lake_Vrug.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Mal-Ravanals_Capital.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Northern_Outpost.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Ogre_Training.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/Reject.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/The_Drowned_Plains.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/The_Duel.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/The_Outpost.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/Throne_Room.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Tribal_Warfare.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Two_Paths.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Undead_Border_Patrol.cfg
@@ -100,12 +289,14 @@ share/wesnoth/data/scenarios/Eastern_Invasion/Weldyn_Attack.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/deaths.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/intro.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/A_Choice_Must_Be_Made.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/Battle_for_Wesnoth.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Bay_of_Pearls.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Blackwater_Port.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Crossroads.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Dwarven_Doors.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Elven_Council.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Elves_Besieged.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/Epilogue.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Ford_of_Abez.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Gryphon_Mountain.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Hasty_Alliance.cfg
@@ -127,6 +318,9 @@ share/wesnoth/data/scenarios/Heir_To_The_Throne/The_Lost_General.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/The_Siege_of_Elensefar.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Valley_of_Death.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Valley_of_Statues.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/bigmap.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/deaths.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/intro.cfg
share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Black_Flag.cfg
share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Clash_Of_Armies.cfg
share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Desert_Of_Death.cfg
@@ -147,6 +341,44 @@ share/wesnoth/data/scenarios/The_Dark_Hordes/Crelanus_Book.cfg
share/wesnoth/data/scenarios/The_Dark_Hordes/Inside_The_Tower.cfg
share/wesnoth/data/scenarios/The_Dark_Hordes/Mages_And_Elves.cfg
share/wesnoth/data/scenarios/The_Dark_Hordes/The_Skull_of_Agarash.cfg
+share/wesnoth/data/scenarios/The_Dark_Hordes/Underground_Pool.cfg
+share/wesnoth/data/scenarios/The_Dark_Hordes/intro.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Beach.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Final_Spring.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Harrowing_Escape.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_New_Land.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Spy_in_the_Woods.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Summer_of_Storms.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Clearwater_Port.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Cursed_Isle.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Elf_Lords.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Epilogue.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Fallen_Lich_Point.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Peoples_in_Decline.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Return_of_the_Fleet.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Return_to_Oldwood.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Rise_of_Wesnoth.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Rough_Landing.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Sewer.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Southbay_in_Winter.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Temple_of_the_Deep.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Dragon.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Fall.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Midlands.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Oldwood.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Plan.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_River_Road.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Vanguard.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Troll_Hole.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-deaths.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-intro.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-macros.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-nlmsg.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-nohome.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-noisle.cfg
+share/wesnoth/data/scenarios/multiplayer/An_Island.cfg
+share/wesnoth/data/scenarios/multiplayer/Blitz.cfg
+share/wesnoth/data/scenarios/multiplayer/CastleHoppingIsle.cfg
share/wesnoth/data/scenarios/multiplayer/ForestOfFear.cfg
share/wesnoth/data/scenarios/multiplayer/Random_Scenario.cfg
share/wesnoth/data/scenarios/multiplayer/Wesbowl.cfg
@@ -154,12 +386,17 @@ share/wesnoth/data/scenarios/multiplayer/WeslinBridge.cfg
share/wesnoth/data/scenarios/multiplayer/battleworld.cfg
share/wesnoth/data/scenarios/multiplayer/castles.cfg
share/wesnoth/data/scenarios/multiplayer/scenarios.cfg
+share/wesnoth/data/scenarios/tutorial/Basic_Training.cfg
+share/wesnoth/data/scenarios/tutorial/Traits_and_Specialties.cfg
+share/wesnoth/data/scenarios/tutorial/utils.cfg
share/wesnoth/data/schedules.cfg
share/wesnoth/data/terrain-graphics.cfg
share/wesnoth/data/terrain-graphics/adjacent-north.cfg
share/wesnoth/data/terrain-graphics/adjacent.cfg
share/wesnoth/data/terrain-graphics/base.cfg
+share/wesnoth/data/terrain-graphics/bridges.cfg
share/wesnoth/data/terrain-graphics/buildings.cfg
+share/wesnoth/data/terrain-graphics/canyon.cfg
share/wesnoth/data/terrain-graphics/castle-transitions.cfg
share/wesnoth/data/terrain-graphics/castles.cfg
share/wesnoth/data/terrain-graphics/util.cfg
@@ -170,26 +407,22 @@ share/wesnoth/data/tools/exploder/castle-concave.cfg
share/wesnoth/data/tools/exploder/castle-convex.cfg
share/wesnoth/data/tools/exploder/castle-exploded-concave.cfg
share/wesnoth/data/tools/exploder/castle-exploded-convex.cfg
+share/wesnoth/data/tools/exploder/castle-wall-concave.cfg
+share/wesnoth/data/tools/exploder/castle-wall-convex.cfg
+share/wesnoth/data/tools/exploder/castle-wall-exploded-concave.cfg
+share/wesnoth/data/tools/exploder/castle-wall-exploded-convex.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-n-s.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-ne-sw.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-nw-se.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-s-n.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-se-nw.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-sw-ne.cfg
share/wesnoth/data/tools/exploder/models/castle.cfg
-share/wesnoth/data/translations/brazilian.cfg
-share/wesnoth/data/translations/catalan.cfg
-share/wesnoth/data/translations/czech.cfg
-share/wesnoth/data/translations/danish.cfg
-share/wesnoth/data/translations/dutch.cfg
+share/wesnoth/data/tools/exploder/wall-concave.cfg
+share/wesnoth/data/tools/exploder/wall-convex.cfg
+share/wesnoth/data/tools/exploder/wall-exploded-concave.cfg
+share/wesnoth/data/tools/exploder/wall-exploded-convex.cfg
share/wesnoth/data/translations/english.cfg
-share/wesnoth/data/translations/finnish.cfg
-share/wesnoth/data/translations/french.cfg
-share/wesnoth/data/translations/german.cfg
-share/wesnoth/data/translations/hungarian.cfg
-share/wesnoth/data/translations/italian.cfg
-share/wesnoth/data/translations/norwegian.cfg
-share/wesnoth/data/translations/polish.cfg
-share/wesnoth/data/translations/portuguesebr.cfg
-share/wesnoth/data/translations/slovak.cfg
-share/wesnoth/data/translations/spanish.cfg
-share/wesnoth/data/translations/swedish.cfg
-share/wesnoth/data/tutorial.cfg
-share/wesnoth/data/tutorial2.cfg
share/wesnoth/data/units/Ancient_Lich.cfg
share/wesnoth/data/units/Ancient_Wose.cfg
share/wesnoth/data/units/Arch_Mage.cfg
@@ -208,30 +441,34 @@ share/wesnoth/data/units/Cockatrice.cfg
share/wesnoth/data/units/Commander.cfg
share/wesnoth/data/units/Cuttle_Fish.cfg
share/wesnoth/data/units/Dark_Adept.cfg
+share/wesnoth/data/units/Dark_Queen.cfg
share/wesnoth/data/units/Dark_Spirit.cfg
share/wesnoth/data/units/Death_Knight.cfg
share/wesnoth/data/units/Deathmaster.cfg
share/wesnoth/data/units/Demilich.cfg
share/wesnoth/data/units/Direwolf_Rider.cfg
share/wesnoth/data/units/Dragoon.cfg
-share/wesnoth/data/units/Drake_Beak.cfg
share/wesnoth/data/units/Drake_Burner.cfg
share/wesnoth/data/units/Drake_Clasher.cfg
share/wesnoth/data/units/Drake_Fighter.cfg
share/wesnoth/data/units/Drake_Fire.cfg
-share/wesnoth/data/units/Drake_Guard.cfg
-share/wesnoth/data/units/Drake_Mage.cfg
-share/wesnoth/data/units/Drake_Petit.cfg
+share/wesnoth/data/units/Drake_Flameheart.cfg
+share/wesnoth/data/units/Drake_Flare.cfg
+share/wesnoth/data/units/Drake_Gladiator.cfg
+share/wesnoth/data/units/Drake_Glider.cfg
+share/wesnoth/data/units/Drake_Inferno.cfg
+share/wesnoth/data/units/Drake_Sky.cfg
share/wesnoth/data/units/Drake_Slasher.cfg
-share/wesnoth/data/units/Drake_Slave.cfg
share/wesnoth/data/units/Drake_Warrior.cfg
-share/wesnoth/data/units/Drake_Worker.cfg
share/wesnoth/data/units/Duelist.cfg
share/wesnoth/data/units/Dwarvish_Berserker.cfg
share/wesnoth/data/units/Dwarvish_Dragonguard.cfg
share/wesnoth/data/units/Dwarvish_Fighter.cfg
+share/wesnoth/data/units/Dwarvish_Guardsman.cfg
share/wesnoth/data/units/Dwarvish_Lord.cfg
share/wesnoth/data/units/Dwarvish_Runemaster.cfg
+share/wesnoth/data/units/Dwarvish_Sentinel.cfg
+share/wesnoth/data/units/Dwarvish_Stalwart.cfg
share/wesnoth/data/units/Dwarvish_Steelclad.cfg
share/wesnoth/data/units/Dwarvish_Thunderer.cfg
share/wesnoth/data/units/Dwarvish_Thunderguard.cfg
@@ -243,8 +480,11 @@ share/wesnoth/data/units/Elvish_Avenger.cfg
share/wesnoth/data/units/Elvish_Captain.cfg
share/wesnoth/data/units/Elvish_Champion.cfg
share/wesnoth/data/units/Elvish_Druid.cfg
+share/wesnoth/data/units/Elvish_Enchantress.cfg
share/wesnoth/data/units/Elvish_Fighter.cfg
share/wesnoth/data/units/Elvish_Hero.cfg
+share/wesnoth/data/units/Elvish_High_Lord.cfg
+share/wesnoth/data/units/Elvish_Lady.cfg
share/wesnoth/data/units/Elvish_Lord.cfg
share/wesnoth/data/units/Elvish_Marksman.cfg
share/wesnoth/data/units/Elvish_Marshal.cfg
@@ -255,20 +495,28 @@ share/wesnoth/data/units/Elvish_Scout.cfg
share/wesnoth/data/units/Elvish_Shaman.cfg
share/wesnoth/data/units/Elvish_Sharpshooter.cfg
share/wesnoth/data/units/Elvish_Shyde.cfg
+share/wesnoth/data/units/Elvish_Sorceress.cfg
+share/wesnoth/data/units/Elvish_Sylph.cfg
share/wesnoth/data/units/Fencer.cfg
share/wesnoth/data/units/Fighter.cfg
+share/wesnoth/data/units/Fire_Dragon.cfg
+share/wesnoth/data/units/Fireball.cfg
share/wesnoth/data/units/Footpad.cfg
share/wesnoth/data/units/Galleon.cfg
share/wesnoth/data/units/Gate.cfg
share/wesnoth/data/units/General.cfg
share/wesnoth/data/units/Ghost.cfg
share/wesnoth/data/units/Ghoul.cfg
+share/wesnoth/data/units/Giant_Mudcrawler.cfg
share/wesnoth/data/units/Giant_Scorpion.cfg
share/wesnoth/data/units/Goblin_Direwolver.cfg
+share/wesnoth/data/units/Goblin_Impaler.cfg
share/wesnoth/data/units/Goblin_Knight.cfg
share/wesnoth/data/units/Goblin_Pillager.cfg
+share/wesnoth/data/units/Goblin_Spearman.cfg
share/wesnoth/data/units/Grand_Knight.cfg
share/wesnoth/data/units/Great_Mage.cfg
+share/wesnoth/data/units/Great_Troll.cfg
share/wesnoth/data/units/Gryphon.cfg
share/wesnoth/data/units/Gryphon_Master.cfg
share/wesnoth/data/units/Gryphon_Rider.cfg
@@ -289,23 +537,33 @@ share/wesnoth/data/units/Mage_of_Light.cfg
share/wesnoth/data/units/Master_Bowman.cfg
share/wesnoth/data/units/Merman.cfg
share/wesnoth/data/units/Merman_Lord.cfg
+share/wesnoth/data/units/Mudcrawler.cfg
share/wesnoth/data/units/Naga.cfg
share/wesnoth/data/units/Necromancer.cfg
share/wesnoth/data/units/Necrophage.cfg
share/wesnoth/data/units/Nightgaunt.cfg
+share/wesnoth/data/units/Noble_Commander.cfg
+share/wesnoth/data/units/Noble_Fighter.cfg
+share/wesnoth/data/units/Noble_Lord.cfg
+share/wesnoth/data/units/Noble_Youth.cfg
share/wesnoth/data/units/Ogre.cfg
share/wesnoth/data/units/Orcish_Archer.cfg
share/wesnoth/data/units/Orcish_Assassin.cfg
share/wesnoth/data/units/Orcish_Crossbow.cfg
share/wesnoth/data/units/Orcish_Crossbowman.cfg
share/wesnoth/data/units/Orcish_Grunt.cfg
+share/wesnoth/data/units/Orcish_Leader.cfg
share/wesnoth/data/units/Orcish_Ruler.cfg
share/wesnoth/data/units/Orcish_Shaman.cfg
share/wesnoth/data/units/Orcish_Slayer.cfg
+share/wesnoth/data/units/Orcish_Sovereign.cfg
share/wesnoth/data/units/Orcish_Warlord.cfg
share/wesnoth/data/units/Orcish_Warrior.cfg
share/wesnoth/data/units/Outlaw.cfg
+share/wesnoth/data/units/Outlaw_Princess.cfg
+share/wesnoth/data/units/Outlaw_Queen.cfg
share/wesnoth/data/units/Paladin.cfg
+share/wesnoth/data/units/Peasant.cfg
share/wesnoth/data/units/Pikeman.cfg
share/wesnoth/data/units/Pirate_Galleon.cfg
share/wesnoth/data/units/Poacher.cfg
@@ -315,7 +573,11 @@ share/wesnoth/data/units/Revenant.cfg
share/wesnoth/data/units/Rogue.cfg
share/wesnoth/data/units/Royal_Guard.cfg
share/wesnoth/data/units/Saurian.cfg
+share/wesnoth/data/units/Saurian_Icecaster.cfg
+share/wesnoth/data/units/Saurian_Soothsayer.cfg
+share/wesnoth/data/units/Saurian_Tribalist.cfg
share/wesnoth/data/units/Saurian_Warrior.cfg
+share/wesnoth/data/units/Scout.cfg
share/wesnoth/data/units/Sea_Hag.cfg
share/wesnoth/data/units/Sea_Orc.cfg
share/wesnoth/data/units/Sea_Serpent.cfg
@@ -323,24 +585,31 @@ share/wesnoth/data/units/Sergeant.cfg
share/wesnoth/data/units/Shadow.cfg
share/wesnoth/data/units/Shock_Trooper.cfg
share/wesnoth/data/units/Silver_Mage.cfg
+share/wesnoth/data/units/Skeletal_Dragon.cfg
share/wesnoth/data/units/Skeleton.cfg
share/wesnoth/data/units/Skeleton_Archer.cfg
share/wesnoth/data/units/Sleeping_Gryphon.cfg
+share/wesnoth/data/units/Soul_Shooter.cfg
share/wesnoth/data/units/Soulless.cfg
share/wesnoth/data/units/Spearman.cfg
share/wesnoth/data/units/Spectre.cfg
share/wesnoth/data/units/Swordsman.cfg
+share/wesnoth/data/units/Tentacle.cfg
share/wesnoth/data/units/Thief.cfg
share/wesnoth/data/units/Thug.cfg
share/wesnoth/data/units/Transport_Galleon.cfg
share/wesnoth/data/units/Trapper.cfg
share/wesnoth/data/units/Triton.cfg
share/wesnoth/data/units/Troll.cfg
+share/wesnoth/data/units/Troll_Hero.cfg
+share/wesnoth/data/units/Troll_Rocklobber.cfg
share/wesnoth/data/units/Troll_Warrior.cfg
share/wesnoth/data/units/Troll_Whelp.cfg
share/wesnoth/data/units/Vampire_Bat.cfg
share/wesnoth/data/units/Vampire_Lady.cfg
share/wesnoth/data/units/Walking_Corpse.cfg
+share/wesnoth/data/units/Wall_Guard.cfg
+share/wesnoth/data/units/Warrior_King.cfg
share/wesnoth/data/units/Watch_Tower.cfg
share/wesnoth/data/units/White_Mage.cfg
share/wesnoth/data/units/Wolf_Rider.cfg
@@ -351,18 +620,13 @@ share/wesnoth/data/units/Young_Ogre.cfg
share/wesnoth/data/units/Youth.cfg
share/wesnoth/data/utils.cfg
share/wesnoth/fonts/Bepa-Roman.ttf
+share/wesnoth/fonts/FreeSans.ttf
share/wesnoth/fonts/Vera.ttf
-share/wesnoth/images/Afternoon.png
-share/wesnoth/images/Dawn.png
-share/wesnoth/images/Day.png
-share/wesnoth/images/Dusk.png
-share/wesnoth/images/FirstWatch.png
-share/wesnoth/images/Morning.png
-share/wesnoth/images/Night.png
-share/wesnoth/images/SecondWatch.png
-share/wesnoth/images/Underground.png
-share/wesnoth/images/UndergroundIllum.png
-share/wesnoth/images/ally-energy.png
+share/wesnoth/images/arch-mage+female-attack.png
+share/wesnoth/images/arch-mage+female-attack1.png
+share/wesnoth/images/arch-mage+female-attack2.png
+share/wesnoth/images/arch-mage+female-defend.png
+share/wesnoth/images/arch-mage+female.png
share/wesnoth/images/arch-mage-attack.png
share/wesnoth/images/arch-mage-attack1.png
share/wesnoth/images/arch-mage-attack2.png
@@ -393,12 +657,14 @@ share/wesnoth/images/attacks/entangle.png
share/wesnoth/images/attacks/faerie_touch.png
share/wesnoth/images/attacks/fangs.png
share/wesnoth/images/attacks/fireball.png
+share/wesnoth/images/attacks/fireclaws.png
share/wesnoth/images/attacks/fist.png
share/wesnoth/images/attacks/frenzy.png
share/wesnoth/images/attacks/gaze.png
share/wesnoth/images/attacks/halberd.png
share/wesnoth/images/attacks/hammer.png
share/wesnoth/images/attacks/hatchet.png
+share/wesnoth/images/attacks/iceball.png
share/wesnoth/images/attacks/ink.png
share/wesnoth/images/attacks/knife.png
share/wesnoth/images/attacks/lance.png
@@ -409,12 +675,15 @@ share/wesnoth/images/attacks/mace.png
share/wesnoth/images/attacks/missile.png
share/wesnoth/images/attacks/paladinsword.png
share/wesnoth/images/attacks/pike.png
+share/wesnoth/images/attacks/pincers.png
share/wesnoth/images/attacks/pistol.png
+share/wesnoth/images/attacks/pitchfork.png
share/wesnoth/images/attacks/rapier.png
share/wesnoth/images/attacks/short-sword.png
share/wesnoth/images/attacks/sling.png
share/wesnoth/images/attacks/spear.png
share/wesnoth/images/attacks/staff.png
+share/wesnoth/images/attacks/sting.png
share/wesnoth/images/attacks/sword.png
share/wesnoth/images/attacks/tentacle.png
share/wesnoth/images/attacks/thorns.png
@@ -456,6 +725,10 @@ share/wesnoth/images/buttons/slider.png
share/wesnoth/images/buttons/uparrow-button-active.png
share/wesnoth/images/buttons/uparrow-button-pressed.png
share/wesnoth/images/buttons/uparrow-button.png
+share/wesnoth/images/campaigns/The_Rise_of_Wesnoth/east.png
+share/wesnoth/images/campaigns/The_Rise_of_Wesnoth/trow-logo.png
+share/wesnoth/images/campaigns/The_Rise_of_Wesnoth/west.png
+share/wesnoth/images/cavespider-defend.png
share/wesnoth/images/cavespider.png
share/wesnoth/images/cockatrice-attack1.png
share/wesnoth/images/cockatrice-attack2.png
@@ -473,23 +746,29 @@ share/wesnoth/images/cursors/select.png
share/wesnoth/images/cursors/wait.png
share/wesnoth/images/cuttlefish-defend.png
share/wesnoth/images/cuttlefish.png
+share/wesnoth/images/deep-tentacle-attack.png
+share/wesnoth/images/deep-tentacle-defend.png
+share/wesnoth/images/deep-tentacle.png
share/wesnoth/images/direwolf_rider.png
-share/wesnoth/images/drake-beak-attack.png
-share/wesnoth/images/drake-beak-defend.png
-share/wesnoth/images/drake-beak.png
+share/wesnoth/images/drake-burner-attack-close.png
share/wesnoth/images/drake-burner-attack-close1.png
share/wesnoth/images/drake-burner-attack-close2.png
share/wesnoth/images/drake-burner-attack-ranged.png
+share/wesnoth/images/drake-burner-attack-ranged1.png
+share/wesnoth/images/drake-burner-attack-ranged2.png
share/wesnoth/images/drake-burner-defend.png
share/wesnoth/images/drake-burner-flying.png
share/wesnoth/images/drake-burner.png
+share/wesnoth/images/drake-clasher-attack-spear.png
share/wesnoth/images/drake-clasher-attack-spear1.png
share/wesnoth/images/drake-clasher-attack-spear2.png
+share/wesnoth/images/drake-clasher-attack-sword.png
share/wesnoth/images/drake-clasher-attack-sword1.png
share/wesnoth/images/drake-clasher-attack-sword2.png
share/wesnoth/images/drake-clasher-attack-sword3.png
share/wesnoth/images/drake-clasher-attack-sword4.png
share/wesnoth/images/drake-clasher-defend.png
+share/wesnoth/images/drake-clasher-flying.png
share/wesnoth/images/drake-clasher.png
share/wesnoth/images/drake-fighter-attack-close1.png
share/wesnoth/images/drake-fighter-attack-close2.png
@@ -498,25 +777,52 @@ share/wesnoth/images/drake-fighter-attack-fire2.png
share/wesnoth/images/drake-fighter-defend.png
share/wesnoth/images/drake-fighter-flying.png
share/wesnoth/images/drake-fighter.png
+share/wesnoth/images/drake-fire-attack-close.png
share/wesnoth/images/drake-fire-attack-close1.png
share/wesnoth/images/drake-fire-attack-close2.png
share/wesnoth/images/drake-fire-attack-ranged.png
share/wesnoth/images/drake-fire-defend.png
+share/wesnoth/images/drake-fire-flying.png
share/wesnoth/images/drake-fire.png
-share/wesnoth/images/drake-guard-attack-close1.png
-share/wesnoth/images/drake-guard-attack-close2.png
-share/wesnoth/images/drake-guard-attack-ranged.png
-share/wesnoth/images/drake-guard-defend.png
-share/wesnoth/images/drake-guard.png
-share/wesnoth/images/drake-mage-attack-close.png
-share/wesnoth/images/drake-mage-attack-ranged-breath.png
-share/wesnoth/images/drake-mage-attack-ranged-staff1.png
-share/wesnoth/images/drake-mage-attack-ranged-staff2.png
-share/wesnoth/images/drake-mage-defend.png
-share/wesnoth/images/drake-mage.png
-share/wesnoth/images/drake-petit-attack.png
-share/wesnoth/images/drake-petit-defend.png
-share/wesnoth/images/drake-petit.png
+share/wesnoth/images/drake-flameheart-attack-close0.png
+share/wesnoth/images/drake-flameheart-attack-close1.png
+share/wesnoth/images/drake-flameheart-attack-close2.png
+share/wesnoth/images/drake-flameheart-attack-close3.png
+share/wesnoth/images/drake-flameheart-attack-close4.png
+share/wesnoth/images/drake-flameheart-attack-ranged.png
+share/wesnoth/images/drake-flameheart-defend.png
+share/wesnoth/images/drake-flameheart-flying.png
+share/wesnoth/images/drake-flameheart-lead.png
+share/wesnoth/images/drake-flameheart.png
+share/wesnoth/images/drake-flare-attack-close.png
+share/wesnoth/images/drake-flare-attack-ranged.png
+share/wesnoth/images/drake-flare-defend.png
+share/wesnoth/images/drake-flare-flying.png
+share/wesnoth/images/drake-flare-lead.png
+share/wesnoth/images/drake-flare.png
+share/wesnoth/images/drake-gladiator-attack-mace.png
+share/wesnoth/images/drake-gladiator-attack-spear.png
+share/wesnoth/images/drake-gladiator-attack-sword.png
+share/wesnoth/images/drake-gladiator-defend.png
+share/wesnoth/images/drake-gladiator-flying.png
+share/wesnoth/images/drake-gladiator.png
+share/wesnoth/images/drake-glider-attack-close1.png
+share/wesnoth/images/drake-glider-attack-close2.png
+share/wesnoth/images/drake-glider-defend.png
+share/wesnoth/images/drake-glider-flying.png
+share/wesnoth/images/drake-glider-ranged-attack.png
+share/wesnoth/images/drake-glider.png
+share/wesnoth/images/drake-inferno-attack-close.png
+share/wesnoth/images/drake-inferno-attack-ranged.png
+share/wesnoth/images/drake-inferno-defend.png
+share/wesnoth/images/drake-inferno-flying.png
+share/wesnoth/images/drake-inferno.png
+share/wesnoth/images/drake-sky-attack-melee1.png
+share/wesnoth/images/drake-sky-attack-melee2.png
+share/wesnoth/images/drake-sky-attack-ranged-fire.png
+share/wesnoth/images/drake-sky-attack-ranged-impact.png
+share/wesnoth/images/drake-sky-defend.png
+share/wesnoth/images/drake-sky.png
share/wesnoth/images/drake-slasher-attack-blade1.png
share/wesnoth/images/drake-slasher-attack-blade2.png
share/wesnoth/images/drake-slasher-attack-blade3.png
@@ -527,21 +833,16 @@ share/wesnoth/images/drake-slasher-attack-spear1.png
share/wesnoth/images/drake-slasher-attack-spear2.png
share/wesnoth/images/drake-slasher-attack-spear3.png
share/wesnoth/images/drake-slasher-defend.png
+share/wesnoth/images/drake-slasher-flying.png
+share/wesnoth/images/drake-slasher-pierce.png
+share/wesnoth/images/drake-slasher-slash.png
share/wesnoth/images/drake-slasher.png
-share/wesnoth/images/drake-slave-attack1.png
-share/wesnoth/images/drake-slave-attack2.png
-share/wesnoth/images/drake-slave-defend.png
-share/wesnoth/images/drake-slave.png
share/wesnoth/images/drake-warrior-attack-close1.png
share/wesnoth/images/drake-warrior-attack-close2.png
share/wesnoth/images/drake-warrior-attack-ranged.png
share/wesnoth/images/drake-warrior-defend.png
share/wesnoth/images/drake-warrior-flying.png
share/wesnoth/images/drake-warrior.png
-share/wesnoth/images/drake-worker-attack1.png
-share/wesnoth/images/drake-worker-attack2.png
-share/wesnoth/images/drake-worker-defend.png
-share/wesnoth/images/drake-worker.png
share/wesnoth/images/dwarf-berserker-attack.png
share/wesnoth/images/dwarf-berserker-defend.png
share/wesnoth/images/dwarf-berserker.png
@@ -549,9 +850,14 @@ share/wesnoth/images/dwarf-dragonguard-attack-close.png
share/wesnoth/images/dwarf-dragonguard-attack-ranged.png
share/wesnoth/images/dwarf-dragonguard-defend.png
share/wesnoth/images/dwarf-dragonguard.png
+share/wesnoth/images/dwarf-fighter-attack-mace.png
share/wesnoth/images/dwarf-fighter-attack.png
share/wesnoth/images/dwarf-fighter-defend.png
share/wesnoth/images/dwarf-fighter.png
+share/wesnoth/images/dwarf-guard-attack.png
+share/wesnoth/images/dwarf-guard-defend.png
+share/wesnoth/images/dwarf-guard.png
+share/wesnoth/images/dwarf-lord-attack-mace.png
share/wesnoth/images/dwarf-lord-attack.png
share/wesnoth/images/dwarf-lord-defend.png
share/wesnoth/images/dwarf-lord-ranged.png
@@ -559,6 +865,12 @@ share/wesnoth/images/dwarf-lord.png
share/wesnoth/images/dwarf-runemaster-attack.png
share/wesnoth/images/dwarf-runemaster-defend.png
share/wesnoth/images/dwarf-runemaster.png
+share/wesnoth/images/dwarf-sentinel-attack.png
+share/wesnoth/images/dwarf-sentinel-defend.png
+share/wesnoth/images/dwarf-sentinel.png
+share/wesnoth/images/dwarf-stalwart-attack.png
+share/wesnoth/images/dwarf-stalwart-defend.png
+share/wesnoth/images/dwarf-stalwart.png
share/wesnoth/images/dwarf-thunderer-attack.png
share/wesnoth/images/dwarf-thunderer-attack1.png
share/wesnoth/images/dwarf-thunderer-defend.png
@@ -571,6 +883,7 @@ share/wesnoth/images/dwarf-thunderguard.png
share/wesnoth/images/dwarf-ulfserker-attack.png
share/wesnoth/images/dwarf-ulfserker-defend.png
share/wesnoth/images/dwarf-ulfserker.png
+share/wesnoth/images/dwarf-warrior-attack-mace.png
share/wesnoth/images/dwarf-warrior-attack.png
share/wesnoth/images/dwarf-warrior-defend.png
share/wesnoth/images/dwarf-warrior.png
@@ -581,13 +894,29 @@ share/wesnoth/images/elder-mage-attack.png
share/wesnoth/images/elder-mage-defend.png
share/wesnoth/images/elder-mage-ranged.png
share/wesnoth/images/elder-mage.png
+share/wesnoth/images/elvish-archer+female-attack.png
+share/wesnoth/images/elvish-archer+female-attack1.png
+share/wesnoth/images/elvish-archer+female-attack2.png
+share/wesnoth/images/elvish-archer+female-attack3.png
+share/wesnoth/images/elvish-archer+female-bow-defend.png
+share/wesnoth/images/elvish-archer+female-bow.png
+share/wesnoth/images/elvish-archer+female-defend.png
+share/wesnoth/images/elvish-archer+female.png
share/wesnoth/images/elvish-archer-attack.png
share/wesnoth/images/elvish-archer-attack1.png
share/wesnoth/images/elvish-archer-attack2.png
share/wesnoth/images/elvish-archer-attack3.png
share/wesnoth/images/elvish-archer-bow-defend.png
+share/wesnoth/images/elvish-archer-bow.png
share/wesnoth/images/elvish-archer-defend.png
share/wesnoth/images/elvish-archer.png
+share/wesnoth/images/elvish-avenger+female-attack.png
+share/wesnoth/images/elvish-avenger+female-attack1.png
+share/wesnoth/images/elvish-avenger+female-attack2.png
+share/wesnoth/images/elvish-avenger+female-bow-defend.png
+share/wesnoth/images/elvish-avenger+female-bow.png
+share/wesnoth/images/elvish-avenger+female-defend.png
+share/wesnoth/images/elvish-avenger+female.png
share/wesnoth/images/elvish-avenger-attack.png
share/wesnoth/images/elvish-avenger-attack1.png
share/wesnoth/images/elvish-avenger-attack2.png
@@ -619,8 +948,33 @@ share/wesnoth/images/elvish-druid-healing2.png
share/wesnoth/images/elvish-druid-healing3.png
share/wesnoth/images/elvish-druid-healing4.png
share/wesnoth/images/elvish-druid-healing5.png
+share/wesnoth/images/elvish-druid-healing6.png
+share/wesnoth/images/elvish-druid-healing7.png
+share/wesnoth/images/elvish-druid-healing8.png
share/wesnoth/images/elvish-druid-ranged.png
share/wesnoth/images/elvish-druid.png
+share/wesnoth/images/elvish-enchantress-attack1.png
+share/wesnoth/images/elvish-enchantress-attack2.png
+share/wesnoth/images/elvish-enchantress-attack3.png
+share/wesnoth/images/elvish-enchantress-attack4.png
+share/wesnoth/images/elvish-enchantress-attack5.png
+share/wesnoth/images/elvish-enchantress-attack6.png
+share/wesnoth/images/elvish-enchantress-attack7.png
+share/wesnoth/images/elvish-enchantress-defend.png
+share/wesnoth/images/elvish-enchantress-entangle1.png
+share/wesnoth/images/elvish-enchantress-entangle2.png
+share/wesnoth/images/elvish-enchantress-entangle3.png
+share/wesnoth/images/elvish-enchantress-entangle4.png
+share/wesnoth/images/elvish-enchantress-entangle5.png
+share/wesnoth/images/elvish-enchantress-entangle6.png
+share/wesnoth/images/elvish-enchantress-entangle7.png
+share/wesnoth/images/elvish-enchantress-melee1.png
+share/wesnoth/images/elvish-enchantress-melee2.png
+share/wesnoth/images/elvish-enchantress-melee3.png
+share/wesnoth/images/elvish-enchantress-melee4.png
+share/wesnoth/images/elvish-enchantress-melee5.png
+share/wesnoth/images/elvish-enchantress-ranged-defend.png
+share/wesnoth/images/elvish-enchantress.png
share/wesnoth/images/elvish-fighter-attack.png
share/wesnoth/images/elvish-fighter-bow-attack1.png
share/wesnoth/images/elvish-fighter-bow-attack2.png
@@ -635,11 +989,24 @@ share/wesnoth/images/elvish-hero-bow-defend.png
share/wesnoth/images/elvish-hero-bow.png
share/wesnoth/images/elvish-hero-defend.png
share/wesnoth/images/elvish-hero.png
+share/wesnoth/images/elvish-high-lord-defend.png
+share/wesnoth/images/elvish-high-lord-melee.png
+share/wesnoth/images/elvish-high-lord-ranged1.png
+share/wesnoth/images/elvish-high-lord-ranged2.png
+share/wesnoth/images/elvish-high-lord-ranged3.png
+share/wesnoth/images/elvish-high-lord.png
share/wesnoth/images/elvish-lord-defend.png
share/wesnoth/images/elvish-lord-melee.png
share/wesnoth/images/elvish-lord-ranged1.png
share/wesnoth/images/elvish-lord-ranged2.png
share/wesnoth/images/elvish-lord.png
+share/wesnoth/images/elvish-marksman+female-attack.png
+share/wesnoth/images/elvish-marksman+female-attack1.png
+share/wesnoth/images/elvish-marksman+female-attack2.png
+share/wesnoth/images/elvish-marksman+female-attack3.png
+share/wesnoth/images/elvish-marksman+female-bow-defend.png
+share/wesnoth/images/elvish-marksman+female-defend.png
+share/wesnoth/images/elvish-marksman+female.png
share/wesnoth/images/elvish-marksman-attack.png
share/wesnoth/images/elvish-marksman-attack1.png
share/wesnoth/images/elvish-marksman-attack2.png
@@ -658,6 +1025,13 @@ share/wesnoth/images/elvish-outrider-attack1.png
share/wesnoth/images/elvish-outrider-attack2.png
share/wesnoth/images/elvish-outrider-defend.png
share/wesnoth/images/elvish-outrider.png
+share/wesnoth/images/elvish-ranger+female-attack.png
+share/wesnoth/images/elvish-ranger+female-attack1.png
+share/wesnoth/images/elvish-ranger+female-attack2.png
+share/wesnoth/images/elvish-ranger+female-attack3.png
+share/wesnoth/images/elvish-ranger+female-bow-defend.png
+share/wesnoth/images/elvish-ranger+female-defend.png
+share/wesnoth/images/elvish-ranger+female.png
share/wesnoth/images/elvish-ranger-attack.png
share/wesnoth/images/elvish-ranger-attack1.png
share/wesnoth/images/elvish-ranger-attack2.png
@@ -687,10 +1061,18 @@ share/wesnoth/images/elvish-shaman-heal4.png
share/wesnoth/images/elvish-shaman-heal5.png
share/wesnoth/images/elvish-shaman-healing.png
share/wesnoth/images/elvish-shaman.png
+share/wesnoth/images/elvish-sharpshooter+female-attack.png
+share/wesnoth/images/elvish-sharpshooter+female-attack1.png
+share/wesnoth/images/elvish-sharpshooter+female-attack2.png
+share/wesnoth/images/elvish-sharpshooter+female-attack3.png
+share/wesnoth/images/elvish-sharpshooter+female-bow-defend.png
+share/wesnoth/images/elvish-sharpshooter+female-defend.png
+share/wesnoth/images/elvish-sharpshooter+female.png
share/wesnoth/images/elvish-sharpshooter-attack.png
share/wesnoth/images/elvish-sharpshooter-attack1.png
share/wesnoth/images/elvish-sharpshooter-attack2.png
share/wesnoth/images/elvish-sharpshooter-attack3.png
+share/wesnoth/images/elvish-sharpshooter-bow-defend.png
share/wesnoth/images/elvish-sharpshooter-defend.png
share/wesnoth/images/elvish-sharpshooter.png
share/wesnoth/images/elvish-shyde-defend.png
@@ -711,25 +1093,85 @@ share/wesnoth/images/elvish-shyde-healing8.png
share/wesnoth/images/elvish-shyde-healing9.png
share/wesnoth/images/elvish-shyde-ranged.png
share/wesnoth/images/elvish-shyde.png
-share/wesnoth/images/enemy-energy.png
-share/wesnoth/images/entangle.png
-share/wesnoth/images/fireball-halo.png
+share/wesnoth/images/elvish-sorceress-attack1.png
+share/wesnoth/images/elvish-sorceress-attack2.png
+share/wesnoth/images/elvish-sorceress-attack3.png
+share/wesnoth/images/elvish-sorceress-attack4.png
+share/wesnoth/images/elvish-sorceress-attack5.png
+share/wesnoth/images/elvish-sorceress-attack6.png
+share/wesnoth/images/elvish-sorceress-attack7.png
+share/wesnoth/images/elvish-sorceress-defend.png
+share/wesnoth/images/elvish-sorceress-entangle1.png
+share/wesnoth/images/elvish-sorceress-entangle2.png
+share/wesnoth/images/elvish-sorceress-entangle3.png
+share/wesnoth/images/elvish-sorceress-entangle4.png
+share/wesnoth/images/elvish-sorceress-entangle5.png
+share/wesnoth/images/elvish-sorceress-entangle6.png
+share/wesnoth/images/elvish-sorceress-entangle7.png
+share/wesnoth/images/elvish-sorceress-melee1.png
+share/wesnoth/images/elvish-sorceress-melee2.png
+share/wesnoth/images/elvish-sorceress-melee3.png
+share/wesnoth/images/elvish-sorceress-melee4.png
+share/wesnoth/images/elvish-sorceress-melee5.png
+share/wesnoth/images/elvish-sorceress-ranged-defend.png
+share/wesnoth/images/elvish-sorceress.png
+share/wesnoth/images/elvish-sylph-attack1.png
+share/wesnoth/images/elvish-sylph-attack2.png
+share/wesnoth/images/elvish-sylph-attack3.png
+share/wesnoth/images/elvish-sylph-attack4.png
+share/wesnoth/images/elvish-sylph-attack5.png
+share/wesnoth/images/elvish-sylph-defend.png
+share/wesnoth/images/elvish-sylph-ftouch-attack1.png
+share/wesnoth/images/elvish-sylph-ftouch-attack2.png
+share/wesnoth/images/elvish-sylph-ftouch-attack3.png
+share/wesnoth/images/elvish-sylph-gossamer-attack1.png
+share/wesnoth/images/elvish-sylph-gossamer-attack2.png
+share/wesnoth/images/elvish-sylph-gossamer-attack3.png
+share/wesnoth/images/elvish-sylph.png
+share/wesnoth/images/fire-dragon-attack-bite.png
+share/wesnoth/images/fire-dragon-attack-breath.png
+share/wesnoth/images/fire-dragon-attack-tail.png
+share/wesnoth/images/fire-dragon-defend.png
+share/wesnoth/images/fire-dragon.png
share/wesnoth/images/galleon.png
+share/wesnoth/images/giant-mudcrawler-attack1.png
+share/wesnoth/images/giant-mudcrawler-attack2.png
+share/wesnoth/images/giant-mudcrawler-defend.png
+share/wesnoth/images/giant-mudcrawler.png
share/wesnoth/images/goblin-direwolver-attack.png
share/wesnoth/images/goblin-direwolver.png
+share/wesnoth/images/goblin-impaler-attack-ranged1.png
+share/wesnoth/images/goblin-impaler-attack-ranged2.png
+share/wesnoth/images/goblin-impaler-attack1.png
+share/wesnoth/images/goblin-impaler-attack2.png
+share/wesnoth/images/goblin-impaler-defend.png
+share/wesnoth/images/goblin-impaler.png
share/wesnoth/images/goblin-knight-attack.png
share/wesnoth/images/goblin-knight.png
share/wesnoth/images/goblin-pillager-attack.png
share/wesnoth/images/goblin-pillager-attack2.png
share/wesnoth/images/goblin-pillager-defend.png
share/wesnoth/images/goblin-pillager.png
+share/wesnoth/images/goblin-spearman-attack.png
+share/wesnoth/images/goblin-spearman-defend.png
+share/wesnoth/images/goblin-spearman-melee.png
+share/wesnoth/images/goblin-spearman-ranged.png
+share/wesnoth/images/goblin-spearman.png
share/wesnoth/images/grand-knight-moving.png
share/wesnoth/images/grand-knight.png
+share/wesnoth/images/great-mage+female-attack.png
+share/wesnoth/images/great-mage+female-attack1.png
+share/wesnoth/images/great-mage+female-attack2.png
+share/wesnoth/images/great-mage+female-defend.png
+share/wesnoth/images/great-mage+female.png
share/wesnoth/images/great-mage-attack.png
share/wesnoth/images/great-mage-attack1.png
share/wesnoth/images/great-mage-attack2.png
share/wesnoth/images/great-mage-defend.png
share/wesnoth/images/great-mage.png
+share/wesnoth/images/great-troll-attack.png
+share/wesnoth/images/great-troll-defend.png
+share/wesnoth/images/great-troll.png
share/wesnoth/images/gryphon-master-attack1.png
share/wesnoth/images/gryphon-master-attack2.png
share/wesnoth/images/gryphon-master-defend.png
@@ -768,6 +1210,12 @@ share/wesnoth/images/halo/fireball4.png
share/wesnoth/images/halo/fireball5.png
share/wesnoth/images/halo/fireball6.png
share/wesnoth/images/halo/fireball7.png
+share/wesnoth/images/halo/ice-halo1.png
+share/wesnoth/images/halo/ice-halo2.png
+share/wesnoth/images/halo/ice-halo3.png
+share/wesnoth/images/halo/ice-halo4.png
+share/wesnoth/images/halo/ice-halo5.png
+share/wesnoth/images/halo/lighthouse-aura.png
share/wesnoth/images/halo/mage-halo1.png
share/wesnoth/images/halo/mage-halo10.png
share/wesnoth/images/halo/mage-halo11.png
@@ -826,17 +1274,25 @@ share/wesnoth/images/human-dragoon-range1.png
share/wesnoth/images/human-dragoon-range2.png
share/wesnoth/images/human-dragoon.png
share/wesnoth/images/human-duelist-defend.png
+share/wesnoth/images/human-duelist-ranged.png
share/wesnoth/images/human-duelist.png
share/wesnoth/images/human-fencer-attack.png
share/wesnoth/images/human-fencer-defend.png
share/wesnoth/images/human-fencer.png
+share/wesnoth/images/human-general-attack-crossbow.png
+share/wesnoth/images/human-general-attack-sword1.png
+share/wesnoth/images/human-general-attack-sword2.png
share/wesnoth/images/human-general-defend.png
share/wesnoth/images/human-general-leading.png
share/wesnoth/images/human-general.png
share/wesnoth/images/human-halbardier.png
+share/wesnoth/images/human-halberdier-pierce-1.png
+share/wesnoth/images/human-halberdier-pierce-2.png
share/wesnoth/images/human-heavyinfantry-attack.png
share/wesnoth/images/human-heavyinfantry-defend.png
share/wesnoth/images/human-heavyinfantry.png
+share/wesnoth/images/human-lieutenant-attack-crossbow.png
+share/wesnoth/images/human-lieutenant-attack-sword.png
share/wesnoth/images/human-lieutenant-defend.png
share/wesnoth/images/human-lieutenant-leading.png
share/wesnoth/images/human-lieutenant.png
@@ -848,6 +1304,8 @@ share/wesnoth/images/human-longbowman-defend.png
share/wesnoth/images/human-longbowman.png
share/wesnoth/images/human-masterbowman-defend.png
share/wesnoth/images/human-masterbowman.png
+share/wesnoth/images/human-pikeman-attack-1.png
+share/wesnoth/images/human-pikeman-attack-2.png
share/wesnoth/images/human-pikeman-defend.png
share/wesnoth/images/human-pikeman.png
share/wesnoth/images/human-princess-attack.png
@@ -855,14 +1313,17 @@ share/wesnoth/images/human-princess-defend.png
share/wesnoth/images/human-princess-leading.png
share/wesnoth/images/human-princess.png
share/wesnoth/images/human-queen.png
+share/wesnoth/images/human-royalguard-attack.png
share/wesnoth/images/human-royalguard-defend.png
share/wesnoth/images/human-royalguard.png
share/wesnoth/images/human-scout-attack.png
share/wesnoth/images/human-scout-defend.png
share/wesnoth/images/human-scout-moving.png
share/wesnoth/images/human-scout.png
-share/wesnoth/images/human-sergeant-attack.png
+share/wesnoth/images/human-sergeant-attack-crossbow.png
+share/wesnoth/images/human-sergeant-attack-sword.png
share/wesnoth/images/human-sergeant-defend.png
+share/wesnoth/images/human-sergeant-leading.png
share/wesnoth/images/human-sergeant.png
share/wesnoth/images/human-shocktrooper-attack.png
share/wesnoth/images/human-shocktrooper-defend.png
@@ -877,47 +1338,57 @@ share/wesnoth/images/human-spearman.png
share/wesnoth/images/human-swordman-attack.png
share/wesnoth/images/human-swordman-defend.png
share/wesnoth/images/human-swordman.png
+share/wesnoth/images/human-wallguard-attack.png
+share/wesnoth/images/human-wallguard-defense.png
+share/wesnoth/images/human-wallguard.png
share/wesnoth/images/icons/icon-display.png
share/wesnoth/images/icons/icon-general.png
share/wesnoth/images/icons/icon-hostgame.png
share/wesnoth/images/icons/icon-music.png
share/wesnoth/images/icons/icon-server.png
share/wesnoth/images/icons/icon-serverother.png
-share/wesnoth/images/item-ball1.png
-share/wesnoth/images/item-ball2.png
-share/wesnoth/images/item-barrel.png
-share/wesnoth/images/item-book1.png
-share/wesnoth/images/item-book2.png
-share/wesnoth/images/item-book3.png
-share/wesnoth/images/item-book4.png
-share/wesnoth/images/item-box.png
-share/wesnoth/images/item-dragonstatue.png
-share/wesnoth/images/item-flower1.png
-share/wesnoth/images/item-flower2.png
-share/wesnoth/images/item-flower3.png
-share/wesnoth/images/item-flower4.png
-share/wesnoth/images/item-leanto.png
-share/wesnoth/images/item-monolith.png
-share/wesnoth/images/item-monolith1.png
-share/wesnoth/images/item-monolith2.png
-share/wesnoth/images/item-monolith3.png
-share/wesnoth/images/item-monolith4.png
-share/wesnoth/images/item-ornate1.png
-share/wesnoth/images/item-ornate2.png
-share/wesnoth/images/item-pine1.png
-share/wesnoth/images/item-pine2.png
-share/wesnoth/images/item-potion1.png
-share/wesnoth/images/item-potion2.png
-share/wesnoth/images/item-potion3.png
-share/wesnoth/images/item-potion4.png
-share/wesnoth/images/item-ring1.png
-share/wesnoth/images/item-ring2.png
-share/wesnoth/images/item-rock1.png
-share/wesnoth/images/item-rock2.png
-share/wesnoth/images/item-rock3.png
-share/wesnoth/images/item-rock4.png
-share/wesnoth/images/item-slab.png
-share/wesnoth/images/item-well.png
+share/wesnoth/images/items/ball-blue.png
+share/wesnoth/images/items/ball-green.png
+share/wesnoth/images/items/barrel.png
+share/wesnoth/images/items/book1.png
+share/wesnoth/images/items/book2.png
+share/wesnoth/images/items/book3.png
+share/wesnoth/images/items/book4.png
+share/wesnoth/images/items/box.png
+share/wesnoth/images/items/castle-ruins.png
+share/wesnoth/images/items/chest-plain-closed.png
+share/wesnoth/images/items/chest-plain-open.png
+share/wesnoth/images/items/dragonstatue.png
+share/wesnoth/images/items/fire.png
+share/wesnoth/images/items/flower1.png
+share/wesnoth/images/items/flower2.png
+share/wesnoth/images/items/flower3.png
+share/wesnoth/images/items/flower4.png
+share/wesnoth/images/items/gohere.png
+share/wesnoth/images/items/leanto.png
+share/wesnoth/images/items/lighthouse.png
+share/wesnoth/images/items/monolith1.png
+share/wesnoth/images/items/monolith2.png
+share/wesnoth/images/items/monolith3.png
+share/wesnoth/images/items/monolith4.png
+share/wesnoth/images/items/orcish-flag.png
+share/wesnoth/images/items/ornate1.png
+share/wesnoth/images/items/ornate2.png
+share/wesnoth/images/items/pine1.png
+share/wesnoth/images/items/pine2.png
+share/wesnoth/images/items/potion-blue.png
+share/wesnoth/images/items/potion-grey.png
+share/wesnoth/images/items/potion-red.png
+share/wesnoth/images/items/potion-yellow.png
+share/wesnoth/images/items/ring1.png
+share/wesnoth/images/items/ring2.png
+share/wesnoth/images/items/rock1.png
+share/wesnoth/images/items/rock2.png
+share/wesnoth/images/items/rock3.png
+share/wesnoth/images/items/rock4.png
+share/wesnoth/images/items/signpost.png
+share/wesnoth/images/items/slab.png
+share/wesnoth/images/items/well.png
share/wesnoth/images/knight-attack.png
share/wesnoth/images/knight-defend.png
share/wesnoth/images/knight-moving.png
@@ -941,15 +1412,26 @@ share/wesnoth/images/konrad-young.png
share/wesnoth/images/lancer-attack.png
share/wesnoth/images/lancer-defend.png
share/wesnoth/images/lancer.png
-share/wesnoth/images/lightning-bolt.png
-share/wesnoth/images/lightning-n.png
-share/wesnoth/images/lightning-ne.png
+share/wesnoth/images/mage+female-attack.png
+share/wesnoth/images/mage+female-attack1.png
+share/wesnoth/images/mage+female-attack2.png
+share/wesnoth/images/mage+female-attack3.png
+share/wesnoth/images/mage+female-defend.png
+share/wesnoth/images/mage+female.png
share/wesnoth/images/mage-attack.png
share/wesnoth/images/mage-attack1.png
share/wesnoth/images/mage-attack2.png
share/wesnoth/images/mage-attack3.png
share/wesnoth/images/mage-defend.png
share/wesnoth/images/mage.png
+share/wesnoth/images/maps/eastern_invasion.png
+share/wesnoth/images/maps/sotbe.png
+share/wesnoth/images/maps/sotbe1.png
+share/wesnoth/images/maps/sotbe2.png
+share/wesnoth/images/maps/sotbe3.png
+share/wesnoth/images/maps/the_great_continent.png
+share/wesnoth/images/maps/the_green_isle.png
+share/wesnoth/images/maps/wesnoth.png
share/wesnoth/images/merman-attack.png
share/wesnoth/images/merman-defend.png
share/wesnoth/images/merman-king-attack.png
@@ -957,6 +1439,11 @@ share/wesnoth/images/merman-king-defend.png
share/wesnoth/images/merman-king.png
share/wesnoth/images/merman.png
share/wesnoth/images/misc/ball.png
+share/wesnoth/images/misc/bar-energy-ally.png
+share/wesnoth/images/misc/bar-energy-enemy.png
+share/wesnoth/images/misc/bar-energy-moved.png
+share/wesnoth/images/misc/bar-energy-partmoved.png
+share/wesnoth/images/misc/bar-energy-unmoved.png
share/wesnoth/images/misc/blank.png
share/wesnoth/images/misc/botleft-corner.png
share/wesnoth/images/misc/botright-corner.png
@@ -966,7 +1453,6 @@ share/wesnoth/images/misc/chest.png
share/wesnoth/images/misc/compass-north.png
share/wesnoth/images/misc/compass-south.png
share/wesnoth/images/misc/cross.png
-share/wesnoth/images/misc/delfador.png
share/wesnoth/images/misc/disk.png
share/wesnoth/images/misc/dot.png
share/wesnoth/images/misc/ellipse-1-bottom.png
@@ -1016,10 +1502,6 @@ share/wesnoth/images/misc/item-holywater.png
share/wesnoth/images/misc/item-sceptreoffire.png
share/wesnoth/images/misc/item-staff.png
share/wesnoth/images/misc/item-stormtrident.png
-share/wesnoth/images/misc/kalenz.png
-share/wesnoth/images/misc/konrad.png
-share/wesnoth/images/misc/lisar.png
-share/wesnoth/images/misc/lisar_b.png
share/wesnoth/images/misc/lobby.png
share/wesnoth/images/misc/logo.png
share/wesnoth/images/misc/mainmenu-background.png
@@ -1031,7 +1513,6 @@ share/wesnoth/images/misc/mainmenu-border-right.png
share/wesnoth/images/misc/mainmenu-border-top.png
share/wesnoth/images/misc/mainmenu-border-topleft.png
share/wesnoth/images/misc/mainmenu-border-topright.png
-share/wesnoth/images/misc/map.png
share/wesnoth/images/misc/menu-background.png
share/wesnoth/images/misc/menu-border-botleft.png
share/wesnoth/images/misc/menu-border-botright.png
@@ -1055,6 +1536,36 @@ share/wesnoth/images/misc/rightside-bg.png
share/wesnoth/images/misc/rightside-bottom.png
share/wesnoth/images/misc/rightside-editor.png
share/wesnoth/images/misc/rightside.png
+share/wesnoth/images/misc/schedule-afternoon.png
+share/wesnoth/images/misc/schedule-dawn.png
+share/wesnoth/images/misc/schedule-day.png
+share/wesnoth/images/misc/schedule-dusk.png
+share/wesnoth/images/misc/schedule-firstwatch.png
+share/wesnoth/images/misc/schedule-morning.png
+share/wesnoth/images/misc/schedule-night.png
+share/wesnoth/images/misc/schedule-secondwatch.png
+share/wesnoth/images/misc/schedule-underground-illum.png
+share/wesnoth/images/misc/schedule-underground.png
+share/wesnoth/images/misc/selected-ellipse-1-bottom.png
+share/wesnoth/images/misc/selected-ellipse-1-top.png
+share/wesnoth/images/misc/selected-ellipse-10-bottom.png
+share/wesnoth/images/misc/selected-ellipse-10-top.png
+share/wesnoth/images/misc/selected-ellipse-2-bottom.png
+share/wesnoth/images/misc/selected-ellipse-2-top.png
+share/wesnoth/images/misc/selected-ellipse-3-bottom.png
+share/wesnoth/images/misc/selected-ellipse-3-top.png
+share/wesnoth/images/misc/selected-ellipse-4-bottom.png
+share/wesnoth/images/misc/selected-ellipse-4-top.png
+share/wesnoth/images/misc/selected-ellipse-5-bottom.png
+share/wesnoth/images/misc/selected-ellipse-5-top.png
+share/wesnoth/images/misc/selected-ellipse-6-bottom.png
+share/wesnoth/images/misc/selected-ellipse-6-top.png
+share/wesnoth/images/misc/selected-ellipse-7-bottom.png
+share/wesnoth/images/misc/selected-ellipse-7-top.png
+share/wesnoth/images/misc/selected-ellipse-8-bottom.png
+share/wesnoth/images/misc/selected-ellipse-8-top.png
+share/wesnoth/images/misc/selected-ellipse-9-bottom.png
+share/wesnoth/images/misc/selected-ellipse-9-top.png
share/wesnoth/images/misc/slowed.png
share/wesnoth/images/misc/status-bg.png
%%LITE:%%share/wesnoth/images/misc/story0a.png
@@ -1084,7 +1595,9 @@ share/wesnoth/images/misc/trapdoor.png
share/wesnoth/images/misc/units.png
share/wesnoth/images/misc/upkeep.png
share/wesnoth/images/misc/villages.png
-share/wesnoth/images/moved-energy.png
+share/wesnoth/images/mudcrawler-attack.png
+share/wesnoth/images/mudcrawler-defend.png
+share/wesnoth/images/mudcrawler.png
share/wesnoth/images/naga-attack.png
share/wesnoth/images/naga-defend.png
share/wesnoth/images/naga.png
@@ -1096,11 +1609,30 @@ share/wesnoth/images/neutral-footpad-attack1.png
share/wesnoth/images/neutral-footpad-attack2.png
share/wesnoth/images/neutral-footpad-defend.png
share/wesnoth/images/neutral-footpad.png
+share/wesnoth/images/neutral-outlaw+female-attack.png
+share/wesnoth/images/neutral-outlaw+female-attack1.png
+share/wesnoth/images/neutral-outlaw+female-attack2.png
+share/wesnoth/images/neutral-outlaw+female-defend.png
+share/wesnoth/images/neutral-outlaw+female.png
share/wesnoth/images/neutral-outlaw-attack.png
share/wesnoth/images/neutral-outlaw-attack1.png
share/wesnoth/images/neutral-outlaw-attack2.png
share/wesnoth/images/neutral-outlaw-defend.png
+share/wesnoth/images/neutral-outlaw-princess-attack-mace.png
+share/wesnoth/images/neutral-outlaw-princess-attack-sling1.png
+share/wesnoth/images/neutral-outlaw-princess-attack-sling2.png
+share/wesnoth/images/neutral-outlaw-princess-defend.png
+share/wesnoth/images/neutral-outlaw-princess.png
+share/wesnoth/images/neutral-outlaw-queen-attack-mace.png
+share/wesnoth/images/neutral-outlaw-queen-attack-sling1.png
+share/wesnoth/images/neutral-outlaw-queen-attack-sling2.png
+share/wesnoth/images/neutral-outlaw-queen-defend.png
+share/wesnoth/images/neutral-outlaw-queen-leading.png
+share/wesnoth/images/neutral-outlaw-queen.png
share/wesnoth/images/neutral-outlaw.png
+share/wesnoth/images/neutral-peasant-attack.png
+share/wesnoth/images/neutral-peasant-defend.png
+share/wesnoth/images/neutral-peasant.png
share/wesnoth/images/neutral-poacher-attack.png
share/wesnoth/images/neutral-poacher-attack1.png
share/wesnoth/images/neutral-poacher-attack2.png
@@ -1114,6 +1646,24 @@ share/wesnoth/images/neutral-trapper-attack1.png
share/wesnoth/images/neutral-trapper-attack2.png
share/wesnoth/images/neutral-trapper-defend.png
share/wesnoth/images/neutral-trapper.png
+share/wesnoth/images/noble-commander-attack-ranged1.png
+share/wesnoth/images/noble-commander-attack-ranged2.png
+share/wesnoth/images/noble-commander-attack-sword.png
+share/wesnoth/images/noble-commander-defend.png
+share/wesnoth/images/noble-commander-leading.png
+share/wesnoth/images/noble-commander.png
+share/wesnoth/images/noble-fighter-attack.png
+share/wesnoth/images/noble-fighter-defend.png
+share/wesnoth/images/noble-fighter.png
+share/wesnoth/images/noble-lord-attack-ranged1.png
+share/wesnoth/images/noble-lord-attack-ranged2.png
+share/wesnoth/images/noble-lord-attack-sword.png
+share/wesnoth/images/noble-lord-defend.png
+share/wesnoth/images/noble-lord-leading.png
+share/wesnoth/images/noble-lord.png
+share/wesnoth/images/noble-youth-attack.png
+share/wesnoth/images/noble-youth-defend.png
+share/wesnoth/images/noble-youth.png
share/wesnoth/images/ogre.png
share/wesnoth/images/orc-archer-attack.png
share/wesnoth/images/orc-archer-attack2.png
@@ -1135,19 +1685,35 @@ share/wesnoth/images/orc-xbowman.png
share/wesnoth/images/orcish-grunt-attack.png
share/wesnoth/images/orcish-grunt-defend.png
share/wesnoth/images/orcish-grunt.png
+share/wesnoth/images/orcish-leader-attack.png
+share/wesnoth/images/orcish-leader-defend.png
+share/wesnoth/images/orcish-leader.png
+share/wesnoth/images/orcish-ruler-attack.png
+share/wesnoth/images/orcish-ruler-defend.png
share/wesnoth/images/orcish-ruler.png
share/wesnoth/images/orcish-shaman.png
share/wesnoth/images/orcish-shaman1.png
share/wesnoth/images/orcish-shaman2.png
+share/wesnoth/images/orcish-sovereign-attack1.png
+share/wesnoth/images/orcish-sovereign-attack2.png
+share/wesnoth/images/orcish-sovereign-defend.png
+share/wesnoth/images/orcish-sovereign.png
share/wesnoth/images/orcish-warlord.png
share/wesnoth/images/orcish-warrior-defend.png
share/wesnoth/images/orcish-warrior-melee1.png
share/wesnoth/images/orcish-warrior.png
+share/wesnoth/images/paladin-attack-sword.png
share/wesnoth/images/paladin-healing.png
share/wesnoth/images/paladin-moving.png
share/wesnoth/images/paladin.png
-share/wesnoth/images/partmoved-energy.png
+share/wesnoth/images/parandra.png
share/wesnoth/images/pirate-galleon.png
+share/wesnoth/images/portraits/Eastern_Invasion/dacyn.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/delfador.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/kalenz.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/konrad.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/lisar.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/lisar_angry.png
share/wesnoth/images/projectiles/bone-n.png
share/wesnoth/images/projectiles/bone-ne.png
share/wesnoth/images/projectiles/bullet.png
@@ -1155,10 +1721,16 @@ share/wesnoth/images/projectiles/dagger-n.png
share/wesnoth/images/projectiles/dagger-ne.png
share/wesnoth/images/projectiles/darkmissile-n.png
share/wesnoth/images/projectiles/darkmissile-ne.png
+share/wesnoth/images/projectiles/entangle.png
share/wesnoth/images/projectiles/fireball.png
share/wesnoth/images/projectiles/gaze.png
share/wesnoth/images/projectiles/hatchet.png
+share/wesnoth/images/projectiles/icemissile-n.png
+share/wesnoth/images/projectiles/icemissile-ne.png
share/wesnoth/images/projectiles/ink.png
+share/wesnoth/images/projectiles/lightning-bolt.png
+share/wesnoth/images/projectiles/lightning-n.png
+share/wesnoth/images/projectiles/lightning-ne.png
share/wesnoth/images/projectiles/magicmissile-n.png
share/wesnoth/images/projectiles/magicmissile-ne.png
share/wesnoth/images/projectiles/missile-n.png
@@ -1168,6 +1740,8 @@ share/wesnoth/images/projectiles/missile-s.png
share/wesnoth/images/projectiles/missile-se.png
share/wesnoth/images/projectiles/missile-sw.png
share/wesnoth/images/projectiles/missile.png
+share/wesnoth/images/projectiles/pitchfork-n.png
+share/wesnoth/images/projectiles/pitchfork-ne.png
share/wesnoth/images/projectiles/spear-n.png
share/wesnoth/images/projectiles/spear-ne.png
share/wesnoth/images/projectiles/stone.png
@@ -1177,8 +1751,12 @@ share/wesnoth/images/projectiles/web.png
share/wesnoth/images/projectiles/whitemissile-n.png
share/wesnoth/images/projectiles/whitemissile-ne.png
share/wesnoth/images/random-enemy.png
-share/wesnoth/images/red-mage-attack.png
-share/wesnoth/images/red-mage-attack1.png
+share/wesnoth/images/red-mage+female-attack-melee.png
+share/wesnoth/images/red-mage+female-attack-ranged.png
+share/wesnoth/images/red-mage+female-defend.png
+share/wesnoth/images/red-mage+female.png
+share/wesnoth/images/red-mage-attack-melee.png
+share/wesnoth/images/red-mage-attack-ranged.png
share/wesnoth/images/red-mage-defend.png
share/wesnoth/images/red-mage.png
share/wesnoth/images/rogue-attack.png
@@ -1189,63 +1767,158 @@ share/wesnoth/images/saurian-attack1.png
share/wesnoth/images/saurian-attack2.png
share/wesnoth/images/saurian-attack3.png
share/wesnoth/images/saurian-defend.png
+share/wesnoth/images/saurian-icecaster-attack.png
+share/wesnoth/images/saurian-icecaster-defend.png
+share/wesnoth/images/saurian-icecaster-ranged1.png
+share/wesnoth/images/saurian-icecaster-ranged2.png
+share/wesnoth/images/saurian-icecaster-ranged3.png
+share/wesnoth/images/saurian-icecaster.png
+share/wesnoth/images/saurian-soothsayer-attack.png
+share/wesnoth/images/saurian-soothsayer-defend.png
+share/wesnoth/images/saurian-soothsayer-healing.png
+share/wesnoth/images/saurian-soothsayer-ranged.png
+share/wesnoth/images/saurian-soothsayer.png
+share/wesnoth/images/saurian-tribalist-attack.png
+share/wesnoth/images/saurian-tribalist-defend.png
+share/wesnoth/images/saurian-tribalist-heal.png
+share/wesnoth/images/saurian-tribalist-ranged1.png
+share/wesnoth/images/saurian-tribalist.png
share/wesnoth/images/saurian-warrior-attack1.png
share/wesnoth/images/saurian-warrior-attack2.png
share/wesnoth/images/saurian-warrior-defend.png
share/wesnoth/images/saurian-warrior-ranged.png
share/wesnoth/images/saurian-warrior.png
share/wesnoth/images/saurian.png
+share/wesnoth/images/scepter-princess-attack-scepter-1.png
+share/wesnoth/images/scepter-princess-attack-scepter-2.png
+share/wesnoth/images/scepter-princess-attack-scepter-3.png
+share/wesnoth/images/scepter-princess-attack-scepter.png
+share/wesnoth/images/scepter-princess-attack-sword.png
+share/wesnoth/images/scepter-princess-defend.png
+share/wesnoth/images/scepter-princess-leading.png
+share/wesnoth/images/scepter-princess.png
+share/wesnoth/images/scorpion-defend.png
share/wesnoth/images/scorpion-pincers-attack.png
+share/wesnoth/images/scorpion-sting-attack.png
share/wesnoth/images/scorpion.png
share/wesnoth/images/sea-hag-defend.png
share/wesnoth/images/sea-hag.png
share/wesnoth/images/sea-orc-attack.png
share/wesnoth/images/sea-orc-defend.png
share/wesnoth/images/sea-orc.png
+share/wesnoth/images/seaserpent-attack.png
+share/wesnoth/images/seaserpent-defend.png
share/wesnoth/images/seaserpent.png
+share/wesnoth/images/silver-mage+female-attack1.png
+share/wesnoth/images/silver-mage+female-attack2.png
+share/wesnoth/images/silver-mage+female-attack3.png
+share/wesnoth/images/silver-mage+female-defend.png
+share/wesnoth/images/silver-mage+female-melee.png
+share/wesnoth/images/silver-mage+female.png
share/wesnoth/images/silver-mage-attack1.png
share/wesnoth/images/silver-mage-attack2.png
share/wesnoth/images/silver-mage-attack3.png
share/wesnoth/images/silver-mage-defend.png
share/wesnoth/images/silver-mage-melee.png
+share/wesnoth/images/silver-mage-teleport1.png
+share/wesnoth/images/silver-mage-teleport10.png
+share/wesnoth/images/silver-mage-teleport2.png
+share/wesnoth/images/silver-mage-teleport3.png
+share/wesnoth/images/silver-mage-teleport4.png
+share/wesnoth/images/silver-mage-teleport5.png
+share/wesnoth/images/silver-mage-teleport6.png
+share/wesnoth/images/silver-mage-teleport7.png
+share/wesnoth/images/silver-mage-teleport8.png
+share/wesnoth/images/silver-mage-teleport9.png
share/wesnoth/images/silver-mage.png
-share/wesnoth/images/sotbe/bigmap.png
-share/wesnoth/images/sotbe/fire.png
-share/wesnoth/images/sotbe/flag.png
-share/wesnoth/images/sotbe/map1.png
-share/wesnoth/images/sotbe/map2.png
-share/wesnoth/images/sotbe/map3.png
+share/wesnoth/images/skeletal-dragon-attack-claws1.png
+share/wesnoth/images/skeletal-dragon-attack-claws2.png
+share/wesnoth/images/skeletal-dragon-attack-claws3.png
+share/wesnoth/images/skeletal-dragon-attack-jaw1.png
+share/wesnoth/images/skeletal-dragon-attack-jaw2.png
+share/wesnoth/images/skeletal-dragon-defend.png
+share/wesnoth/images/skeletal-dragon.png
share/wesnoth/images/terrain/alpha.png
share/wesnoth/images/terrain/alphamask.png
share/wesnoth/images/terrain/bridge-n-s.png
+share/wesnoth/images/terrain/bridge-n.png
share/wesnoth/images/terrain/bridge-ne-sw.png
+share/wesnoth/images/terrain/bridge-ne.png
+share/wesnoth/images/terrain/bridge-nw.png
+share/wesnoth/images/terrain/bridge-s.png
share/wesnoth/images/terrain/bridge-se-nw.png
+share/wesnoth/images/terrain/bridge-se.png
+share/wesnoth/images/terrain/bridge-sw.png
share/wesnoth/images/terrain/bridge.png
-share/wesnoth/images/terrain/castle-bg-concave-e.png
-share/wesnoth/images/terrain/castle-bg-concave-ne.png
-share/wesnoth/images/terrain/castle-bg-concave-nw.png
-share/wesnoth/images/terrain/castle-bg-concave-se.png
-share/wesnoth/images/terrain/castle-bg-concave-sw.png
-share/wesnoth/images/terrain/castle-bg-concave-w.png
-share/wesnoth/images/terrain/castle-bg-convex-e.png
-share/wesnoth/images/terrain/castle-bg-convex-ne.png
-share/wesnoth/images/terrain/castle-bg-convex-nw.png
-share/wesnoth/images/terrain/castle-bg-convex-se.png
-share/wesnoth/images/terrain/castle-bg-convex-sw.png
-share/wesnoth/images/terrain/castle-bg-convex-w.png
-share/wesnoth/images/terrain/castle-fg-concave-e.png
-share/wesnoth/images/terrain/castle-fg-concave-ne.png
-share/wesnoth/images/terrain/castle-fg-concave-nw.png
-share/wesnoth/images/terrain/castle-fg-concave-se.png
-share/wesnoth/images/terrain/castle-fg-concave-sw.png
-share/wesnoth/images/terrain/castle-fg-concave-w.png
-share/wesnoth/images/terrain/castle-fg-convex-e.png
-share/wesnoth/images/terrain/castle-fg-convex-ne.png
-share/wesnoth/images/terrain/castle-fg-convex-nw.png
-share/wesnoth/images/terrain/castle-fg-convex-se.png
-share/wesnoth/images/terrain/castle-fg-convex-sw.png
-share/wesnoth/images/terrain/castle-fg-convex-w.png
+share/wesnoth/images/terrain/canyon-all.png
+share/wesnoth/images/terrain/canyon-n-ne-s.png
+share/wesnoth/images/terrain/canyon-n-ne.png
+share/wesnoth/images/terrain/canyon-n-s.png
+share/wesnoth/images/terrain/canyon-n-se.png
+share/wesnoth/images/terrain/canyon-n.png
+share/wesnoth/images/terrain/canyon-ne-s.png
+share/wesnoth/images/terrain/canyon-ne-se.png
+share/wesnoth/images/terrain/canyon-ne-sw.png
+share/wesnoth/images/terrain/canyon-ne.png
+share/wesnoth/images/terrain/canyon-nw-n-ne.png
+share/wesnoth/images/terrain/canyon-nw-n-s.png
+share/wesnoth/images/terrain/canyon-nw-n.png
+share/wesnoth/images/terrain/canyon-nw-ne.png
+share/wesnoth/images/terrain/canyon-nw.png
+share/wesnoth/images/terrain/canyon-s-nw.png
+share/wesnoth/images/terrain/canyon-s-sw-n.png
+share/wesnoth/images/terrain/canyon-s-sw.png
+share/wesnoth/images/terrain/canyon-s.png
+share/wesnoth/images/terrain/canyon-se-nw.png
+share/wesnoth/images/terrain/canyon-se-s-n.png
+share/wesnoth/images/terrain/canyon-se-s-sw-n.png
+share/wesnoth/images/terrain/canyon-se-s-sw.png
+share/wesnoth/images/terrain/canyon-se-s.png
+share/wesnoth/images/terrain/canyon-se-sw.png
+share/wesnoth/images/terrain/canyon-se.png
+share/wesnoth/images/terrain/canyon-sw-n.png
+share/wesnoth/images/terrain/canyon-sw-nw.png
+share/wesnoth/images/terrain/canyon-sw.png
+share/wesnoth/images/terrain/canyon.png
+share/wesnoth/images/terrain/castle-concave-e.png
+share/wesnoth/images/terrain/castle-concave-ne.png
+share/wesnoth/images/terrain/castle-concave-nw.png
+share/wesnoth/images/terrain/castle-concave-se.png
+share/wesnoth/images/terrain/castle-concave-sw.png
+share/wesnoth/images/terrain/castle-concave-w.png
+share/wesnoth/images/terrain/castle-convex-e.png
+share/wesnoth/images/terrain/castle-convex-ne.png
+share/wesnoth/images/terrain/castle-convex-nw.png
+share/wesnoth/images/terrain/castle-convex-se.png
+share/wesnoth/images/terrain/castle-convex-sw.png
+share/wesnoth/images/terrain/castle-convex-w.png
+share/wesnoth/images/terrain/castle-walls.tmpl
share/wesnoth/images/terrain/castle.png
+share/wesnoth/images/terrain/cave-floor-n-ne-se-s.png
+share/wesnoth/images/terrain/cave-floor-n-ne-se.png
+share/wesnoth/images/terrain/cave-floor-n-ne.png
+share/wesnoth/images/terrain/cave-floor-n.png
+share/wesnoth/images/terrain/cave-floor-ne-se-s.png
+share/wesnoth/images/terrain/cave-floor-ne-se.png
+share/wesnoth/images/terrain/cave-floor-ne.png
+share/wesnoth/images/terrain/cave-floor-nw-n-ne.png
+share/wesnoth/images/terrain/cave-floor-nw-n.png
+share/wesnoth/images/terrain/cave-floor-nw.png
+share/wesnoth/images/terrain/cave-floor-s-sw-nw-n.png
+share/wesnoth/images/terrain/cave-floor-s-sw-nw.png
+share/wesnoth/images/terrain/cave-floor-s-sw.png
+share/wesnoth/images/terrain/cave-floor-s.png
+share/wesnoth/images/terrain/cave-floor-se-s-sw.png
+share/wesnoth/images/terrain/cave-floor-se-s.png
+share/wesnoth/images/terrain/cave-floor-se.png
+share/wesnoth/images/terrain/cave-floor-sw-nw-n.png
+share/wesnoth/images/terrain/cave-floor-sw-nw.png
+share/wesnoth/images/terrain/cave-floor-sw.png
+share/wesnoth/images/terrain/cave-floor.png
+share/wesnoth/images/terrain/cave-floor1.png
+share/wesnoth/images/terrain/cave-floor2.png
+share/wesnoth/images/terrain/cave-floor3.png
+share/wesnoth/images/terrain/cave-floor4.png
share/wesnoth/images/terrain/cave-n-ne-se-s.png
share/wesnoth/images/terrain/cave-n-ne-se.png
share/wesnoth/images/terrain/cave-n-ne.png
@@ -1266,6 +1939,18 @@ share/wesnoth/images/terrain/cave-sw-nw-n.png
share/wesnoth/images/terrain/cave-sw-nw.png
share/wesnoth/images/terrain/cave-sw.png
share/wesnoth/images/terrain/cave.png
+share/wesnoth/images/terrain/cavewall-concave-e.png
+share/wesnoth/images/terrain/cavewall-concave-ne.png
+share/wesnoth/images/terrain/cavewall-concave-nw.png
+share/wesnoth/images/terrain/cavewall-concave-se.png
+share/wesnoth/images/terrain/cavewall-concave-sw.png
+share/wesnoth/images/terrain/cavewall-concave-w.png
+share/wesnoth/images/terrain/cavewall-convex-e.png
+share/wesnoth/images/terrain/cavewall-convex-ne.png
+share/wesnoth/images/terrain/cavewall-convex-nw.png
+share/wesnoth/images/terrain/cavewall-convex-se.png
+share/wesnoth/images/terrain/cavewall-convex-sw.png
+share/wesnoth/images/terrain/cavewall-convex-w.png
share/wesnoth/images/terrain/cavewall.png
share/wesnoth/images/terrain/coast-n.png
share/wesnoth/images/terrain/coast-ne.png
@@ -1274,6 +1959,8 @@ share/wesnoth/images/terrain/coast-s.png
share/wesnoth/images/terrain/coast-se.png
share/wesnoth/images/terrain/coast-sw.png
share/wesnoth/images/terrain/coast.png
+share/wesnoth/images/terrain/coast2.png
+share/wesnoth/images/terrain/coast3.png
share/wesnoth/images/terrain/dark_grass.png
share/wesnoth/images/terrain/dawn.png
share/wesnoth/images/terrain/desert-n.png
@@ -1291,41 +1978,82 @@ share/wesnoth/images/terrain/dirt-s.png
share/wesnoth/images/terrain/dirt-se.png
share/wesnoth/images/terrain/dirt-sw.png
share/wesnoth/images/terrain/dirt.png
+share/wesnoth/images/terrain/dwarven-castle-concave-e.png
+share/wesnoth/images/terrain/dwarven-castle-concave-ne.png
+share/wesnoth/images/terrain/dwarven-castle-concave-nw.png
+share/wesnoth/images/terrain/dwarven-castle-concave-se.png
+share/wesnoth/images/terrain/dwarven-castle-concave-sw.png
+share/wesnoth/images/terrain/dwarven-castle-concave-w.png
+share/wesnoth/images/terrain/dwarven-castle-convex-e.png
+share/wesnoth/images/terrain/dwarven-castle-convex-ne.png
+share/wesnoth/images/terrain/dwarven-castle-convex-nw.png
+share/wesnoth/images/terrain/dwarven-castle-convex-se.png
+share/wesnoth/images/terrain/dwarven-castle-convex-sw.png
+share/wesnoth/images/terrain/dwarven-castle-convex-w.png
+share/wesnoth/images/terrain/dwarven-castle-floor.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-e.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-ne.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-nw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-se.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-sw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-w.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-e.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-ne.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-nw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-se.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-sw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-w.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-e.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-ne.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-nw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-se.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-sw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-w.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-e.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-ne.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-nw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-se.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-sw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-w.png
share/wesnoth/images/terrain/dwarven-doors.png
-share/wesnoth/images/terrain/encampment-bg-concave-e.png
-share/wesnoth/images/terrain/encampment-bg-concave-ne.png
-share/wesnoth/images/terrain/encampment-bg-concave-nw.png
-share/wesnoth/images/terrain/encampment-bg-concave-se.png
-share/wesnoth/images/terrain/encampment-bg-concave-sw.png
-share/wesnoth/images/terrain/encampment-bg-concave-w.png
-share/wesnoth/images/terrain/encampment-bg-convex-e.png
-share/wesnoth/images/terrain/encampment-bg-convex-ne.png
-share/wesnoth/images/terrain/encampment-bg-convex-nw.png
-share/wesnoth/images/terrain/encampment-bg-convex-se.png
-share/wesnoth/images/terrain/encampment-bg-convex-sw.png
-share/wesnoth/images/terrain/encampment-bg-convex-w.png
-share/wesnoth/images/terrain/encampment-fg-concave-e.png
-share/wesnoth/images/terrain/encampment-fg-concave-ne.png
-share/wesnoth/images/terrain/encampment-fg-concave-nw.png
-share/wesnoth/images/terrain/encampment-fg-concave-se.png
-share/wesnoth/images/terrain/encampment-fg-concave-sw.png
-share/wesnoth/images/terrain/encampment-fg-concave-w.png
-share/wesnoth/images/terrain/encampment-fg-convex-e.png
-share/wesnoth/images/terrain/encampment-fg-convex-ne.png
-share/wesnoth/images/terrain/encampment-fg-convex-nw.png
-share/wesnoth/images/terrain/encampment-fg-convex-se.png
-share/wesnoth/images/terrain/encampment-fg-convex-sw.png
-share/wesnoth/images/terrain/encampment-fg-convex-w.png
-share/wesnoth/images/terrain/flag-team1.png
-share/wesnoth/images/terrain/flag-team10.png
-share/wesnoth/images/terrain/flag-team2.png
-share/wesnoth/images/terrain/flag-team3.png
-share/wesnoth/images/terrain/flag-team4.png
-share/wesnoth/images/terrain/flag-team5.png
-share/wesnoth/images/terrain/flag-team6.png
-share/wesnoth/images/terrain/flag-team7.png
-share/wesnoth/images/terrain/flag-team8.png
-share/wesnoth/images/terrain/flag-team9.png
+share/wesnoth/images/terrain/dwarven-keep-floor.png
+share/wesnoth/images/terrain/dwarven-keep.png
+share/wesnoth/images/terrain/dwarven-village.png
+share/wesnoth/images/terrain/encampment-concave-e.png
+share/wesnoth/images/terrain/encampment-concave-ne.png
+share/wesnoth/images/terrain/encampment-concave-nw.png
+share/wesnoth/images/terrain/encampment-concave-se.png
+share/wesnoth/images/terrain/encampment-concave-sw.png
+share/wesnoth/images/terrain/encampment-concave-w.png
+share/wesnoth/images/terrain/encampment-convex-e.png
+share/wesnoth/images/terrain/encampment-convex-ne.png
+share/wesnoth/images/terrain/encampment-convex-nw.png
+share/wesnoth/images/terrain/encampment-convex-se.png
+share/wesnoth/images/terrain/encampment-convex-sw.png
+share/wesnoth/images/terrain/encampment-convex-w.png
+share/wesnoth/images/terrain/flag-sotbe-1.png
+share/wesnoth/images/terrain/flag-sotbe-2.png
+share/wesnoth/images/terrain/flag-sotbe-3.png
+share/wesnoth/images/terrain/flag-team1-1.png
+share/wesnoth/images/terrain/flag-team1-2.png
+share/wesnoth/images/terrain/flag-team10-1.png
+share/wesnoth/images/terrain/flag-team10-2.png
+share/wesnoth/images/terrain/flag-team2-1.png
+share/wesnoth/images/terrain/flag-team2-2.png
+share/wesnoth/images/terrain/flag-team3-1.png
+share/wesnoth/images/terrain/flag-team3-2.png
+share/wesnoth/images/terrain/flag-team4-1.png
+share/wesnoth/images/terrain/flag-team4-2.png
+share/wesnoth/images/terrain/flag-team5-1.png
+share/wesnoth/images/terrain/flag-team5-2.png
+share/wesnoth/images/terrain/flag-team6-1.png
+share/wesnoth/images/terrain/flag-team6-2.png
+share/wesnoth/images/terrain/flag-team7-1.png
+share/wesnoth/images/terrain/flag-team7-2.png
+share/wesnoth/images/terrain/flag-team8-1.png
+share/wesnoth/images/terrain/flag-team8-2.png
+share/wesnoth/images/terrain/flag-team9-1.png
+share/wesnoth/images/terrain/flag-team9-2.png
share/wesnoth/images/terrain/fog-n-ne-se-s.png
share/wesnoth/images/terrain/fog-n-ne-se.png
share/wesnoth/images/terrain/fog-n-ne.png
@@ -1352,9 +2080,14 @@ share/wesnoth/images/terrain/forest-ctrans-n.png
share/wesnoth/images/terrain/forest-ctrans-ne.png
share/wesnoth/images/terrain/forest-ctrans-nw-n-ne.png
share/wesnoth/images/terrain/forest-ctrans-nw-n.png
+share/wesnoth/images/terrain/forest-ctrans-nw-ne.png
share/wesnoth/images/terrain/forest-ctrans-nw.png
+share/wesnoth/images/terrain/forest-etrans-n-ne.png
+share/wesnoth/images/terrain/forest-etrans-n.png
share/wesnoth/images/terrain/forest-etrans-ne.png
share/wesnoth/images/terrain/forest-etrans-nw-n-ne.png
+share/wesnoth/images/terrain/forest-etrans-nw-n.png
+share/wesnoth/images/terrain/forest-etrans-nw-ne.png
share/wesnoth/images/terrain/forest-etrans-nw.png
share/wesnoth/images/terrain/forest-n-ne-se.png
share/wesnoth/images/terrain/forest-n-ne.png
@@ -1400,27 +2133,38 @@ share/wesnoth/images/terrain/forest5.png
share/wesnoth/images/terrain/forest6.png
share/wesnoth/images/terrain/forest7.png
share/wesnoth/images/terrain/forest8.png
+share/wesnoth/images/terrain/grassland-a.png
share/wesnoth/images/terrain/grassland-flowers.png
-share/wesnoth/images/terrain/grassland-n-ne-se-s.png
+share/wesnoth/images/terrain/grassland-flowers1.png
+share/wesnoth/images/terrain/grassland-flowers2.png
share/wesnoth/images/terrain/grassland-n-ne-se.png
share/wesnoth/images/terrain/grassland-n-ne.png
share/wesnoth/images/terrain/grassland-n.png
share/wesnoth/images/terrain/grassland-ne-se-s.png
share/wesnoth/images/terrain/grassland-ne-se.png
share/wesnoth/images/terrain/grassland-ne.png
+share/wesnoth/images/terrain/grassland-nw-n-ne.png
share/wesnoth/images/terrain/grassland-nw-n.png
share/wesnoth/images/terrain/grassland-nw.png
+share/wesnoth/images/terrain/grassland-r.png
+share/wesnoth/images/terrain/grassland-r1.png
+share/wesnoth/images/terrain/grassland-r2.png
+share/wesnoth/images/terrain/grassland-r3.png
+share/wesnoth/images/terrain/grassland-r4.png
share/wesnoth/images/terrain/grassland-rocks.png
-share/wesnoth/images/terrain/grassland-s-sw-nw-n.png
+share/wesnoth/images/terrain/grassland-rocks1.png
+share/wesnoth/images/terrain/grassland-rocks2.png
share/wesnoth/images/terrain/grassland-s-sw-nw.png
share/wesnoth/images/terrain/grassland-s-sw.png
share/wesnoth/images/terrain/grassland-s.png
+share/wesnoth/images/terrain/grassland-se-s-sw.png
share/wesnoth/images/terrain/grassland-se-s.png
share/wesnoth/images/terrain/grassland-se-sw-nw.png
share/wesnoth/images/terrain/grassland-se.png
share/wesnoth/images/terrain/grassland-sw-nw-n.png
share/wesnoth/images/terrain/grassland-sw-nw.png
share/wesnoth/images/terrain/grassland-sw.png
+share/wesnoth/images/terrain/grassland-test.png
share/wesnoth/images/terrain/grassland.png
share/wesnoth/images/terrain/grid.png
share/wesnoth/images/terrain/hills-n-ne.png
@@ -1445,61 +2189,45 @@ share/wesnoth/images/terrain/ice-se.png
share/wesnoth/images/terrain/ice-sw.png
share/wesnoth/images/terrain/ice.png
share/wesnoth/images/terrain/icebridge-se-nw.png
-share/wesnoth/images/terrain/keep-bg-inside-e.png
-share/wesnoth/images/terrain/keep-bg-inside-ne.png
-share/wesnoth/images/terrain/keep-bg-inside-nw.png
-share/wesnoth/images/terrain/keep-bg-inside-se.png
-share/wesnoth/images/terrain/keep-bg-inside-sw.png
-share/wesnoth/images/terrain/keep-bg-inside-w.png
-share/wesnoth/images/terrain/keep-bg-wall-0-e.png
-share/wesnoth/images/terrain/keep-bg-wall-0-ne.png
-share/wesnoth/images/terrain/keep-bg-wall-0-nw.png
-share/wesnoth/images/terrain/keep-bg-wall-0-se.png
-share/wesnoth/images/terrain/keep-bg-wall-0-sw.png
-share/wesnoth/images/terrain/keep-bg-wall-0-w.png
-share/wesnoth/images/terrain/keep-bg-wall-1-e.png
-share/wesnoth/images/terrain/keep-bg-wall-1-ne.png
-share/wesnoth/images/terrain/keep-bg-wall-1-nw.png
-share/wesnoth/images/terrain/keep-bg-wall-1-se.png
-share/wesnoth/images/terrain/keep-bg-wall-1-sw.png
-share/wesnoth/images/terrain/keep-bg-wall-1-w.png
-share/wesnoth/images/terrain/keep-bg-wall-e.png
-share/wesnoth/images/terrain/keep-bg-wall-ne.png
-share/wesnoth/images/terrain/keep-bg-wall-nw.png
-share/wesnoth/images/terrain/keep-bg-wall-se.png
-share/wesnoth/images/terrain/keep-bg-wall-sw.png
-share/wesnoth/images/terrain/keep-bg-wall-w.png
-share/wesnoth/images/terrain/keep-fg-inside-e.png
-share/wesnoth/images/terrain/keep-fg-inside-ne.png
-share/wesnoth/images/terrain/keep-fg-inside-nw.png
-share/wesnoth/images/terrain/keep-fg-inside-se.png
-share/wesnoth/images/terrain/keep-fg-inside-sw.png
-share/wesnoth/images/terrain/keep-fg-inside-w.png
-share/wesnoth/images/terrain/keep-fg-wall-0-e.png
-share/wesnoth/images/terrain/keep-fg-wall-0-ne.png
-share/wesnoth/images/terrain/keep-fg-wall-0-nw.png
-share/wesnoth/images/terrain/keep-fg-wall-0-se.png
-share/wesnoth/images/terrain/keep-fg-wall-0-sw.png
-share/wesnoth/images/terrain/keep-fg-wall-0-w.png
-share/wesnoth/images/terrain/keep-fg-wall-1-e.png
-share/wesnoth/images/terrain/keep-fg-wall-1-ne.png
-share/wesnoth/images/terrain/keep-fg-wall-1-nw.png
-share/wesnoth/images/terrain/keep-fg-wall-1-se.png
-share/wesnoth/images/terrain/keep-fg-wall-1-sw.png
-share/wesnoth/images/terrain/keep-fg-wall-1-w.png
-share/wesnoth/images/terrain/keep-fg-wall-e.png
-share/wesnoth/images/terrain/keep-fg-wall-ne.png
-share/wesnoth/images/terrain/keep-fg-wall-nw.png
-share/wesnoth/images/terrain/keep-fg-wall-se.png
-share/wesnoth/images/terrain/keep-fg-wall-sw.png
-share/wesnoth/images/terrain/keep-fg-wall-w.png
+share/wesnoth/images/terrain/keep-inside-e.png
+share/wesnoth/images/terrain/keep-inside-ne.png
+share/wesnoth/images/terrain/keep-inside-nw.png
+share/wesnoth/images/terrain/keep-inside-se.png
+share/wesnoth/images/terrain/keep-inside-sw.png
+share/wesnoth/images/terrain/keep-inside-w.png
+share/wesnoth/images/terrain/keep-wall-0-e.png
+share/wesnoth/images/terrain/keep-wall-0-ne.png
+share/wesnoth/images/terrain/keep-wall-0-nw.png
+share/wesnoth/images/terrain/keep-wall-0-se.png
+share/wesnoth/images/terrain/keep-wall-0-sw.png
+share/wesnoth/images/terrain/keep-wall-0-w.png
+share/wesnoth/images/terrain/keep-wall-1-e.png
+share/wesnoth/images/terrain/keep-wall-1-ne.png
+share/wesnoth/images/terrain/keep-wall-1-nw.png
+share/wesnoth/images/terrain/keep-wall-1-se.png
+share/wesnoth/images/terrain/keep-wall-1-sw.png
+share/wesnoth/images/terrain/keep-wall-1-w.png
+share/wesnoth/images/terrain/keep-wall-e.png
+share/wesnoth/images/terrain/keep-wall-ne.png
+share/wesnoth/images/terrain/keep-wall-nw.png
+share/wesnoth/images/terrain/keep-wall-se.png
+share/wesnoth/images/terrain/keep-wall-sw.png
+share/wesnoth/images/terrain/keep-wall-w.png
share/wesnoth/images/terrain/keep.png
+share/wesnoth/images/terrain/lava-n.png
+share/wesnoth/images/terrain/lava-ne.png
+share/wesnoth/images/terrain/lava-nw.png
+share/wesnoth/images/terrain/lava-s.png
+share/wesnoth/images/terrain/lava-se.png
+share/wesnoth/images/terrain/lava-sw.png
share/wesnoth/images/terrain/lava.png
share/wesnoth/images/terrain/mask.png
share/wesnoth/images/terrain/mine.png
share/wesnoth/images/terrain/mountains-n.png
share/wesnoth/images/terrain/mountains-ne.png
share/wesnoth/images/terrain/mountains-nw.png
+share/wesnoth/images/terrain/mountains-peak1.png
+share/wesnoth/images/terrain/mountains-peak2.png
share/wesnoth/images/terrain/mountains-s.png
share/wesnoth/images/terrain/mountains-se.png
share/wesnoth/images/terrain/mountains-sw.png
@@ -1513,18 +2241,32 @@ share/wesnoth/images/terrain/ocean-s.png
share/wesnoth/images/terrain/ocean-se.png
share/wesnoth/images/terrain/ocean-sw.png
share/wesnoth/images/terrain/ocean.png
+share/wesnoth/images/terrain/ocean2.png
+share/wesnoth/images/terrain/ocean3.png
share/wesnoth/images/terrain/out.png
share/wesnoth/images/terrain/pier.png
+share/wesnoth/images/terrain/road-n.png
+share/wesnoth/images/terrain/road-ne.png
+share/wesnoth/images/terrain/road-nw.png
+share/wesnoth/images/terrain/road-s.png
+share/wesnoth/images/terrain/road-se.png
+share/wesnoth/images/terrain/road-sw.png
share/wesnoth/images/terrain/road.png
share/wesnoth/images/terrain/rocks.png
-share/wesnoth/images/terrain/signpost.png
+share/wesnoth/images/terrain/snow-forest-n-ne.png
share/wesnoth/images/terrain/snow-forest-n.png
share/wesnoth/images/terrain/snow-forest-ne.png
+share/wesnoth/images/terrain/snow-forest-nw-n-ne.png
share/wesnoth/images/terrain/snow-forest-nw.png
+share/wesnoth/images/terrain/snow-forest-s-sw.png
share/wesnoth/images/terrain/snow-forest-s.png
+share/wesnoth/images/terrain/snow-forest-se-s-sw.png
+share/wesnoth/images/terrain/snow-forest-se-s.png
share/wesnoth/images/terrain/snow-forest-se.png
share/wesnoth/images/terrain/snow-forest-sw.png
share/wesnoth/images/terrain/snow-forest.png
+share/wesnoth/images/terrain/snow-forest2.png
+share/wesnoth/images/terrain/snow-forest3.png
share/wesnoth/images/terrain/snow-hills-n-ne.png
share/wesnoth/images/terrain/snow-hills-n.png
share/wesnoth/images/terrain/snow-hills-ne.png
@@ -1534,22 +2276,30 @@ share/wesnoth/images/terrain/snow-hills-s.png
share/wesnoth/images/terrain/snow-hills-se.png
share/wesnoth/images/terrain/snow-hills-sw.png
share/wesnoth/images/terrain/snow-hills.png
+share/wesnoth/images/terrain/snow-hills2.png
+share/wesnoth/images/terrain/snow-hills3.png
share/wesnoth/images/terrain/snow-n-ne-se-s.png
share/wesnoth/images/terrain/snow-n-ne-se.png
share/wesnoth/images/terrain/snow-n-ne.png
share/wesnoth/images/terrain/snow-n.png
+share/wesnoth/images/terrain/snow-ne-se-s-sw.png
share/wesnoth/images/terrain/snow-ne-se-s.png
share/wesnoth/images/terrain/snow-ne-se.png
share/wesnoth/images/terrain/snow-ne.png
+share/wesnoth/images/terrain/snow-nw-n-ne-se.png
+share/wesnoth/images/terrain/snow-nw-n-ne.png
share/wesnoth/images/terrain/snow-nw-n.png
share/wesnoth/images/terrain/snow-nw.png
share/wesnoth/images/terrain/snow-s-sw-nw-n.png
share/wesnoth/images/terrain/snow-s-sw-nw.png
share/wesnoth/images/terrain/snow-s-sw.png
share/wesnoth/images/terrain/snow-s.png
+share/wesnoth/images/terrain/snow-se-s-sw-nw.png
+share/wesnoth/images/terrain/snow-se-s-sw.png
share/wesnoth/images/terrain/snow-se-s.png
share/wesnoth/images/terrain/snow-se-sw-nw.png
share/wesnoth/images/terrain/snow-se.png
+share/wesnoth/images/terrain/snow-sw-nw-n-ne.png
share/wesnoth/images/terrain/snow-sw-nw-n.png
share/wesnoth/images/terrain/snow-sw-nw.png
share/wesnoth/images/terrain/snow-sw.png
@@ -1572,6 +2322,9 @@ share/wesnoth/images/terrain/trash.png
share/wesnoth/images/terrain/village-cave.png
share/wesnoth/images/terrain/village-coast.png
share/wesnoth/images/terrain/village-dusk.png
+share/wesnoth/images/terrain/village-dusk2.png
+share/wesnoth/images/terrain/village-dusk3.png
+share/wesnoth/images/terrain/village-dusk4.png
share/wesnoth/images/terrain/village-first_watch.png
share/wesnoth/images/terrain/village-human.png
share/wesnoth/images/terrain/village-n.png
@@ -1618,6 +2371,14 @@ share/wesnoth/images/tower.png
share/wesnoth/images/troll-grunt-attack.png
share/wesnoth/images/troll-grunt-defend.png
share/wesnoth/images/troll-grunt.png
+share/wesnoth/images/troll-hero-attack.png
+share/wesnoth/images/troll-hero-defend.png
+share/wesnoth/images/troll-hero.png
+share/wesnoth/images/troll-lobber-attack-melee.png
+share/wesnoth/images/troll-lobber-attack-ranged1.png
+share/wesnoth/images/troll-lobber-attack-ranged2.png
+share/wesnoth/images/troll-lobber-defend.png
+share/wesnoth/images/troll-lobber.png
share/wesnoth/images/troll-warrior-attack.png
share/wesnoth/images/troll-warrior.png
share/wesnoth/images/troll-whelp-attack.png
@@ -1653,6 +2414,7 @@ share/wesnoth/images/undead-darkspirit-attack.png
share/wesnoth/images/undead-darkspirit-attack1.png
share/wesnoth/images/undead-darkspirit-defend.png
share/wesnoth/images/undead-darkspirit.png
+share/wesnoth/images/undead-deathknight-attack.png
share/wesnoth/images/undead-deathknight.png
share/wesnoth/images/undead-deathmaster-attack1.png
share/wesnoth/images/undead-deathmaster-attack2.png
@@ -1705,6 +2467,11 @@ share/wesnoth/images/undead-skeleton.png
share/wesnoth/images/undead-soulless-defend.png
share/wesnoth/images/undead-soulless-melee.png
share/wesnoth/images/undead-soulless.png
+share/wesnoth/images/undead-soulshooter-attack.png
+share/wesnoth/images/undead-soulshooter-defend.png
+share/wesnoth/images/undead-soulshooter-ranged.png
+share/wesnoth/images/undead-soulshooter-ranged2.png
+share/wesnoth/images/undead-soulshooter.png
share/wesnoth/images/undead-spectre-attack.png
share/wesnoth/images/undead-spectre-attack1.png
share/wesnoth/images/undead-spectre-defend.png
@@ -1719,12 +2486,24 @@ share/wesnoth/images/undead-wraith-defend.png
share/wesnoth/images/undead-wraith.png
share/wesnoth/images/undead-zombie-attack.png
share/wesnoth/images/undead-zombie.png
-share/wesnoth/images/unmoved-energy.png
+share/wesnoth/images/warrior-king-attack1.png
+share/wesnoth/images/warrior-king-attack2.png
+share/wesnoth/images/warrior-king-defend.png
+share/wesnoth/images/warrior-king-leading.png
+share/wesnoth/images/warrior-king.png
share/wesnoth/images/wesnoth-icon.png
+share/wesnoth/images/white-cleric+female-attack.png
+share/wesnoth/images/white-cleric+female-attack1.png
+share/wesnoth/images/white-cleric+female-defend.png
+share/wesnoth/images/white-cleric+female.png
share/wesnoth/images/white-cleric-attack.png
share/wesnoth/images/white-cleric-attack1.png
share/wesnoth/images/white-cleric-defend.png
share/wesnoth/images/white-cleric.png
+share/wesnoth/images/white-mage+female-attack.png
+share/wesnoth/images/white-mage+female-attack1.png
+share/wesnoth/images/white-mage+female-defend.png
+share/wesnoth/images/white-mage+female.png
share/wesnoth/images/white-mage-attack.png
share/wesnoth/images/white-mage-attack1.png
share/wesnoth/images/white-mage-defend.png
@@ -1753,6 +2532,7 @@ share/wesnoth/images/young-ogre-attack.png
share/wesnoth/images/young-ogre.png
%%LITE:%%share/wesnoth/music/elf-land.ogg
%%LITE:%%share/wesnoth/music/frantic.ogg
+%%LITE:%%share/wesnoth/music/main_menu.ogg
%%LITE:%%share/wesnoth/music/underground.ogg
%%LITE:%%share/wesnoth/music/wesnoth-1.ogg
%%LITE:%%share/wesnoth/music/wesnoth-2.ogg
@@ -1768,16 +2548,22 @@ share/wesnoth/sounds/arrow-miss.wav
share/wesnoth/sounds/bell.wav
share/wesnoth/sounds/dagger-swish.wav
share/wesnoth/sounds/dart.wav
+share/wesnoth/sounds/eagle.wav
share/wesnoth/sounds/female-hit.wav
+share/wesnoth/sounds/female-strong-hit.wav
share/wesnoth/sounds/fire.wav
share/wesnoth/sounds/firearrow.wav
share/wesnoth/sounds/fist-swish.wav
share/wesnoth/sounds/ghoul-hit.wav
share/wesnoth/sounds/ghoul-swish.wav
+share/wesnoth/sounds/groan-strong.wav
share/wesnoth/sounds/groan.wav
share/wesnoth/sounds/gunshot.wav
share/wesnoth/sounds/heal.wav
+share/wesnoth/sounds/hiss-big.wav
+share/wesnoth/sounds/hiss.wav
share/wesnoth/sounds/horse-canter.wav
+share/wesnoth/sounds/horse-elf-canter.wav
share/wesnoth/sounds/knife.wav
share/wesnoth/sounds/leave.wav
share/wesnoth/sounds/lightning.wav
@@ -1787,10 +2573,14 @@ share/wesnoth/sounds/mermen-hit.wav
share/wesnoth/sounds/net.wav
share/wesnoth/sounds/open-chest.wav
share/wesnoth/sounds/orc-hit.wav
+share/wesnoth/sounds/orc-small-hit.wav
share/wesnoth/sounds/pistol.wav
share/wesnoth/sounds/receive.wav
share/wesnoth/sounds/skeleton-hit.wav
share/wesnoth/sounds/spear.wav
+share/wesnoth/sounds/squishy-hit.wav
+share/wesnoth/sounds/squishy-miss.wav
+share/wesnoth/sounds/squishy-strike.wav
share/wesnoth/sounds/staff.wav
share/wesnoth/sounds/sword-clang.wav
share/wesnoth/sounds/sword-swish.wav
@@ -1805,15 +2595,21 @@ share/wesnoth/sounds/zombie-hit.wav
@dirrm share/wesnoth/images/tools/exploder
@dirrm share/wesnoth/images/tools
@dirrm share/wesnoth/images/terrain
-@dirrm share/wesnoth/images/sotbe
@dirrm share/wesnoth/images/projectiles
+@dirrm share/wesnoth/images/portraits/Heir_To_The_Throne
+@dirrm share/wesnoth/images/portraits/Eastern_Invasion
+@dirrm share/wesnoth/images/portraits
@dirrm share/wesnoth/images/misc
+@dirrm share/wesnoth/images/maps
+@dirrm share/wesnoth/images/items
@dirrm share/wesnoth/images/icons
@dirrm share/wesnoth/images/help
@dirrm share/wesnoth/images/halo
@dirrm share/wesnoth/images/editor
@dirrm share/wesnoth/images/cursors-bw
@dirrm share/wesnoth/images/cursors
+@dirrm share/wesnoth/images/campaigns/The_Rise_of_Wesnoth
+@dirrm share/wesnoth/images/campaigns
@dirrm share/wesnoth/images/buttons
@dirrm share/wesnoth/images/attacks
@dirrm share/wesnoth/images
@@ -1825,16 +2621,19 @@ share/wesnoth/sounds/zombie-hit.wav
@dirrm share/wesnoth/data/tools
@dirrm share/wesnoth/data/themes
@dirrm share/wesnoth/data/terrain-graphics
+@dirrm share/wesnoth/data/scenarios/tutorial
@dirrm share/wesnoth/data/scenarios/multiplayer
+@dirrm share/wesnoth/data/scenarios/The_Rise_of_Wesnoth
@dirrm share/wesnoth/data/scenarios/The_Dark_Hordes
@dirrm share/wesnoth/data/scenarios/Son_Of_The_Black_Eye
@dirrm share/wesnoth/data/scenarios/Heir_To_The_Throne
@dirrm share/wesnoth/data/scenarios/Eastern_Invasion
@dirrm share/wesnoth/data/scenarios
+@dirrm share/wesnoth/data/maps/multiplayer
@dirrm share/wesnoth/data/maps/Tutorial
+@dirrm share/wesnoth/data/maps/The_Rise_of_Wesnoth
@dirrm share/wesnoth/data/maps/The_Dark_Hordes
@dirrm share/wesnoth/data/maps/Son_Of_The_Black_Eye
-@dirrm share/wesnoth/data/maps/Multiplayer
@dirrm share/wesnoth/data/maps/Heir_To_The_Throne
@dirrm share/wesnoth/data/maps/Eastern_Invasion
@dirrm share/wesnoth/data/maps
diff --git a/games/wesnoth/Makefile b/games/wesnoth/Makefile
index cc54c5f53f9b..95810f0d47cf 100644
--- a/games/wesnoth/Makefile
+++ b/games/wesnoth/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= wesnoth
-PORTVERSION= 0.8
+PORTVERSION= 0.8.5
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= wesnoth
@@ -18,12 +18,21 @@ DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
MAINTAINER= mezz@FreeBSD.org
COMMENT= A fantasy turn-based strategy game
+USE_GCC= 3.4
USE_SDL= image mixer net ttf
USE_GNOME= gnometarget
+USE_GMAKE= yes
WANT_GNOME= yes
+USE_GETTEXT= yes
USE_X_PREFIX= yes
USE_REINPLACE= yes
GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --disable-sdltest \
+ --with-libiconv-prefix=${LOCALBASE} \
+ --with-libintl-prefix=${LOCALBASE} \
+ --with-localedir=${PREFIX}/share/locale
+CONFIGURE_ENV= CPPFLAGS="-ftemplate-depth-45" \
+ LDFLAGS="-L${LOCALBASE}/lib -lintl"
MAN6= wesnoth.6 wesnoth_editor.6 wesnothd.6
@@ -34,6 +43,13 @@ PLIST_SUB+= LITE:="@comment "
PLIST_SUB+= LITE:=""
.endif
+.if defined(WITH_CAMPAIGN) || defined(PACKAGE_BUILDING)
+CONFIGURE_ARGS+= --enable-campaign-server
+PLIST_SUB+= CAMPAIGN:=""
+.else
+PLIST_SUB+= CAMPAIGN:="@comment "
+.endif
+
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+= --enable-debug
.endif
@@ -62,38 +78,41 @@ PLIST_SUB+= TOOLS:="@comment "
.include <bsd.port.pre.mk>
.if ${HAVE_GNOME:Mgnomehier}!=""
-CONFIGURE_ARGS+= --enable-gnome
+CONFIGURE_ARGS+= --with-gnome
PLIST_SUB+= GNOME:=""
.else
PLIST_SUB+= GNOME:="@comment "
.endif
.if exists(${LOCALBASE}/bin/kde-config)
-CONFIGURE_ARGS+= --enable-kde
+CONFIGURE_ARGS+= --with-kde
PLIST_SUB+= KDE:=""
.else
PLIST_SUB+= KDE:="@comment "
.endif
pre-everything::
-.if !defined(LITE) || !defined(WITH_DEBUG) || !defined(WITH_EDITOR) || !defined(WITH_SERVER) || !defined(WITH_TOOLS)
+.if !defined(LITE) || !defined(WITH_CAMPAIGN) || !defined(WITH_DEBUG) || !defined(WITH_EDITOR) || !defined(WITH_SERVER) || !defined(WITH_TOOLS)
@${ECHO_MSG} "You may specify the following on the command line:"
@${ECHO_MSG} " "
.endif
.if !defined(LITE)
@${ECHO_MSG} "LITE=yes for lite version of Wesnoth (without music)."
.endif
+.if !defined(WITH_CAMPAIGN)
+ @${ECHO_MSG} "WITH_CAMPAIGN=yes to enable compilation of campaign server."
+.endif
.if !defined(WITH_DEBUG)
@${ECHO_MSG} "WITH_DEBUG=yes to enable debugging in Wesnoth."
.endif
.if !defined(WITH_EDITOR)
- @${ECHO_MSG} "WITH_EDITOR=yes for enable compilation editor."
+ @${ECHO_MSG} "WITH_EDITOR=yes to enable compilation of map editor."
.endif
.if !defined(WITH_SERVER)
- @${ECHO_MSG} "WITH_SERVER=yes for enable compilation of server."
+ @${ECHO_MSG} "WITH_SERVER=yes to enable compilation of server."
.endif
.if !defined(WITH_TOOLS)
- @${ECHO_MSG} "WITH_TOOLS=yes for enable compilation of translation tools."
+ @${ECHO_MSG} "WITH_TOOLS=yes to enable compilation of tools for translators and artists."
.endif
post-patch:
diff --git a/games/wesnoth/distinfo b/games/wesnoth/distinfo
index 18ccce33c70e..c5acba1dc904 100644
--- a/games/wesnoth/distinfo
+++ b/games/wesnoth/distinfo
@@ -1,4 +1,4 @@
-MD5 (wesnoth-0.8.tar.gz) = c6258d08645a97c311c9538128f5af6e
-SIZE (wesnoth-0.8.tar.gz) = 22171378
-MD5 (wesnoth-lite-0.8.tar.gz) = 81d25853f528c13886f083a2585719c3
-SIZE (wesnoth-lite-0.8.tar.gz) = 8872249
+MD5 (wesnoth-0.8.5.tar.gz) = 2b7cee60a6a37662f628e8971f18b5fc
+SIZE (wesnoth-0.8.5.tar.gz) = 31763952
+MD5 (wesnoth-lite-0.8.5.tar.gz) = e3e12fbf733b28d54d91274f56f636b7
+SIZE (wesnoth-lite-0.8.5.tar.gz) = 17669038
diff --git a/games/wesnoth/files/patch-configure b/games/wesnoth/files/patch-configure
new file mode 100644
index 000000000000..2461bb21a243
--- /dev/null
+++ b/games/wesnoth/files/patch-configure
@@ -0,0 +1,74 @@
+--- configure.orig Tue Oct 5 23:42:20 2004
++++ configure Tue Oct 5 23:43:44 2004
+@@ -10043,36 +10043,6 @@
+
+
+
+-if test x$kde = xyes && test x$kdefound = xyes; then
+- KDE_TRUE=
+- KDE_FALSE='#'
+-else
+- KDE_TRUE='#'
+- KDE_FALSE=
+-fi
+-
+-
+-
+-if test x$gnome = xyes && test x$gnome1found = xyes; then
+- GNOME1_TRUE=
+- GNOME1_FALSE='#'
+-else
+- GNOME1_TRUE='#'
+- GNOME1_FALSE=
+-fi
+-
+-
+-
+-if test x$gnome = xyes && test x$gnome1found = xno; then
+- GNOME2_TRUE=
+- GNOME2_FALSE='#'
+-else
+- GNOME2_TRUE='#'
+- GNOME2_FALSE=
+-fi
+-
+-
+-
+ if test x$GXX = xyes; then
+ GCC_TRUE=
+ GCC_FALSE='#'
+@@ -13259,6 +13229,34 @@
+ fi
+
+
++
++if test x$kde = xyes && test x$kdefound = xyes; then
++ KDE_TRUE=
++ KDE_FALSE='#'
++else
++ KDE_TRUE='#'
++ KDE_FALSE=
++fi
++
++
++
++if test x$gnome = xyes && test x$gnome1found = xyes; then
++ GNOME1_TRUE=
++ GNOME1_FALSE='#'
++else
++ GNOME1_TRUE='#'
++ GNOME1_FALSE=
++fi
++
++
++
++if test x$gnome = xyes && test x$gnome1found = xno; then
++ GNOME2_TRUE=
++ GNOME2_FALSE='#'
++else
++ GNOME2_TRUE='#'
++ GNOME2_FALSE=
++fi
+
+
+
diff --git a/games/wesnoth/files/patch-src::Makefile.in b/games/wesnoth/files/patch-src::Makefile.in
new file mode 100644
index 000000000000..8da0562ab287
--- /dev/null
+++ b/games/wesnoth/files/patch-src::Makefile.in
@@ -0,0 +1,12 @@
+--- src/Makefile.in.orig Tue Oct 5 23:45:33 2004
++++ src/Makefile.in Tue Oct 5 23:45:59 2004
+@@ -660,8 +660,7 @@
+ wesconfig.h
+
+ AM_CXXFLAGS = @SDL_CFLAGS@ -DWESNOTH_PATH=\"$(pkgdatadir)\" \
+- -DLOCALEDIR=\"$(LOCALEDIR)\" -DHAS_RELATIVE_LOCALEDIR=$(HAS_RELATIVE_LOCALEDIR) \
+- -I../intl -I$(top_srcdir)/intl
++ -DLOCALEDIR=\"$(LOCALEDIR)\" -DHAS_RELATIVE_LOCALEDIR=$(HAS_RELATIVE_LOCALEDIR)
+
+ CXXLD = $(LDPREFIX) $(CXX)
+ all: all-recursive
diff --git a/games/wesnoth/files/patch-src::help.cpp b/games/wesnoth/files/patch-src::help.cpp
index a383d415a4e9..836c0540340d 100644
--- a/games/wesnoth/files/patch-src::help.cpp
+++ b/games/wesnoth/files/patch-src::help.cpp
@@ -1,10 +1,11 @@
---- src/help.cpp.orig Sat Jul 3 20:44:17 2004
-+++ src/help.cpp Sat Jul 3 20:44:25 2004
-@@ -27,7 +27,6 @@
+--- src/help.cpp.orig Tue Oct 5 23:47:06 2004
++++ src/help.cpp Tue Oct 5 23:47:19 2004
+@@ -29,7 +29,7 @@
#include <cassert>
#include <algorithm>
#include <iostream>
-#include <locale>
++#include <locale.h>
#include <queue>
#include <set>
#include <stack>
diff --git a/games/wesnoth/files/patch-src::scoped_resource.hpp b/games/wesnoth/files/patch-src::scoped_resource.hpp
deleted file mode 100644
index 38256248cdab..000000000000
--- a/games/wesnoth/files/patch-src::scoped_resource.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/scoped_resource.hpp.orig Sat Jul 3 16:23:45 2004
-+++ src/scoped_resource.hpp Sat Jul 3 16:24:35 2004
-@@ -13,6 +13,8 @@
- #ifndef SCOPED_RESOURCE_H_INCLUDED
- #define SCOPED_RESOURCE_H_INCLUDED
-
-+#include <cstdio>
-+
- /**
- * The util namespace should take all classes which are of a generic type,
- * used to perform common tasks which are not BibleTime-specific. See
diff --git a/games/wesnoth/pkg-plist b/games/wesnoth/pkg-plist
index 927962c8657d..8268fa975bb8 100644
--- a/games/wesnoth/pkg-plist
+++ b/games/wesnoth/pkg-plist
@@ -1,33 +1,188 @@
+%%CAMPAIGN:%%bin/campaignd
%%TOOLS:%%bin/make_translation
%%TOOLS:%%bin/merge_translations
bin/wesnoth
%%EDITOR:%%bin/wesnoth_editor
%%SERVER:%%bin/wesnothd
-share/wesnoth/data/battleworld.cfg
+share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
+share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
+share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
+share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
+share/locale/ca/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/ca/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/ca/LC_MESSAGES/wesnoth-trow.mo
+share/locale/ca/LC_MESSAGES/wesnoth.mo
+share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
+share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
+share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
+share/locale/cs/LC_MESSAGES/wesnoth-lib.mo
+share/locale/cs/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/cs/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/cs/LC_MESSAGES/wesnoth-trow.mo
+share/locale/cs/LC_MESSAGES/wesnoth.mo
+share/locale/da/LC_MESSAGES/wesnoth-editor.mo
+share/locale/da/LC_MESSAGES/wesnoth-ei.mo
+share/locale/da/LC_MESSAGES/wesnoth-httt.mo
+share/locale/da/LC_MESSAGES/wesnoth-lib.mo
+share/locale/da/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/da/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/da/LC_MESSAGES/wesnoth-trow.mo
+share/locale/da/LC_MESSAGES/wesnoth.mo
+share/locale/de/LC_MESSAGES/wesnoth-editor.mo
+share/locale/de/LC_MESSAGES/wesnoth-ei.mo
+share/locale/de/LC_MESSAGES/wesnoth-httt.mo
+share/locale/de/LC_MESSAGES/wesnoth-lib.mo
+share/locale/de/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/de/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/de/LC_MESSAGES/wesnoth-trow.mo
+share/locale/de/LC_MESSAGES/wesnoth.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-editor.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-ei.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-httt.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-lib.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth-trow.mo
+share/locale/el_GR/LC_MESSAGES/wesnoth.mo
+share/locale/es/LC_MESSAGES/wesnoth-editor.mo
+share/locale/es/LC_MESSAGES/wesnoth-ei.mo
+share/locale/es/LC_MESSAGES/wesnoth-httt.mo
+share/locale/es/LC_MESSAGES/wesnoth-lib.mo
+share/locale/es/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/es/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/es/LC_MESSAGES/wesnoth-trow.mo
+share/locale/es/LC_MESSAGES/wesnoth.mo
+share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
+share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
+share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
+share/locale/eu/LC_MESSAGES/wesnoth-lib.mo
+share/locale/eu/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/eu/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/eu/LC_MESSAGES/wesnoth-trow.mo
+share/locale/eu/LC_MESSAGES/wesnoth.mo
+share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
+share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
+share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
+share/locale/fi/LC_MESSAGES/wesnoth-lib.mo
+share/locale/fi/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/fi/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/fi/LC_MESSAGES/wesnoth-trow.mo
+share/locale/fi/LC_MESSAGES/wesnoth.mo
+share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
+share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
+share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
+share/locale/fr/LC_MESSAGES/wesnoth-lib.mo
+share/locale/fr/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/fr/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/fr/LC_MESSAGES/wesnoth-trow.mo
+share/locale/fr/LC_MESSAGES/wesnoth.mo
+share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
+share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
+share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
+share/locale/hu/LC_MESSAGES/wesnoth-lib.mo
+share/locale/hu/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/hu/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/hu/LC_MESSAGES/wesnoth-trow.mo
+share/locale/hu/LC_MESSAGES/wesnoth.mo
+share/locale/it/LC_MESSAGES/wesnoth-editor.mo
+share/locale/it/LC_MESSAGES/wesnoth-ei.mo
+share/locale/it/LC_MESSAGES/wesnoth-httt.mo
+share/locale/it/LC_MESSAGES/wesnoth-lib.mo
+share/locale/it/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/it/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/it/LC_MESSAGES/wesnoth-trow.mo
+share/locale/it/LC_MESSAGES/wesnoth.mo
+share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
+share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
+share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
+share/locale/nl/LC_MESSAGES/wesnoth-lib.mo
+share/locale/nl/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/nl/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/nl/LC_MESSAGES/wesnoth-trow.mo
+share/locale/nl/LC_MESSAGES/wesnoth.mo
+share/locale/no/LC_MESSAGES/wesnoth-editor.mo
+share/locale/no/LC_MESSAGES/wesnoth-ei.mo
+share/locale/no/LC_MESSAGES/wesnoth-httt.mo
+share/locale/no/LC_MESSAGES/wesnoth-lib.mo
+share/locale/no/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/no/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/no/LC_MESSAGES/wesnoth-trow.mo
+share/locale/no/LC_MESSAGES/wesnoth.mo
+share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
+share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
+share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
+share/locale/pl/LC_MESSAGES/wesnoth-lib.mo
+share/locale/pl/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/pl/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/pl/LC_MESSAGES/wesnoth-trow.mo
+share/locale/pl/LC_MESSAGES/wesnoth.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth-trow.mo
+share/locale/pt_BR/LC_MESSAGES/wesnoth.mo
+share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
+share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
+share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
+share/locale/ru/LC_MESSAGES/wesnoth-lib.mo
+share/locale/ru/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/ru/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/ru/LC_MESSAGES/wesnoth-trow.mo
+share/locale/ru/LC_MESSAGES/wesnoth.mo
+share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
+share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
+share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
+share/locale/sk/LC_MESSAGES/wesnoth-lib.mo
+share/locale/sk/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/sk/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/sk/LC_MESSAGES/wesnoth-trow.mo
+share/locale/sk/LC_MESSAGES/wesnoth.mo
+share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
+share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
+share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
+share/locale/sv/LC_MESSAGES/wesnoth-lib.mo
+share/locale/sv/LC_MESSAGES/wesnoth-sotbe.mo
+share/locale/sv/LC_MESSAGES/wesnoth-tdh.mo
+share/locale/sv/LC_MESSAGES/wesnoth-trow.mo
+share/locale/sv/LC_MESSAGES/wesnoth.mo
+share/wesnoth/data/campaigns/Eastern_Invasion.cfg
+share/wesnoth/data/campaigns/Heir_To_The_Throne.cfg
share/wesnoth/data/campaigns/README
+share/wesnoth/data/campaigns/Son_Of_The_Black_Eye.cfg
+share/wesnoth/data/campaigns/The_Dark_Hordes.cfg
+share/wesnoth/data/campaigns/The_Rise_of_Wesnoth.cfg
share/wesnoth/data/convert.pl
-share/wesnoth/data/deaths.cfg
share/wesnoth/data/game.cfg
share/wesnoth/data/help.cfg
-share/wesnoth/data/intro.cfg
share/wesnoth/data/items.cfg
share/wesnoth/data/maps/Eastern_Invasion/An_Elven_Alliance
share/wesnoth/data/maps/Eastern_Invasion/An_Unexpected_Appearance
+share/wesnoth/data/maps/Eastern_Invasion/Approaching_Weldyn
share/wesnoth/data/maps/Eastern_Invasion/Captured
+share/wesnoth/data/maps/Eastern_Invasion/Drowned_Plains
+share/wesnoth/data/maps/Eastern_Invasion/Evacuation
share/wesnoth/data/maps/Eastern_Invasion/Lake_Vrug
share/wesnoth/data/maps/Eastern_Invasion/Mal-Ravanals_Capital
share/wesnoth/data/maps/Eastern_Invasion/Northern_Outpost
+share/wesnoth/data/maps/Eastern_Invasion/Peasant_Revolt
+share/wesnoth/data/maps/Eastern_Invasion/The_Arena
share/wesnoth/data/maps/Eastern_Invasion/The_Crossing
share/wesnoth/data/maps/Eastern_Invasion/The_Escape_Tunnel
share/wesnoth/data/maps/Eastern_Invasion/The_Outpost
share/wesnoth/data/maps/Eastern_Invasion/The_Undead_Border_Patrol
+share/wesnoth/data/maps/Eastern_Invasion/Throne_Room
share/wesnoth/data/maps/Eastern_Invasion/Training_the_Ogres
share/wesnoth/data/maps/Eastern_Invasion/Tribal_Warfare
share/wesnoth/data/maps/Eastern_Invasion/Two_Paths
share/wesnoth/data/maps/Eastern_Invasion/Undead_Crossing
+share/wesnoth/data/maps/Eastern_Invasion/Weldyn_Besieged
share/wesnoth/data/maps/Eastern_Invasion/Weldyn_under_Attack
share/wesnoth/data/maps/Eastern_Invasion/loyalistmap11
share/wesnoth/data/maps/Heir_To_The_Throne/A_Choice_Must_Be_Made
+share/wesnoth/data/maps/Heir_To_The_Throne/Battle_for_Wesnoth
share/wesnoth/data/maps/Heir_To_The_Throne/Bay_of_Pearls
share/wesnoth/data/maps/Heir_To_The_Throne/Blackwater_Port
share/wesnoth/data/maps/Heir_To_The_Throne/Crossroads
@@ -53,14 +208,8 @@ share/wesnoth/data/maps/Heir_To_The_Throne/Swamp_Of_Dread
share/wesnoth/data/maps/Heir_To_The_Throne/The_Lost_General
share/wesnoth/data/maps/Heir_To_The_Throne/The_Siege_of_Elensefar
share/wesnoth/data/maps/Heir_To_The_Throne/Valley_of_Death
-share/wesnoth/data/maps/Multiplayer/BattleWorld
-share/wesnoth/data/maps/Multiplayer/Castles
-share/wesnoth/data/maps/Multiplayer/ForestofFear
-share/wesnoth/data/maps/Multiplayer/King_of_the_Hill
-share/wesnoth/data/maps/Multiplayer/Three_Rivers
-share/wesnoth/data/maps/Multiplayer/Wesbowl
-share/wesnoth/data/maps/Multiplayer/Weslin
share/wesnoth/data/maps/Son_Of_The_Black_Eye/Black_Flag
+share/wesnoth/data/maps/Son_Of_The_Black_Eye/Clash_Of_Armies
share/wesnoth/data/maps/Son_Of_The_Black_Eye/Desert_Of_Death
share/wesnoth/data/maps/Son_Of_The_Black_Eye/End_Of_Peace
share/wesnoth/data/maps/Son_Of_The_Black_Eye/Saving_Inarix
@@ -76,21 +225,61 @@ share/wesnoth/data/maps/The_Dark_Hordes/Crelanus_Book
share/wesnoth/data/maps/The_Dark_Hordes/Inside_The_Tower
share/wesnoth/data/maps/The_Dark_Hordes/Mages_And_Elves
share/wesnoth/data/maps/The_Dark_Hordes/The_Skull_of_Agarash
-share/wesnoth/data/maps/Tutorial/Tutorial1
-share/wesnoth/data/maps/Tutorial/Tutorial2
+share/wesnoth/data/maps/The_Dark_Hordes/Underground_Pool
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_Beach
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_Final_Spring
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_Harrowing_Escape
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_New_Land
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/A_Summer_of_Storms
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Clearwater_Port
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Cursed_Isle
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Elf_Lords
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Fallen_Lich_Point
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Peoples_in_Decline
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Return_of_the_Fleet
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Rise_of_Wesnoth
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Rough_Landing
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Sewer
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Southbay_in_Winter
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Temple_in_the_Deep
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Dragon
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Fall
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Midlands
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Oldwood
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Plan
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_River_Road
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/The_Vanguard
+share/wesnoth/data/maps/The_Rise_of_Wesnoth/Troll_Hole
+share/wesnoth/data/maps/Tutorial/Basic_Training
+share/wesnoth/data/maps/Tutorial/Traits_and_Specialties
+share/wesnoth/data/maps/multiplayer/BattleWorld
+share/wesnoth/data/maps/multiplayer/Blitz
+share/wesnoth/data/maps/multiplayer/CastleHoppingIsle
+share/wesnoth/data/maps/multiplayer/Castles
+share/wesnoth/data/maps/multiplayer/ForestofFear
+share/wesnoth/data/maps/multiplayer/King_of_the_Hill
+share/wesnoth/data/maps/multiplayer/Three_Rivers
+share/wesnoth/data/maps/multiplayer/Wesbowl
+share/wesnoth/data/maps/multiplayer/Weslin
share/wesnoth/data/multiplayer.cfg
share/wesnoth/data/names.cfg
share/wesnoth/data/sample_translation.cfg
share/wesnoth/data/scenario-test.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/Approaching_Weldyn.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Captured.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Crossing.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Elven_Alliance.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Escape_Tunnel.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/Evacuation.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Lake_Vrug.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Mal-Ravanals_Capital.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Northern_Outpost.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Ogre_Training.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/Reject.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/The_Drowned_Plains.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/The_Duel.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/The_Outpost.cfg
+share/wesnoth/data/scenarios/Eastern_Invasion/Throne_Room.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Tribal_Warfare.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Two_Paths.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/Undead_Border_Patrol.cfg
@@ -100,12 +289,14 @@ share/wesnoth/data/scenarios/Eastern_Invasion/Weldyn_Attack.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/deaths.cfg
share/wesnoth/data/scenarios/Eastern_Invasion/intro.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/A_Choice_Must_Be_Made.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/Battle_for_Wesnoth.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Bay_of_Pearls.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Blackwater_Port.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Crossroads.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Dwarven_Doors.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Elven_Council.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Elves_Besieged.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/Epilogue.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Ford_of_Abez.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Gryphon_Mountain.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Hasty_Alliance.cfg
@@ -127,6 +318,9 @@ share/wesnoth/data/scenarios/Heir_To_The_Throne/The_Lost_General.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/The_Siege_of_Elensefar.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Valley_of_Death.cfg
share/wesnoth/data/scenarios/Heir_To_The_Throne/Valley_of_Statues.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/bigmap.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/deaths.cfg
+share/wesnoth/data/scenarios/Heir_To_The_Throne/intro.cfg
share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Black_Flag.cfg
share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Clash_Of_Armies.cfg
share/wesnoth/data/scenarios/Son_Of_The_Black_Eye/Desert_Of_Death.cfg
@@ -147,6 +341,44 @@ share/wesnoth/data/scenarios/The_Dark_Hordes/Crelanus_Book.cfg
share/wesnoth/data/scenarios/The_Dark_Hordes/Inside_The_Tower.cfg
share/wesnoth/data/scenarios/The_Dark_Hordes/Mages_And_Elves.cfg
share/wesnoth/data/scenarios/The_Dark_Hordes/The_Skull_of_Agarash.cfg
+share/wesnoth/data/scenarios/The_Dark_Hordes/Underground_Pool.cfg
+share/wesnoth/data/scenarios/The_Dark_Hordes/intro.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Beach.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Final_Spring.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Harrowing_Escape.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_New_Land.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Spy_in_the_Woods.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/A_Summer_of_Storms.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Clearwater_Port.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Cursed_Isle.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Elf_Lords.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Epilogue.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Fallen_Lich_Point.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Peoples_in_Decline.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Return_of_the_Fleet.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Return_to_Oldwood.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Rise_of_Wesnoth.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Rough_Landing.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Sewer.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Southbay_in_Winter.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Temple_of_the_Deep.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Dragon.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Fall.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Midlands.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Oldwood.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Plan.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_River_Road.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/The_Vanguard.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/Troll_Hole.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-deaths.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-intro.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-macros.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-nlmsg.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-nohome.cfg
+share/wesnoth/data/scenarios/The_Rise_of_Wesnoth/trow-noisle.cfg
+share/wesnoth/data/scenarios/multiplayer/An_Island.cfg
+share/wesnoth/data/scenarios/multiplayer/Blitz.cfg
+share/wesnoth/data/scenarios/multiplayer/CastleHoppingIsle.cfg
share/wesnoth/data/scenarios/multiplayer/ForestOfFear.cfg
share/wesnoth/data/scenarios/multiplayer/Random_Scenario.cfg
share/wesnoth/data/scenarios/multiplayer/Wesbowl.cfg
@@ -154,12 +386,17 @@ share/wesnoth/data/scenarios/multiplayer/WeslinBridge.cfg
share/wesnoth/data/scenarios/multiplayer/battleworld.cfg
share/wesnoth/data/scenarios/multiplayer/castles.cfg
share/wesnoth/data/scenarios/multiplayer/scenarios.cfg
+share/wesnoth/data/scenarios/tutorial/Basic_Training.cfg
+share/wesnoth/data/scenarios/tutorial/Traits_and_Specialties.cfg
+share/wesnoth/data/scenarios/tutorial/utils.cfg
share/wesnoth/data/schedules.cfg
share/wesnoth/data/terrain-graphics.cfg
share/wesnoth/data/terrain-graphics/adjacent-north.cfg
share/wesnoth/data/terrain-graphics/adjacent.cfg
share/wesnoth/data/terrain-graphics/base.cfg
+share/wesnoth/data/terrain-graphics/bridges.cfg
share/wesnoth/data/terrain-graphics/buildings.cfg
+share/wesnoth/data/terrain-graphics/canyon.cfg
share/wesnoth/data/terrain-graphics/castle-transitions.cfg
share/wesnoth/data/terrain-graphics/castles.cfg
share/wesnoth/data/terrain-graphics/util.cfg
@@ -170,26 +407,22 @@ share/wesnoth/data/tools/exploder/castle-concave.cfg
share/wesnoth/data/tools/exploder/castle-convex.cfg
share/wesnoth/data/tools/exploder/castle-exploded-concave.cfg
share/wesnoth/data/tools/exploder/castle-exploded-convex.cfg
+share/wesnoth/data/tools/exploder/castle-wall-concave.cfg
+share/wesnoth/data/tools/exploder/castle-wall-convex.cfg
+share/wesnoth/data/tools/exploder/castle-wall-exploded-concave.cfg
+share/wesnoth/data/tools/exploder/castle-wall-exploded-convex.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-n-s.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-ne-sw.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-nw-se.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-s-n.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-se-nw.cfg
+share/wesnoth/data/tools/exploder/castle-wall-trans-sw-ne.cfg
share/wesnoth/data/tools/exploder/models/castle.cfg
-share/wesnoth/data/translations/brazilian.cfg
-share/wesnoth/data/translations/catalan.cfg
-share/wesnoth/data/translations/czech.cfg
-share/wesnoth/data/translations/danish.cfg
-share/wesnoth/data/translations/dutch.cfg
+share/wesnoth/data/tools/exploder/wall-concave.cfg
+share/wesnoth/data/tools/exploder/wall-convex.cfg
+share/wesnoth/data/tools/exploder/wall-exploded-concave.cfg
+share/wesnoth/data/tools/exploder/wall-exploded-convex.cfg
share/wesnoth/data/translations/english.cfg
-share/wesnoth/data/translations/finnish.cfg
-share/wesnoth/data/translations/french.cfg
-share/wesnoth/data/translations/german.cfg
-share/wesnoth/data/translations/hungarian.cfg
-share/wesnoth/data/translations/italian.cfg
-share/wesnoth/data/translations/norwegian.cfg
-share/wesnoth/data/translations/polish.cfg
-share/wesnoth/data/translations/portuguesebr.cfg
-share/wesnoth/data/translations/slovak.cfg
-share/wesnoth/data/translations/spanish.cfg
-share/wesnoth/data/translations/swedish.cfg
-share/wesnoth/data/tutorial.cfg
-share/wesnoth/data/tutorial2.cfg
share/wesnoth/data/units/Ancient_Lich.cfg
share/wesnoth/data/units/Ancient_Wose.cfg
share/wesnoth/data/units/Arch_Mage.cfg
@@ -208,30 +441,34 @@ share/wesnoth/data/units/Cockatrice.cfg
share/wesnoth/data/units/Commander.cfg
share/wesnoth/data/units/Cuttle_Fish.cfg
share/wesnoth/data/units/Dark_Adept.cfg
+share/wesnoth/data/units/Dark_Queen.cfg
share/wesnoth/data/units/Dark_Spirit.cfg
share/wesnoth/data/units/Death_Knight.cfg
share/wesnoth/data/units/Deathmaster.cfg
share/wesnoth/data/units/Demilich.cfg
share/wesnoth/data/units/Direwolf_Rider.cfg
share/wesnoth/data/units/Dragoon.cfg
-share/wesnoth/data/units/Drake_Beak.cfg
share/wesnoth/data/units/Drake_Burner.cfg
share/wesnoth/data/units/Drake_Clasher.cfg
share/wesnoth/data/units/Drake_Fighter.cfg
share/wesnoth/data/units/Drake_Fire.cfg
-share/wesnoth/data/units/Drake_Guard.cfg
-share/wesnoth/data/units/Drake_Mage.cfg
-share/wesnoth/data/units/Drake_Petit.cfg
+share/wesnoth/data/units/Drake_Flameheart.cfg
+share/wesnoth/data/units/Drake_Flare.cfg
+share/wesnoth/data/units/Drake_Gladiator.cfg
+share/wesnoth/data/units/Drake_Glider.cfg
+share/wesnoth/data/units/Drake_Inferno.cfg
+share/wesnoth/data/units/Drake_Sky.cfg
share/wesnoth/data/units/Drake_Slasher.cfg
-share/wesnoth/data/units/Drake_Slave.cfg
share/wesnoth/data/units/Drake_Warrior.cfg
-share/wesnoth/data/units/Drake_Worker.cfg
share/wesnoth/data/units/Duelist.cfg
share/wesnoth/data/units/Dwarvish_Berserker.cfg
share/wesnoth/data/units/Dwarvish_Dragonguard.cfg
share/wesnoth/data/units/Dwarvish_Fighter.cfg
+share/wesnoth/data/units/Dwarvish_Guardsman.cfg
share/wesnoth/data/units/Dwarvish_Lord.cfg
share/wesnoth/data/units/Dwarvish_Runemaster.cfg
+share/wesnoth/data/units/Dwarvish_Sentinel.cfg
+share/wesnoth/data/units/Dwarvish_Stalwart.cfg
share/wesnoth/data/units/Dwarvish_Steelclad.cfg
share/wesnoth/data/units/Dwarvish_Thunderer.cfg
share/wesnoth/data/units/Dwarvish_Thunderguard.cfg
@@ -243,8 +480,11 @@ share/wesnoth/data/units/Elvish_Avenger.cfg
share/wesnoth/data/units/Elvish_Captain.cfg
share/wesnoth/data/units/Elvish_Champion.cfg
share/wesnoth/data/units/Elvish_Druid.cfg
+share/wesnoth/data/units/Elvish_Enchantress.cfg
share/wesnoth/data/units/Elvish_Fighter.cfg
share/wesnoth/data/units/Elvish_Hero.cfg
+share/wesnoth/data/units/Elvish_High_Lord.cfg
+share/wesnoth/data/units/Elvish_Lady.cfg
share/wesnoth/data/units/Elvish_Lord.cfg
share/wesnoth/data/units/Elvish_Marksman.cfg
share/wesnoth/data/units/Elvish_Marshal.cfg
@@ -255,20 +495,28 @@ share/wesnoth/data/units/Elvish_Scout.cfg
share/wesnoth/data/units/Elvish_Shaman.cfg
share/wesnoth/data/units/Elvish_Sharpshooter.cfg
share/wesnoth/data/units/Elvish_Shyde.cfg
+share/wesnoth/data/units/Elvish_Sorceress.cfg
+share/wesnoth/data/units/Elvish_Sylph.cfg
share/wesnoth/data/units/Fencer.cfg
share/wesnoth/data/units/Fighter.cfg
+share/wesnoth/data/units/Fire_Dragon.cfg
+share/wesnoth/data/units/Fireball.cfg
share/wesnoth/data/units/Footpad.cfg
share/wesnoth/data/units/Galleon.cfg
share/wesnoth/data/units/Gate.cfg
share/wesnoth/data/units/General.cfg
share/wesnoth/data/units/Ghost.cfg
share/wesnoth/data/units/Ghoul.cfg
+share/wesnoth/data/units/Giant_Mudcrawler.cfg
share/wesnoth/data/units/Giant_Scorpion.cfg
share/wesnoth/data/units/Goblin_Direwolver.cfg
+share/wesnoth/data/units/Goblin_Impaler.cfg
share/wesnoth/data/units/Goblin_Knight.cfg
share/wesnoth/data/units/Goblin_Pillager.cfg
+share/wesnoth/data/units/Goblin_Spearman.cfg
share/wesnoth/data/units/Grand_Knight.cfg
share/wesnoth/data/units/Great_Mage.cfg
+share/wesnoth/data/units/Great_Troll.cfg
share/wesnoth/data/units/Gryphon.cfg
share/wesnoth/data/units/Gryphon_Master.cfg
share/wesnoth/data/units/Gryphon_Rider.cfg
@@ -289,23 +537,33 @@ share/wesnoth/data/units/Mage_of_Light.cfg
share/wesnoth/data/units/Master_Bowman.cfg
share/wesnoth/data/units/Merman.cfg
share/wesnoth/data/units/Merman_Lord.cfg
+share/wesnoth/data/units/Mudcrawler.cfg
share/wesnoth/data/units/Naga.cfg
share/wesnoth/data/units/Necromancer.cfg
share/wesnoth/data/units/Necrophage.cfg
share/wesnoth/data/units/Nightgaunt.cfg
+share/wesnoth/data/units/Noble_Commander.cfg
+share/wesnoth/data/units/Noble_Fighter.cfg
+share/wesnoth/data/units/Noble_Lord.cfg
+share/wesnoth/data/units/Noble_Youth.cfg
share/wesnoth/data/units/Ogre.cfg
share/wesnoth/data/units/Orcish_Archer.cfg
share/wesnoth/data/units/Orcish_Assassin.cfg
share/wesnoth/data/units/Orcish_Crossbow.cfg
share/wesnoth/data/units/Orcish_Crossbowman.cfg
share/wesnoth/data/units/Orcish_Grunt.cfg
+share/wesnoth/data/units/Orcish_Leader.cfg
share/wesnoth/data/units/Orcish_Ruler.cfg
share/wesnoth/data/units/Orcish_Shaman.cfg
share/wesnoth/data/units/Orcish_Slayer.cfg
+share/wesnoth/data/units/Orcish_Sovereign.cfg
share/wesnoth/data/units/Orcish_Warlord.cfg
share/wesnoth/data/units/Orcish_Warrior.cfg
share/wesnoth/data/units/Outlaw.cfg
+share/wesnoth/data/units/Outlaw_Princess.cfg
+share/wesnoth/data/units/Outlaw_Queen.cfg
share/wesnoth/data/units/Paladin.cfg
+share/wesnoth/data/units/Peasant.cfg
share/wesnoth/data/units/Pikeman.cfg
share/wesnoth/data/units/Pirate_Galleon.cfg
share/wesnoth/data/units/Poacher.cfg
@@ -315,7 +573,11 @@ share/wesnoth/data/units/Revenant.cfg
share/wesnoth/data/units/Rogue.cfg
share/wesnoth/data/units/Royal_Guard.cfg
share/wesnoth/data/units/Saurian.cfg
+share/wesnoth/data/units/Saurian_Icecaster.cfg
+share/wesnoth/data/units/Saurian_Soothsayer.cfg
+share/wesnoth/data/units/Saurian_Tribalist.cfg
share/wesnoth/data/units/Saurian_Warrior.cfg
+share/wesnoth/data/units/Scout.cfg
share/wesnoth/data/units/Sea_Hag.cfg
share/wesnoth/data/units/Sea_Orc.cfg
share/wesnoth/data/units/Sea_Serpent.cfg
@@ -323,24 +585,31 @@ share/wesnoth/data/units/Sergeant.cfg
share/wesnoth/data/units/Shadow.cfg
share/wesnoth/data/units/Shock_Trooper.cfg
share/wesnoth/data/units/Silver_Mage.cfg
+share/wesnoth/data/units/Skeletal_Dragon.cfg
share/wesnoth/data/units/Skeleton.cfg
share/wesnoth/data/units/Skeleton_Archer.cfg
share/wesnoth/data/units/Sleeping_Gryphon.cfg
+share/wesnoth/data/units/Soul_Shooter.cfg
share/wesnoth/data/units/Soulless.cfg
share/wesnoth/data/units/Spearman.cfg
share/wesnoth/data/units/Spectre.cfg
share/wesnoth/data/units/Swordsman.cfg
+share/wesnoth/data/units/Tentacle.cfg
share/wesnoth/data/units/Thief.cfg
share/wesnoth/data/units/Thug.cfg
share/wesnoth/data/units/Transport_Galleon.cfg
share/wesnoth/data/units/Trapper.cfg
share/wesnoth/data/units/Triton.cfg
share/wesnoth/data/units/Troll.cfg
+share/wesnoth/data/units/Troll_Hero.cfg
+share/wesnoth/data/units/Troll_Rocklobber.cfg
share/wesnoth/data/units/Troll_Warrior.cfg
share/wesnoth/data/units/Troll_Whelp.cfg
share/wesnoth/data/units/Vampire_Bat.cfg
share/wesnoth/data/units/Vampire_Lady.cfg
share/wesnoth/data/units/Walking_Corpse.cfg
+share/wesnoth/data/units/Wall_Guard.cfg
+share/wesnoth/data/units/Warrior_King.cfg
share/wesnoth/data/units/Watch_Tower.cfg
share/wesnoth/data/units/White_Mage.cfg
share/wesnoth/data/units/Wolf_Rider.cfg
@@ -351,18 +620,13 @@ share/wesnoth/data/units/Young_Ogre.cfg
share/wesnoth/data/units/Youth.cfg
share/wesnoth/data/utils.cfg
share/wesnoth/fonts/Bepa-Roman.ttf
+share/wesnoth/fonts/FreeSans.ttf
share/wesnoth/fonts/Vera.ttf
-share/wesnoth/images/Afternoon.png
-share/wesnoth/images/Dawn.png
-share/wesnoth/images/Day.png
-share/wesnoth/images/Dusk.png
-share/wesnoth/images/FirstWatch.png
-share/wesnoth/images/Morning.png
-share/wesnoth/images/Night.png
-share/wesnoth/images/SecondWatch.png
-share/wesnoth/images/Underground.png
-share/wesnoth/images/UndergroundIllum.png
-share/wesnoth/images/ally-energy.png
+share/wesnoth/images/arch-mage+female-attack.png
+share/wesnoth/images/arch-mage+female-attack1.png
+share/wesnoth/images/arch-mage+female-attack2.png
+share/wesnoth/images/arch-mage+female-defend.png
+share/wesnoth/images/arch-mage+female.png
share/wesnoth/images/arch-mage-attack.png
share/wesnoth/images/arch-mage-attack1.png
share/wesnoth/images/arch-mage-attack2.png
@@ -393,12 +657,14 @@ share/wesnoth/images/attacks/entangle.png
share/wesnoth/images/attacks/faerie_touch.png
share/wesnoth/images/attacks/fangs.png
share/wesnoth/images/attacks/fireball.png
+share/wesnoth/images/attacks/fireclaws.png
share/wesnoth/images/attacks/fist.png
share/wesnoth/images/attacks/frenzy.png
share/wesnoth/images/attacks/gaze.png
share/wesnoth/images/attacks/halberd.png
share/wesnoth/images/attacks/hammer.png
share/wesnoth/images/attacks/hatchet.png
+share/wesnoth/images/attacks/iceball.png
share/wesnoth/images/attacks/ink.png
share/wesnoth/images/attacks/knife.png
share/wesnoth/images/attacks/lance.png
@@ -409,12 +675,15 @@ share/wesnoth/images/attacks/mace.png
share/wesnoth/images/attacks/missile.png
share/wesnoth/images/attacks/paladinsword.png
share/wesnoth/images/attacks/pike.png
+share/wesnoth/images/attacks/pincers.png
share/wesnoth/images/attacks/pistol.png
+share/wesnoth/images/attacks/pitchfork.png
share/wesnoth/images/attacks/rapier.png
share/wesnoth/images/attacks/short-sword.png
share/wesnoth/images/attacks/sling.png
share/wesnoth/images/attacks/spear.png
share/wesnoth/images/attacks/staff.png
+share/wesnoth/images/attacks/sting.png
share/wesnoth/images/attacks/sword.png
share/wesnoth/images/attacks/tentacle.png
share/wesnoth/images/attacks/thorns.png
@@ -456,6 +725,10 @@ share/wesnoth/images/buttons/slider.png
share/wesnoth/images/buttons/uparrow-button-active.png
share/wesnoth/images/buttons/uparrow-button-pressed.png
share/wesnoth/images/buttons/uparrow-button.png
+share/wesnoth/images/campaigns/The_Rise_of_Wesnoth/east.png
+share/wesnoth/images/campaigns/The_Rise_of_Wesnoth/trow-logo.png
+share/wesnoth/images/campaigns/The_Rise_of_Wesnoth/west.png
+share/wesnoth/images/cavespider-defend.png
share/wesnoth/images/cavespider.png
share/wesnoth/images/cockatrice-attack1.png
share/wesnoth/images/cockatrice-attack2.png
@@ -473,23 +746,29 @@ share/wesnoth/images/cursors/select.png
share/wesnoth/images/cursors/wait.png
share/wesnoth/images/cuttlefish-defend.png
share/wesnoth/images/cuttlefish.png
+share/wesnoth/images/deep-tentacle-attack.png
+share/wesnoth/images/deep-tentacle-defend.png
+share/wesnoth/images/deep-tentacle.png
share/wesnoth/images/direwolf_rider.png
-share/wesnoth/images/drake-beak-attack.png
-share/wesnoth/images/drake-beak-defend.png
-share/wesnoth/images/drake-beak.png
+share/wesnoth/images/drake-burner-attack-close.png
share/wesnoth/images/drake-burner-attack-close1.png
share/wesnoth/images/drake-burner-attack-close2.png
share/wesnoth/images/drake-burner-attack-ranged.png
+share/wesnoth/images/drake-burner-attack-ranged1.png
+share/wesnoth/images/drake-burner-attack-ranged2.png
share/wesnoth/images/drake-burner-defend.png
share/wesnoth/images/drake-burner-flying.png
share/wesnoth/images/drake-burner.png
+share/wesnoth/images/drake-clasher-attack-spear.png
share/wesnoth/images/drake-clasher-attack-spear1.png
share/wesnoth/images/drake-clasher-attack-spear2.png
+share/wesnoth/images/drake-clasher-attack-sword.png
share/wesnoth/images/drake-clasher-attack-sword1.png
share/wesnoth/images/drake-clasher-attack-sword2.png
share/wesnoth/images/drake-clasher-attack-sword3.png
share/wesnoth/images/drake-clasher-attack-sword4.png
share/wesnoth/images/drake-clasher-defend.png
+share/wesnoth/images/drake-clasher-flying.png
share/wesnoth/images/drake-clasher.png
share/wesnoth/images/drake-fighter-attack-close1.png
share/wesnoth/images/drake-fighter-attack-close2.png
@@ -498,25 +777,52 @@ share/wesnoth/images/drake-fighter-attack-fire2.png
share/wesnoth/images/drake-fighter-defend.png
share/wesnoth/images/drake-fighter-flying.png
share/wesnoth/images/drake-fighter.png
+share/wesnoth/images/drake-fire-attack-close.png
share/wesnoth/images/drake-fire-attack-close1.png
share/wesnoth/images/drake-fire-attack-close2.png
share/wesnoth/images/drake-fire-attack-ranged.png
share/wesnoth/images/drake-fire-defend.png
+share/wesnoth/images/drake-fire-flying.png
share/wesnoth/images/drake-fire.png
-share/wesnoth/images/drake-guard-attack-close1.png
-share/wesnoth/images/drake-guard-attack-close2.png
-share/wesnoth/images/drake-guard-attack-ranged.png
-share/wesnoth/images/drake-guard-defend.png
-share/wesnoth/images/drake-guard.png
-share/wesnoth/images/drake-mage-attack-close.png
-share/wesnoth/images/drake-mage-attack-ranged-breath.png
-share/wesnoth/images/drake-mage-attack-ranged-staff1.png
-share/wesnoth/images/drake-mage-attack-ranged-staff2.png
-share/wesnoth/images/drake-mage-defend.png
-share/wesnoth/images/drake-mage.png
-share/wesnoth/images/drake-petit-attack.png
-share/wesnoth/images/drake-petit-defend.png
-share/wesnoth/images/drake-petit.png
+share/wesnoth/images/drake-flameheart-attack-close0.png
+share/wesnoth/images/drake-flameheart-attack-close1.png
+share/wesnoth/images/drake-flameheart-attack-close2.png
+share/wesnoth/images/drake-flameheart-attack-close3.png
+share/wesnoth/images/drake-flameheart-attack-close4.png
+share/wesnoth/images/drake-flameheart-attack-ranged.png
+share/wesnoth/images/drake-flameheart-defend.png
+share/wesnoth/images/drake-flameheart-flying.png
+share/wesnoth/images/drake-flameheart-lead.png
+share/wesnoth/images/drake-flameheart.png
+share/wesnoth/images/drake-flare-attack-close.png
+share/wesnoth/images/drake-flare-attack-ranged.png
+share/wesnoth/images/drake-flare-defend.png
+share/wesnoth/images/drake-flare-flying.png
+share/wesnoth/images/drake-flare-lead.png
+share/wesnoth/images/drake-flare.png
+share/wesnoth/images/drake-gladiator-attack-mace.png
+share/wesnoth/images/drake-gladiator-attack-spear.png
+share/wesnoth/images/drake-gladiator-attack-sword.png
+share/wesnoth/images/drake-gladiator-defend.png
+share/wesnoth/images/drake-gladiator-flying.png
+share/wesnoth/images/drake-gladiator.png
+share/wesnoth/images/drake-glider-attack-close1.png
+share/wesnoth/images/drake-glider-attack-close2.png
+share/wesnoth/images/drake-glider-defend.png
+share/wesnoth/images/drake-glider-flying.png
+share/wesnoth/images/drake-glider-ranged-attack.png
+share/wesnoth/images/drake-glider.png
+share/wesnoth/images/drake-inferno-attack-close.png
+share/wesnoth/images/drake-inferno-attack-ranged.png
+share/wesnoth/images/drake-inferno-defend.png
+share/wesnoth/images/drake-inferno-flying.png
+share/wesnoth/images/drake-inferno.png
+share/wesnoth/images/drake-sky-attack-melee1.png
+share/wesnoth/images/drake-sky-attack-melee2.png
+share/wesnoth/images/drake-sky-attack-ranged-fire.png
+share/wesnoth/images/drake-sky-attack-ranged-impact.png
+share/wesnoth/images/drake-sky-defend.png
+share/wesnoth/images/drake-sky.png
share/wesnoth/images/drake-slasher-attack-blade1.png
share/wesnoth/images/drake-slasher-attack-blade2.png
share/wesnoth/images/drake-slasher-attack-blade3.png
@@ -527,21 +833,16 @@ share/wesnoth/images/drake-slasher-attack-spear1.png
share/wesnoth/images/drake-slasher-attack-spear2.png
share/wesnoth/images/drake-slasher-attack-spear3.png
share/wesnoth/images/drake-slasher-defend.png
+share/wesnoth/images/drake-slasher-flying.png
+share/wesnoth/images/drake-slasher-pierce.png
+share/wesnoth/images/drake-slasher-slash.png
share/wesnoth/images/drake-slasher.png
-share/wesnoth/images/drake-slave-attack1.png
-share/wesnoth/images/drake-slave-attack2.png
-share/wesnoth/images/drake-slave-defend.png
-share/wesnoth/images/drake-slave.png
share/wesnoth/images/drake-warrior-attack-close1.png
share/wesnoth/images/drake-warrior-attack-close2.png
share/wesnoth/images/drake-warrior-attack-ranged.png
share/wesnoth/images/drake-warrior-defend.png
share/wesnoth/images/drake-warrior-flying.png
share/wesnoth/images/drake-warrior.png
-share/wesnoth/images/drake-worker-attack1.png
-share/wesnoth/images/drake-worker-attack2.png
-share/wesnoth/images/drake-worker-defend.png
-share/wesnoth/images/drake-worker.png
share/wesnoth/images/dwarf-berserker-attack.png
share/wesnoth/images/dwarf-berserker-defend.png
share/wesnoth/images/dwarf-berserker.png
@@ -549,9 +850,14 @@ share/wesnoth/images/dwarf-dragonguard-attack-close.png
share/wesnoth/images/dwarf-dragonguard-attack-ranged.png
share/wesnoth/images/dwarf-dragonguard-defend.png
share/wesnoth/images/dwarf-dragonguard.png
+share/wesnoth/images/dwarf-fighter-attack-mace.png
share/wesnoth/images/dwarf-fighter-attack.png
share/wesnoth/images/dwarf-fighter-defend.png
share/wesnoth/images/dwarf-fighter.png
+share/wesnoth/images/dwarf-guard-attack.png
+share/wesnoth/images/dwarf-guard-defend.png
+share/wesnoth/images/dwarf-guard.png
+share/wesnoth/images/dwarf-lord-attack-mace.png
share/wesnoth/images/dwarf-lord-attack.png
share/wesnoth/images/dwarf-lord-defend.png
share/wesnoth/images/dwarf-lord-ranged.png
@@ -559,6 +865,12 @@ share/wesnoth/images/dwarf-lord.png
share/wesnoth/images/dwarf-runemaster-attack.png
share/wesnoth/images/dwarf-runemaster-defend.png
share/wesnoth/images/dwarf-runemaster.png
+share/wesnoth/images/dwarf-sentinel-attack.png
+share/wesnoth/images/dwarf-sentinel-defend.png
+share/wesnoth/images/dwarf-sentinel.png
+share/wesnoth/images/dwarf-stalwart-attack.png
+share/wesnoth/images/dwarf-stalwart-defend.png
+share/wesnoth/images/dwarf-stalwart.png
share/wesnoth/images/dwarf-thunderer-attack.png
share/wesnoth/images/dwarf-thunderer-attack1.png
share/wesnoth/images/dwarf-thunderer-defend.png
@@ -571,6 +883,7 @@ share/wesnoth/images/dwarf-thunderguard.png
share/wesnoth/images/dwarf-ulfserker-attack.png
share/wesnoth/images/dwarf-ulfserker-defend.png
share/wesnoth/images/dwarf-ulfserker.png
+share/wesnoth/images/dwarf-warrior-attack-mace.png
share/wesnoth/images/dwarf-warrior-attack.png
share/wesnoth/images/dwarf-warrior-defend.png
share/wesnoth/images/dwarf-warrior.png
@@ -581,13 +894,29 @@ share/wesnoth/images/elder-mage-attack.png
share/wesnoth/images/elder-mage-defend.png
share/wesnoth/images/elder-mage-ranged.png
share/wesnoth/images/elder-mage.png
+share/wesnoth/images/elvish-archer+female-attack.png
+share/wesnoth/images/elvish-archer+female-attack1.png
+share/wesnoth/images/elvish-archer+female-attack2.png
+share/wesnoth/images/elvish-archer+female-attack3.png
+share/wesnoth/images/elvish-archer+female-bow-defend.png
+share/wesnoth/images/elvish-archer+female-bow.png
+share/wesnoth/images/elvish-archer+female-defend.png
+share/wesnoth/images/elvish-archer+female.png
share/wesnoth/images/elvish-archer-attack.png
share/wesnoth/images/elvish-archer-attack1.png
share/wesnoth/images/elvish-archer-attack2.png
share/wesnoth/images/elvish-archer-attack3.png
share/wesnoth/images/elvish-archer-bow-defend.png
+share/wesnoth/images/elvish-archer-bow.png
share/wesnoth/images/elvish-archer-defend.png
share/wesnoth/images/elvish-archer.png
+share/wesnoth/images/elvish-avenger+female-attack.png
+share/wesnoth/images/elvish-avenger+female-attack1.png
+share/wesnoth/images/elvish-avenger+female-attack2.png
+share/wesnoth/images/elvish-avenger+female-bow-defend.png
+share/wesnoth/images/elvish-avenger+female-bow.png
+share/wesnoth/images/elvish-avenger+female-defend.png
+share/wesnoth/images/elvish-avenger+female.png
share/wesnoth/images/elvish-avenger-attack.png
share/wesnoth/images/elvish-avenger-attack1.png
share/wesnoth/images/elvish-avenger-attack2.png
@@ -619,8 +948,33 @@ share/wesnoth/images/elvish-druid-healing2.png
share/wesnoth/images/elvish-druid-healing3.png
share/wesnoth/images/elvish-druid-healing4.png
share/wesnoth/images/elvish-druid-healing5.png
+share/wesnoth/images/elvish-druid-healing6.png
+share/wesnoth/images/elvish-druid-healing7.png
+share/wesnoth/images/elvish-druid-healing8.png
share/wesnoth/images/elvish-druid-ranged.png
share/wesnoth/images/elvish-druid.png
+share/wesnoth/images/elvish-enchantress-attack1.png
+share/wesnoth/images/elvish-enchantress-attack2.png
+share/wesnoth/images/elvish-enchantress-attack3.png
+share/wesnoth/images/elvish-enchantress-attack4.png
+share/wesnoth/images/elvish-enchantress-attack5.png
+share/wesnoth/images/elvish-enchantress-attack6.png
+share/wesnoth/images/elvish-enchantress-attack7.png
+share/wesnoth/images/elvish-enchantress-defend.png
+share/wesnoth/images/elvish-enchantress-entangle1.png
+share/wesnoth/images/elvish-enchantress-entangle2.png
+share/wesnoth/images/elvish-enchantress-entangle3.png
+share/wesnoth/images/elvish-enchantress-entangle4.png
+share/wesnoth/images/elvish-enchantress-entangle5.png
+share/wesnoth/images/elvish-enchantress-entangle6.png
+share/wesnoth/images/elvish-enchantress-entangle7.png
+share/wesnoth/images/elvish-enchantress-melee1.png
+share/wesnoth/images/elvish-enchantress-melee2.png
+share/wesnoth/images/elvish-enchantress-melee3.png
+share/wesnoth/images/elvish-enchantress-melee4.png
+share/wesnoth/images/elvish-enchantress-melee5.png
+share/wesnoth/images/elvish-enchantress-ranged-defend.png
+share/wesnoth/images/elvish-enchantress.png
share/wesnoth/images/elvish-fighter-attack.png
share/wesnoth/images/elvish-fighter-bow-attack1.png
share/wesnoth/images/elvish-fighter-bow-attack2.png
@@ -635,11 +989,24 @@ share/wesnoth/images/elvish-hero-bow-defend.png
share/wesnoth/images/elvish-hero-bow.png
share/wesnoth/images/elvish-hero-defend.png
share/wesnoth/images/elvish-hero.png
+share/wesnoth/images/elvish-high-lord-defend.png
+share/wesnoth/images/elvish-high-lord-melee.png
+share/wesnoth/images/elvish-high-lord-ranged1.png
+share/wesnoth/images/elvish-high-lord-ranged2.png
+share/wesnoth/images/elvish-high-lord-ranged3.png
+share/wesnoth/images/elvish-high-lord.png
share/wesnoth/images/elvish-lord-defend.png
share/wesnoth/images/elvish-lord-melee.png
share/wesnoth/images/elvish-lord-ranged1.png
share/wesnoth/images/elvish-lord-ranged2.png
share/wesnoth/images/elvish-lord.png
+share/wesnoth/images/elvish-marksman+female-attack.png
+share/wesnoth/images/elvish-marksman+female-attack1.png
+share/wesnoth/images/elvish-marksman+female-attack2.png
+share/wesnoth/images/elvish-marksman+female-attack3.png
+share/wesnoth/images/elvish-marksman+female-bow-defend.png
+share/wesnoth/images/elvish-marksman+female-defend.png
+share/wesnoth/images/elvish-marksman+female.png
share/wesnoth/images/elvish-marksman-attack.png
share/wesnoth/images/elvish-marksman-attack1.png
share/wesnoth/images/elvish-marksman-attack2.png
@@ -658,6 +1025,13 @@ share/wesnoth/images/elvish-outrider-attack1.png
share/wesnoth/images/elvish-outrider-attack2.png
share/wesnoth/images/elvish-outrider-defend.png
share/wesnoth/images/elvish-outrider.png
+share/wesnoth/images/elvish-ranger+female-attack.png
+share/wesnoth/images/elvish-ranger+female-attack1.png
+share/wesnoth/images/elvish-ranger+female-attack2.png
+share/wesnoth/images/elvish-ranger+female-attack3.png
+share/wesnoth/images/elvish-ranger+female-bow-defend.png
+share/wesnoth/images/elvish-ranger+female-defend.png
+share/wesnoth/images/elvish-ranger+female.png
share/wesnoth/images/elvish-ranger-attack.png
share/wesnoth/images/elvish-ranger-attack1.png
share/wesnoth/images/elvish-ranger-attack2.png
@@ -687,10 +1061,18 @@ share/wesnoth/images/elvish-shaman-heal4.png
share/wesnoth/images/elvish-shaman-heal5.png
share/wesnoth/images/elvish-shaman-healing.png
share/wesnoth/images/elvish-shaman.png
+share/wesnoth/images/elvish-sharpshooter+female-attack.png
+share/wesnoth/images/elvish-sharpshooter+female-attack1.png
+share/wesnoth/images/elvish-sharpshooter+female-attack2.png
+share/wesnoth/images/elvish-sharpshooter+female-attack3.png
+share/wesnoth/images/elvish-sharpshooter+female-bow-defend.png
+share/wesnoth/images/elvish-sharpshooter+female-defend.png
+share/wesnoth/images/elvish-sharpshooter+female.png
share/wesnoth/images/elvish-sharpshooter-attack.png
share/wesnoth/images/elvish-sharpshooter-attack1.png
share/wesnoth/images/elvish-sharpshooter-attack2.png
share/wesnoth/images/elvish-sharpshooter-attack3.png
+share/wesnoth/images/elvish-sharpshooter-bow-defend.png
share/wesnoth/images/elvish-sharpshooter-defend.png
share/wesnoth/images/elvish-sharpshooter.png
share/wesnoth/images/elvish-shyde-defend.png
@@ -711,25 +1093,85 @@ share/wesnoth/images/elvish-shyde-healing8.png
share/wesnoth/images/elvish-shyde-healing9.png
share/wesnoth/images/elvish-shyde-ranged.png
share/wesnoth/images/elvish-shyde.png
-share/wesnoth/images/enemy-energy.png
-share/wesnoth/images/entangle.png
-share/wesnoth/images/fireball-halo.png
+share/wesnoth/images/elvish-sorceress-attack1.png
+share/wesnoth/images/elvish-sorceress-attack2.png
+share/wesnoth/images/elvish-sorceress-attack3.png
+share/wesnoth/images/elvish-sorceress-attack4.png
+share/wesnoth/images/elvish-sorceress-attack5.png
+share/wesnoth/images/elvish-sorceress-attack6.png
+share/wesnoth/images/elvish-sorceress-attack7.png
+share/wesnoth/images/elvish-sorceress-defend.png
+share/wesnoth/images/elvish-sorceress-entangle1.png
+share/wesnoth/images/elvish-sorceress-entangle2.png
+share/wesnoth/images/elvish-sorceress-entangle3.png
+share/wesnoth/images/elvish-sorceress-entangle4.png
+share/wesnoth/images/elvish-sorceress-entangle5.png
+share/wesnoth/images/elvish-sorceress-entangle6.png
+share/wesnoth/images/elvish-sorceress-entangle7.png
+share/wesnoth/images/elvish-sorceress-melee1.png
+share/wesnoth/images/elvish-sorceress-melee2.png
+share/wesnoth/images/elvish-sorceress-melee3.png
+share/wesnoth/images/elvish-sorceress-melee4.png
+share/wesnoth/images/elvish-sorceress-melee5.png
+share/wesnoth/images/elvish-sorceress-ranged-defend.png
+share/wesnoth/images/elvish-sorceress.png
+share/wesnoth/images/elvish-sylph-attack1.png
+share/wesnoth/images/elvish-sylph-attack2.png
+share/wesnoth/images/elvish-sylph-attack3.png
+share/wesnoth/images/elvish-sylph-attack4.png
+share/wesnoth/images/elvish-sylph-attack5.png
+share/wesnoth/images/elvish-sylph-defend.png
+share/wesnoth/images/elvish-sylph-ftouch-attack1.png
+share/wesnoth/images/elvish-sylph-ftouch-attack2.png
+share/wesnoth/images/elvish-sylph-ftouch-attack3.png
+share/wesnoth/images/elvish-sylph-gossamer-attack1.png
+share/wesnoth/images/elvish-sylph-gossamer-attack2.png
+share/wesnoth/images/elvish-sylph-gossamer-attack3.png
+share/wesnoth/images/elvish-sylph.png
+share/wesnoth/images/fire-dragon-attack-bite.png
+share/wesnoth/images/fire-dragon-attack-breath.png
+share/wesnoth/images/fire-dragon-attack-tail.png
+share/wesnoth/images/fire-dragon-defend.png
+share/wesnoth/images/fire-dragon.png
share/wesnoth/images/galleon.png
+share/wesnoth/images/giant-mudcrawler-attack1.png
+share/wesnoth/images/giant-mudcrawler-attack2.png
+share/wesnoth/images/giant-mudcrawler-defend.png
+share/wesnoth/images/giant-mudcrawler.png
share/wesnoth/images/goblin-direwolver-attack.png
share/wesnoth/images/goblin-direwolver.png
+share/wesnoth/images/goblin-impaler-attack-ranged1.png
+share/wesnoth/images/goblin-impaler-attack-ranged2.png
+share/wesnoth/images/goblin-impaler-attack1.png
+share/wesnoth/images/goblin-impaler-attack2.png
+share/wesnoth/images/goblin-impaler-defend.png
+share/wesnoth/images/goblin-impaler.png
share/wesnoth/images/goblin-knight-attack.png
share/wesnoth/images/goblin-knight.png
share/wesnoth/images/goblin-pillager-attack.png
share/wesnoth/images/goblin-pillager-attack2.png
share/wesnoth/images/goblin-pillager-defend.png
share/wesnoth/images/goblin-pillager.png
+share/wesnoth/images/goblin-spearman-attack.png
+share/wesnoth/images/goblin-spearman-defend.png
+share/wesnoth/images/goblin-spearman-melee.png
+share/wesnoth/images/goblin-spearman-ranged.png
+share/wesnoth/images/goblin-spearman.png
share/wesnoth/images/grand-knight-moving.png
share/wesnoth/images/grand-knight.png
+share/wesnoth/images/great-mage+female-attack.png
+share/wesnoth/images/great-mage+female-attack1.png
+share/wesnoth/images/great-mage+female-attack2.png
+share/wesnoth/images/great-mage+female-defend.png
+share/wesnoth/images/great-mage+female.png
share/wesnoth/images/great-mage-attack.png
share/wesnoth/images/great-mage-attack1.png
share/wesnoth/images/great-mage-attack2.png
share/wesnoth/images/great-mage-defend.png
share/wesnoth/images/great-mage.png
+share/wesnoth/images/great-troll-attack.png
+share/wesnoth/images/great-troll-defend.png
+share/wesnoth/images/great-troll.png
share/wesnoth/images/gryphon-master-attack1.png
share/wesnoth/images/gryphon-master-attack2.png
share/wesnoth/images/gryphon-master-defend.png
@@ -768,6 +1210,12 @@ share/wesnoth/images/halo/fireball4.png
share/wesnoth/images/halo/fireball5.png
share/wesnoth/images/halo/fireball6.png
share/wesnoth/images/halo/fireball7.png
+share/wesnoth/images/halo/ice-halo1.png
+share/wesnoth/images/halo/ice-halo2.png
+share/wesnoth/images/halo/ice-halo3.png
+share/wesnoth/images/halo/ice-halo4.png
+share/wesnoth/images/halo/ice-halo5.png
+share/wesnoth/images/halo/lighthouse-aura.png
share/wesnoth/images/halo/mage-halo1.png
share/wesnoth/images/halo/mage-halo10.png
share/wesnoth/images/halo/mage-halo11.png
@@ -826,17 +1274,25 @@ share/wesnoth/images/human-dragoon-range1.png
share/wesnoth/images/human-dragoon-range2.png
share/wesnoth/images/human-dragoon.png
share/wesnoth/images/human-duelist-defend.png
+share/wesnoth/images/human-duelist-ranged.png
share/wesnoth/images/human-duelist.png
share/wesnoth/images/human-fencer-attack.png
share/wesnoth/images/human-fencer-defend.png
share/wesnoth/images/human-fencer.png
+share/wesnoth/images/human-general-attack-crossbow.png
+share/wesnoth/images/human-general-attack-sword1.png
+share/wesnoth/images/human-general-attack-sword2.png
share/wesnoth/images/human-general-defend.png
share/wesnoth/images/human-general-leading.png
share/wesnoth/images/human-general.png
share/wesnoth/images/human-halbardier.png
+share/wesnoth/images/human-halberdier-pierce-1.png
+share/wesnoth/images/human-halberdier-pierce-2.png
share/wesnoth/images/human-heavyinfantry-attack.png
share/wesnoth/images/human-heavyinfantry-defend.png
share/wesnoth/images/human-heavyinfantry.png
+share/wesnoth/images/human-lieutenant-attack-crossbow.png
+share/wesnoth/images/human-lieutenant-attack-sword.png
share/wesnoth/images/human-lieutenant-defend.png
share/wesnoth/images/human-lieutenant-leading.png
share/wesnoth/images/human-lieutenant.png
@@ -848,6 +1304,8 @@ share/wesnoth/images/human-longbowman-defend.png
share/wesnoth/images/human-longbowman.png
share/wesnoth/images/human-masterbowman-defend.png
share/wesnoth/images/human-masterbowman.png
+share/wesnoth/images/human-pikeman-attack-1.png
+share/wesnoth/images/human-pikeman-attack-2.png
share/wesnoth/images/human-pikeman-defend.png
share/wesnoth/images/human-pikeman.png
share/wesnoth/images/human-princess-attack.png
@@ -855,14 +1313,17 @@ share/wesnoth/images/human-princess-defend.png
share/wesnoth/images/human-princess-leading.png
share/wesnoth/images/human-princess.png
share/wesnoth/images/human-queen.png
+share/wesnoth/images/human-royalguard-attack.png
share/wesnoth/images/human-royalguard-defend.png
share/wesnoth/images/human-royalguard.png
share/wesnoth/images/human-scout-attack.png
share/wesnoth/images/human-scout-defend.png
share/wesnoth/images/human-scout-moving.png
share/wesnoth/images/human-scout.png
-share/wesnoth/images/human-sergeant-attack.png
+share/wesnoth/images/human-sergeant-attack-crossbow.png
+share/wesnoth/images/human-sergeant-attack-sword.png
share/wesnoth/images/human-sergeant-defend.png
+share/wesnoth/images/human-sergeant-leading.png
share/wesnoth/images/human-sergeant.png
share/wesnoth/images/human-shocktrooper-attack.png
share/wesnoth/images/human-shocktrooper-defend.png
@@ -877,47 +1338,57 @@ share/wesnoth/images/human-spearman.png
share/wesnoth/images/human-swordman-attack.png
share/wesnoth/images/human-swordman-defend.png
share/wesnoth/images/human-swordman.png
+share/wesnoth/images/human-wallguard-attack.png
+share/wesnoth/images/human-wallguard-defense.png
+share/wesnoth/images/human-wallguard.png
share/wesnoth/images/icons/icon-display.png
share/wesnoth/images/icons/icon-general.png
share/wesnoth/images/icons/icon-hostgame.png
share/wesnoth/images/icons/icon-music.png
share/wesnoth/images/icons/icon-server.png
share/wesnoth/images/icons/icon-serverother.png
-share/wesnoth/images/item-ball1.png
-share/wesnoth/images/item-ball2.png
-share/wesnoth/images/item-barrel.png
-share/wesnoth/images/item-book1.png
-share/wesnoth/images/item-book2.png
-share/wesnoth/images/item-book3.png
-share/wesnoth/images/item-book4.png
-share/wesnoth/images/item-box.png
-share/wesnoth/images/item-dragonstatue.png
-share/wesnoth/images/item-flower1.png
-share/wesnoth/images/item-flower2.png
-share/wesnoth/images/item-flower3.png
-share/wesnoth/images/item-flower4.png
-share/wesnoth/images/item-leanto.png
-share/wesnoth/images/item-monolith.png
-share/wesnoth/images/item-monolith1.png
-share/wesnoth/images/item-monolith2.png
-share/wesnoth/images/item-monolith3.png
-share/wesnoth/images/item-monolith4.png
-share/wesnoth/images/item-ornate1.png
-share/wesnoth/images/item-ornate2.png
-share/wesnoth/images/item-pine1.png
-share/wesnoth/images/item-pine2.png
-share/wesnoth/images/item-potion1.png
-share/wesnoth/images/item-potion2.png
-share/wesnoth/images/item-potion3.png
-share/wesnoth/images/item-potion4.png
-share/wesnoth/images/item-ring1.png
-share/wesnoth/images/item-ring2.png
-share/wesnoth/images/item-rock1.png
-share/wesnoth/images/item-rock2.png
-share/wesnoth/images/item-rock3.png
-share/wesnoth/images/item-rock4.png
-share/wesnoth/images/item-slab.png
-share/wesnoth/images/item-well.png
+share/wesnoth/images/items/ball-blue.png
+share/wesnoth/images/items/ball-green.png
+share/wesnoth/images/items/barrel.png
+share/wesnoth/images/items/book1.png
+share/wesnoth/images/items/book2.png
+share/wesnoth/images/items/book3.png
+share/wesnoth/images/items/book4.png
+share/wesnoth/images/items/box.png
+share/wesnoth/images/items/castle-ruins.png
+share/wesnoth/images/items/chest-plain-closed.png
+share/wesnoth/images/items/chest-plain-open.png
+share/wesnoth/images/items/dragonstatue.png
+share/wesnoth/images/items/fire.png
+share/wesnoth/images/items/flower1.png
+share/wesnoth/images/items/flower2.png
+share/wesnoth/images/items/flower3.png
+share/wesnoth/images/items/flower4.png
+share/wesnoth/images/items/gohere.png
+share/wesnoth/images/items/leanto.png
+share/wesnoth/images/items/lighthouse.png
+share/wesnoth/images/items/monolith1.png
+share/wesnoth/images/items/monolith2.png
+share/wesnoth/images/items/monolith3.png
+share/wesnoth/images/items/monolith4.png
+share/wesnoth/images/items/orcish-flag.png
+share/wesnoth/images/items/ornate1.png
+share/wesnoth/images/items/ornate2.png
+share/wesnoth/images/items/pine1.png
+share/wesnoth/images/items/pine2.png
+share/wesnoth/images/items/potion-blue.png
+share/wesnoth/images/items/potion-grey.png
+share/wesnoth/images/items/potion-red.png
+share/wesnoth/images/items/potion-yellow.png
+share/wesnoth/images/items/ring1.png
+share/wesnoth/images/items/ring2.png
+share/wesnoth/images/items/rock1.png
+share/wesnoth/images/items/rock2.png
+share/wesnoth/images/items/rock3.png
+share/wesnoth/images/items/rock4.png
+share/wesnoth/images/items/signpost.png
+share/wesnoth/images/items/slab.png
+share/wesnoth/images/items/well.png
share/wesnoth/images/knight-attack.png
share/wesnoth/images/knight-defend.png
share/wesnoth/images/knight-moving.png
@@ -941,15 +1412,26 @@ share/wesnoth/images/konrad-young.png
share/wesnoth/images/lancer-attack.png
share/wesnoth/images/lancer-defend.png
share/wesnoth/images/lancer.png
-share/wesnoth/images/lightning-bolt.png
-share/wesnoth/images/lightning-n.png
-share/wesnoth/images/lightning-ne.png
+share/wesnoth/images/mage+female-attack.png
+share/wesnoth/images/mage+female-attack1.png
+share/wesnoth/images/mage+female-attack2.png
+share/wesnoth/images/mage+female-attack3.png
+share/wesnoth/images/mage+female-defend.png
+share/wesnoth/images/mage+female.png
share/wesnoth/images/mage-attack.png
share/wesnoth/images/mage-attack1.png
share/wesnoth/images/mage-attack2.png
share/wesnoth/images/mage-attack3.png
share/wesnoth/images/mage-defend.png
share/wesnoth/images/mage.png
+share/wesnoth/images/maps/eastern_invasion.png
+share/wesnoth/images/maps/sotbe.png
+share/wesnoth/images/maps/sotbe1.png
+share/wesnoth/images/maps/sotbe2.png
+share/wesnoth/images/maps/sotbe3.png
+share/wesnoth/images/maps/the_great_continent.png
+share/wesnoth/images/maps/the_green_isle.png
+share/wesnoth/images/maps/wesnoth.png
share/wesnoth/images/merman-attack.png
share/wesnoth/images/merman-defend.png
share/wesnoth/images/merman-king-attack.png
@@ -957,6 +1439,11 @@ share/wesnoth/images/merman-king-defend.png
share/wesnoth/images/merman-king.png
share/wesnoth/images/merman.png
share/wesnoth/images/misc/ball.png
+share/wesnoth/images/misc/bar-energy-ally.png
+share/wesnoth/images/misc/bar-energy-enemy.png
+share/wesnoth/images/misc/bar-energy-moved.png
+share/wesnoth/images/misc/bar-energy-partmoved.png
+share/wesnoth/images/misc/bar-energy-unmoved.png
share/wesnoth/images/misc/blank.png
share/wesnoth/images/misc/botleft-corner.png
share/wesnoth/images/misc/botright-corner.png
@@ -966,7 +1453,6 @@ share/wesnoth/images/misc/chest.png
share/wesnoth/images/misc/compass-north.png
share/wesnoth/images/misc/compass-south.png
share/wesnoth/images/misc/cross.png
-share/wesnoth/images/misc/delfador.png
share/wesnoth/images/misc/disk.png
share/wesnoth/images/misc/dot.png
share/wesnoth/images/misc/ellipse-1-bottom.png
@@ -1016,10 +1502,6 @@ share/wesnoth/images/misc/item-holywater.png
share/wesnoth/images/misc/item-sceptreoffire.png
share/wesnoth/images/misc/item-staff.png
share/wesnoth/images/misc/item-stormtrident.png
-share/wesnoth/images/misc/kalenz.png
-share/wesnoth/images/misc/konrad.png
-share/wesnoth/images/misc/lisar.png
-share/wesnoth/images/misc/lisar_b.png
share/wesnoth/images/misc/lobby.png
share/wesnoth/images/misc/logo.png
share/wesnoth/images/misc/mainmenu-background.png
@@ -1031,7 +1513,6 @@ share/wesnoth/images/misc/mainmenu-border-right.png
share/wesnoth/images/misc/mainmenu-border-top.png
share/wesnoth/images/misc/mainmenu-border-topleft.png
share/wesnoth/images/misc/mainmenu-border-topright.png
-share/wesnoth/images/misc/map.png
share/wesnoth/images/misc/menu-background.png
share/wesnoth/images/misc/menu-border-botleft.png
share/wesnoth/images/misc/menu-border-botright.png
@@ -1055,6 +1536,36 @@ share/wesnoth/images/misc/rightside-bg.png
share/wesnoth/images/misc/rightside-bottom.png
share/wesnoth/images/misc/rightside-editor.png
share/wesnoth/images/misc/rightside.png
+share/wesnoth/images/misc/schedule-afternoon.png
+share/wesnoth/images/misc/schedule-dawn.png
+share/wesnoth/images/misc/schedule-day.png
+share/wesnoth/images/misc/schedule-dusk.png
+share/wesnoth/images/misc/schedule-firstwatch.png
+share/wesnoth/images/misc/schedule-morning.png
+share/wesnoth/images/misc/schedule-night.png
+share/wesnoth/images/misc/schedule-secondwatch.png
+share/wesnoth/images/misc/schedule-underground-illum.png
+share/wesnoth/images/misc/schedule-underground.png
+share/wesnoth/images/misc/selected-ellipse-1-bottom.png
+share/wesnoth/images/misc/selected-ellipse-1-top.png
+share/wesnoth/images/misc/selected-ellipse-10-bottom.png
+share/wesnoth/images/misc/selected-ellipse-10-top.png
+share/wesnoth/images/misc/selected-ellipse-2-bottom.png
+share/wesnoth/images/misc/selected-ellipse-2-top.png
+share/wesnoth/images/misc/selected-ellipse-3-bottom.png
+share/wesnoth/images/misc/selected-ellipse-3-top.png
+share/wesnoth/images/misc/selected-ellipse-4-bottom.png
+share/wesnoth/images/misc/selected-ellipse-4-top.png
+share/wesnoth/images/misc/selected-ellipse-5-bottom.png
+share/wesnoth/images/misc/selected-ellipse-5-top.png
+share/wesnoth/images/misc/selected-ellipse-6-bottom.png
+share/wesnoth/images/misc/selected-ellipse-6-top.png
+share/wesnoth/images/misc/selected-ellipse-7-bottom.png
+share/wesnoth/images/misc/selected-ellipse-7-top.png
+share/wesnoth/images/misc/selected-ellipse-8-bottom.png
+share/wesnoth/images/misc/selected-ellipse-8-top.png
+share/wesnoth/images/misc/selected-ellipse-9-bottom.png
+share/wesnoth/images/misc/selected-ellipse-9-top.png
share/wesnoth/images/misc/slowed.png
share/wesnoth/images/misc/status-bg.png
%%LITE:%%share/wesnoth/images/misc/story0a.png
@@ -1084,7 +1595,9 @@ share/wesnoth/images/misc/trapdoor.png
share/wesnoth/images/misc/units.png
share/wesnoth/images/misc/upkeep.png
share/wesnoth/images/misc/villages.png
-share/wesnoth/images/moved-energy.png
+share/wesnoth/images/mudcrawler-attack.png
+share/wesnoth/images/mudcrawler-defend.png
+share/wesnoth/images/mudcrawler.png
share/wesnoth/images/naga-attack.png
share/wesnoth/images/naga-defend.png
share/wesnoth/images/naga.png
@@ -1096,11 +1609,30 @@ share/wesnoth/images/neutral-footpad-attack1.png
share/wesnoth/images/neutral-footpad-attack2.png
share/wesnoth/images/neutral-footpad-defend.png
share/wesnoth/images/neutral-footpad.png
+share/wesnoth/images/neutral-outlaw+female-attack.png
+share/wesnoth/images/neutral-outlaw+female-attack1.png
+share/wesnoth/images/neutral-outlaw+female-attack2.png
+share/wesnoth/images/neutral-outlaw+female-defend.png
+share/wesnoth/images/neutral-outlaw+female.png
share/wesnoth/images/neutral-outlaw-attack.png
share/wesnoth/images/neutral-outlaw-attack1.png
share/wesnoth/images/neutral-outlaw-attack2.png
share/wesnoth/images/neutral-outlaw-defend.png
+share/wesnoth/images/neutral-outlaw-princess-attack-mace.png
+share/wesnoth/images/neutral-outlaw-princess-attack-sling1.png
+share/wesnoth/images/neutral-outlaw-princess-attack-sling2.png
+share/wesnoth/images/neutral-outlaw-princess-defend.png
+share/wesnoth/images/neutral-outlaw-princess.png
+share/wesnoth/images/neutral-outlaw-queen-attack-mace.png
+share/wesnoth/images/neutral-outlaw-queen-attack-sling1.png
+share/wesnoth/images/neutral-outlaw-queen-attack-sling2.png
+share/wesnoth/images/neutral-outlaw-queen-defend.png
+share/wesnoth/images/neutral-outlaw-queen-leading.png
+share/wesnoth/images/neutral-outlaw-queen.png
share/wesnoth/images/neutral-outlaw.png
+share/wesnoth/images/neutral-peasant-attack.png
+share/wesnoth/images/neutral-peasant-defend.png
+share/wesnoth/images/neutral-peasant.png
share/wesnoth/images/neutral-poacher-attack.png
share/wesnoth/images/neutral-poacher-attack1.png
share/wesnoth/images/neutral-poacher-attack2.png
@@ -1114,6 +1646,24 @@ share/wesnoth/images/neutral-trapper-attack1.png
share/wesnoth/images/neutral-trapper-attack2.png
share/wesnoth/images/neutral-trapper-defend.png
share/wesnoth/images/neutral-trapper.png
+share/wesnoth/images/noble-commander-attack-ranged1.png
+share/wesnoth/images/noble-commander-attack-ranged2.png
+share/wesnoth/images/noble-commander-attack-sword.png
+share/wesnoth/images/noble-commander-defend.png
+share/wesnoth/images/noble-commander-leading.png
+share/wesnoth/images/noble-commander.png
+share/wesnoth/images/noble-fighter-attack.png
+share/wesnoth/images/noble-fighter-defend.png
+share/wesnoth/images/noble-fighter.png
+share/wesnoth/images/noble-lord-attack-ranged1.png
+share/wesnoth/images/noble-lord-attack-ranged2.png
+share/wesnoth/images/noble-lord-attack-sword.png
+share/wesnoth/images/noble-lord-defend.png
+share/wesnoth/images/noble-lord-leading.png
+share/wesnoth/images/noble-lord.png
+share/wesnoth/images/noble-youth-attack.png
+share/wesnoth/images/noble-youth-defend.png
+share/wesnoth/images/noble-youth.png
share/wesnoth/images/ogre.png
share/wesnoth/images/orc-archer-attack.png
share/wesnoth/images/orc-archer-attack2.png
@@ -1135,19 +1685,35 @@ share/wesnoth/images/orc-xbowman.png
share/wesnoth/images/orcish-grunt-attack.png
share/wesnoth/images/orcish-grunt-defend.png
share/wesnoth/images/orcish-grunt.png
+share/wesnoth/images/orcish-leader-attack.png
+share/wesnoth/images/orcish-leader-defend.png
+share/wesnoth/images/orcish-leader.png
+share/wesnoth/images/orcish-ruler-attack.png
+share/wesnoth/images/orcish-ruler-defend.png
share/wesnoth/images/orcish-ruler.png
share/wesnoth/images/orcish-shaman.png
share/wesnoth/images/orcish-shaman1.png
share/wesnoth/images/orcish-shaman2.png
+share/wesnoth/images/orcish-sovereign-attack1.png
+share/wesnoth/images/orcish-sovereign-attack2.png
+share/wesnoth/images/orcish-sovereign-defend.png
+share/wesnoth/images/orcish-sovereign.png
share/wesnoth/images/orcish-warlord.png
share/wesnoth/images/orcish-warrior-defend.png
share/wesnoth/images/orcish-warrior-melee1.png
share/wesnoth/images/orcish-warrior.png
+share/wesnoth/images/paladin-attack-sword.png
share/wesnoth/images/paladin-healing.png
share/wesnoth/images/paladin-moving.png
share/wesnoth/images/paladin.png
-share/wesnoth/images/partmoved-energy.png
+share/wesnoth/images/parandra.png
share/wesnoth/images/pirate-galleon.png
+share/wesnoth/images/portraits/Eastern_Invasion/dacyn.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/delfador.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/kalenz.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/konrad.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/lisar.png
+share/wesnoth/images/portraits/Heir_To_The_Throne/lisar_angry.png
share/wesnoth/images/projectiles/bone-n.png
share/wesnoth/images/projectiles/bone-ne.png
share/wesnoth/images/projectiles/bullet.png
@@ -1155,10 +1721,16 @@ share/wesnoth/images/projectiles/dagger-n.png
share/wesnoth/images/projectiles/dagger-ne.png
share/wesnoth/images/projectiles/darkmissile-n.png
share/wesnoth/images/projectiles/darkmissile-ne.png
+share/wesnoth/images/projectiles/entangle.png
share/wesnoth/images/projectiles/fireball.png
share/wesnoth/images/projectiles/gaze.png
share/wesnoth/images/projectiles/hatchet.png
+share/wesnoth/images/projectiles/icemissile-n.png
+share/wesnoth/images/projectiles/icemissile-ne.png
share/wesnoth/images/projectiles/ink.png
+share/wesnoth/images/projectiles/lightning-bolt.png
+share/wesnoth/images/projectiles/lightning-n.png
+share/wesnoth/images/projectiles/lightning-ne.png
share/wesnoth/images/projectiles/magicmissile-n.png
share/wesnoth/images/projectiles/magicmissile-ne.png
share/wesnoth/images/projectiles/missile-n.png
@@ -1168,6 +1740,8 @@ share/wesnoth/images/projectiles/missile-s.png
share/wesnoth/images/projectiles/missile-se.png
share/wesnoth/images/projectiles/missile-sw.png
share/wesnoth/images/projectiles/missile.png
+share/wesnoth/images/projectiles/pitchfork-n.png
+share/wesnoth/images/projectiles/pitchfork-ne.png
share/wesnoth/images/projectiles/spear-n.png
share/wesnoth/images/projectiles/spear-ne.png
share/wesnoth/images/projectiles/stone.png
@@ -1177,8 +1751,12 @@ share/wesnoth/images/projectiles/web.png
share/wesnoth/images/projectiles/whitemissile-n.png
share/wesnoth/images/projectiles/whitemissile-ne.png
share/wesnoth/images/random-enemy.png
-share/wesnoth/images/red-mage-attack.png
-share/wesnoth/images/red-mage-attack1.png
+share/wesnoth/images/red-mage+female-attack-melee.png
+share/wesnoth/images/red-mage+female-attack-ranged.png
+share/wesnoth/images/red-mage+female-defend.png
+share/wesnoth/images/red-mage+female.png
+share/wesnoth/images/red-mage-attack-melee.png
+share/wesnoth/images/red-mage-attack-ranged.png
share/wesnoth/images/red-mage-defend.png
share/wesnoth/images/red-mage.png
share/wesnoth/images/rogue-attack.png
@@ -1189,63 +1767,158 @@ share/wesnoth/images/saurian-attack1.png
share/wesnoth/images/saurian-attack2.png
share/wesnoth/images/saurian-attack3.png
share/wesnoth/images/saurian-defend.png
+share/wesnoth/images/saurian-icecaster-attack.png
+share/wesnoth/images/saurian-icecaster-defend.png
+share/wesnoth/images/saurian-icecaster-ranged1.png
+share/wesnoth/images/saurian-icecaster-ranged2.png
+share/wesnoth/images/saurian-icecaster-ranged3.png
+share/wesnoth/images/saurian-icecaster.png
+share/wesnoth/images/saurian-soothsayer-attack.png
+share/wesnoth/images/saurian-soothsayer-defend.png
+share/wesnoth/images/saurian-soothsayer-healing.png
+share/wesnoth/images/saurian-soothsayer-ranged.png
+share/wesnoth/images/saurian-soothsayer.png
+share/wesnoth/images/saurian-tribalist-attack.png
+share/wesnoth/images/saurian-tribalist-defend.png
+share/wesnoth/images/saurian-tribalist-heal.png
+share/wesnoth/images/saurian-tribalist-ranged1.png
+share/wesnoth/images/saurian-tribalist.png
share/wesnoth/images/saurian-warrior-attack1.png
share/wesnoth/images/saurian-warrior-attack2.png
share/wesnoth/images/saurian-warrior-defend.png
share/wesnoth/images/saurian-warrior-ranged.png
share/wesnoth/images/saurian-warrior.png
share/wesnoth/images/saurian.png
+share/wesnoth/images/scepter-princess-attack-scepter-1.png
+share/wesnoth/images/scepter-princess-attack-scepter-2.png
+share/wesnoth/images/scepter-princess-attack-scepter-3.png
+share/wesnoth/images/scepter-princess-attack-scepter.png
+share/wesnoth/images/scepter-princess-attack-sword.png
+share/wesnoth/images/scepter-princess-defend.png
+share/wesnoth/images/scepter-princess-leading.png
+share/wesnoth/images/scepter-princess.png
+share/wesnoth/images/scorpion-defend.png
share/wesnoth/images/scorpion-pincers-attack.png
+share/wesnoth/images/scorpion-sting-attack.png
share/wesnoth/images/scorpion.png
share/wesnoth/images/sea-hag-defend.png
share/wesnoth/images/sea-hag.png
share/wesnoth/images/sea-orc-attack.png
share/wesnoth/images/sea-orc-defend.png
share/wesnoth/images/sea-orc.png
+share/wesnoth/images/seaserpent-attack.png
+share/wesnoth/images/seaserpent-defend.png
share/wesnoth/images/seaserpent.png
+share/wesnoth/images/silver-mage+female-attack1.png
+share/wesnoth/images/silver-mage+female-attack2.png
+share/wesnoth/images/silver-mage+female-attack3.png
+share/wesnoth/images/silver-mage+female-defend.png
+share/wesnoth/images/silver-mage+female-melee.png
+share/wesnoth/images/silver-mage+female.png
share/wesnoth/images/silver-mage-attack1.png
share/wesnoth/images/silver-mage-attack2.png
share/wesnoth/images/silver-mage-attack3.png
share/wesnoth/images/silver-mage-defend.png
share/wesnoth/images/silver-mage-melee.png
+share/wesnoth/images/silver-mage-teleport1.png
+share/wesnoth/images/silver-mage-teleport10.png
+share/wesnoth/images/silver-mage-teleport2.png
+share/wesnoth/images/silver-mage-teleport3.png
+share/wesnoth/images/silver-mage-teleport4.png
+share/wesnoth/images/silver-mage-teleport5.png
+share/wesnoth/images/silver-mage-teleport6.png
+share/wesnoth/images/silver-mage-teleport7.png
+share/wesnoth/images/silver-mage-teleport8.png
+share/wesnoth/images/silver-mage-teleport9.png
share/wesnoth/images/silver-mage.png
-share/wesnoth/images/sotbe/bigmap.png
-share/wesnoth/images/sotbe/fire.png
-share/wesnoth/images/sotbe/flag.png
-share/wesnoth/images/sotbe/map1.png
-share/wesnoth/images/sotbe/map2.png
-share/wesnoth/images/sotbe/map3.png
+share/wesnoth/images/skeletal-dragon-attack-claws1.png
+share/wesnoth/images/skeletal-dragon-attack-claws2.png
+share/wesnoth/images/skeletal-dragon-attack-claws3.png
+share/wesnoth/images/skeletal-dragon-attack-jaw1.png
+share/wesnoth/images/skeletal-dragon-attack-jaw2.png
+share/wesnoth/images/skeletal-dragon-defend.png
+share/wesnoth/images/skeletal-dragon.png
share/wesnoth/images/terrain/alpha.png
share/wesnoth/images/terrain/alphamask.png
share/wesnoth/images/terrain/bridge-n-s.png
+share/wesnoth/images/terrain/bridge-n.png
share/wesnoth/images/terrain/bridge-ne-sw.png
+share/wesnoth/images/terrain/bridge-ne.png
+share/wesnoth/images/terrain/bridge-nw.png
+share/wesnoth/images/terrain/bridge-s.png
share/wesnoth/images/terrain/bridge-se-nw.png
+share/wesnoth/images/terrain/bridge-se.png
+share/wesnoth/images/terrain/bridge-sw.png
share/wesnoth/images/terrain/bridge.png
-share/wesnoth/images/terrain/castle-bg-concave-e.png
-share/wesnoth/images/terrain/castle-bg-concave-ne.png
-share/wesnoth/images/terrain/castle-bg-concave-nw.png
-share/wesnoth/images/terrain/castle-bg-concave-se.png
-share/wesnoth/images/terrain/castle-bg-concave-sw.png
-share/wesnoth/images/terrain/castle-bg-concave-w.png
-share/wesnoth/images/terrain/castle-bg-convex-e.png
-share/wesnoth/images/terrain/castle-bg-convex-ne.png
-share/wesnoth/images/terrain/castle-bg-convex-nw.png
-share/wesnoth/images/terrain/castle-bg-convex-se.png
-share/wesnoth/images/terrain/castle-bg-convex-sw.png
-share/wesnoth/images/terrain/castle-bg-convex-w.png
-share/wesnoth/images/terrain/castle-fg-concave-e.png
-share/wesnoth/images/terrain/castle-fg-concave-ne.png
-share/wesnoth/images/terrain/castle-fg-concave-nw.png
-share/wesnoth/images/terrain/castle-fg-concave-se.png
-share/wesnoth/images/terrain/castle-fg-concave-sw.png
-share/wesnoth/images/terrain/castle-fg-concave-w.png
-share/wesnoth/images/terrain/castle-fg-convex-e.png
-share/wesnoth/images/terrain/castle-fg-convex-ne.png
-share/wesnoth/images/terrain/castle-fg-convex-nw.png
-share/wesnoth/images/terrain/castle-fg-convex-se.png
-share/wesnoth/images/terrain/castle-fg-convex-sw.png
-share/wesnoth/images/terrain/castle-fg-convex-w.png
+share/wesnoth/images/terrain/canyon-all.png
+share/wesnoth/images/terrain/canyon-n-ne-s.png
+share/wesnoth/images/terrain/canyon-n-ne.png
+share/wesnoth/images/terrain/canyon-n-s.png
+share/wesnoth/images/terrain/canyon-n-se.png
+share/wesnoth/images/terrain/canyon-n.png
+share/wesnoth/images/terrain/canyon-ne-s.png
+share/wesnoth/images/terrain/canyon-ne-se.png
+share/wesnoth/images/terrain/canyon-ne-sw.png
+share/wesnoth/images/terrain/canyon-ne.png
+share/wesnoth/images/terrain/canyon-nw-n-ne.png
+share/wesnoth/images/terrain/canyon-nw-n-s.png
+share/wesnoth/images/terrain/canyon-nw-n.png
+share/wesnoth/images/terrain/canyon-nw-ne.png
+share/wesnoth/images/terrain/canyon-nw.png
+share/wesnoth/images/terrain/canyon-s-nw.png
+share/wesnoth/images/terrain/canyon-s-sw-n.png
+share/wesnoth/images/terrain/canyon-s-sw.png
+share/wesnoth/images/terrain/canyon-s.png
+share/wesnoth/images/terrain/canyon-se-nw.png
+share/wesnoth/images/terrain/canyon-se-s-n.png
+share/wesnoth/images/terrain/canyon-se-s-sw-n.png
+share/wesnoth/images/terrain/canyon-se-s-sw.png
+share/wesnoth/images/terrain/canyon-se-s.png
+share/wesnoth/images/terrain/canyon-se-sw.png
+share/wesnoth/images/terrain/canyon-se.png
+share/wesnoth/images/terrain/canyon-sw-n.png
+share/wesnoth/images/terrain/canyon-sw-nw.png
+share/wesnoth/images/terrain/canyon-sw.png
+share/wesnoth/images/terrain/canyon.png
+share/wesnoth/images/terrain/castle-concave-e.png
+share/wesnoth/images/terrain/castle-concave-ne.png
+share/wesnoth/images/terrain/castle-concave-nw.png
+share/wesnoth/images/terrain/castle-concave-se.png
+share/wesnoth/images/terrain/castle-concave-sw.png
+share/wesnoth/images/terrain/castle-concave-w.png
+share/wesnoth/images/terrain/castle-convex-e.png
+share/wesnoth/images/terrain/castle-convex-ne.png
+share/wesnoth/images/terrain/castle-convex-nw.png
+share/wesnoth/images/terrain/castle-convex-se.png
+share/wesnoth/images/terrain/castle-convex-sw.png
+share/wesnoth/images/terrain/castle-convex-w.png
+share/wesnoth/images/terrain/castle-walls.tmpl
share/wesnoth/images/terrain/castle.png
+share/wesnoth/images/terrain/cave-floor-n-ne-se-s.png
+share/wesnoth/images/terrain/cave-floor-n-ne-se.png
+share/wesnoth/images/terrain/cave-floor-n-ne.png
+share/wesnoth/images/terrain/cave-floor-n.png
+share/wesnoth/images/terrain/cave-floor-ne-se-s.png
+share/wesnoth/images/terrain/cave-floor-ne-se.png
+share/wesnoth/images/terrain/cave-floor-ne.png
+share/wesnoth/images/terrain/cave-floor-nw-n-ne.png
+share/wesnoth/images/terrain/cave-floor-nw-n.png
+share/wesnoth/images/terrain/cave-floor-nw.png
+share/wesnoth/images/terrain/cave-floor-s-sw-nw-n.png
+share/wesnoth/images/terrain/cave-floor-s-sw-nw.png
+share/wesnoth/images/terrain/cave-floor-s-sw.png
+share/wesnoth/images/terrain/cave-floor-s.png
+share/wesnoth/images/terrain/cave-floor-se-s-sw.png
+share/wesnoth/images/terrain/cave-floor-se-s.png
+share/wesnoth/images/terrain/cave-floor-se.png
+share/wesnoth/images/terrain/cave-floor-sw-nw-n.png
+share/wesnoth/images/terrain/cave-floor-sw-nw.png
+share/wesnoth/images/terrain/cave-floor-sw.png
+share/wesnoth/images/terrain/cave-floor.png
+share/wesnoth/images/terrain/cave-floor1.png
+share/wesnoth/images/terrain/cave-floor2.png
+share/wesnoth/images/terrain/cave-floor3.png
+share/wesnoth/images/terrain/cave-floor4.png
share/wesnoth/images/terrain/cave-n-ne-se-s.png
share/wesnoth/images/terrain/cave-n-ne-se.png
share/wesnoth/images/terrain/cave-n-ne.png
@@ -1266,6 +1939,18 @@ share/wesnoth/images/terrain/cave-sw-nw-n.png
share/wesnoth/images/terrain/cave-sw-nw.png
share/wesnoth/images/terrain/cave-sw.png
share/wesnoth/images/terrain/cave.png
+share/wesnoth/images/terrain/cavewall-concave-e.png
+share/wesnoth/images/terrain/cavewall-concave-ne.png
+share/wesnoth/images/terrain/cavewall-concave-nw.png
+share/wesnoth/images/terrain/cavewall-concave-se.png
+share/wesnoth/images/terrain/cavewall-concave-sw.png
+share/wesnoth/images/terrain/cavewall-concave-w.png
+share/wesnoth/images/terrain/cavewall-convex-e.png
+share/wesnoth/images/terrain/cavewall-convex-ne.png
+share/wesnoth/images/terrain/cavewall-convex-nw.png
+share/wesnoth/images/terrain/cavewall-convex-se.png
+share/wesnoth/images/terrain/cavewall-convex-sw.png
+share/wesnoth/images/terrain/cavewall-convex-w.png
share/wesnoth/images/terrain/cavewall.png
share/wesnoth/images/terrain/coast-n.png
share/wesnoth/images/terrain/coast-ne.png
@@ -1274,6 +1959,8 @@ share/wesnoth/images/terrain/coast-s.png
share/wesnoth/images/terrain/coast-se.png
share/wesnoth/images/terrain/coast-sw.png
share/wesnoth/images/terrain/coast.png
+share/wesnoth/images/terrain/coast2.png
+share/wesnoth/images/terrain/coast3.png
share/wesnoth/images/terrain/dark_grass.png
share/wesnoth/images/terrain/dawn.png
share/wesnoth/images/terrain/desert-n.png
@@ -1291,41 +1978,82 @@ share/wesnoth/images/terrain/dirt-s.png
share/wesnoth/images/terrain/dirt-se.png
share/wesnoth/images/terrain/dirt-sw.png
share/wesnoth/images/terrain/dirt.png
+share/wesnoth/images/terrain/dwarven-castle-concave-e.png
+share/wesnoth/images/terrain/dwarven-castle-concave-ne.png
+share/wesnoth/images/terrain/dwarven-castle-concave-nw.png
+share/wesnoth/images/terrain/dwarven-castle-concave-se.png
+share/wesnoth/images/terrain/dwarven-castle-concave-sw.png
+share/wesnoth/images/terrain/dwarven-castle-concave-w.png
+share/wesnoth/images/terrain/dwarven-castle-convex-e.png
+share/wesnoth/images/terrain/dwarven-castle-convex-ne.png
+share/wesnoth/images/terrain/dwarven-castle-convex-nw.png
+share/wesnoth/images/terrain/dwarven-castle-convex-se.png
+share/wesnoth/images/terrain/dwarven-castle-convex-sw.png
+share/wesnoth/images/terrain/dwarven-castle-convex-w.png
+share/wesnoth/images/terrain/dwarven-castle-floor.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-e.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-ne.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-nw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-se.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-sw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-ccw-w.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-e.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-ne.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-nw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-se.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-sw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-concave-w.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-e.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-ne.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-nw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-se.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-sw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-convex-w.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-e.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-ne.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-nw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-se.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-sw.png
+share/wesnoth/images/terrain/dwarven-castle-wall-cw-w.png
share/wesnoth/images/terrain/dwarven-doors.png
-share/wesnoth/images/terrain/encampment-bg-concave-e.png
-share/wesnoth/images/terrain/encampment-bg-concave-ne.png
-share/wesnoth/images/terrain/encampment-bg-concave-nw.png
-share/wesnoth/images/terrain/encampment-bg-concave-se.png
-share/wesnoth/images/terrain/encampment-bg-concave-sw.png
-share/wesnoth/images/terrain/encampment-bg-concave-w.png
-share/wesnoth/images/terrain/encampment-bg-convex-e.png
-share/wesnoth/images/terrain/encampment-bg-convex-ne.png
-share/wesnoth/images/terrain/encampment-bg-convex-nw.png
-share/wesnoth/images/terrain/encampment-bg-convex-se.png
-share/wesnoth/images/terrain/encampment-bg-convex-sw.png
-share/wesnoth/images/terrain/encampment-bg-convex-w.png
-share/wesnoth/images/terrain/encampment-fg-concave-e.png
-share/wesnoth/images/terrain/encampment-fg-concave-ne.png
-share/wesnoth/images/terrain/encampment-fg-concave-nw.png
-share/wesnoth/images/terrain/encampment-fg-concave-se.png
-share/wesnoth/images/terrain/encampment-fg-concave-sw.png
-share/wesnoth/images/terrain/encampment-fg-concave-w.png
-share/wesnoth/images/terrain/encampment-fg-convex-e.png
-share/wesnoth/images/terrain/encampment-fg-convex-ne.png
-share/wesnoth/images/terrain/encampment-fg-convex-nw.png
-share/wesnoth/images/terrain/encampment-fg-convex-se.png
-share/wesnoth/images/terrain/encampment-fg-convex-sw.png
-share/wesnoth/images/terrain/encampment-fg-convex-w.png
-share/wesnoth/images/terrain/flag-team1.png
-share/wesnoth/images/terrain/flag-team10.png
-share/wesnoth/images/terrain/flag-team2.png
-share/wesnoth/images/terrain/flag-team3.png
-share/wesnoth/images/terrain/flag-team4.png
-share/wesnoth/images/terrain/flag-team5.png
-share/wesnoth/images/terrain/flag-team6.png
-share/wesnoth/images/terrain/flag-team7.png
-share/wesnoth/images/terrain/flag-team8.png
-share/wesnoth/images/terrain/flag-team9.png
+share/wesnoth/images/terrain/dwarven-keep-floor.png
+share/wesnoth/images/terrain/dwarven-keep.png
+share/wesnoth/images/terrain/dwarven-village.png
+share/wesnoth/images/terrain/encampment-concave-e.png
+share/wesnoth/images/terrain/encampment-concave-ne.png
+share/wesnoth/images/terrain/encampment-concave-nw.png
+share/wesnoth/images/terrain/encampment-concave-se.png
+share/wesnoth/images/terrain/encampment-concave-sw.png
+share/wesnoth/images/terrain/encampment-concave-w.png
+share/wesnoth/images/terrain/encampment-convex-e.png
+share/wesnoth/images/terrain/encampment-convex-ne.png
+share/wesnoth/images/terrain/encampment-convex-nw.png
+share/wesnoth/images/terrain/encampment-convex-se.png
+share/wesnoth/images/terrain/encampment-convex-sw.png
+share/wesnoth/images/terrain/encampment-convex-w.png
+share/wesnoth/images/terrain/flag-sotbe-1.png
+share/wesnoth/images/terrain/flag-sotbe-2.png
+share/wesnoth/images/terrain/flag-sotbe-3.png
+share/wesnoth/images/terrain/flag-team1-1.png
+share/wesnoth/images/terrain/flag-team1-2.png
+share/wesnoth/images/terrain/flag-team10-1.png
+share/wesnoth/images/terrain/flag-team10-2.png
+share/wesnoth/images/terrain/flag-team2-1.png
+share/wesnoth/images/terrain/flag-team2-2.png
+share/wesnoth/images/terrain/flag-team3-1.png
+share/wesnoth/images/terrain/flag-team3-2.png
+share/wesnoth/images/terrain/flag-team4-1.png
+share/wesnoth/images/terrain/flag-team4-2.png
+share/wesnoth/images/terrain/flag-team5-1.png
+share/wesnoth/images/terrain/flag-team5-2.png
+share/wesnoth/images/terrain/flag-team6-1.png
+share/wesnoth/images/terrain/flag-team6-2.png
+share/wesnoth/images/terrain/flag-team7-1.png
+share/wesnoth/images/terrain/flag-team7-2.png
+share/wesnoth/images/terrain/flag-team8-1.png
+share/wesnoth/images/terrain/flag-team8-2.png
+share/wesnoth/images/terrain/flag-team9-1.png
+share/wesnoth/images/terrain/flag-team9-2.png
share/wesnoth/images/terrain/fog-n-ne-se-s.png
share/wesnoth/images/terrain/fog-n-ne-se.png
share/wesnoth/images/terrain/fog-n-ne.png
@@ -1352,9 +2080,14 @@ share/wesnoth/images/terrain/forest-ctrans-n.png
share/wesnoth/images/terrain/forest-ctrans-ne.png
share/wesnoth/images/terrain/forest-ctrans-nw-n-ne.png
share/wesnoth/images/terrain/forest-ctrans-nw-n.png
+share/wesnoth/images/terrain/forest-ctrans-nw-ne.png
share/wesnoth/images/terrain/forest-ctrans-nw.png
+share/wesnoth/images/terrain/forest-etrans-n-ne.png
+share/wesnoth/images/terrain/forest-etrans-n.png
share/wesnoth/images/terrain/forest-etrans-ne.png
share/wesnoth/images/terrain/forest-etrans-nw-n-ne.png
+share/wesnoth/images/terrain/forest-etrans-nw-n.png
+share/wesnoth/images/terrain/forest-etrans-nw-ne.png
share/wesnoth/images/terrain/forest-etrans-nw.png
share/wesnoth/images/terrain/forest-n-ne-se.png
share/wesnoth/images/terrain/forest-n-ne.png
@@ -1400,27 +2133,38 @@ share/wesnoth/images/terrain/forest5.png
share/wesnoth/images/terrain/forest6.png
share/wesnoth/images/terrain/forest7.png
share/wesnoth/images/terrain/forest8.png
+share/wesnoth/images/terrain/grassland-a.png
share/wesnoth/images/terrain/grassland-flowers.png
-share/wesnoth/images/terrain/grassland-n-ne-se-s.png
+share/wesnoth/images/terrain/grassland-flowers1.png
+share/wesnoth/images/terrain/grassland-flowers2.png
share/wesnoth/images/terrain/grassland-n-ne-se.png
share/wesnoth/images/terrain/grassland-n-ne.png
share/wesnoth/images/terrain/grassland-n.png
share/wesnoth/images/terrain/grassland-ne-se-s.png
share/wesnoth/images/terrain/grassland-ne-se.png
share/wesnoth/images/terrain/grassland-ne.png
+share/wesnoth/images/terrain/grassland-nw-n-ne.png
share/wesnoth/images/terrain/grassland-nw-n.png
share/wesnoth/images/terrain/grassland-nw.png
+share/wesnoth/images/terrain/grassland-r.png
+share/wesnoth/images/terrain/grassland-r1.png
+share/wesnoth/images/terrain/grassland-r2.png
+share/wesnoth/images/terrain/grassland-r3.png
+share/wesnoth/images/terrain/grassland-r4.png
share/wesnoth/images/terrain/grassland-rocks.png
-share/wesnoth/images/terrain/grassland-s-sw-nw-n.png
+share/wesnoth/images/terrain/grassland-rocks1.png
+share/wesnoth/images/terrain/grassland-rocks2.png
share/wesnoth/images/terrain/grassland-s-sw-nw.png
share/wesnoth/images/terrain/grassland-s-sw.png
share/wesnoth/images/terrain/grassland-s.png
+share/wesnoth/images/terrain/grassland-se-s-sw.png
share/wesnoth/images/terrain/grassland-se-s.png
share/wesnoth/images/terrain/grassland-se-sw-nw.png
share/wesnoth/images/terrain/grassland-se.png
share/wesnoth/images/terrain/grassland-sw-nw-n.png
share/wesnoth/images/terrain/grassland-sw-nw.png
share/wesnoth/images/terrain/grassland-sw.png
+share/wesnoth/images/terrain/grassland-test.png
share/wesnoth/images/terrain/grassland.png
share/wesnoth/images/terrain/grid.png
share/wesnoth/images/terrain/hills-n-ne.png
@@ -1445,61 +2189,45 @@ share/wesnoth/images/terrain/ice-se.png
share/wesnoth/images/terrain/ice-sw.png
share/wesnoth/images/terrain/ice.png
share/wesnoth/images/terrain/icebridge-se-nw.png
-share/wesnoth/images/terrain/keep-bg-inside-e.png
-share/wesnoth/images/terrain/keep-bg-inside-ne.png
-share/wesnoth/images/terrain/keep-bg-inside-nw.png
-share/wesnoth/images/terrain/keep-bg-inside-se.png
-share/wesnoth/images/terrain/keep-bg-inside-sw.png
-share/wesnoth/images/terrain/keep-bg-inside-w.png
-share/wesnoth/images/terrain/keep-bg-wall-0-e.png
-share/wesnoth/images/terrain/keep-bg-wall-0-ne.png
-share/wesnoth/images/terrain/keep-bg-wall-0-nw.png
-share/wesnoth/images/terrain/keep-bg-wall-0-se.png
-share/wesnoth/images/terrain/keep-bg-wall-0-sw.png
-share/wesnoth/images/terrain/keep-bg-wall-0-w.png
-share/wesnoth/images/terrain/keep-bg-wall-1-e.png
-share/wesnoth/images/terrain/keep-bg-wall-1-ne.png
-share/wesnoth/images/terrain/keep-bg-wall-1-nw.png
-share/wesnoth/images/terrain/keep-bg-wall-1-se.png
-share/wesnoth/images/terrain/keep-bg-wall-1-sw.png
-share/wesnoth/images/terrain/keep-bg-wall-1-w.png
-share/wesnoth/images/terrain/keep-bg-wall-e.png
-share/wesnoth/images/terrain/keep-bg-wall-ne.png
-share/wesnoth/images/terrain/keep-bg-wall-nw.png
-share/wesnoth/images/terrain/keep-bg-wall-se.png
-share/wesnoth/images/terrain/keep-bg-wall-sw.png
-share/wesnoth/images/terrain/keep-bg-wall-w.png
-share/wesnoth/images/terrain/keep-fg-inside-e.png
-share/wesnoth/images/terrain/keep-fg-inside-ne.png
-share/wesnoth/images/terrain/keep-fg-inside-nw.png
-share/wesnoth/images/terrain/keep-fg-inside-se.png
-share/wesnoth/images/terrain/keep-fg-inside-sw.png
-share/wesnoth/images/terrain/keep-fg-inside-w.png
-share/wesnoth/images/terrain/keep-fg-wall-0-e.png
-share/wesnoth/images/terrain/keep-fg-wall-0-ne.png
-share/wesnoth/images/terrain/keep-fg-wall-0-nw.png
-share/wesnoth/images/terrain/keep-fg-wall-0-se.png
-share/wesnoth/images/terrain/keep-fg-wall-0-sw.png
-share/wesnoth/images/terrain/keep-fg-wall-0-w.png
-share/wesnoth/images/terrain/keep-fg-wall-1-e.png
-share/wesnoth/images/terrain/keep-fg-wall-1-ne.png
-share/wesnoth/images/terrain/keep-fg-wall-1-nw.png
-share/wesnoth/images/terrain/keep-fg-wall-1-se.png
-share/wesnoth/images/terrain/keep-fg-wall-1-sw.png
-share/wesnoth/images/terrain/keep-fg-wall-1-w.png
-share/wesnoth/images/terrain/keep-fg-wall-e.png
-share/wesnoth/images/terrain/keep-fg-wall-ne.png
-share/wesnoth/images/terrain/keep-fg-wall-nw.png
-share/wesnoth/images/terrain/keep-fg-wall-se.png
-share/wesnoth/images/terrain/keep-fg-wall-sw.png
-share/wesnoth/images/terrain/keep-fg-wall-w.png
+share/wesnoth/images/terrain/keep-inside-e.png
+share/wesnoth/images/terrain/keep-inside-ne.png
+share/wesnoth/images/terrain/keep-inside-nw.png
+share/wesnoth/images/terrain/keep-inside-se.png
+share/wesnoth/images/terrain/keep-inside-sw.png
+share/wesnoth/images/terrain/keep-inside-w.png
+share/wesnoth/images/terrain/keep-wall-0-e.png
+share/wesnoth/images/terrain/keep-wall-0-ne.png
+share/wesnoth/images/terrain/keep-wall-0-nw.png
+share/wesnoth/images/terrain/keep-wall-0-se.png
+share/wesnoth/images/terrain/keep-wall-0-sw.png
+share/wesnoth/images/terrain/keep-wall-0-w.png
+share/wesnoth/images/terrain/keep-wall-1-e.png
+share/wesnoth/images/terrain/keep-wall-1-ne.png
+share/wesnoth/images/terrain/keep-wall-1-nw.png
+share/wesnoth/images/terrain/keep-wall-1-se.png
+share/wesnoth/images/terrain/keep-wall-1-sw.png
+share/wesnoth/images/terrain/keep-wall-1-w.png
+share/wesnoth/images/terrain/keep-wall-e.png
+share/wesnoth/images/terrain/keep-wall-ne.png
+share/wesnoth/images/terrain/keep-wall-nw.png
+share/wesnoth/images/terrain/keep-wall-se.png
+share/wesnoth/images/terrain/keep-wall-sw.png
+share/wesnoth/images/terrain/keep-wall-w.png
share/wesnoth/images/terrain/keep.png
+share/wesnoth/images/terrain/lava-n.png
+share/wesnoth/images/terrain/lava-ne.png
+share/wesnoth/images/terrain/lava-nw.png
+share/wesnoth/images/terrain/lava-s.png
+share/wesnoth/images/terrain/lava-se.png
+share/wesnoth/images/terrain/lava-sw.png
share/wesnoth/images/terrain/lava.png
share/wesnoth/images/terrain/mask.png
share/wesnoth/images/terrain/mine.png
share/wesnoth/images/terrain/mountains-n.png
share/wesnoth/images/terrain/mountains-ne.png
share/wesnoth/images/terrain/mountains-nw.png
+share/wesnoth/images/terrain/mountains-peak1.png
+share/wesnoth/images/terrain/mountains-peak2.png
share/wesnoth/images/terrain/mountains-s.png
share/wesnoth/images/terrain/mountains-se.png
share/wesnoth/images/terrain/mountains-sw.png
@@ -1513,18 +2241,32 @@ share/wesnoth/images/terrain/ocean-s.png
share/wesnoth/images/terrain/ocean-se.png
share/wesnoth/images/terrain/ocean-sw.png
share/wesnoth/images/terrain/ocean.png
+share/wesnoth/images/terrain/ocean2.png
+share/wesnoth/images/terrain/ocean3.png
share/wesnoth/images/terrain/out.png
share/wesnoth/images/terrain/pier.png
+share/wesnoth/images/terrain/road-n.png
+share/wesnoth/images/terrain/road-ne.png
+share/wesnoth/images/terrain/road-nw.png
+share/wesnoth/images/terrain/road-s.png
+share/wesnoth/images/terrain/road-se.png
+share/wesnoth/images/terrain/road-sw.png
share/wesnoth/images/terrain/road.png
share/wesnoth/images/terrain/rocks.png
-share/wesnoth/images/terrain/signpost.png
+share/wesnoth/images/terrain/snow-forest-n-ne.png
share/wesnoth/images/terrain/snow-forest-n.png
share/wesnoth/images/terrain/snow-forest-ne.png
+share/wesnoth/images/terrain/snow-forest-nw-n-ne.png
share/wesnoth/images/terrain/snow-forest-nw.png
+share/wesnoth/images/terrain/snow-forest-s-sw.png
share/wesnoth/images/terrain/snow-forest-s.png
+share/wesnoth/images/terrain/snow-forest-se-s-sw.png
+share/wesnoth/images/terrain/snow-forest-se-s.png
share/wesnoth/images/terrain/snow-forest-se.png
share/wesnoth/images/terrain/snow-forest-sw.png
share/wesnoth/images/terrain/snow-forest.png
+share/wesnoth/images/terrain/snow-forest2.png
+share/wesnoth/images/terrain/snow-forest3.png
share/wesnoth/images/terrain/snow-hills-n-ne.png
share/wesnoth/images/terrain/snow-hills-n.png
share/wesnoth/images/terrain/snow-hills-ne.png
@@ -1534,22 +2276,30 @@ share/wesnoth/images/terrain/snow-hills-s.png
share/wesnoth/images/terrain/snow-hills-se.png
share/wesnoth/images/terrain/snow-hills-sw.png
share/wesnoth/images/terrain/snow-hills.png
+share/wesnoth/images/terrain/snow-hills2.png
+share/wesnoth/images/terrain/snow-hills3.png
share/wesnoth/images/terrain/snow-n-ne-se-s.png
share/wesnoth/images/terrain/snow-n-ne-se.png
share/wesnoth/images/terrain/snow-n-ne.png
share/wesnoth/images/terrain/snow-n.png
+share/wesnoth/images/terrain/snow-ne-se-s-sw.png
share/wesnoth/images/terrain/snow-ne-se-s.png
share/wesnoth/images/terrain/snow-ne-se.png
share/wesnoth/images/terrain/snow-ne.png
+share/wesnoth/images/terrain/snow-nw-n-ne-se.png
+share/wesnoth/images/terrain/snow-nw-n-ne.png
share/wesnoth/images/terrain/snow-nw-n.png
share/wesnoth/images/terrain/snow-nw.png
share/wesnoth/images/terrain/snow-s-sw-nw-n.png
share/wesnoth/images/terrain/snow-s-sw-nw.png
share/wesnoth/images/terrain/snow-s-sw.png
share/wesnoth/images/terrain/snow-s.png
+share/wesnoth/images/terrain/snow-se-s-sw-nw.png
+share/wesnoth/images/terrain/snow-se-s-sw.png
share/wesnoth/images/terrain/snow-se-s.png
share/wesnoth/images/terrain/snow-se-sw-nw.png
share/wesnoth/images/terrain/snow-se.png
+share/wesnoth/images/terrain/snow-sw-nw-n-ne.png
share/wesnoth/images/terrain/snow-sw-nw-n.png
share/wesnoth/images/terrain/snow-sw-nw.png
share/wesnoth/images/terrain/snow-sw.png
@@ -1572,6 +2322,9 @@ share/wesnoth/images/terrain/trash.png
share/wesnoth/images/terrain/village-cave.png
share/wesnoth/images/terrain/village-coast.png
share/wesnoth/images/terrain/village-dusk.png
+share/wesnoth/images/terrain/village-dusk2.png
+share/wesnoth/images/terrain/village-dusk3.png
+share/wesnoth/images/terrain/village-dusk4.png
share/wesnoth/images/terrain/village-first_watch.png
share/wesnoth/images/terrain/village-human.png
share/wesnoth/images/terrain/village-n.png
@@ -1618,6 +2371,14 @@ share/wesnoth/images/tower.png
share/wesnoth/images/troll-grunt-attack.png
share/wesnoth/images/troll-grunt-defend.png
share/wesnoth/images/troll-grunt.png
+share/wesnoth/images/troll-hero-attack.png
+share/wesnoth/images/troll-hero-defend.png
+share/wesnoth/images/troll-hero.png
+share/wesnoth/images/troll-lobber-attack-melee.png
+share/wesnoth/images/troll-lobber-attack-ranged1.png
+share/wesnoth/images/troll-lobber-attack-ranged2.png
+share/wesnoth/images/troll-lobber-defend.png
+share/wesnoth/images/troll-lobber.png
share/wesnoth/images/troll-warrior-attack.png
share/wesnoth/images/troll-warrior.png
share/wesnoth/images/troll-whelp-attack.png
@@ -1653,6 +2414,7 @@ share/wesnoth/images/undead-darkspirit-attack.png
share/wesnoth/images/undead-darkspirit-attack1.png
share/wesnoth/images/undead-darkspirit-defend.png
share/wesnoth/images/undead-darkspirit.png
+share/wesnoth/images/undead-deathknight-attack.png
share/wesnoth/images/undead-deathknight.png
share/wesnoth/images/undead-deathmaster-attack1.png
share/wesnoth/images/undead-deathmaster-attack2.png
@@ -1705,6 +2467,11 @@ share/wesnoth/images/undead-skeleton.png
share/wesnoth/images/undead-soulless-defend.png
share/wesnoth/images/undead-soulless-melee.png
share/wesnoth/images/undead-soulless.png
+share/wesnoth/images/undead-soulshooter-attack.png
+share/wesnoth/images/undead-soulshooter-defend.png
+share/wesnoth/images/undead-soulshooter-ranged.png
+share/wesnoth/images/undead-soulshooter-ranged2.png
+share/wesnoth/images/undead-soulshooter.png
share/wesnoth/images/undead-spectre-attack.png
share/wesnoth/images/undead-spectre-attack1.png
share/wesnoth/images/undead-spectre-defend.png
@@ -1719,12 +2486,24 @@ share/wesnoth/images/undead-wraith-defend.png
share/wesnoth/images/undead-wraith.png
share/wesnoth/images/undead-zombie-attack.png
share/wesnoth/images/undead-zombie.png
-share/wesnoth/images/unmoved-energy.png
+share/wesnoth/images/warrior-king-attack1.png
+share/wesnoth/images/warrior-king-attack2.png
+share/wesnoth/images/warrior-king-defend.png
+share/wesnoth/images/warrior-king-leading.png
+share/wesnoth/images/warrior-king.png
share/wesnoth/images/wesnoth-icon.png
+share/wesnoth/images/white-cleric+female-attack.png
+share/wesnoth/images/white-cleric+female-attack1.png
+share/wesnoth/images/white-cleric+female-defend.png
+share/wesnoth/images/white-cleric+female.png
share/wesnoth/images/white-cleric-attack.png
share/wesnoth/images/white-cleric-attack1.png
share/wesnoth/images/white-cleric-defend.png
share/wesnoth/images/white-cleric.png
+share/wesnoth/images/white-mage+female-attack.png
+share/wesnoth/images/white-mage+female-attack1.png
+share/wesnoth/images/white-mage+female-defend.png
+share/wesnoth/images/white-mage+female.png
share/wesnoth/images/white-mage-attack.png
share/wesnoth/images/white-mage-attack1.png
share/wesnoth/images/white-mage-defend.png
@@ -1753,6 +2532,7 @@ share/wesnoth/images/young-ogre-attack.png
share/wesnoth/images/young-ogre.png
%%LITE:%%share/wesnoth/music/elf-land.ogg
%%LITE:%%share/wesnoth/music/frantic.ogg
+%%LITE:%%share/wesnoth/music/main_menu.ogg
%%LITE:%%share/wesnoth/music/underground.ogg
%%LITE:%%share/wesnoth/music/wesnoth-1.ogg
%%LITE:%%share/wesnoth/music/wesnoth-2.ogg
@@ -1768,16 +2548,22 @@ share/wesnoth/sounds/arrow-miss.wav
share/wesnoth/sounds/bell.wav
share/wesnoth/sounds/dagger-swish.wav
share/wesnoth/sounds/dart.wav
+share/wesnoth/sounds/eagle.wav
share/wesnoth/sounds/female-hit.wav
+share/wesnoth/sounds/female-strong-hit.wav
share/wesnoth/sounds/fire.wav
share/wesnoth/sounds/firearrow.wav
share/wesnoth/sounds/fist-swish.wav
share/wesnoth/sounds/ghoul-hit.wav
share/wesnoth/sounds/ghoul-swish.wav
+share/wesnoth/sounds/groan-strong.wav
share/wesnoth/sounds/groan.wav
share/wesnoth/sounds/gunshot.wav
share/wesnoth/sounds/heal.wav
+share/wesnoth/sounds/hiss-big.wav
+share/wesnoth/sounds/hiss.wav
share/wesnoth/sounds/horse-canter.wav
+share/wesnoth/sounds/horse-elf-canter.wav
share/wesnoth/sounds/knife.wav
share/wesnoth/sounds/leave.wav
share/wesnoth/sounds/lightning.wav
@@ -1787,10 +2573,14 @@ share/wesnoth/sounds/mermen-hit.wav
share/wesnoth/sounds/net.wav
share/wesnoth/sounds/open-chest.wav
share/wesnoth/sounds/orc-hit.wav
+share/wesnoth/sounds/orc-small-hit.wav
share/wesnoth/sounds/pistol.wav
share/wesnoth/sounds/receive.wav
share/wesnoth/sounds/skeleton-hit.wav
share/wesnoth/sounds/spear.wav
+share/wesnoth/sounds/squishy-hit.wav
+share/wesnoth/sounds/squishy-miss.wav
+share/wesnoth/sounds/squishy-strike.wav
share/wesnoth/sounds/staff.wav
share/wesnoth/sounds/sword-clang.wav
share/wesnoth/sounds/sword-swish.wav
@@ -1805,15 +2595,21 @@ share/wesnoth/sounds/zombie-hit.wav
@dirrm share/wesnoth/images/tools/exploder
@dirrm share/wesnoth/images/tools
@dirrm share/wesnoth/images/terrain
-@dirrm share/wesnoth/images/sotbe
@dirrm share/wesnoth/images/projectiles
+@dirrm share/wesnoth/images/portraits/Heir_To_The_Throne
+@dirrm share/wesnoth/images/portraits/Eastern_Invasion
+@dirrm share/wesnoth/images/portraits
@dirrm share/wesnoth/images/misc
+@dirrm share/wesnoth/images/maps
+@dirrm share/wesnoth/images/items
@dirrm share/wesnoth/images/icons
@dirrm share/wesnoth/images/help
@dirrm share/wesnoth/images/halo
@dirrm share/wesnoth/images/editor
@dirrm share/wesnoth/images/cursors-bw
@dirrm share/wesnoth/images/cursors
+@dirrm share/wesnoth/images/campaigns/The_Rise_of_Wesnoth
+@dirrm share/wesnoth/images/campaigns
@dirrm share/wesnoth/images/buttons
@dirrm share/wesnoth/images/attacks
@dirrm share/wesnoth/images
@@ -1825,16 +2621,19 @@ share/wesnoth/sounds/zombie-hit.wav
@dirrm share/wesnoth/data/tools
@dirrm share/wesnoth/data/themes
@dirrm share/wesnoth/data/terrain-graphics
+@dirrm share/wesnoth/data/scenarios/tutorial
@dirrm share/wesnoth/data/scenarios/multiplayer
+@dirrm share/wesnoth/data/scenarios/The_Rise_of_Wesnoth
@dirrm share/wesnoth/data/scenarios/The_Dark_Hordes
@dirrm share/wesnoth/data/scenarios/Son_Of_The_Black_Eye
@dirrm share/wesnoth/data/scenarios/Heir_To_The_Throne
@dirrm share/wesnoth/data/scenarios/Eastern_Invasion
@dirrm share/wesnoth/data/scenarios
+@dirrm share/wesnoth/data/maps/multiplayer
@dirrm share/wesnoth/data/maps/Tutorial
+@dirrm share/wesnoth/data/maps/The_Rise_of_Wesnoth
@dirrm share/wesnoth/data/maps/The_Dark_Hordes
@dirrm share/wesnoth/data/maps/Son_Of_The_Black_Eye
-@dirrm share/wesnoth/data/maps/Multiplayer
@dirrm share/wesnoth/data/maps/Heir_To_The_Throne
@dirrm share/wesnoth/data/maps/Eastern_Invasion
@dirrm share/wesnoth/data/maps