diff options
author | Philip Paeps <philip@FreeBSD.org> | 2008-04-03 09:44:00 +0000 |
---|---|---|
committer | Philip Paeps <philip@FreeBSD.org> | 2008-04-03 09:44:00 +0000 |
commit | b29079fc400a2e74e4781826c1403ebb01ad723a (patch) | |
tree | a4f382b58db92166b83a94dd2cb4484fb2e2e296 /games/wesnoth | |
parent | 9738e89833872bfbacff0e22efed3bfa5bddcf47 (diff) | |
download | ports-b29079fc400a2e74e4781826c1403ebb01ad723a.tar.gz ports-b29079fc400a2e74e4781826c1403ebb01ad723a.zip |
Update to 1.4.
From the release notes:
| For players, the 1.4 version brings you no fewer than seven new
| mainline campaigns, a redesigned user interface, an amazing variety
| of high-quality new game music, and a refresh of the game artwork
| including improved portrait images for many unit types. For
| designers, the map editor and WML have been enhanced to
| significantly increase your creative options in writing scenarios.
See also: http://www.wesnoth.org/start/1.4/
Notes
Notes:
svn path=/head/; revision=210427
Diffstat (limited to 'games/wesnoth')
-rw-r--r-- | games/wesnoth/Makefile | 23 | ||||
-rw-r--r-- | games/wesnoth/distinfo | 6 | ||||
-rw-r--r-- | games/wesnoth/files/patch-fix_freebsd4_build_towupper | 29 | ||||
-rw-r--r-- | games/wesnoth/pkg-plist | 11997 |
4 files changed, 7122 insertions, 4933 deletions
diff --git a/games/wesnoth/Makefile b/games/wesnoth/Makefile index 4419256d0b5e..ef2c5913200c 100644 --- a/games/wesnoth/Makefile +++ b/games/wesnoth/Makefile @@ -6,19 +6,18 @@ # PORTNAME= wesnoth -PORTVERSION= 1.2.8 -PORTREVISION= 2 +PORTVERSION= 1.4 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.wesnoth.org/files/ MASTER_SITE_SUBDIR= wesnoth -LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost \ + freetype.9:${PORTSDIR}/print/freetype2 MAINTAINER= philip@FreeBSD.org COMMENT= A fantasy turn-based strategy game -USE_GCC= 3.4+ USE_SDL= image mixer net USE_GNOME= gnometarget USE_GMAKE= yes @@ -36,7 +35,7 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -lintl" MAN6= wesnoth.6 -MANLANG= "" cs de en_GB fr it ja nl pt_BR ru sk sv +MANLANG= "" cs de fr it ja nl sk sv zh_CN .if defined(WITH_CAMPAIGN) || defined(PACKAGE_BUILDING) CONFIGURE_ARGS+= --enable-campaign-server @@ -79,20 +78,6 @@ PLIST_SUB+= TOOLS:="@comment " .include <bsd.port.pre.mk> -.if ${HAVE_GNOME:Mgnomehier}!="" -CONFIGURE_ARGS+= --with-gnome -PLIST_SUB+= GNOME:="" -.else -PLIST_SUB+= GNOME:="@comment " -.endif - -.if exists(${LOCALBASE}/bin/kde-config) -CONFIGURE_ARGS+= --with-kde -PLIST_SUB+= KDE:="" -.else -PLIST_SUB+= KDE:="@comment " -.endif - pre-everything:: .if !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:" diff --git a/games/wesnoth/distinfo b/games/wesnoth/distinfo index 6889fda925a0..14942054c8d1 100644 --- a/games/wesnoth/distinfo +++ b/games/wesnoth/distinfo @@ -1,3 +1,3 @@ -MD5 (wesnoth-1.2.8.tar.bz2) = 99d17b23d2ea4dc3a008f5c69cd43789 -SHA256 (wesnoth-1.2.8.tar.bz2) = 6abc75fbb28a2d506a4d152cf79703f3920a8d1021bab32b1583b004c2ab298c -SIZE (wesnoth-1.2.8.tar.bz2) = 73123148 +MD5 (wesnoth-1.4.tar.bz2) = a2e8e4b32292f16842453e4c836429b2 +SHA256 (wesnoth-1.4.tar.bz2) = 67ad0509567d9496f15f1a3888c9e2001776411ffdd7007bdb8f324cdce5895d +SIZE (wesnoth-1.4.tar.bz2) = 147228238 diff --git a/games/wesnoth/files/patch-fix_freebsd4_build_towupper b/games/wesnoth/files/patch-fix_freebsd4_build_towupper deleted file mode 100644 index 91b9d3bc7e5f..000000000000 --- a/games/wesnoth/files/patch-fix_freebsd4_build_towupper +++ /dev/null @@ -1,29 +0,0 @@ ---- src/serialization/string_utils.cpp.orig Sun Dec 24 19:41:45 2006 -+++ src/serialization/string_utils.cpp Sun Dec 24 19:42:29 2006 -@@ -609,7 +609,7 @@ - { - if(s.size() > 0) { - utf8_iterator itor(s); --#if defined(__APPLE__) || defined(__AMIGAOS4__) -+#if __FreeBSD__ < 5 - // FIXME: Should we support towupper on recent OSX platforms? - wchar_t uchar = *itor; - if(uchar >= 0 && uchar < 0x100) -@@ -631,7 +631,7 @@ - std::string res; - - for(;itor != utf8_iterator::end(s); ++itor) { --#if defined(__APPLE__) || defined(__AMIGAOS4__) -+#if __FreeBSD__ < 5 - // FIXME: Should we support towupper on recent OSX platforms? - wchar_t uchar = *itor; - if(uchar >= 0 && uchar < 0x100) -@@ -654,7 +654,7 @@ - std::string res; - - for(;itor != utf8_iterator::end(s); ++itor) { --#if defined(__APPLE__) || defined(__OpenBSD__) || defined(__AMIGAOS4__) -+#if __FreeBSD__ < 5 - // FIXME: Should we support towupper on recent OSX platforms? - wchar_t uchar = *itor; - if(uchar >= 0 && uchar < 0x100) diff --git a/games/wesnoth/pkg-plist b/games/wesnoth/pkg-plist index 9acba6e54f53..a00531bc286d 100644 --- a/games/wesnoth/pkg-plist +++ b/games/wesnoth/pkg-plist @@ -2,398 +2,883 @@ %%TOOLS:%%bin/cutter %%TOOLS:%%bin/exploder bin/wesnoth +bin/wmlindent +bin/wmllint +bin/wmlscope %%EDITOR:%%bin/wesnoth_editor %%SERVER:%%bin/wesnothd +share/locale/af/LC_MESSAGES/wesnoth-aoi.mo +share/locale/af/LC_MESSAGES/wesnoth-did.mo share/locale/af/LC_MESSAGES/wesnoth-editor.mo share/locale/af/LC_MESSAGES/wesnoth-ei.mo share/locale/af/LC_MESSAGES/wesnoth-httt.mo +share/locale/af/LC_MESSAGES/wesnoth-l.mo share/locale/af/LC_MESSAGES/wesnoth-lib.mo +share/locale/af/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/af/LC_MESSAGES/wesnoth-nr.mo +share/locale/af/LC_MESSAGES/wesnoth-sof.mo +share/locale/af/LC_MESSAGES/wesnoth-sotbe.mo share/locale/af/LC_MESSAGES/wesnoth-tb.mo +share/locale/af/LC_MESSAGES/wesnoth-thot.mo share/locale/af/LC_MESSAGES/wesnoth-trow.mo share/locale/af/LC_MESSAGES/wesnoth-tsg.mo share/locale/af/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/af/LC_MESSAGES/wesnoth-units.mo share/locale/af/LC_MESSAGES/wesnoth-utbs.mo share/locale/af/LC_MESSAGES/wesnoth.mo +share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo +share/locale/bg/LC_MESSAGES/wesnoth-did.mo share/locale/bg/LC_MESSAGES/wesnoth-editor.mo share/locale/bg/LC_MESSAGES/wesnoth-ei.mo share/locale/bg/LC_MESSAGES/wesnoth-httt.mo +share/locale/bg/LC_MESSAGES/wesnoth-l.mo share/locale/bg/LC_MESSAGES/wesnoth-lib.mo +share/locale/bg/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/bg/LC_MESSAGES/wesnoth-nr.mo +share/locale/bg/LC_MESSAGES/wesnoth-sof.mo +share/locale/bg/LC_MESSAGES/wesnoth-sotbe.mo share/locale/bg/LC_MESSAGES/wesnoth-tb.mo +share/locale/bg/LC_MESSAGES/wesnoth-thot.mo share/locale/bg/LC_MESSAGES/wesnoth-trow.mo share/locale/bg/LC_MESSAGES/wesnoth-tsg.mo share/locale/bg/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/bg/LC_MESSAGES/wesnoth-units.mo share/locale/bg/LC_MESSAGES/wesnoth-utbs.mo share/locale/bg/LC_MESSAGES/wesnoth.mo +share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo +share/locale/ca/LC_MESSAGES/wesnoth-did.mo 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-l.mo share/locale/ca/LC_MESSAGES/wesnoth-lib.mo +share/locale/ca/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/ca/LC_MESSAGES/wesnoth-nr.mo +share/locale/ca/LC_MESSAGES/wesnoth-sof.mo +share/locale/ca/LC_MESSAGES/wesnoth-sotbe.mo share/locale/ca/LC_MESSAGES/wesnoth-tb.mo +share/locale/ca/LC_MESSAGES/wesnoth-thot.mo share/locale/ca/LC_MESSAGES/wesnoth-trow.mo share/locale/ca/LC_MESSAGES/wesnoth-tsg.mo share/locale/ca/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ca/LC_MESSAGES/wesnoth-units.mo share/locale/ca/LC_MESSAGES/wesnoth-utbs.mo share/locale/ca/LC_MESSAGES/wesnoth.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-nr.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-sof.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-sotbe.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tb.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-thot.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-trow.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tsg.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-units.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-utbs.mo share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth.mo +share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo +share/locale/cs/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/cs/LC_MESSAGES/wesnoth-lib.mo +share/locale/cs/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/cs/LC_MESSAGES/wesnoth-nr.mo +share/locale/cs/LC_MESSAGES/wesnoth-sof.mo +share/locale/cs/LC_MESSAGES/wesnoth-sotbe.mo share/locale/cs/LC_MESSAGES/wesnoth-tb.mo +share/locale/cs/LC_MESSAGES/wesnoth-thot.mo share/locale/cs/LC_MESSAGES/wesnoth-trow.mo share/locale/cs/LC_MESSAGES/wesnoth-tsg.mo share/locale/cs/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/cs/LC_MESSAGES/wesnoth-units.mo share/locale/cs/LC_MESSAGES/wesnoth-utbs.mo share/locale/cs/LC_MESSAGES/wesnoth.mo +share/locale/da/LC_MESSAGES/wesnoth-aoi.mo +share/locale/da/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/da/LC_MESSAGES/wesnoth-lib.mo +share/locale/da/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/da/LC_MESSAGES/wesnoth-nr.mo +share/locale/da/LC_MESSAGES/wesnoth-sof.mo +share/locale/da/LC_MESSAGES/wesnoth-sotbe.mo share/locale/da/LC_MESSAGES/wesnoth-tb.mo +share/locale/da/LC_MESSAGES/wesnoth-thot.mo share/locale/da/LC_MESSAGES/wesnoth-trow.mo share/locale/da/LC_MESSAGES/wesnoth-tsg.mo share/locale/da/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/da/LC_MESSAGES/wesnoth-units.mo share/locale/da/LC_MESSAGES/wesnoth-utbs.mo share/locale/da/LC_MESSAGES/wesnoth.mo +share/locale/de/LC_MESSAGES/wesnoth-aoi.mo +share/locale/de/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/de/LC_MESSAGES/wesnoth-lib.mo +share/locale/de/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/de/LC_MESSAGES/wesnoth-nr.mo +share/locale/de/LC_MESSAGES/wesnoth-sof.mo +share/locale/de/LC_MESSAGES/wesnoth-sotbe.mo share/locale/de/LC_MESSAGES/wesnoth-tb.mo +share/locale/de/LC_MESSAGES/wesnoth-thot.mo share/locale/de/LC_MESSAGES/wesnoth-trow.mo share/locale/de/LC_MESSAGES/wesnoth-tsg.mo share/locale/de/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/de/LC_MESSAGES/wesnoth-units.mo share/locale/de/LC_MESSAGES/wesnoth-utbs.mo share/locale/de/LC_MESSAGES/wesnoth.mo +share/locale/el/LC_MESSAGES/wesnoth-aoi.mo +share/locale/el/LC_MESSAGES/wesnoth-did.mo share/locale/el/LC_MESSAGES/wesnoth-editor.mo share/locale/el/LC_MESSAGES/wesnoth-ei.mo share/locale/el/LC_MESSAGES/wesnoth-httt.mo +share/locale/el/LC_MESSAGES/wesnoth-l.mo share/locale/el/LC_MESSAGES/wesnoth-lib.mo +share/locale/el/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/el/LC_MESSAGES/wesnoth-nr.mo +share/locale/el/LC_MESSAGES/wesnoth-sof.mo +share/locale/el/LC_MESSAGES/wesnoth-sotbe.mo share/locale/el/LC_MESSAGES/wesnoth-tb.mo +share/locale/el/LC_MESSAGES/wesnoth-thot.mo share/locale/el/LC_MESSAGES/wesnoth-trow.mo share/locale/el/LC_MESSAGES/wesnoth-tsg.mo share/locale/el/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/el/LC_MESSAGES/wesnoth-units.mo share/locale/el/LC_MESSAGES/wesnoth-utbs.mo share/locale/el/LC_MESSAGES/wesnoth.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-nr.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-sof.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-sotbe.mo share/locale/en_GB/LC_MESSAGES/wesnoth-tb.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-thot.mo share/locale/en_GB/LC_MESSAGES/wesnoth-trow.mo share/locale/en_GB/LC_MESSAGES/wesnoth-tsg.mo share/locale/en_GB/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/en_GB/LC_MESSAGES/wesnoth-units.mo share/locale/en_GB/LC_MESSAGES/wesnoth-utbs.mo share/locale/en_GB/LC_MESSAGES/wesnoth.mo +share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo +share/locale/eo/LC_MESSAGES/wesnoth-did.mo share/locale/eo/LC_MESSAGES/wesnoth-editor.mo share/locale/eo/LC_MESSAGES/wesnoth-ei.mo share/locale/eo/LC_MESSAGES/wesnoth-httt.mo +share/locale/eo/LC_MESSAGES/wesnoth-l.mo share/locale/eo/LC_MESSAGES/wesnoth-lib.mo +share/locale/eo/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/eo/LC_MESSAGES/wesnoth-nr.mo +share/locale/eo/LC_MESSAGES/wesnoth-sof.mo +share/locale/eo/LC_MESSAGES/wesnoth-sotbe.mo share/locale/eo/LC_MESSAGES/wesnoth-tb.mo +share/locale/eo/LC_MESSAGES/wesnoth-thot.mo share/locale/eo/LC_MESSAGES/wesnoth-trow.mo share/locale/eo/LC_MESSAGES/wesnoth-tsg.mo share/locale/eo/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/eo/LC_MESSAGES/wesnoth-units.mo share/locale/eo/LC_MESSAGES/wesnoth-utbs.mo share/locale/eo/LC_MESSAGES/wesnoth.mo +share/locale/es/LC_MESSAGES/wesnoth-aoi.mo +share/locale/es/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/es/LC_MESSAGES/wesnoth-lib.mo +share/locale/es/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/es/LC_MESSAGES/wesnoth-nr.mo +share/locale/es/LC_MESSAGES/wesnoth-sof.mo +share/locale/es/LC_MESSAGES/wesnoth-sotbe.mo share/locale/es/LC_MESSAGES/wesnoth-tb.mo +share/locale/es/LC_MESSAGES/wesnoth-thot.mo share/locale/es/LC_MESSAGES/wesnoth-trow.mo share/locale/es/LC_MESSAGES/wesnoth-tsg.mo share/locale/es/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/es/LC_MESSAGES/wesnoth-units.mo share/locale/es/LC_MESSAGES/wesnoth-utbs.mo share/locale/es/LC_MESSAGES/wesnoth.mo +share/locale/et/LC_MESSAGES/wesnoth-aoi.mo +share/locale/et/LC_MESSAGES/wesnoth-did.mo share/locale/et/LC_MESSAGES/wesnoth-editor.mo share/locale/et/LC_MESSAGES/wesnoth-ei.mo share/locale/et/LC_MESSAGES/wesnoth-httt.mo +share/locale/et/LC_MESSAGES/wesnoth-l.mo share/locale/et/LC_MESSAGES/wesnoth-lib.mo +share/locale/et/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/et/LC_MESSAGES/wesnoth-nr.mo +share/locale/et/LC_MESSAGES/wesnoth-sof.mo +share/locale/et/LC_MESSAGES/wesnoth-sotbe.mo share/locale/et/LC_MESSAGES/wesnoth-tb.mo +share/locale/et/LC_MESSAGES/wesnoth-thot.mo share/locale/et/LC_MESSAGES/wesnoth-trow.mo share/locale/et/LC_MESSAGES/wesnoth-tsg.mo share/locale/et/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/et/LC_MESSAGES/wesnoth-units.mo share/locale/et/LC_MESSAGES/wesnoth-utbs.mo share/locale/et/LC_MESSAGES/wesnoth.mo +share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo +share/locale/eu/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/eu/LC_MESSAGES/wesnoth-lib.mo +share/locale/eu/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/eu/LC_MESSAGES/wesnoth-nr.mo +share/locale/eu/LC_MESSAGES/wesnoth-sof.mo +share/locale/eu/LC_MESSAGES/wesnoth-sotbe.mo share/locale/eu/LC_MESSAGES/wesnoth-tb.mo +share/locale/eu/LC_MESSAGES/wesnoth-thot.mo share/locale/eu/LC_MESSAGES/wesnoth-trow.mo share/locale/eu/LC_MESSAGES/wesnoth-tsg.mo share/locale/eu/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/eu/LC_MESSAGES/wesnoth-units.mo share/locale/eu/LC_MESSAGES/wesnoth-utbs.mo share/locale/eu/LC_MESSAGES/wesnoth.mo +share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo +share/locale/fi/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/fi/LC_MESSAGES/wesnoth-lib.mo +share/locale/fi/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/fi/LC_MESSAGES/wesnoth-nr.mo +share/locale/fi/LC_MESSAGES/wesnoth-sof.mo +share/locale/fi/LC_MESSAGES/wesnoth-sotbe.mo share/locale/fi/LC_MESSAGES/wesnoth-tb.mo +share/locale/fi/LC_MESSAGES/wesnoth-thot.mo share/locale/fi/LC_MESSAGES/wesnoth-trow.mo share/locale/fi/LC_MESSAGES/wesnoth-tsg.mo share/locale/fi/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/fi/LC_MESSAGES/wesnoth-units.mo share/locale/fi/LC_MESSAGES/wesnoth-utbs.mo share/locale/fi/LC_MESSAGES/wesnoth.mo +share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo +share/locale/fr/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/fr/LC_MESSAGES/wesnoth-lib.mo +share/locale/fr/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/fr/LC_MESSAGES/wesnoth-nr.mo +share/locale/fr/LC_MESSAGES/wesnoth-sof.mo +share/locale/fr/LC_MESSAGES/wesnoth-sotbe.mo share/locale/fr/LC_MESSAGES/wesnoth-tb.mo +share/locale/fr/LC_MESSAGES/wesnoth-thot.mo share/locale/fr/LC_MESSAGES/wesnoth-trow.mo share/locale/fr/LC_MESSAGES/wesnoth-tsg.mo share/locale/fr/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/fr/LC_MESSAGES/wesnoth-units.mo share/locale/fr/LC_MESSAGES/wesnoth-utbs.mo share/locale/fr/LC_MESSAGES/wesnoth.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-aoi.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-did.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-editor.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-ei.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-httt.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-l.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-lib.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-nr.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-sof.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-sotbe.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-tb.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-thot.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-trow.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-tsg.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/gl_ES/LC_MESSAGES/wesnoth-units.mo share/locale/gl_ES/LC_MESSAGES/wesnoth-utbs.mo share/locale/gl_ES/LC_MESSAGES/wesnoth.mo +share/locale/he/LC_MESSAGES/wesnoth-aoi.mo +share/locale/he/LC_MESSAGES/wesnoth-did.mo share/locale/he/LC_MESSAGES/wesnoth-editor.mo share/locale/he/LC_MESSAGES/wesnoth-ei.mo share/locale/he/LC_MESSAGES/wesnoth-httt.mo +share/locale/he/LC_MESSAGES/wesnoth-l.mo share/locale/he/LC_MESSAGES/wesnoth-lib.mo +share/locale/he/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/he/LC_MESSAGES/wesnoth-nr.mo +share/locale/he/LC_MESSAGES/wesnoth-sof.mo +share/locale/he/LC_MESSAGES/wesnoth-sotbe.mo share/locale/he/LC_MESSAGES/wesnoth-tb.mo +share/locale/he/LC_MESSAGES/wesnoth-thot.mo share/locale/he/LC_MESSAGES/wesnoth-trow.mo share/locale/he/LC_MESSAGES/wesnoth-tsg.mo share/locale/he/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/he/LC_MESSAGES/wesnoth-units.mo share/locale/he/LC_MESSAGES/wesnoth-utbs.mo share/locale/he/LC_MESSAGES/wesnoth.mo +share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo +share/locale/hu/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/hu/LC_MESSAGES/wesnoth-lib.mo +share/locale/hu/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/hu/LC_MESSAGES/wesnoth-nr.mo +share/locale/hu/LC_MESSAGES/wesnoth-sof.mo +share/locale/hu/LC_MESSAGES/wesnoth-sotbe.mo share/locale/hu/LC_MESSAGES/wesnoth-tb.mo +share/locale/hu/LC_MESSAGES/wesnoth-thot.mo share/locale/hu/LC_MESSAGES/wesnoth-trow.mo share/locale/hu/LC_MESSAGES/wesnoth-tsg.mo share/locale/hu/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/hu/LC_MESSAGES/wesnoth-units.mo share/locale/hu/LC_MESSAGES/wesnoth-utbs.mo share/locale/hu/LC_MESSAGES/wesnoth.mo -share/locale/id/LC_MESSAGES/wesnoth.mo +share/locale/id/LC_MESSAGES/wesnoth-aoi.mo +share/locale/id/LC_MESSAGES/wesnoth-did.mo share/locale/id/LC_MESSAGES/wesnoth-editor.mo -share/locale/id/LC_MESSAGES/wesnoth-lib.mo -share/locale/id/LC_MESSAGES/wesnoth-tutorial.mo -share/locale/id/LC_MESSAGES/wesnoth-httt.mo share/locale/id/LC_MESSAGES/wesnoth-ei.mo -share/locale/id/LC_MESSAGES/wesnoth-trow.mo +share/locale/id/LC_MESSAGES/wesnoth-httt.mo +share/locale/id/LC_MESSAGES/wesnoth-l.mo +share/locale/id/LC_MESSAGES/wesnoth-lib.mo +share/locale/id/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/id/LC_MESSAGES/wesnoth-nr.mo +share/locale/id/LC_MESSAGES/wesnoth-sof.mo +share/locale/id/LC_MESSAGES/wesnoth-sotbe.mo share/locale/id/LC_MESSAGES/wesnoth-tb.mo +share/locale/id/LC_MESSAGES/wesnoth-thot.mo +share/locale/id/LC_MESSAGES/wesnoth-trow.mo share/locale/id/LC_MESSAGES/wesnoth-tsg.mo +share/locale/id/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/id/LC_MESSAGES/wesnoth-units.mo share/locale/id/LC_MESSAGES/wesnoth-utbs.mo +share/locale/id/LC_MESSAGES/wesnoth.mo +share/locale/it/LC_MESSAGES/wesnoth-aoi.mo +share/locale/it/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/it/LC_MESSAGES/wesnoth-lib.mo +share/locale/it/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/it/LC_MESSAGES/wesnoth-nr.mo +share/locale/it/LC_MESSAGES/wesnoth-sof.mo +share/locale/it/LC_MESSAGES/wesnoth-sotbe.mo share/locale/it/LC_MESSAGES/wesnoth-tb.mo +share/locale/it/LC_MESSAGES/wesnoth-thot.mo share/locale/it/LC_MESSAGES/wesnoth-trow.mo share/locale/it/LC_MESSAGES/wesnoth-tsg.mo share/locale/it/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/it/LC_MESSAGES/wesnoth-units.mo share/locale/it/LC_MESSAGES/wesnoth-utbs.mo share/locale/it/LC_MESSAGES/wesnoth.mo +share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo +share/locale/ja/LC_MESSAGES/wesnoth-did.mo share/locale/ja/LC_MESSAGES/wesnoth-editor.mo share/locale/ja/LC_MESSAGES/wesnoth-ei.mo share/locale/ja/LC_MESSAGES/wesnoth-httt.mo +share/locale/ja/LC_MESSAGES/wesnoth-l.mo share/locale/ja/LC_MESSAGES/wesnoth-lib.mo +share/locale/ja/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/ja/LC_MESSAGES/wesnoth-nr.mo +share/locale/ja/LC_MESSAGES/wesnoth-sof.mo +share/locale/ja/LC_MESSAGES/wesnoth-sotbe.mo share/locale/ja/LC_MESSAGES/wesnoth-tb.mo +share/locale/ja/LC_MESSAGES/wesnoth-thot.mo share/locale/ja/LC_MESSAGES/wesnoth-trow.mo share/locale/ja/LC_MESSAGES/wesnoth-tsg.mo share/locale/ja/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ja/LC_MESSAGES/wesnoth-units.mo share/locale/ja/LC_MESSAGES/wesnoth-utbs.mo share/locale/ja/LC_MESSAGES/wesnoth.mo +share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo +share/locale/ko/LC_MESSAGES/wesnoth-did.mo share/locale/ko/LC_MESSAGES/wesnoth-editor.mo share/locale/ko/LC_MESSAGES/wesnoth-ei.mo share/locale/ko/LC_MESSAGES/wesnoth-httt.mo +share/locale/ko/LC_MESSAGES/wesnoth-l.mo share/locale/ko/LC_MESSAGES/wesnoth-lib.mo +share/locale/ko/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/ko/LC_MESSAGES/wesnoth-nr.mo +share/locale/ko/LC_MESSAGES/wesnoth-sof.mo +share/locale/ko/LC_MESSAGES/wesnoth-sotbe.mo share/locale/ko/LC_MESSAGES/wesnoth-tb.mo +share/locale/ko/LC_MESSAGES/wesnoth-thot.mo share/locale/ko/LC_MESSAGES/wesnoth-trow.mo share/locale/ko/LC_MESSAGES/wesnoth-tsg.mo share/locale/ko/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ko/LC_MESSAGES/wesnoth-units.mo share/locale/ko/LC_MESSAGES/wesnoth-utbs.mo share/locale/ko/LC_MESSAGES/wesnoth.mo +share/locale/la/LC_MESSAGES/wesnoth-aoi.mo +share/locale/la/LC_MESSAGES/wesnoth-did.mo share/locale/la/LC_MESSAGES/wesnoth-editor.mo share/locale/la/LC_MESSAGES/wesnoth-ei.mo share/locale/la/LC_MESSAGES/wesnoth-httt.mo +share/locale/la/LC_MESSAGES/wesnoth-l.mo share/locale/la/LC_MESSAGES/wesnoth-lib.mo +share/locale/la/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/la/LC_MESSAGES/wesnoth-nr.mo +share/locale/la/LC_MESSAGES/wesnoth-sof.mo +share/locale/la/LC_MESSAGES/wesnoth-sotbe.mo share/locale/la/LC_MESSAGES/wesnoth-tb.mo +share/locale/la/LC_MESSAGES/wesnoth-thot.mo share/locale/la/LC_MESSAGES/wesnoth-trow.mo share/locale/la/LC_MESSAGES/wesnoth-tsg.mo share/locale/la/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/la/LC_MESSAGES/wesnoth-units.mo share/locale/la/LC_MESSAGES/wesnoth-utbs.mo share/locale/la/LC_MESSAGES/wesnoth.mo +share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo +share/locale/lt/LC_MESSAGES/wesnoth-did.mo +share/locale/lt/LC_MESSAGES/wesnoth-editor.mo +share/locale/lt/LC_MESSAGES/wesnoth-ei.mo +share/locale/lt/LC_MESSAGES/wesnoth-httt.mo +share/locale/lt/LC_MESSAGES/wesnoth-l.mo +share/locale/lt/LC_MESSAGES/wesnoth-lib.mo +share/locale/lt/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/lt/LC_MESSAGES/wesnoth-nr.mo +share/locale/lt/LC_MESSAGES/wesnoth-sof.mo +share/locale/lt/LC_MESSAGES/wesnoth-sotbe.mo +share/locale/lt/LC_MESSAGES/wesnoth-tb.mo +share/locale/lt/LC_MESSAGES/wesnoth-thot.mo +share/locale/lt/LC_MESSAGES/wesnoth-trow.mo +share/locale/lt/LC_MESSAGES/wesnoth-tsg.mo +share/locale/lt/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/lt/LC_MESSAGES/wesnoth-units.mo +share/locale/lt/LC_MESSAGES/wesnoth-utbs.mo +share/locale/lt/LC_MESSAGES/wesnoth.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-nr.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-sof.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-sotbe.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-tb.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-thot.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-trow.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-tsg.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/nb_NO/LC_MESSAGES/wesnoth-units.mo share/locale/nb_NO/LC_MESSAGES/wesnoth-utbs.mo share/locale/nb_NO/LC_MESSAGES/wesnoth.mo +share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo +share/locale/nl/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/nl/LC_MESSAGES/wesnoth-lib.mo +share/locale/nl/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/nl/LC_MESSAGES/wesnoth-nr.mo +share/locale/nl/LC_MESSAGES/wesnoth-sof.mo +share/locale/nl/LC_MESSAGES/wesnoth-sotbe.mo share/locale/nl/LC_MESSAGES/wesnoth-tb.mo +share/locale/nl/LC_MESSAGES/wesnoth-thot.mo share/locale/nl/LC_MESSAGES/wesnoth-trow.mo share/locale/nl/LC_MESSAGES/wesnoth-tsg.mo share/locale/nl/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/nl/LC_MESSAGES/wesnoth-units.mo share/locale/nl/LC_MESSAGES/wesnoth-utbs.mo share/locale/nl/LC_MESSAGES/wesnoth.mo +share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo +share/locale/pl/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/pl/LC_MESSAGES/wesnoth-lib.mo +share/locale/pl/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/pl/LC_MESSAGES/wesnoth-nr.mo +share/locale/pl/LC_MESSAGES/wesnoth-sof.mo +share/locale/pl/LC_MESSAGES/wesnoth-sotbe.mo share/locale/pl/LC_MESSAGES/wesnoth-tb.mo +share/locale/pl/LC_MESSAGES/wesnoth-thot.mo share/locale/pl/LC_MESSAGES/wesnoth-trow.mo share/locale/pl/LC_MESSAGES/wesnoth-tsg.mo share/locale/pl/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/pl/LC_MESSAGES/wesnoth-units.mo share/locale/pl/LC_MESSAGES/wesnoth-utbs.mo share/locale/pl/LC_MESSAGES/wesnoth.mo +share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo +share/locale/pt/LC_MESSAGES/wesnoth-did.mo share/locale/pt/LC_MESSAGES/wesnoth-editor.mo share/locale/pt/LC_MESSAGES/wesnoth-ei.mo share/locale/pt/LC_MESSAGES/wesnoth-httt.mo +share/locale/pt/LC_MESSAGES/wesnoth-l.mo share/locale/pt/LC_MESSAGES/wesnoth-lib.mo +share/locale/pt/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/pt/LC_MESSAGES/wesnoth-nr.mo +share/locale/pt/LC_MESSAGES/wesnoth-sof.mo +share/locale/pt/LC_MESSAGES/wesnoth-sotbe.mo share/locale/pt/LC_MESSAGES/wesnoth-tb.mo +share/locale/pt/LC_MESSAGES/wesnoth-thot.mo share/locale/pt/LC_MESSAGES/wesnoth-trow.mo share/locale/pt/LC_MESSAGES/wesnoth-tsg.mo share/locale/pt/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/pt/LC_MESSAGES/wesnoth-units.mo share/locale/pt/LC_MESSAGES/wesnoth-utbs.mo share/locale/pt/LC_MESSAGES/wesnoth.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-nr.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-sof.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-sotbe.mo share/locale/pt_BR/LC_MESSAGES/wesnoth-tb.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-thot.mo share/locale/pt_BR/LC_MESSAGES/wesnoth-trow.mo share/locale/pt_BR/LC_MESSAGES/wesnoth-tsg.mo share/locale/pt_BR/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/pt_BR/LC_MESSAGES/wesnoth-units.mo share/locale/pt_BR/LC_MESSAGES/wesnoth-utbs.mo share/locale/pt_BR/LC_MESSAGES/wesnoth.mo +share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo +share/locale/ro/LC_MESSAGES/wesnoth-did.mo share/locale/ro/LC_MESSAGES/wesnoth-editor.mo share/locale/ro/LC_MESSAGES/wesnoth-ei.mo share/locale/ro/LC_MESSAGES/wesnoth-httt.mo +share/locale/ro/LC_MESSAGES/wesnoth-l.mo share/locale/ro/LC_MESSAGES/wesnoth-lib.mo +share/locale/ro/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/ro/LC_MESSAGES/wesnoth-nr.mo +share/locale/ro/LC_MESSAGES/wesnoth-sof.mo +share/locale/ro/LC_MESSAGES/wesnoth-sotbe.mo share/locale/ro/LC_MESSAGES/wesnoth-tb.mo +share/locale/ro/LC_MESSAGES/wesnoth-thot.mo share/locale/ro/LC_MESSAGES/wesnoth-trow.mo share/locale/ro/LC_MESSAGES/wesnoth-tsg.mo share/locale/ro/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ro/LC_MESSAGES/wesnoth-units.mo share/locale/ro/LC_MESSAGES/wesnoth-utbs.mo share/locale/ro/LC_MESSAGES/wesnoth.mo +share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo +share/locale/ru/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/ru/LC_MESSAGES/wesnoth-lib.mo +share/locale/ru/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/ru/LC_MESSAGES/wesnoth-nr.mo +share/locale/ru/LC_MESSAGES/wesnoth-sof.mo +share/locale/ru/LC_MESSAGES/wesnoth-sotbe.mo share/locale/ru/LC_MESSAGES/wesnoth-tb.mo +share/locale/ru/LC_MESSAGES/wesnoth-thot.mo share/locale/ru/LC_MESSAGES/wesnoth-trow.mo share/locale/ru/LC_MESSAGES/wesnoth-tsg.mo share/locale/ru/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/ru/LC_MESSAGES/wesnoth-units.mo share/locale/ru/LC_MESSAGES/wesnoth-utbs.mo share/locale/ru/LC_MESSAGES/wesnoth.mo +share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo +share/locale/sk/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/sk/LC_MESSAGES/wesnoth-lib.mo +share/locale/sk/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/sk/LC_MESSAGES/wesnoth-nr.mo +share/locale/sk/LC_MESSAGES/wesnoth-sof.mo +share/locale/sk/LC_MESSAGES/wesnoth-sotbe.mo share/locale/sk/LC_MESSAGES/wesnoth-tb.mo +share/locale/sk/LC_MESSAGES/wesnoth-thot.mo share/locale/sk/LC_MESSAGES/wesnoth-trow.mo share/locale/sk/LC_MESSAGES/wesnoth-tsg.mo share/locale/sk/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sk/LC_MESSAGES/wesnoth-units.mo share/locale/sk/LC_MESSAGES/wesnoth-utbs.mo share/locale/sk/LC_MESSAGES/wesnoth.mo +share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo +share/locale/sl/LC_MESSAGES/wesnoth-did.mo share/locale/sl/LC_MESSAGES/wesnoth-editor.mo share/locale/sl/LC_MESSAGES/wesnoth-ei.mo share/locale/sl/LC_MESSAGES/wesnoth-httt.mo +share/locale/sl/LC_MESSAGES/wesnoth-l.mo share/locale/sl/LC_MESSAGES/wesnoth-lib.mo +share/locale/sl/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/sl/LC_MESSAGES/wesnoth-nr.mo +share/locale/sl/LC_MESSAGES/wesnoth-sof.mo +share/locale/sl/LC_MESSAGES/wesnoth-sotbe.mo share/locale/sl/LC_MESSAGES/wesnoth-tb.mo +share/locale/sl/LC_MESSAGES/wesnoth-thot.mo share/locale/sl/LC_MESSAGES/wesnoth-trow.mo share/locale/sl/LC_MESSAGES/wesnoth-tsg.mo share/locale/sl/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sl/LC_MESSAGES/wesnoth-units.mo share/locale/sl/LC_MESSAGES/wesnoth-utbs.mo share/locale/sl/LC_MESSAGES/wesnoth.mo +share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo +share/locale/sr/LC_MESSAGES/wesnoth-did.mo share/locale/sr/LC_MESSAGES/wesnoth-editor.mo share/locale/sr/LC_MESSAGES/wesnoth-ei.mo share/locale/sr/LC_MESSAGES/wesnoth-httt.mo +share/locale/sr/LC_MESSAGES/wesnoth-l.mo share/locale/sr/LC_MESSAGES/wesnoth-lib.mo +share/locale/sr/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/sr/LC_MESSAGES/wesnoth-nr.mo +share/locale/sr/LC_MESSAGES/wesnoth-sof.mo +share/locale/sr/LC_MESSAGES/wesnoth-sotbe.mo share/locale/sr/LC_MESSAGES/wesnoth-tb.mo +share/locale/sr/LC_MESSAGES/wesnoth-thot.mo share/locale/sr/LC_MESSAGES/wesnoth-trow.mo share/locale/sr/LC_MESSAGES/wesnoth-tsg.mo share/locale/sr/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sr/LC_MESSAGES/wesnoth-units.mo share/locale/sr/LC_MESSAGES/wesnoth-utbs.mo share/locale/sr/LC_MESSAGES/wesnoth.mo -share/locale/sr@latin/LC_MESSAGES/wesnoth.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo -share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo -share/locale/sr@latin/LC_MESSAGES/wesnoth-tutorial.mo -share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo -share/locale/sr@latin/LC_MESSAGES/wesnoth-trow.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-nr.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-sof.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-sotbe.mo share/locale/sr@latin/LC_MESSAGES/wesnoth-tb.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-thot.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-trow.mo share/locale/sr@latin/LC_MESSAGES/wesnoth-tsg.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth-units.mo share/locale/sr@latin/LC_MESSAGES/wesnoth-utbs.mo +share/locale/sr@latin/LC_MESSAGES/wesnoth.mo +share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo +share/locale/sv/LC_MESSAGES/wesnoth-did.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-l.mo share/locale/sv/LC_MESSAGES/wesnoth-lib.mo +share/locale/sv/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/sv/LC_MESSAGES/wesnoth-nr.mo +share/locale/sv/LC_MESSAGES/wesnoth-sof.mo +share/locale/sv/LC_MESSAGES/wesnoth-sotbe.mo share/locale/sv/LC_MESSAGES/wesnoth-tb.mo +share/locale/sv/LC_MESSAGES/wesnoth-thot.mo share/locale/sv/LC_MESSAGES/wesnoth-trow.mo share/locale/sv/LC_MESSAGES/wesnoth-tsg.mo share/locale/sv/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/sv/LC_MESSAGES/wesnoth-units.mo share/locale/sv/LC_MESSAGES/wesnoth-utbs.mo share/locale/sv/LC_MESSAGES/wesnoth.mo +share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo +share/locale/tl/LC_MESSAGES/wesnoth-did.mo share/locale/tl/LC_MESSAGES/wesnoth-editor.mo share/locale/tl/LC_MESSAGES/wesnoth-ei.mo share/locale/tl/LC_MESSAGES/wesnoth-httt.mo +share/locale/tl/LC_MESSAGES/wesnoth-l.mo share/locale/tl/LC_MESSAGES/wesnoth-lib.mo +share/locale/tl/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/tl/LC_MESSAGES/wesnoth-nr.mo +share/locale/tl/LC_MESSAGES/wesnoth-sof.mo +share/locale/tl/LC_MESSAGES/wesnoth-sotbe.mo share/locale/tl/LC_MESSAGES/wesnoth-tb.mo +share/locale/tl/LC_MESSAGES/wesnoth-thot.mo share/locale/tl/LC_MESSAGES/wesnoth-trow.mo share/locale/tl/LC_MESSAGES/wesnoth-tsg.mo share/locale/tl/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/tl/LC_MESSAGES/wesnoth-units.mo share/locale/tl/LC_MESSAGES/wesnoth-utbs.mo share/locale/tl/LC_MESSAGES/wesnoth.mo +share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo +share/locale/tr/LC_MESSAGES/wesnoth-did.mo share/locale/tr/LC_MESSAGES/wesnoth-editor.mo share/locale/tr/LC_MESSAGES/wesnoth-ei.mo share/locale/tr/LC_MESSAGES/wesnoth-httt.mo +share/locale/tr/LC_MESSAGES/wesnoth-l.mo share/locale/tr/LC_MESSAGES/wesnoth-lib.mo +share/locale/tr/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/tr/LC_MESSAGES/wesnoth-nr.mo +share/locale/tr/LC_MESSAGES/wesnoth-sof.mo +share/locale/tr/LC_MESSAGES/wesnoth-sotbe.mo share/locale/tr/LC_MESSAGES/wesnoth-tb.mo +share/locale/tr/LC_MESSAGES/wesnoth-thot.mo share/locale/tr/LC_MESSAGES/wesnoth-trow.mo share/locale/tr/LC_MESSAGES/wesnoth-tsg.mo share/locale/tr/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/tr/LC_MESSAGES/wesnoth-units.mo share/locale/tr/LC_MESSAGES/wesnoth-utbs.mo share/locale/tr/LC_MESSAGES/wesnoth.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-nr.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-sof.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-sotbe.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-tb.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-thot.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-trow.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-tsg.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/zh_CN/LC_MESSAGES/wesnoth-units.mo share/locale/zh_CN/LC_MESSAGES/wesnoth-utbs.mo share/locale/zh_CN/LC_MESSAGES/wesnoth.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-multiplayer.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-nr.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-sof.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-sotbe.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-tb.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-thot.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-trow.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-tsg.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-tutorial.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-units.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo +share/locale/zh_TW/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/COPYING.txt -%%DATADIR%%/data/abilities.cfg -%%DATADIR%%/data/about.cfg +%%DATADIR%%/data/_main.cfg +%%DATADIR%%/data/ais/bruteforce.py +%%DATADIR%%/data/ais/documentation.py %%DATADIR%%/data/ais/parse.py %%DATADIR%%/data/ais/safe.py %%DATADIR%%/data/ais/sample.py -%%DATADIR%%/data/amla.cfg -%%DATADIR%%/data/animation-utils.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/external_binary_data/images/EI_campaign_image.png +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/_main.cfg +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/images/map.jpg +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/images/portraits/Erlornas.png +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/a_detour_through_the_swamp.map +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/assassins.map +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/defend_the_forest.map +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/linaera_the_quick.map +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/showdown.map +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/valley_of_trolls.map +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/wasteland.map +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/scenarios/1_Defend_the_Forest.cfg +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/scenarios/2_Assassins.cfg +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/scenarios/3_Wasteland.cfg +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/scenarios/4_Valley_of_Trolls.cfg +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/scenarios/5_Linaera_the_Quick.cfg +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/scenarios/6_A_Detour_through_the_Swamp.cfg +%%DATADIR%%/data/campaigns/An_Orcish_Incursion/scenarios/7_Showdown.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/Descent_deaths.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/Descent_macros.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/Descent_story.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/_main.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/ais/kamikaze.py +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/misc/book-icon.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/portraits/darken_volk.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/portraits/dela.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/portraits/malinlich.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/portraits/malold.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/portraits/malyoung.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-mage-defend.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-mage-magic-1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-mage-magic-2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-mage-sword-1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-mage-sword-2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-mage-sword-3.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-mage-sword.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-mage.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-necromancer-defend.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-necromancer-magic-1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-necromancer-magic-2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-necromancer-magic-3.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-necromancer-sword-1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-necromancer-sword-2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/apprentice-necromancer.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-defend.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-magic1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-magic2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-magic3.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-sword1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/ghast-attack1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/ghast-attack2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/ghast-defend.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/ghast.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/giant-rat-attack.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/giant-rat.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/neutral-outlaw-princess-attack-sling1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/neutral-outlaw-princess-attack-sling2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/neutral-outlaw-princess-attack-staff1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/neutral-outlaw-princess-attack-staff2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/neutral-outlaw-princess-defend-1-1.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/neutral-outlaw-princess-defend-1-2.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/neutral-outlaw-princess-defend.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/neutral-outlaw-princess.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/troll-shaman-defend.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/troll-shaman-melee.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/troll-shaman-ranged.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/troll-shaman.png +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/A_haunting_in_winter.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/A_small_favor.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/A_small_favor2.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/A_small_favor3.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/Alone_at_last.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/Descent_into_darkness.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/Forever_and_ever_amen.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/Orc_war.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/Peaceful_valley.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/Return_to_Parthyn.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/Revenge.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps/Saving_Parthyn.map +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/01_Saving_Parthyn.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/02_Peaceful_Valley.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/03_A_Haunting_in_Winter.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/04_Beginning_of_the_Revenge.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/05_Orc_War.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/06_Return_to_Parthyn.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/07_A_Small_Favor.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/08_A_Small_Favor2.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/09_A_Small_Favor3.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/10_Alone_at_Last.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/11_Descent_into_Darkness.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios/12_Forever_and_Ever_Amen.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/apprentice-mage.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/apprentice-necromancer.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/dark-adept.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/dark-mage.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/dark-sorcerer.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/frontier-baroness.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/ghast.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/giant-rat.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/iceball.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/lich.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/mirror.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/units/troll-shaman.cfg +%%DATADIR%%/data/campaigns/Descent_Into_Darkness/utils/global-events.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion/_main.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/images/portraits/dacyn.png %%DATADIR%%/data/campaigns/Eastern_Invasion/images/portraits/gweddry.png %%DATADIR%%/data/campaigns/Eastern_Invasion/images/portraits/konrad_II.png @@ -414,34 +899,27 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-lord-defend.png %%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-lord-moving.png %%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-lord.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-claws1.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-claws2.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-claws3.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-jaw1.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-attack-jaw2.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon-defend.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/skeletal-dragon.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/An_Elven_Alliance -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/An_Unexpected_Appearance -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Approaching_Weldyn -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Captured -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Drowned_Plains -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Evacuation -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Lake_Vrug -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Mal-Ravanals_Capital -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Northern_Outpost -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Arena -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Crossing -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Escape_Tunnel -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Outpost -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Undead_Border_Patrol -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Throne_Room -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Training_the_Ogres -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Tribal_Warfare -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Two_Paths -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Undead_Crossing -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Weldyn_Besieged -%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Weldyn_under_Attack +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/An_Elven_Alliance.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/An_Unexpected_Appearance.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Approaching_Weldyn.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Captured.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Drowned_Plains.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Evacuation.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Lake_Vrug.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Mal-Ravanals_Capital.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Northern_Outpost.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Arena.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Crossing.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Escape_Tunnel.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Outpost.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/The_Undead_Border_Patrol.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Throne_Room.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Training_the_Ogres.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Tribal_Warfare.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Two_Paths.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Undead_Crossing.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Weldyn_Besieged.map +%%DATADIR%%/data/campaigns/Eastern_Invasion/maps/Weldyn_under_Attack.map %%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/01.The_Outpost.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/02.The_Escape_Tunnel.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/03.An_Unexpected_Appearance.cfg @@ -463,15 +941,15 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/17.Weldyn_Under_Attack.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/18a.The_Duel.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/18b.Weldyn_Besieged.cfg +%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/19_Epilog.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/units/Horse_Lord.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/units/Mounted_Fighter.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/units/Mounted_Warrior.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/units/Skeletal_Dragon.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/utils/deaths.cfg %%DATADIR%%/data/campaigns/Eastern_Invasion/utils/intro.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/external_binary_data/images/HttT_campaign_icon.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/external_binary_data/images/HttT_campaign_image.png +%%DATADIR%%/data/campaigns/Eastern_Invasion/utils/throneroom.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/_main.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/campaign_image.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/icon_armor.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits/asheviere.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits/delfador.png @@ -491,48 +969,25 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/story6.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/story7.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/story9.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack01.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack02.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack03.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack04.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack05.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack06.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack07.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack08.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack09.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack10.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack11.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack12.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-attack13.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice-defend.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/cockatrice.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-melee1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-melee2.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-ranged1.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-ranged2.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-ranged3.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-melee1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage-melee2.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elder-mage.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-attack-sword-1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-attack-sword-2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-defend.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-defend2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord-magic.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-high-lord.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-lord-defend.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-lord-magic.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-lord-melee.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/elvish-lord.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/gryphon-sleeping.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-1.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-3.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-4.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-attack-5.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-defend.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-die-1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-die-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-defend-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-defend-2.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-scepter-attack-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-scepter-attack-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-scepter-defend-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-scepter-defend-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-scepter-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess-scepter.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-battleprincess.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-attack-1.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-attack-2.png @@ -540,7 +995,15 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-attack-4.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-defend.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-scepter-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-scepter-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-scepter.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-queen-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-queen-staff-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-queen-staff-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-queen-staff-3.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-queen-staff-4.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-queen.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-attack-1.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-attack-2.png @@ -554,6 +1017,13 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-bow.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-defend.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-scepter-attack-1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-scepter-attack-2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-scepter-attack-3.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-scepter-attack-4.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-scepter-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-scepter-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-scepter.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-fighter-attack-1.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-fighter-attack-2.png @@ -570,109 +1040,560 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-bow.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-defend.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-scepter-attack-w1.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-scepter-attack-w2.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-scepter-attack-w3.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-scepter-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-scepter-leading.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-scepter-sword-defend.png +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-scepter.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-young-attack.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-young-defend.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-young.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/parandra.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-scepter-1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-scepter-2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-scepter-3.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-scepter.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-attack-sword.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-defend.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess-leading.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/scepter-princess.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/sea-orc-attack.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/sea-orc-defend.png %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/sea-orc.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-attack.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-defend.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-die-1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-die-2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone-moving.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/undead-chocobone.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/A_Choice_Must_Be_Made -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Battle_for_Wesnoth -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Bay_of_Pearls -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Blackwater_Port -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Crossroads -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Dwarven_Doors -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Elves_Besieged -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Ford_of_Abez -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Gryphon_Mountain -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Hasty_Alliance -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Home_Clan -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Home_North_Elves -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Isle_of_Anduin -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Isle_of_the_Damned -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Mountain_Pass -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Muff_Malal_Peninsula -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Northern_Winter -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Plunging_Into_the_Darkness -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Princess_of_Wesnoth -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Return_to_Wesnoth -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Sceptre -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Snow_Plains -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Swamp_Of_Dread -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/The_Lost_General -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/The_Siege_of_Elensefar -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Valley_of_Death -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/Valley_of_Statues -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/01_Elves_Besieged.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/01_The_Elves_Besieged.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/02_Blackwater_Port.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/03_The_Isle_of_Alduin.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/04_The_Bay_of_Pearls.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/05a_Muff_Malal_Peninsula.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/05b_Isle_of_the_Damned.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/06_The_Siege_of_Elensefar.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/07_Crossroads.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/08_The_Princess_of_Wesnoth.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/09_The_Valley_of_Death.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/10_Gryphon_Mountain.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/11_The_Ford_of_Abez.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/12_Northern_Winter.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/13_The_Dwarven_Doors.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/14_Plunging_Into_the_Darkness.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/15_The_Lost_General.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/16_Hasty_Alliance.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/18_A_Choice_Must_Be_Made.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/19a_Snow_Plains.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/19b_Swamp_Of_Dread.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/19c_Cliffs_of_Thoria.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/20a_North_Elves.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/20b_Underground_Channels.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/21_Elven_Council.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/22_Return_to_Wesnoth.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/23_Test_of_the_Clans.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps/24_Battle_for_Wesnoth.map +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/01_The_Elves_Besieged.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/02_Blackwater_Port.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/03_Isle_of_Anduin.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/04_Bay_of_Pearls.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/03_The_Isle_of_Alduin.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/04_The_Bay_of_Pearls.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/05a_Muff_Malal_Peninsula.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/05b_Isle_of_the_Damned.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/06_Siege_of_Elensefar.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/06_The_Siege_of_Elensefar.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/07_Crossroads.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/08_Princess_of_Wesnoth.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/09_Valley_of_Death.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/08_The_Princess_of_Wesnoth.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/09_The_Valley_of_Death.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/10_Gryphon_Mountain.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/11_Ford_of_Abez.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/11_The_Ford_of_Abez.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/12_Northern_Winter.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/13_Mountain_Pass.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/14_Dwarven_Doors.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/15_Plunging_Into_the_Darkness.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/16_Lost_General.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/17_Hasty_Alliance.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/18_Scepter_of_Fire.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/19_A_Choice_Must_Be_Made.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/20a_Snow_Plains.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/20b_Swamp_Of_Dread.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/21_Home_North_Elves.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/22_Elven_Council.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/23_Valley_of_Statues.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/24_Return_to_Wesnoth.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/25_Test_of_the_Clans.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/26_Battle_for_Wesnoth.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/27_Epilogue.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/13_The_Dwarven_Doors.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/14_Plunging_Into_the_Darkness.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/15_The_Lost_General.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/16_Hasty_Alliance.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/17_Scepter_of_Fire.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/18_A_Choice_Must_Be_Made.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/19a_Snow_Plains.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/19b_Swamp_Of_Dread.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/19c_Cliffs_of_Thoria.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/20a_North_Elves.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/20b_Underground_Channels.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/21_Elven_Council.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/22_Return_to_Wesnoth.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/23_Test_of_the_Clans.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/24_Battle_for_Wesnoth.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios/25_HttT_Epilogue.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Battle_Princess.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Chocobone.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Cockatrice.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Commander.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Dark_Queen.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Elder_Mage.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Elvish_High_Lord.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Elvish_Lady.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Elvish_Lord.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Fighter.cfg +%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Injured_Sergeant.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Lord.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Princess.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Sea_Orc.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Sleeping_Gryphon.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Youth.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils/bigmap.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils/deaths.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils/httt_utils.cfg %%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils/intro.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_campaign_icon.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_campaign_image.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_difficulty_easy.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_difficulty_hard.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images/TRoW_difficulty_normal.png +%%DATADIR%%/data/campaigns/Liberty/_main.cfg +%%DATADIR%%/data/campaigns/Liberty/images/attacks/sword-astral.png +%%DATADIR%%/data/campaigns/Liberty/images/campaign_image.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo1.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo10.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo2.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo3.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo4.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo5.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo6.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo7.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo8.png +%%DATADIR%%/data/campaigns/Liberty/images/halo/shadow-mage-halo9.png +%%DATADIR%%/data/campaigns/Liberty/images/maps/wesnoth-liberty.png +%%DATADIR%%/data/campaigns/Liberty/images/portraits/p_baldras.png +%%DATADIR%%/data/campaigns/Liberty/images/portraits/p_gwydion.png +%%DATADIR%%/data/campaigns/Liberty/images/portraits/p_harper.png +%%DATADIR%%/data/campaigns/Liberty/images/portraits/p_helicrom.png +%%DATADIR%%/data/campaigns/Liberty/images/portraits/p_maddock.png +%%DATADIR%%/data/campaigns/Liberty/images/portraits/p_relnan.png +%%DATADIR%%/data/campaigns/Liberty/images/projectiles/shadowmissile-n.png +%%DATADIR%%/data/campaigns/Liberty/images/projectiles/shadowmissile-ne.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage-attack1.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage-attack2.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage-attack3.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage-attack4.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage-defend.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage-missile1.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage-missile2.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage-missile3.png +%%DATADIR%%/data/campaigns/Liberty/images/rogue-mage.png +%%DATADIR%%/data/campaigns/Liberty/images/schedule-midnight.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-attack1.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-attack2.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-attack3.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-attack4.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-defend-hit1.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-defend-hit2.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-defend-hit3.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-defend-hit4.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-defend-hit5.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-defend-miss1.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-defend-miss2.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-defend-miss3.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-ranged1.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-ranged2.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-ranged3.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord-ranged4.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-lord.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-mage-attack1.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-mage-attack2.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-mage-defend.png +%%DATADIR%%/data/campaigns/Liberty/images/shadow-mage.png +%%DATADIR%%/data/campaigns/Liberty/images/story/Halstead.jpg +%%DATADIR%%/data/campaigns/Liberty/images/story/frontier.jpg +%%DATADIR%%/data/campaigns/Liberty/images/story/island.jpg +%%DATADIR%%/data/campaigns/Liberty/images/story/return_to_Dallben_and_Delwyn.jpg +%%DATADIR%%/data/campaigns/Liberty/images/undead-boneknight-attack1.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-boneknight-attack2.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-boneknight-defend.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-boneknight-move.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-boneknight.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-deathsquire-attack.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-deathsquire-defend.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-deathsquire-leading.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-deathsquire.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-skeletonrider-attack1.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-skeletonrider-attack2.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-skeletonrider-defend.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-skeletonrider-move.png +%%DATADIR%%/data/campaigns/Liberty/images/undead-skeletonrider.png +%%DATADIR%%/data/campaigns/Liberty/maps/civil_disobedience.map +%%DATADIR%%/data/campaigns/Liberty/maps/glory.map +%%DATADIR%%/data/campaigns/Liberty/maps/gray_woods.map +%%DATADIR%%/data/campaigns/Liberty/maps/hide_and_seek.map +%%DATADIR%%/data/campaigns/Liberty/maps/strategy_of_hope.map +%%DATADIR%%/data/campaigns/Liberty/maps/the_hunters.map +%%DATADIR%%/data/campaigns/Liberty/maps/the_raid.map +%%DATADIR%%/data/campaigns/Liberty/maps/unlawful_orders.map +%%DATADIR%%/data/campaigns/Liberty/scenarios/01_The_Raid.cfg +%%DATADIR%%/data/campaigns/Liberty/scenarios/02_Civil_Disobedience.cfg +%%DATADIR%%/data/campaigns/Liberty/scenarios/03_A_Strategy_Of_Hope.cfg +%%DATADIR%%/data/campaigns/Liberty/scenarios/04_Unlawful_Orders.cfg +%%DATADIR%%/data/campaigns/Liberty/scenarios/05_Hide_and_Seek.cfg +%%DATADIR%%/data/campaigns/Liberty/scenarios/06_The_Gray_Woods.cfg +%%DATADIR%%/data/campaigns/Liberty/scenarios/07_The_Hunters.cfg +%%DATADIR%%/data/campaigns/Liberty/scenarios/08_Glory.cfg +%%DATADIR%%/data/campaigns/Liberty/scenarios/09_Epilog.cfg +%%DATADIR%%/data/campaigns/Liberty/units/Bone_Knight.cfg +%%DATADIR%%/data/campaigns/Liberty/units/Dark_Sorcerer2.cfg +%%DATADIR%%/data/campaigns/Liberty/units/Death_Squire.cfg +%%DATADIR%%/data/campaigns/Liberty/units/Rogue_Mage.cfg +%%DATADIR%%/data/campaigns/Liberty/units/Shadow_Lord.cfg +%%DATADIR%%/data/campaigns/Liberty/units/Shadow_Mage.cfg +%%DATADIR%%/data/campaigns/Liberty/units/Skeleton_Rider.cfg +%%DATADIR%%/data/campaigns/Liberty/units/Villagers.cfg +%%DATADIR%%/data/campaigns/Liberty/utils/utils.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/_main.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/campaign_image.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/hatchling.png +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Anita.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Arthian.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Camerin.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Elenia.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Father_Marcus.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Hamel.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Hidel.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Malifor.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Rakshas.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Ro_Sothian.png +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Sisal.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Sister_Theta.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Stalrag.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Tallin-Evil.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Tallin.jpg +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/breaking_the_chains.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/clearing_the_mines.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/compelled.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/eastern_flank.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/elvish_princess.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/epilogue.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/get_the_gold.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/infested_caves.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/introductions.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/judgement.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/old_friend.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/protecting_the_master.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/ray_of_hope.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/settling_disputes.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/showdown.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/slave_of_the_undead.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/stolen_gold.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/the_pursuit.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/maps/to_the_mines.map +%%DATADIR%%/data/campaigns/Northern_Rebirth/music/nr-sad.ogg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/01_Breaking_the_Chains.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/02_Infested_Caves.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/03_To_The_Mines.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/04_Clearing_the_Mines.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/05a_The_Pursuit.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/05b_Compelled.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/06a_Old_Friend.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/06b_Slave_of_the_Undead.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/07a_Settling_Disputes.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/07b_Protecting_the_Master.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/08a_Elvish_Princess.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/08b_Ray_of_Hope.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/09a_Introductions.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/09b_Judgement.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/10a_Stolen_Gold.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/11a_Eastern_Flank.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/12a_Get_the_Gold.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/13a_Showdown.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios/14a_Epilogue.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/utils/herodeaths.cfg +%%DATADIR%%/data/campaigns/Northern_Rebirth/utils/utils.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/_main.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/items/coal.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/items/gold.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/misc/coal-icon.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/misc/gold-icon.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/portraits/alanin.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/portraits/baglur.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/portraits/durstorn.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/portraits/haldric-ii.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/portraits/khrakrahs.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/portraits/rugnur.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/portraits/thursagan.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/arcanister-attack1.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/arcanister-attack2.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/arcanister-attack3.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/arcanister-defend-ranged.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/arcanister-defend.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/arcanister.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/caravan.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-attack.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-attack2.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-withstuff.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runemasteralt-attack1.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runemasteralt-attack2.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runemasteralt-attack3.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runemasteralt-defend.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runemasteralt.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runesmith-attack1.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runesmith-attack2.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runesmith-attack3.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runesmith-defend.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/runesmith.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii-defend.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii-sword-1.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii-sword-2.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii-sword-3.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii-sword-4.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/heroes/haldric-ii.png +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/1_A_Bargain_is_Struck.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/2_Closing_the_Gates.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/2t_In_the_Dwarven_City.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/3_Searching_for_the_Runecrafter.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/3t_The_Council_Regathers.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/4_Gathering_Materials-random.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/4t_The_Jeweler.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/5_Hills_of_the_Shorbear_Clan.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/6_Towards_the_Caves.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/7_Outriding_the_Outriders.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/8_The_Dragon.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_Caverns_of_Flame.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o1.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o2.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o3.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o4.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o5.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o6.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o7.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o8.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_o9.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay/9_of.mask +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/Epilogue.map +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/1_A_Bargain_is_Struck.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/2_Closing_the_Gates.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/2t_In_the_Dwarven_City.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/3_Searching_for_the_Runecrafter.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/3t_The_Council_Regathers.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/4_Gathering_Materials.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/4t_The_Jeweler.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/5_Hills_of_the_Shorbear_Clan.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/6_Towards_the_Caves.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/7_Outriding_of_Outriders.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/8_The_Dragon.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/9_Caverns_of_Flame.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios/Epilogue.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/units/Caravan.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/units/Dwarvish_Arcanister.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/units/Dwarvish_Miner.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/units/Dwarvish_Runemaster.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/units/Dwarvish_Runesmith.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/units/Haldric_II.cfg +%%DATADIR%%/data/campaigns/Sceptre_of_Fire/utils/utils.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/_main.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/flags/black-flag-1.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/flags/black-flag-2.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/flags/black-flag-3.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/flags/black-flag-icon.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/gruu.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/kapoue.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/orcish_shaman.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/sotbe.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/sotbe1.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/sotbe2.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/sotbe3.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-black-curse-1.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-black-defend.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-black-staff-1.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-black.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-red-curse-1.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-red-defend.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-red-staff-1.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-red.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-tan-curse-1.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-tan-defend.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-tan-staff-1.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-shaman-tan.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units/orcish-watch-tower.png +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Back_Home.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Black_Flag.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Civil_War.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Clash_Of_Armies.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Coward.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Desert_Of_Death.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Dwarvish_Stand.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/End_Of_Peace.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Giving_Some_Back.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Human_Attack.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Northern_Alliance.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Prestim.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Shan_Taum_The_Smug.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Silent_Forest.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/The_Siege_Of_Barag_Gor.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/To_The_Harbour_Of_Tirigaz.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps/Towards_Mountains_of_Haag.map +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/01_End_Of_Peace.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/02_The_Human_Army.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/03_Towards_Mountains_of_Haag.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/04_The_Siege_Of_Barag_Gor.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/05_To_The_Harbour_Of_Tirigaz.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/06_Black_Flag.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/07_Desert_Of_Death.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/08_Silent_Forest.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/09_Shan_Taum_The_Smug.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/10_Saving_Inarix.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/11_Clash_Of_Armies.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/12_Giving_Some_Back.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/13_Dwarvish_Stand.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/14_Back_Home.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/15_Civil_War.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/16_Coward.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/17_Human_Horde.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/18_Northern_Alliance.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios/19_Epilogue.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/units/Novice_Orcish_Shaman.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/units/Old_Orcish_Shaman.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/units/Orcish_Shaman.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/units/Watch_Tower.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/utils/deaths.cfg +%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/utils/utils.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/_main.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/changelog +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/aiglondur.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/angarthing.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/dulcatulos.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/elurin.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/hamel.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/karrag.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/maskeddwarf.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/maskeddwarf2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/maskeddwarf3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/maskeddwarf4.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/pelias.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/perrin.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits/ratheln.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack4.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack5.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack6.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack7.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack8.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-attack9.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-defend1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-defend2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-defend3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-lead.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-ranged1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist-ranged2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/annalist.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-attack1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-attack2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-attack3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-attack4.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-defend.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged10.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged4.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged5.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged6.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged7.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged8.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged9.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack10.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack4.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack5.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack6.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack7.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack8.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-attack9.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-defend1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-defend2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-defend3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-lead.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-ranged1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster-ranged2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/loremaster.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-attack-n.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-attack-ne.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-attack-s.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-attack-se.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-defend.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-melee1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard-melee2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_dragonguard.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-axe1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-axe2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-axe3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-axe4.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-axe5.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-axedefend.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-hammer.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-hammer1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-hammer2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-hammer3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter-hammerdefend.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_fighter.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_lord-attack-hammer.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_lord-attack.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_lord-defend.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_lord-ranged.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_lord.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_steelclad-attack-hammer.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_steelclad-attack.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_steelclad-defend.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_steelclad.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-attack-n.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-attack-ne.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-attack-s.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-attack-se.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-defend.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-die1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-die2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-die3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-melee1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer-melee2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderer.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-attack-n.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-attack-ne.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-attack-s.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-attack-se.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-defend.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-melee1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard-melee2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_thunderguard.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack10.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack4.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack5.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack6.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack7.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack8.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-attack9.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-defend1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-defend2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-defend3.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-lead.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-ranged1.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness-ranged2.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/witness.png +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/at_the_east_gate.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/fear.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/forbidden_forest.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/high_pass.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/invaders.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/mages_and_drakes.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/reclaiming_the_past.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/strange_allies.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/the_court_of_karrag.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/the_siege_of_kal_kartha.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/troll_bridge.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps/underlevels.map +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/01_At_The_East_Gate.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/02_Reclaiming_The_Past.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/03_Strange_Allies.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/04_Troll_Bridge.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/05_Invaders.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/06_High_Pass.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/07_Mages_and_Drakes.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/08_Fear.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/09_Forbidden_Forest.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/10_The_Siege_of_Kal_Kartha.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/11_The_Court_of_Karrag.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/12_The_Underlevels.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios/13_Epilogue.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Annalist.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Loremaster.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Dragonguard.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Fighter.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Lord.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Steelclad.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Thunderer.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Thunderguard.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Rune_Lord.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Witness.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/utils/herodeaths.cfg +%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/utils/macros.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/_main.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/campaign_image.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/addroran.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/aethyr.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/archmage.png @@ -682,13 +1603,13 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/edmond.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/eldaric.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/familiar.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/haldric-mad.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/haldric.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/isomithir.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/jessica.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/jevyan.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/knight.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/lady_outlaw.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/lich.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/logalmier.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/rithrandil.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/typhon.png @@ -697,19 +1618,17 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/prince_finds_wesnoth.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/rough_landing.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/story1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/the_duel.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/tgi-blackmore.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/tgi-clearwater.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/tgi-jevyan.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/tgi-southbay.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/tgi-stormvale.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/tgi-thegreenisle.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/the_great_continent.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/the_green_isle.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/trow-logo.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/west.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-bite1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-bite2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-bite3.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-breath.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-attack-tail.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon-defend.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/fire-dragon.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/kilan_elvish_champion.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/kalian-elvish-champion.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-attack-sling1.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-attack-sling2.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-princess-attack-staff1.png @@ -727,36 +1646,32 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen-leading.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/neutral-outlaw-queen.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-attack-ranged1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-attack-ranged2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-attack-ranged3.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-attack-sword.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-bow-1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-bow-2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-bow-3.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-bow-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-bow.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-leading.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander-sword-1.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-commander.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-fighter-attack.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-fighter-attack2.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-fighter-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-fighter.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-attack-ranged1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-attack-ranged2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-attack-ranged3.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-attack-sword.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-bow-1.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-bow-2.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-bow-3.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-bow-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-bow.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-leading.png +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord-sword-1.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-lord.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-youth-attack.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-youth-attack2.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-youth-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/noble-youth.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-attack.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-defend.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-die-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-die-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone-moving.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-chocobone.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-vampirelady-attack.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-vampirelady-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-vampirelady-range.png @@ -769,30 +1684,30 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wose-sapling-attack.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wose-sapling-defend.png %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wose-sapling.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Beach -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Final_Spring -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Harrowing_Escape -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_New_Land -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Summer_of_Storms -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Clearwater_Port -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Cursed_Isle -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Elf_Lords -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Fallen_Lich_Point -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Peoples_in_Decline -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Return_of_the_Fleet -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Rise_of_Wesnoth -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Rough_Landing -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Sewer -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Southbay_in_Winter -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Temple_in_the_Deep -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Dragon -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Fall -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Midlands -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Oldwood -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Plan -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_River_Road -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Vanguard -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Troll_Hole +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Beach.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Final_Spring.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Harrowing_Escape.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_New_Land.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/A_Summer_of_Storms.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Clearwater_Port.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Cursed_Isle.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Elf_Lords.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Fallen_Lich_Point.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Peoples_in_Decline.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Return_of_the_Fleet.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Rise_of_Wesnoth.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Rough_Landing.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Sewer.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Southbay_in_Winter.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Temple_in_the_Deep.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Dragon.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Fall.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Midlands.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Oldwood.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Plan.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_River_Road.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/The_Vanguard.map +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps/Troll_Hole.map %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/01_A_Summer_of_Storms.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/02_The_Fall.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/03_A_Harrowing_Escape.cfg @@ -820,8 +1735,6 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/21_The_Plan.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/22_Rise_of_Wesnoth.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/23_Epilogue.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Chocobone.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Fire_Dragon.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Fireball.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Commander.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Fighter.cfg @@ -831,24 +1744,19 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Outlaw_Queen.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Vampire_Lady.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Warrior_King.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Wesfolk_Lady.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Wesfolk_Leader.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Wesfolk_Outcast.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Wose_Sapling.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-abilities.cfg +%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-bigmap.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-deaths.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-intro.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-macros.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-nlmsg.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-nohome.cfg %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils/trow-noisle.cfg -%%DATADIR%%/data/campaigns/The_South_Guard.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/external_binary_data/images/TSG_campaign_icon.png -%%DATADIR%%/data/campaigns/The_South_Guard/external_binary_data/images/TSG_campaign_image.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/attacks/rectangular_shield.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/attacks/shield.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-attack.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-defend.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-die-1.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-die-2.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone-moving.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone/chocobone.png +%%DATADIR%%/data/campaigns/The_South_Guard/_main.cfg %%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/dismounted-commander-attack1.png %%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/dismounted-commander-attack2.png %%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/dismounted-commander-defend.png @@ -861,28 +1769,17 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/junior-commander-defend.png %%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/junior-commander-moving.png %%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/junior-commander.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SGflag-1.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SGflag-2.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SGflag-3.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander-attack-shield.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander-attack.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander-defend.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander-leading.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/assault-commander.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander-attack-shield.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander-attack.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander-defend.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander-leading.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick/infantry-commander.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-attack.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-defend.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-die-1.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-die-2.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-ranged1.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich-ranged2.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/lich/demilich.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/misc/cross.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/misc/dot.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/mounted-general-defend.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/mounted-general-lance-1.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/mounted-general-lance-2.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/mounted-general-lance.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/mounted-general-moving.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/mounted-general.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SG-flag-1.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SG-flag-2.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SG-flag-3.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SG-flag-4.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/flag/SG-flag-icon.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/deoran-glad.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/deoran-mad.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/deoran-sad.png @@ -890,95 +1787,81 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/ethiliel-mad.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/ethiliel.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/hylas.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/lich.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/mal-mbrin.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/sir-gerrick.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/tharzo-kalain.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/urza-afalas-masked.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/urza-afalas.png %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/urza-mathin.png %%DATADIR%%/data/campaigns/The_South_Guard/images/story/bigmap.jpg %%DATADIR%%/data/campaigns/The_South_Guard/images/story/fall.jpg %%DATADIR%%/data/campaigns/The_South_Guard/images/story/summer.jpg -%%DATADIR%%/data/campaigns/The_South_Guard/images/story/westin.jpg %%DATADIR%%/data/campaigns/The_South_Guard/images/story/winter.jpg -%%DATADIR%%/data/campaigns/The_South_Guard/maps/1_Born_To_The_Banner -%%DATADIR%%/data/campaigns/The_South_Guard/maps/2_Proven_By_The_Sword -%%DATADIR%%/data/campaigns/The_South_Guard/maps/3_A_Desperate_Errand -%%DATADIR%%/data/campaigns/The_South_Guard/maps/4_Vale_of_Tears -%%DATADIR%%/data/campaigns/The_South_Guard/maps/5_Choice_In_The_Fog -%%DATADIR%%/data/campaigns/The_South_Guard/maps/6a_Tidings_Good_And_Ill -%%DATADIR%%/data/campaigns/The_South_Guard/maps/6b_The_Long_March -%%DATADIR%%/data/campaigns/The_South_Guard/maps/7a_Into_The_Depths -%%DATADIR%%/data/campaigns/The_South_Guard/maps/7b_Pebbles_In_The_Flood -%%DATADIR%%/data/campaigns/The_South_Guard/maps/8a_Vengeance -%%DATADIR%%/data/campaigns/The_South_Guard/maps/8b_The_Tides_of_War -%%DATADIR%%/data/campaigns/The_South_Guard/maps/_Unused/A_Snowy_Mountain -%%DATADIR%%/data/campaigns/The_South_Guard/maps/_Unused/Between_Fire_And_Sword -%%DATADIR%%/data/campaigns/The_South_Guard/maps/_Unused/Finding_The_Elves -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/1.Born_To_The_Banner.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/2.Proven_By_The_Sword.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/3.A_Desparate_Errand.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/4.Vale_of_Tears.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/5.Choice_In_The_Fog.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/6a.Tidings_Good_And_Ill.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/6b.The_Long_March.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/7a.Into_The_Depths.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/7b.Pebbles_In_The_Flood.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/8a.Vengeance.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/8b.The_Tides_of_War.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/9a.Elf_Epilogue.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/9b.Bandit_Epilogue.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/units/1.Junior_Commander.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/units/2.Horseman_Commander.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/units/3.Dismounted_Commander.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/units/4.Infantry_Commander.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/units/5.Assault_Commander.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/units/Chocobone.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/units/Demilich.cfg -%%DATADIR%%/data/campaigns/The_South_Guard/units/Invisible.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/images/units/eyestalk-attack-1.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/units/eyestalk-attack-2.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/units/eyestalk.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/units/gerrick-attack-shield.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/units/gerrick-attack.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/units/gerrick-defend.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/units/gerrick-leading.png +%%DATADIR%%/data/campaigns/The_South_Guard/images/units/gerrick.png +%%DATADIR%%/data/campaigns/The_South_Guard/maps/1_Born_To_The_Banner.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/2_Proven_By_The_Sword.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/3_A_Desperate_Errand.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/4_Vale_of_Tears.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/5_Choice_In_The_Fog.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/6a_Tidings_Good_And_Ill.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/6b_The_Long_March.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/7a_Into_The_Depths.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/7b_Pebbles_In_The_Flood.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/8a_Return_To_Kerlath.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/8b_The_Tides_of_War.map +%%DATADIR%%/data/campaigns/The_South_Guard/maps/9a_Vengeance.map +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/01_Born_To_The_Banner.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/02_Proven_By_The_Sword.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/03_A_Desparate_Errand.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/04_Vale_of_Tears.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/05_Choice_In_The_Fog.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/06a_Tidings_Good_And_Ill.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/06b_The_Long_March.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/07a_Into_The_Depths.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/07b_Pebbles_In_The_Flood.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/08a_Return_To_Kerlath.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/08b_The_Tides_of_War.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/09a_Vengeance.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/09b_Bandit_Epilogue.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/scenarios/10a_Elf_Epilogue.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Assault_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Dismounted_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Eyestalk.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Horseman_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Infantry_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Junior_Commander.cfg +%%DATADIR%%/data/campaigns/The_South_Guard/units/Mounted_General.cfg %%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_deaths.cfg %%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_help.cfg %%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_story.cfg %%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_unit_utils.cfg %%DATADIR%%/data/campaigns/The_South_Guard/utils/sg_utils.cfg -%%DATADIR%%/data/campaigns/Two_Brothers.cfg -%%DATADIR%%/data/campaigns/Two_Brothers/external_binary_data/images/TB_campaign_image.png +%%DATADIR%%/data/campaigns/Two_Brothers/_main.cfg %%DATADIR%%/data/campaigns/Two_Brothers/images/arne.png %%DATADIR%%/data/campaigns/Two_Brothers/images/bjarn.png -%%DATADIR%%/data/campaigns/Two_Brothers/images/terrain/gate1.png -%%DATADIR%%/data/campaigns/Two_Brothers/images/terrain/gate2.png -%%DATADIR%%/data/campaigns/Two_Brothers/images/terrain/gate3.png -%%DATADIR%%/data/campaigns/Two_Brothers/maps/1_Rooting_Out_A_Mage -%%DATADIR%%/data/campaigns/Two_Brothers/maps/2_The_Chase -%%DATADIR%%/data/campaigns/Two_Brothers/maps/3_Guarded_Castle -%%DATADIR%%/data/campaigns/Two_Brothers/maps/4_Return_to_the_Village +%%DATADIR%%/data/campaigns/Two_Brothers/images/campaign_image.png +%%DATADIR%%/data/campaigns/Two_Brothers/maps/1_Rooting_Out_A_Mage.map +%%DATADIR%%/data/campaigns/Two_Brothers/maps/2_The_Chase.map +%%DATADIR%%/data/campaigns/Two_Brothers/maps/3_Guarded_Castle.map +%%DATADIR%%/data/campaigns/Two_Brothers/maps/4_Return_to_the_Village.map %%DATADIR%%/data/campaigns/Two_Brothers/scenarios/1_Rooting_Out_A_Mage.cfg %%DATADIR%%/data/campaigns/Two_Brothers/scenarios/2_The_Chase.cfg %%DATADIR%%/data/campaigns/Two_Brothers/scenarios/3_Guarded_Castle.cfg %%DATADIR%%/data/campaigns/Two_Brothers/scenarios/4_Return_to_the_Village.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_campaign_icon.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_campaign_image.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_difficulty_challenging.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_difficulty_hard.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images/UtBS_difficulty_normal.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-core-compact.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-core-compact2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-melee1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-melee2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-ranged1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-orb-small.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-spire-bottom.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/alien-spire-top.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/_main.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/ant-attack.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/ant-defend.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/ant.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks/bolas.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/blank.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/corrupted-elf-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/corrupted-elf-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/corrupted-elf.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks/fist-golem.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks/glowing-fist.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks/sand-storm.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/crab-attack1.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/crab-attack2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/crab-defend.png @@ -991,34 +1874,8 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/demon-attack-2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/demon-defend.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/demon.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-attack4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-ranged1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-ranged3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer-ranged4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-explorer.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-ranged1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-ranged3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder-ranged4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-pathfinder.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-ranged1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout-ranged3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dwarf-scout.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/eloh.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/dust-devil.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-attack1.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-attack2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-death1.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/fireghost-death2.png @@ -1036,17 +1893,7 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander-ranged1.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander-ranged2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/human-commander.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/bones.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/bonestack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/burial.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/cage.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/coffin2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/desert-elvish-druid-statue.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/desert-elvish-shyde-statue.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/dragonstatue-old.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/firesword.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/galleon-elf.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/galleon-human.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/kaleh-dead.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/magiccircle-n.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/magiccircle-ne.png @@ -1055,15 +1902,15 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/magiccircle-se.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/magiccircle-sw.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/orcish-flag2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rock-cairn.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/parchment.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune-lightblue-small.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune-violet2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune2-burning.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune3-burning.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/rune4-burning.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/wreck.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/keratur.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/UTBSshot.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/UtBS_title.jpg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/kaleh_story.jpg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/night_of_fallen_stars.jpg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/10afternoon2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/11dusk2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/12longdark1.png @@ -1079,288 +1926,6 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/7dawn2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/8morning2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/9midday2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-guardian.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-ranged-6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-moving-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-moving-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-moving-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-defend-both.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter-defend-melee.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-hunter.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-sentinel.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/naga-warden.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-corrupted-elf-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-corrupted-elf-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-corrupted-elf.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer+female.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-die1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-die2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-die3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-die4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-female-die1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-female-die2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-female-die3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer-female-die4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-archer.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger+female.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-die1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-die2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-die3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger-die4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-avenger.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain-leading.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-captain.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-champion.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing7.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-healing8.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid-ranged.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-druid.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-fighter.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hero.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-moving.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-ranged1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-horse-archer.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-melee.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-ranged-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-ranged-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter-ranged-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-hunter.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-attack4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman+female.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-attack4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-die1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-die2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-die3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman-die4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marksman.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-en-guarde.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal-leading.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-marshal.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider-moving.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-outrider.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-melee1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-melee2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-ranged1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-ranged3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler-ranged4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-prowler.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger+female.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-die1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-die2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-die3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger-die4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-ranger.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider-moving.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-rider.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout-moving.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-scout.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel-melee.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel-ranged-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel-ranged-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sentinel.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal7.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal8.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman-heal9.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shaman.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-attack4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter+female.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-attack4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-bow-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-bow.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-die1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-die2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-die3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter-die4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-sharpshooter.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-ftouch-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-ftouch-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-ftouch-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing10.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing11.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing12.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing7.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing8.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-healing9.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde-ranged.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/desert-elvish-shyde.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-leading.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-melee-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh-ranged.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/kaleh.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-melee-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-ranged-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-ranged-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym-ranged-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves/nym.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-defend-melee.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-defend-ranged.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-melee-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-ranged-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker-ranged-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/orcish-nightstalker.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/cloaked.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/eloh.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/eloh_rage.png @@ -1371,82 +1936,436 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/grog.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/kaleh.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/melusand.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/naga-hunter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/naga-with-bow.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/nym.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/rogrimir.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/uncloaked.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/zhul.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/bola-n.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/bola-ne.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/spider-lich.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/sand-storm-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/sand-storm-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/sand-storm-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/sand-storm-4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/sand-storm-5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/sand-storm-6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/sand-storm-7.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles/sand-storm-8.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/abyss2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/abyssbridge2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/coast.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/dark_tile1.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/dark_tile2.png %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/dark_tile3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/desert_crater.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/new_sand_rubble.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/troll-shaman.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-attack4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dread-lich.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dreadbat-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dreadbat-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-dreadbat.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider-moving.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-skeletonrider.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-defence.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-ranged1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-staff1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2-staff2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/undead-sorcerer2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/10Fish2 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/11Island5 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/12Final4 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/13Epilogue -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/1MorningAfter5 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/2HarshSands12 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/3Night4 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/4OrcishFoothills9 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/5StruggleNew5 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/6_1TrollMission5 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/6_2DwarfMission3 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/7_1DwarfInterlude2 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/7_2TrollInterlude -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/8Frying8 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/9Water5 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/10_Fish.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/11_Island.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/12_Final.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/darkcastle.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-n-ne-nw-s.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-n-ne-nw.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-n-ne.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-n.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-ne-nw-s.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-ne-se.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-ne.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-nw-n.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-nw.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-s-nw-ne-n.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-s-sw-nw.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-s-sw.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-s.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-se-s.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-se.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-sw-nw-n.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-sw-nw.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/lava-sw.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/blank.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/core-compact.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/core-compact2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/orb-small-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/orb-small-melee1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/orb-small-melee2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/orb-small-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/orb-small-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/orb-small.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/spire-bottom.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/spire-top.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-ranged3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer-ranged4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/explorer.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder-ranged3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder-ranged4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/pathfinder.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/scout-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/scout-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/scout-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/scout-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/scout-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/scout-ranged3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves/scout.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-female-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-female-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-female-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-female-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-bow-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-bow-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-bow-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-leading.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-bow-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-bow-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-bow-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/corrupted-elf-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/corrupted-elf-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/corrupted-elf.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-healing1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-healing2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-healing3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-healing4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-healing5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-healing6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-healing7.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-healing8.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/eloh-serene.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-bow-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-bow-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-bow-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-bow-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-bow-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-bow-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horse-archer-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horse-archer-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horse-archer-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horse-archer-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horse-archer-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horse-archer.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-ranged-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-leading.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-melee-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-melee-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-ranged-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-ranged-4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-ranged-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/kaleh.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-leading.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/nym-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/nym-melee-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/nym-melee-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/nym-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/nym-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/nym-ranged-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/nym.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/outrider-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/outrider-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/outrider-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/outrider-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/outrider-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/outrider.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler-melee1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler-melee2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler-ranged1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler-ranged2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler-ranged3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler-ranged4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/prowler.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/rider-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/rider-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/rider-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/rider-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/rider-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/rider.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sentinel-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sentinel-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sentinel-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sentinel-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sentinel.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal7.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal8.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman-heal9.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shaman.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-bow-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-bow.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-die1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-die2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-die3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-die4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-ftouch-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-ftouch-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-ftouch-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing10.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing11.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing12.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing7.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing8.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-healing9.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/shyde.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-defend-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-defend-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-defend-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-defend-4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian-defend-5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/guardian.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-defend-both.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-defend-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-moving-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-moving-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-moving-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-ranged-3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-ranged-4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-ranged-5.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-ranged-6.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/sentinel.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas/warden.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightstalker-defend-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightstalker-defend-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightstalker-melee-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightstalker-melee-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightstalker-ranged-1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightstalker-ranged-2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/orcs/nightstalker.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/trolls/shaman-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/trolls/shaman-melee.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/trolls/shaman-ranged.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/trolls/shaman.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dread-lich-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dread-lich-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dread-lich-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dread-lich-attack3.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dread-lich-attack4.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dread-lich-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dread-lich.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dreadbat-attack.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dreadbat-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/dreadbat.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/skeletonrider-attack1.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/skeletonrider-attack2.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/skeletonrider-defend.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/skeletonrider-moving.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead/skeletonrider.png +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/01_The_Morning_After.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/02_Across_the_Harsh_Sands.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/03_A_Stirring_in_the_Night.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/04_Descending_into_Darkness.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/05_A_Subterranean_Struggle.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/06a_In_the_Tunnels_of_the_Trolls.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/06b_In_the_Domain_of_the_Dwarves.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/07a_Dealing_with_Dwarves.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/07b_Talking_with_Trolls.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/08_Out_of_the_Frying_Pan.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/09_Blood_is_Thicker_Than_Water.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/10_Speaking_with_the_Fishes.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/11_Battle_for_Zocthanol_Isle.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/12_The_Final_Confrontation.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps/13_Epilogue.map +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/01_The_Morning_After.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/02_Across_the_Harsh_Sands.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/03_Stirring_in_the_Night.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/03_Stirring_in_the_Night_alt.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/04_Descending_into_Darkness.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/05_A_Subterranean_Struggle.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/06a_In_the_Tunnels_of_Trolls.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/06b_In_the_Domain_of_Dwarves.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/07a_Dealing_with_Dwarves.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/07b_Talking_with_Trolls.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/08_Out_of_the_Frying_Pan.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/09_Blood_is_Thicker_Than_Water.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/10_Speaking_with_the_Fishes.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/11_Battle_for_Zocthanol_Isle.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/12_The_Final_Confrontation.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/13_Epilogue.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/1_Morning_After.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/2_Harsh_Sands.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/3_Long_Night.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/4_Orcish_Foothills.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/5_Struggle.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/6_1_Hunting_Trolls.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/6_2_Hunting_Dwarves.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/7_1_DwarfInterlude.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/7_2_TrollInterlude.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/8_Frying_Pan.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/9_Water.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/challenge.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/creep_death.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/destroy_tent.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/elf_corpse.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/orc_party.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/possesion.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/prestart.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/recruit_tweak.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/scenario_start.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/sides_setup.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/story_chapter_3.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt/war_cry.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Body.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Body2.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Body3.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Minion.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Spire.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ant.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Blank.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Cave_Spider2.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Cave_Spider.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Confused_Ant.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Corrupted_Elf.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Crab_Man.cfg @@ -1454,7 +2373,6 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dark_Assassin1.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dark_Assassin2.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dark_Assassin3.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Deep_One.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Archer.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Avenger.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Captain.cfg @@ -1479,29 +2397,20 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Divine_Avatar.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Divine_Incarnation.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dread_Bat.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dust_Devil.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dwarvish_Explorer.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dwarvish_Pathfinder.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Dwarvish_Scout.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Elyssa_Arch_Mage.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Elyssa_Great_Mage.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Elyssa_Red_Mage.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Elyssa_Silver_Mage.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Ghost.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Nightgaunt.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Shadow.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Spectre.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ethereal_Wraith.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Flesh_Golem.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Garak_Captain.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Garak_Marshal.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Haunt.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Human_Commander.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Ixthala_Demon.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Captain.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Champion.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Fighter.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Hero.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh_Marshal.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Kaleh.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Lava_Monster.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Lava_Monster2.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Lava_Monster3.cfg @@ -1509,48 +2418,4947 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Naga_Hunter.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Naga_Sentinel.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Naga_Warden.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Necromancer2.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Nym_Hunter.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Nym_Prowler.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Nym_Sentinel.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Small_Mudcrawler.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Spider_Lich.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Troll_Shaman.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Troll_Zombie.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Undead_Horseman.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Zhul_Druid.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Zhul_Shyde.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Zhul_Star.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/adjacent_custom.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/deaths.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/deaths2.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/deaths3.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/dialog-macros.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/global-events.cfg +%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/kaleh-abilities.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/macros.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/terrain.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/terrain_graphics.cfg %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/time.cfg -%%DATADIR%%/data/convert.pl -%%DATADIR%%/data/english.cfg -%%DATADIR%%/data/factions/alliance_of_darkness.cfg -%%DATADIR%%/data/factions/alliance_of_light.cfg -%%DATADIR%%/data/factions/drakes-aoh.cfg -%%DATADIR%%/data/factions/drakes-default.cfg -%%DATADIR%%/data/factions/knalgans-aoh.cfg -%%DATADIR%%/data/factions/knalgans-default.cfg -%%DATADIR%%/data/factions/loyalists-aoh.cfg -%%DATADIR%%/data/factions/loyalists-default.cfg -%%DATADIR%%/data/factions/northerners-aoh.cfg -%%DATADIR%%/data/factions/northerners-default.cfg -%%DATADIR%%/data/factions/rebels-aoh.cfg -%%DATADIR%%/data/factions/rebels-default.cfg -%%DATADIR%%/data/factions/undead-aoh.cfg -%%DATADIR%%/data/factions/undead-default.cfg -%%DATADIR%%/data/fonts.cfg -%%DATADIR%%/data/game.cfg -%%DATADIR%%/data/help.cfg -%%DATADIR%%/data/hotkeys.cfg -%%DATADIR%%/data/items.cfg -%%DATADIR%%/data/language.cfg +%%DATADIR%%/data/campaigns/tutorial/images/portraits/delfador.png +%%DATADIR%%/data/campaigns/tutorial/images/portraits/konrad.png +%%DATADIR%%/data/campaigns/tutorial/images/portraits/lisar.png +%%DATADIR%%/data/campaigns/tutorial/images/units/elder-mage-defend.png +%%DATADIR%%/data/campaigns/tutorial/images/units/elder-mage-melee1.png +%%DATADIR%%/data/campaigns/tutorial/images/units/elder-mage-melee2.png +%%DATADIR%%/data/campaigns/tutorial/images/units/elder-mage-ranged1.png +%%DATADIR%%/data/campaigns/tutorial/images/units/elder-mage-ranged2.png +%%DATADIR%%/data/campaigns/tutorial/images/units/elder-mage-ranged3.png +%%DATADIR%%/data/campaigns/tutorial/images/units/elder-mage.png +%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-attack-1.png +%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-attack-2.png +%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-attack-3.png +%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-attack-4.png +%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-defend.png +%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess.png +%%DATADIR%%/data/campaigns/tutorial/images/units/konrad-fighter-attack-1.png +%%DATADIR%%/data/campaigns/tutorial/images/units/konrad-fighter-attack-2.png +%%DATADIR%%/data/campaigns/tutorial/images/units/konrad-fighter-defend.png +%%DATADIR%%/data/campaigns/tutorial/images/units/konrad-fighter.png +%%DATADIR%%/data/campaigns/tutorial/images/units/quintain-attack1.png +%%DATADIR%%/data/campaigns/tutorial/images/units/quintain-attack2.png +%%DATADIR%%/data/campaigns/tutorial/images/units/quintain.png +%%DATADIR%%/data/campaigns/tutorial/maps/2_Tutorial.map +%%DATADIR%%/data/campaigns/tutorial/scenarios/1_Tutorial.cfg +%%DATADIR%%/data/campaigns/tutorial/scenarios/2_Speaking.cfg +%%DATADIR%%/data/campaigns/tutorial/scenarios/2_Tutorial.cfg +%%DATADIR%%/data/campaigns/tutorial/scenarios/utils.cfg +%%DATADIR%%/data/campaigns/tutorial/units/Elder_Mage.cfg +%%DATADIR%%/data/campaigns/tutorial/units/Fighter.cfg +%%DATADIR%%/data/campaigns/tutorial/units/Fighteress.cfg +%%DATADIR%%/data/campaigns/tutorial/units/Quintain.cfg +%%DATADIR%%/data/core/README +%%DATADIR%%/data/core/_main.cfg +%%DATADIR%%/data/core/about.cfg +%%DATADIR%%/data/core/editor-groups.cfg +%%DATADIR%%/data/core/fonts.cfg +%%DATADIR%%/data/core/help.cfg +%%DATADIR%%/data/core/hotkeys.cfg +%%DATADIR%%/data/core/images/attacks/axe-deathblade.png +%%DATADIR%%/data/core/images/attacks/axe-undead.png +%%DATADIR%%/data/core/images/attacks/axe.png +%%DATADIR%%/data/core/images/attacks/ballista.png +%%DATADIR%%/data/core/images/attacks/baneblade.png +%%DATADIR%%/data/core/images/attacks/battleaxe-undead.png +%%DATADIR%%/data/core/images/attacks/battleaxe.png +%%DATADIR%%/data/core/images/attacks/beak.png +%%DATADIR%%/data/core/images/attacks/blank-attack.png +%%DATADIR%%/data/core/images/attacks/bolas.png +%%DATADIR%%/data/core/images/attacks/bow-elven-magic.png +%%DATADIR%%/data/core/images/attacks/bow-elven.png +%%DATADIR%%/data/core/images/attacks/bow-orcish.png +%%DATADIR%%/data/core/images/attacks/bow.png +%%DATADIR%%/data/core/images/attacks/chakram.png +%%DATADIR%%/data/core/images/attacks/claws-animal.png +%%DATADIR%%/data/core/images/attacks/claws-drake.png +%%DATADIR%%/data/core/images/attacks/claws-flaming.png +%%DATADIR%%/data/core/images/attacks/claws-undead.png +%%DATADIR%%/data/core/images/attacks/claws.png +%%DATADIR%%/data/core/images/attacks/cleaver.png +%%DATADIR%%/data/core/images/attacks/club-small.png +%%DATADIR%%/data/core/images/attacks/club.png +%%DATADIR%%/data/core/images/attacks/crossbow-human.png +%%DATADIR%%/data/core/images/attacks/crossbow-orcish.png +%%DATADIR%%/data/core/images/attacks/crossbow-undead.png +%%DATADIR%%/data/core/images/attacks/crush-wose.png +%%DATADIR%%/data/core/images/attacks/curse.png +%%DATADIR%%/data/core/images/attacks/dagger-human.png +%%DATADIR%%/data/core/images/attacks/dagger-orcish.png +%%DATADIR%%/data/core/images/attacks/dagger-thrown-human.png +%%DATADIR%%/data/core/images/attacks/dagger-thrown-poison-human.png +%%DATADIR%%/data/core/images/attacks/dagger-thrown-poison-orcish.png +%%DATADIR%%/data/core/images/attacks/dagger-undead.png +%%DATADIR%%/data/core/images/attacks/dark-missile.png +%%DATADIR%%/data/core/images/attacks/dragonstaff.png +%%DATADIR%%/data/core/images/attacks/druidstaff.png +%%DATADIR%%/data/core/images/attacks/entangle.png +%%DATADIR%%/data/core/images/attacks/faerie-fire.png +%%DATADIR%%/data/core/images/attacks/fangs-animal.png +%%DATADIR%%/data/core/images/attacks/fangs-spider.png +%%DATADIR%%/data/core/images/attacks/fangs.png +%%DATADIR%%/data/core/images/attacks/fire-breath-drake.png +%%DATADIR%%/data/core/images/attacks/fireball.png +%%DATADIR%%/data/core/images/attacks/fist-human.png +%%DATADIR%%/data/core/images/attacks/fist-skeletal.png +%%DATADIR%%/data/core/images/attacks/fist-troll.png +%%DATADIR%%/data/core/images/attacks/fist-yeti.png +%%DATADIR%%/data/core/images/attacks/fist.png +%%DATADIR%%/data/core/images/attacks/frenzy.png +%%DATADIR%%/data/core/images/attacks/gaze.png +%%DATADIR%%/data/core/images/attacks/glaive.png +%%DATADIR%%/data/core/images/attacks/greatsword-elven.png +%%DATADIR%%/data/core/images/attacks/greatsword-human.png +%%DATADIR%%/data/core/images/attacks/greatsword-orcish.png +%%DATADIR%%/data/core/images/attacks/halberd.png +%%DATADIR%%/data/core/images/attacks/hammer-troll.png +%%DATADIR%%/data/core/images/attacks/hammer.png +%%DATADIR%%/data/core/images/attacks/hatchet.png +%%DATADIR%%/data/core/images/attacks/heater-shield.png +%%DATADIR%%/data/core/images/attacks/iceball.png +%%DATADIR%%/data/core/images/attacks/ink.png +%%DATADIR%%/data/core/images/attacks/javelin-human.png +%%DATADIR%%/data/core/images/attacks/javelin-orcish.png +%%DATADIR%%/data/core/images/attacks/lance.png +%%DATADIR%%/data/core/images/attacks/lightbeam.png +%%DATADIR%%/data/core/images/attacks/lightning.png +%%DATADIR%%/data/core/images/attacks/mace-and-chain.png +%%DATADIR%%/data/core/images/attacks/mace.png +%%DATADIR%%/data/core/images/attacks/magic-missile.png +%%DATADIR%%/data/core/images/attacks/morning-star.png +%%DATADIR%%/data/core/images/attacks/mud-glob.png +%%DATADIR%%/data/core/images/attacks/net.png +%%DATADIR%%/data/core/images/attacks/pick-axe.png +%%DATADIR%%/data/core/images/attacks/pike.png +%%DATADIR%%/data/core/images/attacks/pincers.png +%%DATADIR%%/data/core/images/attacks/pitchfork.png +%%DATADIR%%/data/core/images/attacks/quarterstaff.png +%%DATADIR%%/data/core/images/attacks/rectangular-shield.png +%%DATADIR%%/data/core/images/attacks/rock_thrown.png +%%DATADIR%%/data/core/images/attacks/sabre-human.png +%%DATADIR%%/data/core/images/attacks/scimitar.png +%%DATADIR%%/data/core/images/attacks/scythe.png +%%DATADIR%%/data/core/images/attacks/sickle.png +%%DATADIR%%/data/core/images/attacks/slam-drake.png +%%DATADIR%%/data/core/images/attacks/sling.png +%%DATADIR%%/data/core/images/attacks/spear-orcish.png +%%DATADIR%%/data/core/images/attacks/spear.png +%%DATADIR%%/data/core/images/attacks/staff-elven.png +%%DATADIR%%/data/core/images/attacks/staff-magic.png +%%DATADIR%%/data/core/images/attacks/staff-necromantic.png +%%DATADIR%%/data/core/images/attacks/staff-plague.png +%%DATADIR%%/data/core/images/attacks/sting.png +%%DATADIR%%/data/core/images/attacks/sword-elven.png +%%DATADIR%%/data/core/images/attacks/sword-flaming.png +%%DATADIR%%/data/core/images/attacks/sword-holy.png +%%DATADIR%%/data/core/images/attacks/sword-human-short.png +%%DATADIR%%/data/core/images/attacks/sword-human.png +%%DATADIR%%/data/core/images/attacks/sword-orcish.png +%%DATADIR%%/data/core/images/attacks/tail-dragon.png +%%DATADIR%%/data/core/images/attacks/tentacle.png +%%DATADIR%%/data/core/images/attacks/thorns.png +%%DATADIR%%/data/core/images/attacks/thunderstick.png +%%DATADIR%%/data/core/images/attacks/torch.png +%%DATADIR%%/data/core/images/attacks/touch-faerie.png +%%DATADIR%%/data/core/images/attacks/touch-undead.png +%%DATADIR%%/data/core/images/attacks/touch-zombie.png +%%DATADIR%%/data/core/images/attacks/trident.png +%%DATADIR%%/data/core/images/attacks/wail.png +%%DATADIR%%/data/core/images/attacks/waterspray.png +%%DATADIR%%/data/core/images/attacks/web.png +%%DATADIR%%/data/core/images/attacks/whip.png +%%DATADIR%%/data/core/images/attacks/woodensword.png +%%DATADIR%%/data/core/images/halo/elven/druid-healing1.png +%%DATADIR%%/data/core/images/halo/elven/druid-healing2.png +%%DATADIR%%/data/core/images/halo/elven/druid-healing3.png +%%DATADIR%%/data/core/images/halo/elven/druid-healing4.png +%%DATADIR%%/data/core/images/halo/elven/druid-healing5.png +%%DATADIR%%/data/core/images/halo/elven/druid-healing6.png +%%DATADIR%%/data/core/images/halo/elven/druid-healing7.png +%%DATADIR%%/data/core/images/halo/elven/druid-healing8.png +%%DATADIR%%/data/core/images/halo/elven/elven-shield-halo-100pct.png +%%DATADIR%%/data/core/images/halo/elven/elven-shield-halo-20pct.png +%%DATADIR%%/data/core/images/halo/elven/elven-shield-halo-40pct.png +%%DATADIR%%/data/core/images/halo/elven/elven-shield-halo-60pct.png +%%DATADIR%%/data/core/images/halo/elven/elven-shield-halo-80pct.png +%%DATADIR%%/data/core/images/halo/elven/faerie-fire-halo1.png +%%DATADIR%%/data/core/images/halo/elven/faerie-fire-halo2.png +%%DATADIR%%/data/core/images/halo/elven/faerie-fire-halo3.png +%%DATADIR%%/data/core/images/halo/elven/faerie-fire-halo4.png +%%DATADIR%%/data/core/images/halo/elven/faerie-fire-halo5.png +%%DATADIR%%/data/core/images/halo/elven/faerie-fire-halo6.png +%%DATADIR%%/data/core/images/halo/elven/faerie-fire-halo7.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo1.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo2.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo3.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo4.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo5.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo6.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo7.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo8.png +%%DATADIR%%/data/core/images/halo/elven/ice-halo9.png +%%DATADIR%%/data/core/images/halo/elven/nature-halo1.png +%%DATADIR%%/data/core/images/halo/elven/nature-halo2.png +%%DATADIR%%/data/core/images/halo/elven/nature-halo3.png +%%DATADIR%%/data/core/images/halo/elven/nature-halo4.png +%%DATADIR%%/data/core/images/halo/elven/nature-halo5.png +%%DATADIR%%/data/core/images/halo/elven/nature-halo6.png +%%DATADIR%%/data/core/images/halo/elven/nature-halo7.png +%%DATADIR%%/data/core/images/halo/elven/nature-halo8.png +%%DATADIR%%/data/core/images/halo/elven/shaman-heal-halo-1.png +%%DATADIR%%/data/core/images/halo/elven/shaman-heal-halo-2.png +%%DATADIR%%/data/core/images/halo/elven/shaman-heal-halo-3.png +%%DATADIR%%/data/core/images/halo/elven/shaman-heal-halo-4.png +%%DATADIR%%/data/core/images/halo/elven/shaman-heal-halo-5.png +%%DATADIR%%/data/core/images/halo/elven/shaman-heal-halo-6.png +%%DATADIR%%/data/core/images/halo/elven/shaman-heal-halo-7.png +%%DATADIR%%/data/core/images/halo/elven/shyde-stationary-halo1.png +%%DATADIR%%/data/core/images/halo/elven/shyde-stationary-halo2.png +%%DATADIR%%/data/core/images/halo/elven/shyde-stationary-halo3.png +%%DATADIR%%/data/core/images/halo/elven/shyde-stationary-halo4.png +%%DATADIR%%/data/core/images/halo/elven/shyde-stationary-halo5.png +%%DATADIR%%/data/core/images/halo/elven/shyde-stationary-halo6.png +%%DATADIR%%/data/core/images/halo/fire-aura.png +%%DATADIR%%/data/core/images/halo/holy/halo1.png +%%DATADIR%%/data/core/images/halo/holy/halo2.png +%%DATADIR%%/data/core/images/halo/holy/halo3.png +%%DATADIR%%/data/core/images/halo/holy/halo4.png +%%DATADIR%%/data/core/images/halo/holy/halo5.png +%%DATADIR%%/data/core/images/halo/holy/halo6.png +%%DATADIR%%/data/core/images/halo/holy/light-beam-1.png +%%DATADIR%%/data/core/images/halo/holy/light-beam-2.png +%%DATADIR%%/data/core/images/halo/holy/light-beam-3.png +%%DATADIR%%/data/core/images/halo/holy/light-beam-4.png +%%DATADIR%%/data/core/images/halo/holy/light-beam-5.png +%%DATADIR%%/data/core/images/halo/holy/light-beam-6.png +%%DATADIR%%/data/core/images/halo/holy/light-beam-7.png +%%DATADIR%%/data/core/images/halo/illuminates-aura.png +%%DATADIR%%/data/core/images/halo/lighthouse-aura.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-1-1.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-1-2.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-1-3.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-1-4.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-2-1.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-2-2.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-2-3.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-2-4.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-3-1.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-3-2.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-3-3.png +%%DATADIR%%/data/core/images/halo/lightning-bolt-3-4.png +%%DATADIR%%/data/core/images/halo/mage-halo1.png +%%DATADIR%%/data/core/images/halo/mage-halo2-big.png +%%DATADIR%%/data/core/images/halo/mage-halo2.png +%%DATADIR%%/data/core/images/halo/mage-halo3-big.png +%%DATADIR%%/data/core/images/halo/mage-halo3.png +%%DATADIR%%/data/core/images/halo/mage-halo4-big.png +%%DATADIR%%/data/core/images/halo/mage-halo4.png +%%DATADIR%%/data/core/images/halo/mage-halo5-big.png +%%DATADIR%%/data/core/images/halo/mage-halo5.png +%%DATADIR%%/data/core/images/halo/mage-halo6-big.png +%%DATADIR%%/data/core/images/halo/mage-preparation-halo1.png +%%DATADIR%%/data/core/images/halo/mage-preparation-halo2.png +%%DATADIR%%/data/core/images/halo/mage-preparation-halo3.png +%%DATADIR%%/data/core/images/halo/mage-preparation-halo4.png +%%DATADIR%%/data/core/images/halo/mage-preparation-halo5.png +%%DATADIR%%/data/core/images/halo/mage-preparation-halo6.png +%%DATADIR%%/data/core/images/halo/mage-preparation-halo7.png +%%DATADIR%%/data/core/images/halo/saurian-magic-halo-1.png +%%DATADIR%%/data/core/images/halo/saurian-magic-halo-2.png +%%DATADIR%%/data/core/images/halo/saurian-magic-halo-3.png +%%DATADIR%%/data/core/images/halo/saurian-magic-halo-4.png +%%DATADIR%%/data/core/images/halo/saurian-magic-halo-5.png +%%DATADIR%%/data/core/images/halo/saurian-magic-halo-6.png +%%DATADIR%%/data/core/images/halo/saurian-magic-halo-7.png +%%DATADIR%%/data/core/images/halo/siren-naia-touch-halo.png +%%DATADIR%%/data/core/images/halo/undead/black-magic-1.png +%%DATADIR%%/data/core/images/halo/undead/black-magic-2.png +%%DATADIR%%/data/core/images/halo/undead/black-magic-3.png +%%DATADIR%%/data/core/images/halo/undead/black-magic-4.png +%%DATADIR%%/data/core/images/halo/undead/black-magic-5.png +%%DATADIR%%/data/core/images/halo/undead/dark-magic-1.png +%%DATADIR%%/data/core/images/halo/undead/dark-magic-2.png +%%DATADIR%%/data/core/images/halo/undead/dark-magic-3.png +%%DATADIR%%/data/core/images/halo/undead/dark-magic-4.png +%%DATADIR%%/data/core/images/halo/undead/dark-magic-5.png +%%DATADIR%%/data/core/images/halo/undead/dark-magic-6.png +%%DATADIR%%/data/core/images/help/closed_section.png +%%DATADIR%%/data/core/images/help/hp-bars.png +%%DATADIR%%/data/core/images/help/hpxp.png +%%DATADIR%%/data/core/images/help/indentation.png +%%DATADIR%%/data/core/images/help/moving1.png +%%DATADIR%%/data/core/images/help/moving2.png +%%DATADIR%%/data/core/images/help/open_section.png +%%DATADIR%%/data/core/images/help/orb-blue.png +%%DATADIR%%/data/core/images/help/orb-green.png +%%DATADIR%%/data/core/images/help/orb-none.png +%%DATADIR%%/data/core/images/help/orb-red.png +%%DATADIR%%/data/core/images/help/orb-yellow.png +%%DATADIR%%/data/core/images/help/recruit.png +%%DATADIR%%/data/core/images/help/tooltip.png +%%DATADIR%%/data/core/images/help/topic.png +%%DATADIR%%/data/core/images/items/altar-evil.png +%%DATADIR%%/data/core/images/items/altar.png +%%DATADIR%%/data/core/images/items/ankh-necklace.png +%%DATADIR%%/data/core/images/items/archery-target-right.png +%%DATADIR%%/data/core/images/items/armor-golden.png +%%DATADIR%%/data/core/images/items/armor.png +%%DATADIR%%/data/core/images/items/axe.png +%%DATADIR%%/data/core/images/items/ball-blue.png +%%DATADIR%%/data/core/images/items/ball-green.png +%%DATADIR%%/data/core/images/items/ball-magenta.png +%%DATADIR%%/data/core/images/items/barrel.png +%%DATADIR%%/data/core/images/items/bomb.png +%%DATADIR%%/data/core/images/items/bones.png +%%DATADIR%%/data/core/images/items/bonestack.png +%%DATADIR%%/data/core/images/items/book1.png +%%DATADIR%%/data/core/images/items/book2.png +%%DATADIR%%/data/core/images/items/book3.png +%%DATADIR%%/data/core/images/items/book4.png +%%DATADIR%%/data/core/images/items/book5.png +%%DATADIR%%/data/core/images/items/bow-crystal.png +%%DATADIR%%/data/core/images/items/bow-elven.png +%%DATADIR%%/data/core/images/items/bow.png +%%DATADIR%%/data/core/images/items/box.png +%%DATADIR%%/data/core/images/items/brazier-lit1.png +%%DATADIR%%/data/core/images/items/brazier.png +%%DATADIR%%/data/core/images/items/buckler.png +%%DATADIR%%/data/core/images/items/burial.png +%%DATADIR%%/data/core/images/items/cage.png +%%DATADIR%%/data/core/images/items/chest-plain-closed.png +%%DATADIR%%/data/core/images/items/chest-plain-open.png +%%DATADIR%%/data/core/images/items/chest.png +%%DATADIR%%/data/core/images/items/cloak-green.png +%%DATADIR%%/data/core/images/items/coffin-closed.png +%%DATADIR%%/data/core/images/items/dragonstatue.png +%%DATADIR%%/data/core/images/items/dummy.png +%%DATADIR%%/data/core/images/items/flame-sword.png +%%DATADIR%%/data/core/images/items/flower1.png +%%DATADIR%%/data/core/images/items/flower2.png +%%DATADIR%%/data/core/images/items/flower3.png +%%DATADIR%%/data/core/images/items/flower4.png +%%DATADIR%%/data/core/images/items/football-shadow.png +%%DATADIR%%/data/core/images/items/football.png +%%DATADIR%%/data/core/images/items/gohere.png +%%DATADIR%%/data/core/images/items/gold-coins-large.png +%%DATADIR%%/data/core/images/items/gold-coins-medium.png +%%DATADIR%%/data/core/images/items/gold-coins-small.png +%%DATADIR%%/data/core/images/items/grain-sheaf.png +%%DATADIR%%/data/core/images/items/hammer-runic.png +%%DATADIR%%/data/core/images/items/holy-water.png +%%DATADIR%%/data/core/images/items/orcish-flag.png +%%DATADIR%%/data/core/images/items/ornate1.png +%%DATADIR%%/data/core/images/items/ornate2.png +%%DATADIR%%/data/core/images/items/potion-blue.png +%%DATADIR%%/data/core/images/items/potion-green.png +%%DATADIR%%/data/core/images/items/potion-grey.png +%%DATADIR%%/data/core/images/items/potion-poison.png +%%DATADIR%%/data/core/images/items/potion-red.png +%%DATADIR%%/data/core/images/items/potion-yellow.png +%%DATADIR%%/data/core/images/items/ring-brown.png +%%DATADIR%%/data/core/images/items/ring-gold.png +%%DATADIR%%/data/core/images/items/ring-red.png +%%DATADIR%%/data/core/images/items/ring-silver.png +%%DATADIR%%/data/core/images/items/ring-white.png +%%DATADIR%%/data/core/images/items/scarecrow.png +%%DATADIR%%/data/core/images/items/sceptre-of-fire.png +%%DATADIR%%/data/core/images/items/spear-fancy.png +%%DATADIR%%/data/core/images/items/staff-magic.png +%%DATADIR%%/data/core/images/items/staff.png +%%DATADIR%%/data/core/images/items/storm-trident.png +%%DATADIR%%/data/core/images/items/straw-bale1.png +%%DATADIR%%/data/core/images/items/straw-bale2.png +%%DATADIR%%/data/core/images/maps/mainmenu.png +%%DATADIR%%/data/core/images/maps/wesnoth-httt.jpg +%%DATADIR%%/data/core/images/maps/wesnoth.png +%%DATADIR%%/data/core/images/misc/blank-hex.png +%%DATADIR%%/data/core/images/misc/cross-white.png +%%DATADIR%%/data/core/images/misc/cross.png +%%DATADIR%%/data/core/images/misc/dot-white.png +%%DATADIR%%/data/core/images/misc/dot.png +%%DATADIR%%/data/core/images/misc/empty.png +%%DATADIR%%/data/core/images/misc/flag-red.png +%%DATADIR%%/data/core/images/misc/flag-white.png +%%DATADIR%%/data/core/images/misc/hero-icon.png +%%DATADIR%%/data/core/images/misc/icon-amla-tough.png +%%DATADIR%%/data/core/images/misc/logo.png +%%DATADIR%%/data/core/images/misc/schedule-afternoon.png +%%DATADIR%%/data/core/images/misc/schedule-dawn.png +%%DATADIR%%/data/core/images/misc/schedule-dusk.png +%%DATADIR%%/data/core/images/misc/schedule-firstwatch.png +%%DATADIR%%/data/core/images/misc/schedule-morning.png +%%DATADIR%%/data/core/images/misc/schedule-secondwatch.png +%%DATADIR%%/data/core/images/misc/schedule-underground-illum.png +%%DATADIR%%/data/core/images/misc/schedule-underground.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/drake-burner.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/drake-clasher.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/drake-fighter.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/drake-glider.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/elvish-shaman.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/ghoul.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/mermaid-initiate.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/merman-fighter.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/merman-hunter.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/naga-fighter.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/nagini-fighter.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/orcish-assassin.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/saurian-augur.png +%%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst/saurian-skirmisher.png +%%DATADIR%%/data/core/images/portraits/James_Woo/assassin.png +%%DATADIR%%/data/core/images/portraits/James_Woo/dwarf-guard.png +%%DATADIR%%/data/core/images/portraits/James_Woo/orc-warlord.png +%%DATADIR%%/data/core/images/portraits/James_Woo/orc-warlord2.png +%%DATADIR%%/data/core/images/portraits/James_Woo/orc-warlord3.png +%%DATADIR%%/data/core/images/portraits/James_Woo/orc-warlord4.png +%%DATADIR%%/data/core/images/portraits/James_Woo/orc-warlord5.png +%%DATADIR%%/data/core/images/portraits/James_Woo/troll.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-bandit.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-grand-knight.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-halberdier.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-highwayman.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-horseman.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-javelineer.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-knight.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-lancer.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-paladin.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-peasant.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-pikeman.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-royalguard.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-spearman.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-swordsman.png +%%DATADIR%%/data/core/images/portraits/Jason_Lutes/human-thug.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-archer+female.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-archer.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-captain.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-druid.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-fighter.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-hero.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-high-lord.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-lady.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-lord.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-marksman+female.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-marksman.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-ranger+female.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-ranger.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-scout.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-shaman.png +%%DATADIR%%/data/core/images/portraits/Kitty/elvish-shyde.png +%%DATADIR%%/data/core/images/portraits/Neoriceisgood/dwarvish_berzerker.png +%%DATADIR%%/data/core/images/portraits/Neoriceisgood/orcish_grunt.png +%%DATADIR%%/data/core/images/portraits/Neoriceisgood/orcish_leader.png +%%DATADIR%%/data/core/images/portraits/Neoriceisgood/orcish_shaman_old.png +%%DATADIR%%/data/core/images/portraits/Nicholas_Kerpan/human-poacher.png +%%DATADIR%%/data/core/images/portraits/Nicholas_Kerpan/human-thief.png +%%DATADIR%%/data/core/images/portraits/Other/brown-lich.png +%%DATADIR%%/data/core/images/portraits/Other/cavalryman.png +%%DATADIR%%/data/core/images/portraits/Other/elvish-noble-lady.png +%%DATADIR%%/data/core/images/portraits/Other/human-masterbowman.png +%%DATADIR%%/data/core/images/portraits/Other/scorpion.png +%%DATADIR%%/data/core/images/portraits/Other/silver_mage.png +%%DATADIR%%/data/core/images/portraits/Pekka_Aikio/human-bowman.png +%%DATADIR%%/data/core/images/portraits/Pekka_Aikio/human-longbowman.png +%%DATADIR%%/data/core/images/portraits/Tristan_Millner/dwarven-fighter.png +%%DATADIR%%/data/core/images/projectiles/bolas-n.png +%%DATADIR%%/data/core/images/projectiles/bolas-ne.png +%%DATADIR%%/data/core/images/projectiles/bone-n.png +%%DATADIR%%/data/core/images/projectiles/bone-ne.png +%%DATADIR%%/data/core/images/projectiles/bullet.png +%%DATADIR%%/data/core/images/projectiles/chakram.png +%%DATADIR%%/data/core/images/projectiles/dagger-n.png +%%DATADIR%%/data/core/images/projectiles/dagger-ne.png +%%DATADIR%%/data/core/images/projectiles/darkmissile-n.png +%%DATADIR%%/data/core/images/projectiles/darkmissile-ne.png +%%DATADIR%%/data/core/images/projectiles/entangle.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-n-1.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-n-2.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-n-3.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-n-4.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-n-5.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-ne-1.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-ne-2.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-ne-3.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-ne-4.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-ne-5.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-s-1.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-s-2.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-s-3.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-s-4.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-s-5.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-se-1.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-se-2.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-se-3.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-se-4.png +%%DATADIR%%/data/core/images/projectiles/fire-breath-se-5.png +%%DATADIR%%/data/core/images/projectiles/fire-burst-small-1.png +%%DATADIR%%/data/core/images/projectiles/fire-burst-small-2.png +%%DATADIR%%/data/core/images/projectiles/fire-burst-small-3.png +%%DATADIR%%/data/core/images/projectiles/fire-burst-small-4.png +%%DATADIR%%/data/core/images/projectiles/fire-burst-small-5.png +%%DATADIR%%/data/core/images/projectiles/fire-burst-small-6.png +%%DATADIR%%/data/core/images/projectiles/fire-burst-small-7.png +%%DATADIR%%/data/core/images/projectiles/fire-burst-small-8.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-1.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-10.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-11.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-12.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-13.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-14.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-15.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-16.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-2.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-3.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-4.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-5.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-6.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-7.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-8.png +%%DATADIR%%/data/core/images/projectiles/fireball-impact-9.png +%%DATADIR%%/data/core/images/projectiles/fireball-n-1.png +%%DATADIR%%/data/core/images/projectiles/fireball-n-2.png +%%DATADIR%%/data/core/images/projectiles/fireball-n.png +%%DATADIR%%/data/core/images/projectiles/fireball-nw-1.png +%%DATADIR%%/data/core/images/projectiles/fireball-nw-2.png +%%DATADIR%%/data/core/images/projectiles/fireball-nw.png +%%DATADIR%%/data/core/images/projectiles/gaze.png +%%DATADIR%%/data/core/images/projectiles/hatchet-1.png +%%DATADIR%%/data/core/images/projectiles/hatchet-2.png +%%DATADIR%%/data/core/images/projectiles/hatchet-3.png +%%DATADIR%%/data/core/images/projectiles/hatchet-4.png +%%DATADIR%%/data/core/images/projectiles/icemissile-n-1.png +%%DATADIR%%/data/core/images/projectiles/icemissile-n-2.png +%%DATADIR%%/data/core/images/projectiles/icemissile-n-3.png +%%DATADIR%%/data/core/images/projectiles/icemissile-n-4.png +%%DATADIR%%/data/core/images/projectiles/icemissile-n-5.png +%%DATADIR%%/data/core/images/projectiles/icemissile-n-6.png +%%DATADIR%%/data/core/images/projectiles/icemissile-n-7.png +%%DATADIR%%/data/core/images/projectiles/icemissile-ne-1.png +%%DATADIR%%/data/core/images/projectiles/icemissile-ne-2.png +%%DATADIR%%/data/core/images/projectiles/icemissile-ne-3.png +%%DATADIR%%/data/core/images/projectiles/icemissile-ne-4.png +%%DATADIR%%/data/core/images/projectiles/icemissile-ne-5.png +%%DATADIR%%/data/core/images/projectiles/icemissile-ne-6.png +%%DATADIR%%/data/core/images/projectiles/icemissile-ne-7.png +%%DATADIR%%/data/core/images/projectiles/ink.png +%%DATADIR%%/data/core/images/projectiles/lightning-bolt.png +%%DATADIR%%/data/core/images/projectiles/lightning-n.png +%%DATADIR%%/data/core/images/projectiles/lightning-ne.png +%%DATADIR%%/data/core/images/projectiles/missile-fire-n.png +%%DATADIR%%/data/core/images/projectiles/missile-fire-ne.png +%%DATADIR%%/data/core/images/projectiles/missile-n.png +%%DATADIR%%/data/core/images/projectiles/missile-ne.png +%%DATADIR%%/data/core/images/projectiles/mud-glob.png +%%DATADIR%%/data/core/images/projectiles/pitchfork-n.png +%%DATADIR%%/data/core/images/projectiles/pitchfork-ne.png +%%DATADIR%%/data/core/images/projectiles/spear-n.png +%%DATADIR%%/data/core/images/projectiles/spear-ne.png +%%DATADIR%%/data/core/images/projectiles/stone.png +%%DATADIR%%/data/core/images/projectiles/thorns-ne.png +%%DATADIR%%/data/core/images/projectiles/thorns.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-n-1.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-n-2.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-n-3.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-n-4.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-n-5.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-n-6.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-ne-1.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-ne-2.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-ne-3.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-ne-4.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-ne-5.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-ne-6.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-s-1.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-s-2.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-s-3.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-s-4.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-s-5.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-s-6.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-se-1.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-se-2.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-se-3.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-se-4.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-se-5.png +%%DATADIR%%/data/core/images/projectiles/wailprojectile-se-6.png +%%DATADIR%%/data/core/images/projectiles/water-spray.png +%%DATADIR%%/data/core/images/projectiles/web.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-impact-1.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-impact-2.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-impact-3.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-impact-4.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-impact-5.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-impact-6.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-impact-7.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-impact-8.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-n.png +%%DATADIR%%/data/core/images/projectiles/whitemissile-ne.png +%%DATADIR%%/data/core/images/scenery/castle-ruins.png +%%DATADIR%%/data/core/images/scenery/circle-magic-glow.png +%%DATADIR%%/data/core/images/scenery/circle-magic.png +%%DATADIR%%/data/core/images/scenery/dwarven-doors-closed.png +%%DATADIR%%/data/core/images/scenery/fire1.png +%%DATADIR%%/data/core/images/scenery/fire2.png +%%DATADIR%%/data/core/images/scenery/fire3.png +%%DATADIR%%/data/core/images/scenery/fire4.png +%%DATADIR%%/data/core/images/scenery/fire5.png +%%DATADIR%%/data/core/images/scenery/fire6.png +%%DATADIR%%/data/core/images/scenery/fire7.png +%%DATADIR%%/data/core/images/scenery/fire8.png +%%DATADIR%%/data/core/images/scenery/gate-rusty-se.png +%%DATADIR%%/data/core/images/scenery/gate-rusty-sw.png +%%DATADIR%%/data/core/images/scenery/icepack-1.png +%%DATADIR%%/data/core/images/scenery/leanto.png +%%DATADIR%%/data/core/images/scenery/lighthouse.png +%%DATADIR%%/data/core/images/scenery/mine-abandoned.png +%%DATADIR%%/data/core/images/scenery/monolith1.png +%%DATADIR%%/data/core/images/scenery/monolith2.png +%%DATADIR%%/data/core/images/scenery/monolith3.png +%%DATADIR%%/data/core/images/scenery/monolith4.png +%%DATADIR%%/data/core/images/scenery/nest-empty.png +%%DATADIR%%/data/core/images/scenery/nest-full.png +%%DATADIR%%/data/core/images/scenery/oak-leaning.png +%%DATADIR%%/data/core/images/scenery/pine1.png +%%DATADIR%%/data/core/images/scenery/pine2.png +%%DATADIR%%/data/core/images/scenery/rock-cairn.png +%%DATADIR%%/data/core/images/scenery/rock1.png +%%DATADIR%%/data/core/images/scenery/rock2.png +%%DATADIR%%/data/core/images/scenery/rock3.png +%%DATADIR%%/data/core/images/scenery/rock4.png +%%DATADIR%%/data/core/images/scenery/rubble.png +%%DATADIR%%/data/core/images/scenery/rune1-glow.png +%%DATADIR%%/data/core/images/scenery/rune1.png +%%DATADIR%%/data/core/images/scenery/rune2-glow.png +%%DATADIR%%/data/core/images/scenery/rune2.png +%%DATADIR%%/data/core/images/scenery/rune3-glow.png +%%DATADIR%%/data/core/images/scenery/rune3.png +%%DATADIR%%/data/core/images/scenery/rune4-glow.png +%%DATADIR%%/data/core/images/scenery/rune4.png +%%DATADIR%%/data/core/images/scenery/rune5-glow.png +%%DATADIR%%/data/core/images/scenery/rune5.png +%%DATADIR%%/data/core/images/scenery/rune6-glow.png +%%DATADIR%%/data/core/images/scenery/rune6.png +%%DATADIR%%/data/core/images/scenery/shipwreck-1.png +%%DATADIR%%/data/core/images/scenery/signpost.png +%%DATADIR%%/data/core/images/scenery/slab1.png +%%DATADIR%%/data/core/images/scenery/snowbits.png +%%DATADIR%%/data/core/images/scenery/temple1.png +%%DATADIR%%/data/core/images/scenery/tent-fancy-red.png +%%DATADIR%%/data/core/images/scenery/tent-ruin-1.png +%%DATADIR%%/data/core/images/scenery/tent-shop-weapons.png +%%DATADIR%%/data/core/images/scenery/trapdoor-closed.png +%%DATADIR%%/data/core/images/scenery/trapdoor-open.png +%%DATADIR%%/data/core/images/scenery/trash.png +%%DATADIR%%/data/core/images/scenery/village-human-burned1.png +%%DATADIR%%/data/core/images/scenery/village-human-burned2.png +%%DATADIR%%/data/core/images/scenery/village-human-burned3.png +%%DATADIR%%/data/core/images/scenery/village-human-burned4.png +%%DATADIR%%/data/core/images/scenery/well.png +%%DATADIR%%/data/core/images/scenery/windmill-01.png +%%DATADIR%%/data/core/images/scenery/windmill-02.png +%%DATADIR%%/data/core/images/scenery/windmill-03.png +%%DATADIR%%/data/core/images/scenery/windmill-04.png +%%DATADIR%%/data/core/images/scenery/windmill-05.png +%%DATADIR%%/data/core/images/scenery/windmill-06.png +%%DATADIR%%/data/core/images/scenery/windmill-07.png +%%DATADIR%%/data/core/images/scenery/windmill-08.png +%%DATADIR%%/data/core/images/scenery/windmill-09.png +%%DATADIR%%/data/core/images/scenery/windmill-10.png +%%DATADIR%%/data/core/images/scenery/windmill-11.png +%%DATADIR%%/data/core/images/scenery/windmill-12.png +%%DATADIR%%/data/core/images/scenery/windmill-13.png +%%DATADIR%%/data/core/images/scenery/windmill-14.png +%%DATADIR%%/data/core/images/scenery/windmill-15.png +%%DATADIR%%/data/core/images/scenery/windmill-16.png +%%DATADIR%%/data/core/images/scenery/windmill-17.png +%%DATADIR%%/data/core/images/scenery/windmill-18.png +%%DATADIR%%/data/core/images/scenery/wreck.png +%%DATADIR%%/data/core/images/terrain/alpha.png +%%DATADIR%%/data/core/images/terrain/alphamask.png +%%DATADIR%%/data/core/images/terrain/bridge-deep-n-s-tile.png +%%DATADIR%%/data/core/images/terrain/bridge-deep-ne-sw-tile.png +%%DATADIR%%/data/core/images/terrain/bridge-deep-se-nw-tile.png +%%DATADIR%%/data/core/images/terrain/bridge-joint-n-se-sw.png +%%DATADIR%%/data/core/images/terrain/bridge-joint-n-se.png +%%DATADIR%%/data/core/images/terrain/bridge-joint-n-sw.png +%%DATADIR%%/data/core/images/terrain/bridge-joint-ne-nw.png +%%DATADIR%%/data/core/images/terrain/bridge-joint-ne-s-nw.png +%%DATADIR%%/data/core/images/terrain/bridge-joint-ne-s.png +%%DATADIR%%/data/core/images/terrain/bridge-joint-s-nw.png +%%DATADIR%%/data/core/images/terrain/bridge-joint-se-sw.png +%%DATADIR%%/data/core/images/terrain/bridge-n-end.png +%%DATADIR%%/data/core/images/terrain/bridge-n-s-tile.png +%%DATADIR%%/data/core/images/terrain/bridge-n-s.png +%%DATADIR%%/data/core/images/terrain/bridge-n.png +%%DATADIR%%/data/core/images/terrain/bridge-ne-end.png +%%DATADIR%%/data/core/images/terrain/bridge-ne-sw-tile.png +%%DATADIR%%/data/core/images/terrain/bridge-ne-sw.png +%%DATADIR%%/data/core/images/terrain/bridge-ne.png +%%DATADIR%%/data/core/images/terrain/bridge-nw-end.png +%%DATADIR%%/data/core/images/terrain/bridge-nw.png +%%DATADIR%%/data/core/images/terrain/bridge-s-end.png +%%DATADIR%%/data/core/images/terrain/bridge-s.png +%%DATADIR%%/data/core/images/terrain/bridge-se-end.png +%%DATADIR%%/data/core/images/terrain/bridge-se-nw-tile.png +%%DATADIR%%/data/core/images/terrain/bridge-se-nw.png +%%DATADIR%%/data/core/images/terrain/bridge-se.png +%%DATADIR%%/data/core/images/terrain/bridge-sw-end.png +%%DATADIR%%/data/core/images/terrain/bridge-sw.png +%%DATADIR%%/data/core/images/terrain/bridge-swamp-n-s-tile.png +%%DATADIR%%/data/core/images/terrain/bridge-swamp-ne-sw-tile.png +%%DATADIR%%/data/core/images/terrain/bridge-swamp-se-nw-tile.png +%%DATADIR%%/data/core/images/terrain/castle/castle-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/castle-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/castle-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/castle-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/castle-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/castle-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/castle-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/castle-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/castle-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/castle-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/castle-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/castle-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/castle-tile.png +%%DATADIR%%/data/core/images/terrain/castle/castle-to-ice-n.png +%%DATADIR%%/data/core/images/terrain/castle/castle-to-ice-ne.png +%%DATADIR%%/data/core/images/terrain/castle/castle-to-ice-nw.png +%%DATADIR%%/data/core/images/terrain/castle/castle-to-water-n.png +%%DATADIR%%/data/core/images/terrain/castle/castle-to-water-ne.png +%%DATADIR%%/data/core/images/terrain/castle/castle-to-water-nw.png +%%DATADIR%%/data/core/images/terrain/castle/castle-walls.tmpl +%%DATADIR%%/data/core/images/terrain/castle/cobbles.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-floor.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-floor2.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-floor3.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-tile.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-e.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-ne.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-nw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-se.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-sw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-w.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-e.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-ne.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-nw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-se.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-sw.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-w.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-keep-floor.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-keep-tile.png +%%DATADIR%%/data/core/images/terrain/castle/dwarven-keep.png +%%DATADIR%%/data/core/images/terrain/castle/elven/concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/elven/concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/elven/concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/elven/concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/elven/convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/elven/convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/elven/convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/elven/convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/elven/grounds.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-inside-e.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-inside-ne.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-inside-nw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-inside-se.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-inside-sw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-inside-w.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-keep-e.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-keep-ne.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-keep-nw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-keep-se.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-keep-sw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-keep-w.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-tile.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-0-e.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-0-ne.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-0-nw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-0-se.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-0-sw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-0-w.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-1-e.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-1-ne.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-1-nw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-1-se.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-1-sw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-1-w.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-e.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-ne.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-nw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-se.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-sw.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep-wall-w.png +%%DATADIR%%/data/core/images/terrain/castle/elven/keep.png +%%DATADIR%%/data/core/images/terrain/castle/elven/tile.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-keep-tile.png +%%DATADIR%%/data/core/images/terrain/castle/encampment-tile.png +%%DATADIR%%/data/core/images/terrain/castle/keep-inside-e.png +%%DATADIR%%/data/core/images/terrain/castle/keep-inside-ne.png +%%DATADIR%%/data/core/images/terrain/castle/keep-inside-nw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-inside-se.png +%%DATADIR%%/data/core/images/terrain/castle/keep-inside-sw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-inside-w.png +%%DATADIR%%/data/core/images/terrain/castle/keep-keep-e.png +%%DATADIR%%/data/core/images/terrain/castle/keep-keep-ne.png +%%DATADIR%%/data/core/images/terrain/castle/keep-keep-nw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-keep-se.png +%%DATADIR%%/data/core/images/terrain/castle/keep-keep-sw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-keep-w.png +%%DATADIR%%/data/core/images/terrain/castle/keep-tile.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-0-e.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-0-ne.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-0-nw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-0-se.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-0-sw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-0-w.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-1-e.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-1-ne.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-1-nw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-1-se.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-1-sw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-1-w.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-e.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-ne.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-nw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-se.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-sw.png +%%DATADIR%%/data/core/images/terrain/castle/keep-wall-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin-tile.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruined-keep-tile.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-inside-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-inside-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-inside-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-inside-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-inside-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-inside-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-keep-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-keep-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-keep-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-keep-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-keep-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-keep-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-0-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-0-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-0-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-0-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-0-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-0-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-1-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-1-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-1-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-1-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-1-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-1-w.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-e.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-ne.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-nw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-se.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-sw.png +%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-wall-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-keep-coast.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-keep-ocean.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-keep-tile.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-n.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-s.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-tile.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-inside-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-inside-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-inside-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-inside-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-inside-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-inside-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-keep-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-keep-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-keep-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-keep-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-keep-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-keep-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-0-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-0-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-0-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-0-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-0-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-0-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-1-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-1-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-1-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-1-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-1-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-1-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-wall-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-inside-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-inside-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-inside-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-inside-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-inside-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-inside-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-keep-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-keep-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-keep-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-keep-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-keep-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-keep-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-0-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-0-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-0-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-0-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-0-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-0-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-1-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-1-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-1-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-1-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-1-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-1-w.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-e.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-ne.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-nw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-se.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-sw.png +%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-wall-w.png +%%DATADIR%%/data/core/images/terrain/castle/swamp-keep-tile.png +%%DATADIR%%/data/core/images/terrain/castle/swamp-ruin-tile.png +%%DATADIR%%/data/core/images/terrain/cave/beam-tile.png +%%DATADIR%%/data/core/images/terrain/cave/beam1.png +%%DATADIR%%/data/core/images/terrain/cave/beam2.png +%%DATADIR%%/data/core/images/terrain/cave/beam3.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-s-n-n.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-s-n-s.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-s-n.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-se-nw-n.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-se-nw-ne.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-se-nw-nw.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-se-nw-se.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-se-nw.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-sw-ne-n.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-sw-ne-ne.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-sw-ne-nw.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-sw-ne-sw.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-lava-stone-bridge-sw-ne.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-s-n-n.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-s-n-s.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-s-n.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-se-nw-n.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-se-nw-ne.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-se-nw-nw.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-se-nw-se.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-se-nw.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-sw-ne-n.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-sw-ne-ne.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-sw-ne-nw.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-sw-ne-sw.png +%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-sw-ne.png +%%DATADIR%%/data/core/images/terrain/cave/floor-n-ne.png +%%DATADIR%%/data/core/images/terrain/cave/floor-n.png +%%DATADIR%%/data/core/images/terrain/cave/floor-ne-se.png +%%DATADIR%%/data/core/images/terrain/cave/floor-ne.png +%%DATADIR%%/data/core/images/terrain/cave/floor-nw-n.png +%%DATADIR%%/data/core/images/terrain/cave/floor-nw.png +%%DATADIR%%/data/core/images/terrain/cave/floor-s-sw.png +%%DATADIR%%/data/core/images/terrain/cave/floor-s.png +%%DATADIR%%/data/core/images/terrain/cave/floor-se-s.png +%%DATADIR%%/data/core/images/terrain/cave/floor-se.png +%%DATADIR%%/data/core/images/terrain/cave/floor-sw-nw.png +%%DATADIR%%/data/core/images/terrain/cave/floor-sw.png +%%DATADIR%%/data/core/images/terrain/cave/floor1.png +%%DATADIR%%/data/core/images/terrain/cave/floor2.png +%%DATADIR%%/data/core/images/terrain/cave/floor3.png +%%DATADIR%%/data/core/images/terrain/cave/floor4.png +%%DATADIR%%/data/core/images/terrain/cave/floor5.png +%%DATADIR%%/data/core/images/terrain/cave/floor6.png +%%DATADIR%%/data/core/images/terrain/cave/hills-beam-tile.png +%%DATADIR%%/data/core/images/terrain/cave/hills-n.png +%%DATADIR%%/data/core/images/terrain/cave/hills-ne.png +%%DATADIR%%/data/core/images/terrain/cave/hills-nw.png +%%DATADIR%%/data/core/images/terrain/cave/hills-s.png +%%DATADIR%%/data/core/images/terrain/cave/hills-se.png +%%DATADIR%%/data/core/images/terrain/cave/hills-sw.png +%%DATADIR%%/data/core/images/terrain/cave/hills-variation1.png +%%DATADIR%%/data/core/images/terrain/cave/hills-variation2.png +%%DATADIR%%/data/core/images/terrain/cave/hills-variation3.png +%%DATADIR%%/data/core/images/terrain/cave/wall-editor.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-e.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-ne.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-nw.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-se.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-sw.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-w.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-e.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-ne.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-nw.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-se.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-sw.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-w.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-e.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-ne.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-nw.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-se.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-sw.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-w.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-e.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-ne.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-nw.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-se.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-sw.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-w.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough1.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough2.png +%%DATADIR%%/data/core/images/terrain/cave/wall-rough3.png +%%DATADIR%%/data/core/images/terrain/chasm-concave-e.png +%%DATADIR%%/data/core/images/terrain/chasm-concave-ne.png +%%DATADIR%%/data/core/images/terrain/chasm-concave-nw.png +%%DATADIR%%/data/core/images/terrain/chasm-concave-se.png +%%DATADIR%%/data/core/images/terrain/chasm-concave-sw.png +%%DATADIR%%/data/core/images/terrain/chasm-concave-w.png +%%DATADIR%%/data/core/images/terrain/chasm-convex-e.png +%%DATADIR%%/data/core/images/terrain/chasm-convex-ne.png +%%DATADIR%%/data/core/images/terrain/chasm-convex-nw.png +%%DATADIR%%/data/core/images/terrain/chasm-convex-se.png +%%DATADIR%%/data/core/images/terrain/chasm-convex-sw.png +%%DATADIR%%/data/core/images/terrain/chasm-convex-w.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-ccw-e.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-ccw-ne.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-ccw-nw.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-ccw-se.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-ccw-sw.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-ccw-w.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-concave-e.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-concave-ne.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-concave-nw.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-concave-se.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-concave-sw.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-concave-w.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-convex-e.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-convex-ne.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-convex-nw.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-convex-se.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-convex-sw.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-convex-w.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-cw-e.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-cw-ne.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-cw-nw.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-cw-se.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-cw-sw.png +%%DATADIR%%/data/core/images/terrain/chasm-dcastle-cw-w.png +%%DATADIR%%/data/core/images/terrain/chasm-tile.png +%%DATADIR%%/data/core/images/terrain/chasm.png +%%DATADIR%%/data/core/images/terrain/cloud-desert-tile.png +%%DATADIR%%/data/core/images/terrain/cloud-tile.png +%%DATADIR%%/data/core/images/terrain/cloud1_1.png +%%DATADIR%%/data/core/images/terrain/cloud1_2.png +%%DATADIR%%/data/core/images/terrain/cloud1_3.png +%%DATADIR%%/data/core/images/terrain/cloud2_2.png +%%DATADIR%%/data/core/images/terrain/cloud3_2.png +%%DATADIR%%/data/core/images/terrain/color-hex.png +%%DATADIR%%/data/core/images/terrain/darken-linger.png +%%DATADIR%%/data/core/images/terrain/darken.png +%%DATADIR%%/data/core/images/terrain/dawn.png +%%DATADIR%%/data/core/images/terrain/desert-hills-n-ne.png +%%DATADIR%%/data/core/images/terrain/desert-hills-n.png +%%DATADIR%%/data/core/images/terrain/desert-hills-ne.png +%%DATADIR%%/data/core/images/terrain/desert-hills-nw.png +%%DATADIR%%/data/core/images/terrain/desert-hills-s-sw.png +%%DATADIR%%/data/core/images/terrain/desert-hills-s.png +%%DATADIR%%/data/core/images/terrain/desert-hills-se.png +%%DATADIR%%/data/core/images/terrain/desert-hills-sw.png +%%DATADIR%%/data/core/images/terrain/desert-hills.png +%%DATADIR%%/data/core/images/terrain/desert-hills2.png +%%DATADIR%%/data/core/images/terrain/desert-hills3.png +%%DATADIR%%/data/core/images/terrain/desert-mountain-peak1.png +%%DATADIR%%/data/core/images/terrain/desert-mountain-peak2.png +%%DATADIR%%/data/core/images/terrain/desert-mountain-peak3.png +%%DATADIR%%/data/core/images/terrain/desert-mountains-n.png +%%DATADIR%%/data/core/images/terrain/desert-mountains-ne.png +%%DATADIR%%/data/core/images/terrain/desert-mountains-nw.png +%%DATADIR%%/data/core/images/terrain/desert-mountains-s.png +%%DATADIR%%/data/core/images/terrain/desert-mountains-se.png +%%DATADIR%%/data/core/images/terrain/desert-mountains-sw.png +%%DATADIR%%/data/core/images/terrain/desert-mountains.png +%%DATADIR%%/data/core/images/terrain/desert-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/desert-n-ne.png +%%DATADIR%%/data/core/images/terrain/desert-n.png +%%DATADIR%%/data/core/images/terrain/desert-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/desert-ne-se.png +%%DATADIR%%/data/core/images/terrain/desert-ne.png +%%DATADIR%%/data/core/images/terrain/desert-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/desert-nw-n.png +%%DATADIR%%/data/core/images/terrain/desert-nw.png +%%DATADIR%%/data/core/images/terrain/desert-oasis.png +%%DATADIR%%/data/core/images/terrain/desert-plant.png +%%DATADIR%%/data/core/images/terrain/desert-plant2.png +%%DATADIR%%/data/core/images/terrain/desert-plant3.png +%%DATADIR%%/data/core/images/terrain/desert-road-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/desert-road-n-ne.png +%%DATADIR%%/data/core/images/terrain/desert-road-n.png +%%DATADIR%%/data/core/images/terrain/desert-road-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/desert-road-ne-se.png +%%DATADIR%%/data/core/images/terrain/desert-road-ne.png +%%DATADIR%%/data/core/images/terrain/desert-road-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/desert-road-nw-n.png +%%DATADIR%%/data/core/images/terrain/desert-road-nw.png +%%DATADIR%%/data/core/images/terrain/desert-road-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/desert-road-s-sw.png +%%DATADIR%%/data/core/images/terrain/desert-road-s.png +%%DATADIR%%/data/core/images/terrain/desert-road-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/desert-road-se-s.png +%%DATADIR%%/data/core/images/terrain/desert-road-se.png +%%DATADIR%%/data/core/images/terrain/desert-road-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/desert-road-sw-nw.png +%%DATADIR%%/data/core/images/terrain/desert-road-sw.png +%%DATADIR%%/data/core/images/terrain/desert-road.png +%%DATADIR%%/data/core/images/terrain/desert-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/desert-s-sw.png +%%DATADIR%%/data/core/images/terrain/desert-s.png +%%DATADIR%%/data/core/images/terrain/desert-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/desert-se-s.png +%%DATADIR%%/data/core/images/terrain/desert-se.png +%%DATADIR%%/data/core/images/terrain/desert-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/desert-sw-nw.png +%%DATADIR%%/data/core/images/terrain/desert-sw.png +%%DATADIR%%/data/core/images/terrain/desert-tile.png +%%DATADIR%%/data/core/images/terrain/desert.png +%%DATADIR%%/data/core/images/terrain/desert1.png +%%DATADIR%%/data/core/images/terrain/desert2.png +%%DATADIR%%/data/core/images/terrain/desert3.png +%%DATADIR%%/data/core/images/terrain/desert4.png +%%DATADIR%%/data/core/images/terrain/desert5.png +%%DATADIR%%/data/core/images/terrain/desert6.png +%%DATADIR%%/data/core/images/terrain/desert7.png +%%DATADIR%%/data/core/images/terrain/desert_crater.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-n-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-n.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-ne.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-nw.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-s-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-s.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-se.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/dirt-sw.png +%%DATADIR%%/data/core/images/terrain/flat/dirt.png +%%DATADIR%%/data/core/images/terrain/flat/farm-veg-spring-icon.png +%%DATADIR%%/data/core/images/terrain/flat/farm-veg-spring-n.png +%%DATADIR%%/data/core/images/terrain/flat/farm-veg-spring-nw.png +%%DATADIR%%/data/core/images/terrain/flat/farm-veg-spring-s.png +%%DATADIR%%/data/core/images/terrain/flat/farm-veg-spring-se.png +%%DATADIR%%/data/core/images/terrain/flat/farm-veg-spring1.png +%%DATADIR%%/data/core/images/terrain/flat/farm-veg-spring2.png +%%DATADIR%%/data/core/images/terrain/flat/farm-veg-spring3.png +%%DATADIR%%/data/core/images/terrain/flat/grass-flowers1.png +%%DATADIR%%/data/core/images/terrain/flat/grass-flowers2.png +%%DATADIR%%/data/core/images/terrain/flat/grass-flowers3.png +%%DATADIR%%/data/core/images/terrain/flat/grass-flowers4.png +%%DATADIR%%/data/core/images/terrain/flat/grass-flowers5.png +%%DATADIR%%/data/core/images/terrain/flat/grass-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/grass-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/grass-n.png +%%DATADIR%%/data/core/images/terrain/flat/grass-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/grass-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/grass-ne.png +%%DATADIR%%/data/core/images/terrain/flat/grass-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/grass-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/grass-nw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-r1.png +%%DATADIR%%/data/core/images/terrain/flat/grass-r2.png +%%DATADIR%%/data/core/images/terrain/flat/grass-r3.png +%%DATADIR%%/data/core/images/terrain/flat/grass-r4.png +%%DATADIR%%/data/core/images/terrain/flat/grass-r5.png +%%DATADIR%%/data/core/images/terrain/flat/grass-r6.png +%%DATADIR%%/data/core/images/terrain/flat/grass-r7.png +%%DATADIR%%/data/core/images/terrain/flat/grass-r8.png +%%DATADIR%%/data/core/images/terrain/flat/grass-rocks1.png +%%DATADIR%%/data/core/images/terrain/flat/grass-rocks2.png +%%DATADIR%%/data/core/images/terrain/flat/grass-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-s.png +%%DATADIR%%/data/core/images/terrain/flat/grass-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/grass-se.png +%%DATADIR%%/data/core/images/terrain/flat/grass-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/grass-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-sw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-n-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-n.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-ne-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-ne.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-nw-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-nw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-s-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-s.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-se-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-se.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-sw-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/grass-to-water-sw.png +%%DATADIR%%/data/core/images/terrain/flat/road-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/road-n.png +%%DATADIR%%/data/core/images/terrain/flat/road-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/road-ne.png +%%DATADIR%%/data/core/images/terrain/flat/road-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/road-nw.png +%%DATADIR%%/data/core/images/terrain/flat/road-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/road-s.png +%%DATADIR%%/data/core/images/terrain/flat/road-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/road-se.png +%%DATADIR%%/data/core/images/terrain/flat/road-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/road-sw.png +%%DATADIR%%/data/core/images/terrain/flat/road.png +%%DATADIR%%/data/core/images/terrain/flat/road2.png +%%DATADIR%%/data/core/images/terrain/flat/road3.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-n.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-ne.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-nw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-s.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-se.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-sw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-n.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-ne.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-nw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-s.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-se.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna-to-water-sw.png +%%DATADIR%%/data/core/images/terrain/flat/savanna.png +%%DATADIR%%/data/core/images/terrain/flat/savanna2.png +%%DATADIR%%/data/core/images/terrain/flat/savanna3.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-n-ne.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-n.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-ne-se.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-ne.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-nw-n.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-nw.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-s-sw.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-s.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-se-s.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-se.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-sw-nw.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path-sw.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path2.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path3.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path4.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path5.png +%%DATADIR%%/data/core/images/terrain/flat/stone-path6.png +%%DATADIR%%/data/core/images/terrain/fog-n-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/fog-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/fog-n-ne.png +%%DATADIR%%/data/core/images/terrain/fog-n.png +%%DATADIR%%/data/core/images/terrain/fog-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/fog-ne-se.png +%%DATADIR%%/data/core/images/terrain/fog-ne.png +%%DATADIR%%/data/core/images/terrain/fog-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/fog-nw-n.png +%%DATADIR%%/data/core/images/terrain/fog-nw.png +%%DATADIR%%/data/core/images/terrain/fog-s-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/fog-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/fog-s-sw.png +%%DATADIR%%/data/core/images/terrain/fog-s.png +%%DATADIR%%/data/core/images/terrain/fog-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/fog-se-s.png +%%DATADIR%%/data/core/images/terrain/fog-se.png +%%DATADIR%%/data/core/images/terrain/fog-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/fog-sw-nw.png +%%DATADIR%%/data/core/images/terrain/fog-sw.png +%%DATADIR%%/data/core/images/terrain/fog.png +%%DATADIR%%/data/core/images/terrain/forest/great-tree-tile.png +%%DATADIR%%/data/core/images/terrain/forest/great-tree1.png +%%DATADIR%%/data/core/images/terrain/forest/great-tree2.png +%%DATADIR%%/data/core/images/terrain/forest/great-tree3.png +%%DATADIR%%/data/core/images/terrain/forest/pine-castle-n.png +%%DATADIR%%/data/core/images/terrain/forest/pine-castle-ne.png +%%DATADIR%%/data/core/images/terrain/forest/pine-castle-nw.png +%%DATADIR%%/data/core/images/terrain/forest/pine-castle-s.png +%%DATADIR%%/data/core/images/terrain/forest/pine-castle-se.png +%%DATADIR%%/data/core/images/terrain/forest/pine-castle-sw.png +%%DATADIR%%/data/core/images/terrain/forest/pine-castle.png +%%DATADIR%%/data/core/images/terrain/forest/pine-tile.png +%%DATADIR%%/data/core/images/terrain/forest/pine.png +%%DATADIR%%/data/core/images/terrain/forest/pine2.png +%%DATADIR%%/data/core/images/terrain/forest/pine2_small.png +%%DATADIR%%/data/core/images/terrain/forest/pine3.png +%%DATADIR%%/data/core/images/terrain/forest/pine4.png +%%DATADIR%%/data/core/images/terrain/forest/pine_small.png +%%DATADIR%%/data/core/images/terrain/forest/tropical-castle-n.png +%%DATADIR%%/data/core/images/terrain/forest/tropical-castle-ne.png +%%DATADIR%%/data/core/images/terrain/forest/tropical-castle-nw.png +%%DATADIR%%/data/core/images/terrain/forest/tropical-castle.png +%%DATADIR%%/data/core/images/terrain/forest/tropical-tile.png +%%DATADIR%%/data/core/images/terrain/forest/tropical.png +%%DATADIR%%/data/core/images/terrain/forest/tropical2.png +%%DATADIR%%/data/core/images/terrain/forest/tropical3.png +%%DATADIR%%/data/core/images/terrain/forest/tropical4.png +%%DATADIR%%/data/core/images/terrain/grid.png +%%DATADIR%%/data/core/images/terrain/hills-n-ne.png +%%DATADIR%%/data/core/images/terrain/hills-n.png +%%DATADIR%%/data/core/images/terrain/hills-ne.png +%%DATADIR%%/data/core/images/terrain/hills-nw.png +%%DATADIR%%/data/core/images/terrain/hills-s-sw.png +%%DATADIR%%/data/core/images/terrain/hills-s.png +%%DATADIR%%/data/core/images/terrain/hills-se.png +%%DATADIR%%/data/core/images/terrain/hills-sw.png +%%DATADIR%%/data/core/images/terrain/hills-variation1.png +%%DATADIR%%/data/core/images/terrain/hills-variation2.png +%%DATADIR%%/data/core/images/terrain/hills-variation3.png +%%DATADIR%%/data/core/images/terrain/ice-n-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/ice-n-ne.png +%%DATADIR%%/data/core/images/terrain/ice-n.png +%%DATADIR%%/data/core/images/terrain/ice-ne-se.png +%%DATADIR%%/data/core/images/terrain/ice-ne.png +%%DATADIR%%/data/core/images/terrain/ice-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/ice-nw-n.png +%%DATADIR%%/data/core/images/terrain/ice-nw.png +%%DATADIR%%/data/core/images/terrain/ice-s-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/ice-s-sw.png +%%DATADIR%%/data/core/images/terrain/ice-s.png +%%DATADIR%%/data/core/images/terrain/ice-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/ice-se-s.png +%%DATADIR%%/data/core/images/terrain/ice-se.png +%%DATADIR%%/data/core/images/terrain/ice-sw-nw.png +%%DATADIR%%/data/core/images/terrain/ice-sw.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-n-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-n-ne.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-n.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-ne-se.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-ne.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-nw-n.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-nw.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-s-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-s-sw.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-s.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-se-s.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-se.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-sw-nw.png +%%DATADIR%%/data/core/images/terrain/ice-to-water-sw.png +%%DATADIR%%/data/core/images/terrain/ice.png +%%DATADIR%%/data/core/images/terrain/ice2.png +%%DATADIR%%/data/core/images/terrain/ice3.png +%%DATADIR%%/data/core/images/terrain/ice4.png +%%DATADIR%%/data/core/images/terrain/ice5.png +%%DATADIR%%/data/core/images/terrain/ice6.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-e.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-ne.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-nw.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-se.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-sw.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-w.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-e.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-ne.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-nw.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-se.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-sw.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-w.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-e.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-ne.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-nw.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-se.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-sw.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-w.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-e.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-ne.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-nw.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-se.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-sw.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-w.png +%%DATADIR%%/data/core/images/terrain/lava-chasm-tile.png +%%DATADIR%%/data/core/images/terrain/lava-concave-e.png +%%DATADIR%%/data/core/images/terrain/lava-concave-ne.png +%%DATADIR%%/data/core/images/terrain/lava-concave-nw.png +%%DATADIR%%/data/core/images/terrain/lava-concave-se.png +%%DATADIR%%/data/core/images/terrain/lava-concave-sw.png +%%DATADIR%%/data/core/images/terrain/lava-concave-w.png +%%DATADIR%%/data/core/images/terrain/lava-convex-e.png +%%DATADIR%%/data/core/images/terrain/lava-convex-ne.png +%%DATADIR%%/data/core/images/terrain/lava-convex-nw.png +%%DATADIR%%/data/core/images/terrain/lava-convex-se.png +%%DATADIR%%/data/core/images/terrain/lava-convex-sw.png +%%DATADIR%%/data/core/images/terrain/lava-convex-w.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-ccw-e.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-ccw-ne.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-ccw-nw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-ccw-se.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-ccw-sw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-ccw-w.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-ccw-e.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-ccw-ne.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-ccw-nw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-ccw-se.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-ccw-sw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-ccw-w.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-cw-e.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-cw-ne.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-cw-nw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-cw-se.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-cw-sw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-chasm-cw-w.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-concave-e.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-concave-ne.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-concave-nw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-concave-se.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-concave-sw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-concave-w.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-convex-e.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-convex-ne.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-convex-nw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-convex-se.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-convex-sw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-convex-w.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-cw-e.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-cw-ne.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-cw-nw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-cw-se.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-cw-sw.png +%%DATADIR%%/data/core/images/terrain/lava-dcastle-cw-w.png +%%DATADIR%%/data/core/images/terrain/lava-n-ne-nw-s.png +%%DATADIR%%/data/core/images/terrain/lava-n-ne-nw.png +%%DATADIR%%/data/core/images/terrain/lava-n-ne.png +%%DATADIR%%/data/core/images/terrain/lava-n.png +%%DATADIR%%/data/core/images/terrain/lava-ne-nw-s.png +%%DATADIR%%/data/core/images/terrain/lava-ne-se.png +%%DATADIR%%/data/core/images/terrain/lava-ne.png +%%DATADIR%%/data/core/images/terrain/lava-nw-n.png +%%DATADIR%%/data/core/images/terrain/lava-nw.png +%%DATADIR%%/data/core/images/terrain/lava-s-nw-ne-n.png +%%DATADIR%%/data/core/images/terrain/lava-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/lava-s-sw.png +%%DATADIR%%/data/core/images/terrain/lava-s.png +%%DATADIR%%/data/core/images/terrain/lava-se-s.png +%%DATADIR%%/data/core/images/terrain/lava-se.png +%%DATADIR%%/data/core/images/terrain/lava-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/lava-sw-nw.png +%%DATADIR%%/data/core/images/terrain/lava-sw.png +%%DATADIR%%/data/core/images/terrain/lava.png +%%DATADIR%%/data/core/images/terrain/lava2.png +%%DATADIR%%/data/core/images/terrain/lava3.png +%%DATADIR%%/data/core/images/terrain/mask.png +%%DATADIR%%/data/core/images/terrain/mountain-tile.png +%%DATADIR%%/data/core/images/terrain/mountain5_1.png +%%DATADIR%%/data/core/images/terrain/mountain5_2.png +%%DATADIR%%/data/core/images/terrain/mountain5_3.png +%%DATADIR%%/data/core/images/terrain/mountain6_1.png +%%DATADIR%%/data/core/images/terrain/mountain6_2.png +%%DATADIR%%/data/core/images/terrain/mountain6_3.png +%%DATADIR%%/data/core/images/terrain/mountain_peak1.png +%%DATADIR%%/data/core/images/terrain/mountain_peak2.png +%%DATADIR%%/data/core/images/terrain/mountain_peak3.png +%%DATADIR%%/data/core/images/terrain/mountain_peak4.png +%%DATADIR%%/data/core/images/terrain/mountain_peak5.png +%%DATADIR%%/data/core/images/terrain/mountain_peak_large1.png +%%DATADIR%%/data/core/images/terrain/mountain_peak_large2.png +%%DATADIR%%/data/core/images/terrain/mountain_peak_range1_1.png +%%DATADIR%%/data/core/images/terrain/mountain_peak_range1_2.png +%%DATADIR%%/data/core/images/terrain/mountain_range1_1.png +%%DATADIR%%/data/core/images/terrain/mountain_range1_2.png +%%DATADIR%%/data/core/images/terrain/mountain_range1_3.png +%%DATADIR%%/data/core/images/terrain/mountain_range2_1.png +%%DATADIR%%/data/core/images/terrain/mountain_range2_2.png +%%DATADIR%%/data/core/images/terrain/mountain_range2_3.png +%%DATADIR%%/data/core/images/terrain/mountain_range3_1.png +%%DATADIR%%/data/core/images/terrain/mountain_range3_2.png +%%DATADIR%%/data/core/images/terrain/mountain_range3_3.png +%%DATADIR%%/data/core/images/terrain/mountain_range3_4.png +%%DATADIR%%/data/core/images/terrain/mountain_range3_5.png +%%DATADIR%%/data/core/images/terrain/mountain_range4_1.png +%%DATADIR%%/data/core/images/terrain/mountain_range4_2.png +%%DATADIR%%/data/core/images/terrain/mountain_range4_3.png +%%DATADIR%%/data/core/images/terrain/mountain_range4_4.png +%%DATADIR%%/data/core/images/terrain/mountain_range4_5.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-n-ne.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-n.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-ne.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-nw-n.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-nw.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-s.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-se.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-sw-nw.png +%%DATADIR%%/data/core/images/terrain/mountains-castle-sw.png +%%DATADIR%%/data/core/images/terrain/mountains-n-ne.png +%%DATADIR%%/data/core/images/terrain/mountains-n.png +%%DATADIR%%/data/core/images/terrain/mountains-ne.png +%%DATADIR%%/data/core/images/terrain/mountains-nw-n.png +%%DATADIR%%/data/core/images/terrain/mountains-nw.png +%%DATADIR%%/data/core/images/terrain/mountains-small-n-ne.png +%%DATADIR%%/data/core/images/terrain/mountains-small-n.png +%%DATADIR%%/data/core/images/terrain/mountains-small-ne.png +%%DATADIR%%/data/core/images/terrain/mountains-small-nw-n.png +%%DATADIR%%/data/core/images/terrain/mountains-small-nw.png +%%DATADIR%%/data/core/images/terrain/mountains.png +%%DATADIR%%/data/core/images/terrain/mountains2.png +%%DATADIR%%/data/core/images/terrain/mountains3.png +%%DATADIR%%/data/core/images/terrain/mushrooms-above-tile.png +%%DATADIR%%/data/core/images/terrain/mushrooms-beam-tile.png +%%DATADIR%%/data/core/images/terrain/mushrooms-castle-n.png +%%DATADIR%%/data/core/images/terrain/mushrooms-castle-ne.png +%%DATADIR%%/data/core/images/terrain/mushrooms-castle-nw.png +%%DATADIR%%/data/core/images/terrain/mushrooms-castle-s.png +%%DATADIR%%/data/core/images/terrain/mushrooms-castle-se.png +%%DATADIR%%/data/core/images/terrain/mushrooms-castle-sw.png +%%DATADIR%%/data/core/images/terrain/mushrooms-castle.png +%%DATADIR%%/data/core/images/terrain/mushrooms-tile.png +%%DATADIR%%/data/core/images/terrain/mushrooms.png +%%DATADIR%%/data/core/images/terrain/mushrooms2.png +%%DATADIR%%/data/core/images/terrain/mushrooms3.png +%%DATADIR%%/data/core/images/terrain/mushrooms4.png +%%DATADIR%%/data/core/images/terrain/mushrooms5.png +%%DATADIR%%/data/core/images/terrain/off-map/alpha.png +%%DATADIR%%/data/core/images/terrain/off-map/background.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_bottom_even.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_bottom_even_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_bottom_odd.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_bottom_odd_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_left.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_left_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_right.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_right_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_top_even.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_top_even_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_top_odd.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_border_top_odd_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_bottom_left.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_bottom_left_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_bottom_right_even.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_bottom_right_even_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_bottom_right_odd.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_bottom_right_odd_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_top_left.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_top_left_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_top_right_even.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_top_right_even_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_top_right_odd.png +%%DATADIR%%/data/core/images/terrain/off-map/fade_corner_top_right_odd_editor.png +%%DATADIR%%/data/core/images/terrain/off-map/offmap-editor.png +%%DATADIR%%/data/core/images/terrain/sand-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/sand-n-ne.png +%%DATADIR%%/data/core/images/terrain/sand-n.png +%%DATADIR%%/data/core/images/terrain/sand-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/sand-ne-se.png +%%DATADIR%%/data/core/images/terrain/sand-ne.png +%%DATADIR%%/data/core/images/terrain/sand-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/sand-nw-n.png +%%DATADIR%%/data/core/images/terrain/sand-nw.png +%%DATADIR%%/data/core/images/terrain/sand-rock1.png +%%DATADIR%%/data/core/images/terrain/sand-rock2.png +%%DATADIR%%/data/core/images/terrain/sand-rock3.png +%%DATADIR%%/data/core/images/terrain/sand-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/sand-s-sw.png +%%DATADIR%%/data/core/images/terrain/sand-s.png +%%DATADIR%%/data/core/images/terrain/sand-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/sand-se-s.png +%%DATADIR%%/data/core/images/terrain/sand-se.png +%%DATADIR%%/data/core/images/terrain/sand-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/sand-sw-nw.png +%%DATADIR%%/data/core/images/terrain/sand-sw.png +%%DATADIR%%/data/core/images/terrain/sand.png +%%DATADIR%%/data/core/images/terrain/sand2.png +%%DATADIR%%/data/core/images/terrain/sand3.png +%%DATADIR%%/data/core/images/terrain/sand4.png +%%DATADIR%%/data/core/images/terrain/sand5.png +%%DATADIR%%/data/core/images/terrain/sand6.png +%%DATADIR%%/data/core/images/terrain/sand7.png +%%DATADIR%%/data/core/images/terrain/sand8.png +%%DATADIR%%/data/core/images/terrain/sand_rubble-tile.png +%%DATADIR%%/data/core/images/terrain/sand_rubble1.png +%%DATADIR%%/data/core/images/terrain/sand_rubble2.png +%%DATADIR%%/data/core/images/terrain/sand_rubble3.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-n.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-ne.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-nw-n.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-nw.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-s.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-se.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-sw-nw.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle-sw.png +%%DATADIR%%/data/core/images/terrain/snow-forest-castle.png +%%DATADIR%%/data/core/images/terrain/snow-forest-tile.png +%%DATADIR%%/data/core/images/terrain/snow-forest.png +%%DATADIR%%/data/core/images/terrain/snow-forest2.png +%%DATADIR%%/data/core/images/terrain/snow-forest3.png +%%DATADIR%%/data/core/images/terrain/snow-forest4.png +%%DATADIR%%/data/core/images/terrain/snow-forest_small.png +%%DATADIR%%/data/core/images/terrain/snow-hills-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-hills-n.png +%%DATADIR%%/data/core/images/terrain/snow-hills-ne.png +%%DATADIR%%/data/core/images/terrain/snow-hills-nw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-s-sw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-s.png +%%DATADIR%%/data/core/images/terrain/snow-hills-se.png +%%DATADIR%%/data/core/images/terrain/snow-hills-sw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-n.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-ne-se.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-ne.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-nw-n.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-nw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-s-sw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-s.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-se-s.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-se.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-sw-nw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-hills-sw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-n.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-ne.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-nw-n.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-nw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-s-sw.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-s.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-se-s.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-se.png +%%DATADIR%%/data/core/images/terrain/snow-hills-to-water-sw.png +%%DATADIR%%/data/core/images/terrain/snow-hills.png +%%DATADIR%%/data/core/images/terrain/snow-hills2.png +%%DATADIR%%/data/core/images/terrain/snow-hills3.png +%%DATADIR%%/data/core/images/terrain/snow-n-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/snow-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/snow-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-n.png +%%DATADIR%%/data/core/images/terrain/snow-ne-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/snow-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/snow-ne-se.png +%%DATADIR%%/data/core/images/terrain/snow-ne.png +%%DATADIR%%/data/core/images/terrain/snow-nw-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/snow-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-nw-n.png +%%DATADIR%%/data/core/images/terrain/snow-nw.png +%%DATADIR%%/data/core/images/terrain/snow-s-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/snow-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/snow-s-sw.png +%%DATADIR%%/data/core/images/terrain/snow-s.png +%%DATADIR%%/data/core/images/terrain/snow-se-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/snow-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/snow-se-s.png +%%DATADIR%%/data/core/images/terrain/snow-se.png +%%DATADIR%%/data/core/images/terrain/snow-sw-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/snow-sw-nw.png +%%DATADIR%%/data/core/images/terrain/snow-sw.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-n-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-n.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-ne-se.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-ne.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-nw-n.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-nw.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-s-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-s-sw.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-s.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-se-s.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-se.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-sw-nw.png +%%DATADIR%%/data/core/images/terrain/snow-to-water-sw.png +%%DATADIR%%/data/core/images/terrain/snow.png +%%DATADIR%%/data/core/images/terrain/snow2.png +%%DATADIR%%/data/core/images/terrain/stars/blue1.png +%%DATADIR%%/data/core/images/terrain/stars/blue2.png +%%DATADIR%%/data/core/images/terrain/stars/blue3.png +%%DATADIR%%/data/core/images/terrain/stars/blue4.png +%%DATADIR%%/data/core/images/terrain/stars/blue5.png +%%DATADIR%%/data/core/images/terrain/stars/blue6.png +%%DATADIR%%/data/core/images/terrain/stars/blue7.png +%%DATADIR%%/data/core/images/terrain/swamp/reed-castle-n.png +%%DATADIR%%/data/core/images/terrain/swamp/reed-castle-ne.png +%%DATADIR%%/data/core/images/terrain/swamp/reed-castle-nw.png +%%DATADIR%%/data/core/images/terrain/swamp/reed-castle-s.png +%%DATADIR%%/data/core/images/terrain/swamp/reed-castle-se.png +%%DATADIR%%/data/core/images/terrain/swamp/reed-castle-sw.png +%%DATADIR%%/data/core/images/terrain/swamp/reed1-small.png +%%DATADIR%%/data/core/images/terrain/swamp/reed1.png +%%DATADIR%%/data/core/images/terrain/swamp/reed2-small.png +%%DATADIR%%/data/core/images/terrain/swamp/reed2.png +%%DATADIR%%/data/core/images/terrain/swamp/reed3-small.png +%%DATADIR%%/data/core/images/terrain/swamp/reed3.png +%%DATADIR%%/data/core/images/terrain/swamp/reed4-small.png +%%DATADIR%%/data/core/images/terrain/swamp/reed4.png +%%DATADIR%%/data/core/images/terrain/swamp/reed5.png +%%DATADIR%%/data/core/images/terrain/swamp/reed6.png +%%DATADIR%%/data/core/images/terrain/swamp/water-flowers1.png +%%DATADIR%%/data/core/images/terrain/swamp/water-flowers2.png +%%DATADIR%%/data/core/images/terrain/swamp/water-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/swamp/water-n-ne.png +%%DATADIR%%/data/core/images/terrain/swamp/water-n.png +%%DATADIR%%/data/core/images/terrain/swamp/water-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/swamp/water-ne-se.png +%%DATADIR%%/data/core/images/terrain/swamp/water-ne.png +%%DATADIR%%/data/core/images/terrain/swamp/water-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/swamp/water-nw-n.png +%%DATADIR%%/data/core/images/terrain/swamp/water-nw.png +%%DATADIR%%/data/core/images/terrain/swamp/water-plant1.png +%%DATADIR%%/data/core/images/terrain/swamp/water-plant2.png +%%DATADIR%%/data/core/images/terrain/swamp/water-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/swamp/water-s-sw.png +%%DATADIR%%/data/core/images/terrain/swamp/water-s.png +%%DATADIR%%/data/core/images/terrain/swamp/water-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/swamp/water-se-s.png +%%DATADIR%%/data/core/images/terrain/swamp/water-se.png +%%DATADIR%%/data/core/images/terrain/swamp/water-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/swamp/water-sw-nw.png +%%DATADIR%%/data/core/images/terrain/swamp/water-sw.png +%%DATADIR%%/data/core/images/terrain/swamp/water-tile.png +%%DATADIR%%/data/core/images/terrain/swamp/water.png +%%DATADIR%%/data/core/images/terrain/swamp/water2.png +%%DATADIR%%/data/core/images/terrain/swamp/water3.png +%%DATADIR%%/data/core/images/terrain/tent.png +%%DATADIR%%/data/core/images/terrain/tent2.png +%%DATADIR%%/data/core/images/terrain/village/cave-tile.png +%%DATADIR%%/data/core/images/terrain/village/cave.png +%%DATADIR%%/data/core/images/terrain/village/cave2.png +%%DATADIR%%/data/core/images/terrain/village/cave3.png +%%DATADIR%%/data/core/images/terrain/village/coast-tile.png +%%DATADIR%%/data/core/images/terrain/village/coast.png +%%DATADIR%%/data/core/images/terrain/village/coast2.png +%%DATADIR%%/data/core/images/terrain/village/desert-camp-tile.png +%%DATADIR%%/data/core/images/terrain/village/desert-camp.png +%%DATADIR%%/data/core/images/terrain/village/desert-tile.png +%%DATADIR%%/data/core/images/terrain/village/desert.png +%%DATADIR%%/data/core/images/terrain/village/desert2.png +%%DATADIR%%/data/core/images/terrain/village/desert3.png +%%DATADIR%%/data/core/images/terrain/village/dwarven-tile.png +%%DATADIR%%/data/core/images/terrain/village/dwarven.png +%%DATADIR%%/data/core/images/terrain/village/elven-snow-tile.png +%%DATADIR%%/data/core/images/terrain/village/elven-snow.png +%%DATADIR%%/data/core/images/terrain/village/elven-snow2.png +%%DATADIR%%/data/core/images/terrain/village/elven-snow3.png +%%DATADIR%%/data/core/images/terrain/village/elven-snow4.png +%%DATADIR%%/data/core/images/terrain/village/elven-tile.png +%%DATADIR%%/data/core/images/terrain/village/elven.png +%%DATADIR%%/data/core/images/terrain/village/elven2.png +%%DATADIR%%/data/core/images/terrain/village/elven3.png +%%DATADIR%%/data/core/images/terrain/village/elven4.png +%%DATADIR%%/data/core/images/terrain/village/human-hills-tile.png +%%DATADIR%%/data/core/images/terrain/village/human-mountain-tile.png +%%DATADIR%%/data/core/images/terrain/village/human-snow-hills-tile.png +%%DATADIR%%/data/core/images/terrain/village/human-snow.png +%%DATADIR%%/data/core/images/terrain/village/human-snow2.png +%%DATADIR%%/data/core/images/terrain/village/human-snow3.png +%%DATADIR%%/data/core/images/terrain/village/human-snow4.png +%%DATADIR%%/data/core/images/terrain/village/human-snow5.png +%%DATADIR%%/data/core/images/terrain/village/human-tile.png +%%DATADIR%%/data/core/images/terrain/village/human.png +%%DATADIR%%/data/core/images/terrain/village/human2.png +%%DATADIR%%/data/core/images/terrain/village/human3.png +%%DATADIR%%/data/core/images/terrain/village/human4.png +%%DATADIR%%/data/core/images/terrain/village/human5.png +%%DATADIR%%/data/core/images/terrain/village/hut-tile.png +%%DATADIR%%/data/core/images/terrain/village/hut1.png +%%DATADIR%%/data/core/images/terrain/village/hut2.png +%%DATADIR%%/data/core/images/terrain/village/snow-tile.png +%%DATADIR%%/data/core/images/terrain/village/swamp-merfolk-tile.png +%%DATADIR%%/data/core/images/terrain/village/swampwater-tile.png +%%DATADIR%%/data/core/images/terrain/village/swampwater.png +%%DATADIR%%/data/core/images/terrain/village/swampwater2.png +%%DATADIR%%/data/core/images/terrain/village/tropical-forest.png +%%DATADIR%%/data/core/images/terrain/village/tropical-tile.png +%%DATADIR%%/data/core/images/terrain/void-editor.png +%%DATADIR%%/data/core/images/terrain/void-n-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/void-n-ne-se.png +%%DATADIR%%/data/core/images/terrain/void-n-ne.png +%%DATADIR%%/data/core/images/terrain/void-n.png +%%DATADIR%%/data/core/images/terrain/void-ne-se-s.png +%%DATADIR%%/data/core/images/terrain/void-ne-se.png +%%DATADIR%%/data/core/images/terrain/void-ne.png +%%DATADIR%%/data/core/images/terrain/void-nw-n-ne.png +%%DATADIR%%/data/core/images/terrain/void-nw-n.png +%%DATADIR%%/data/core/images/terrain/void-nw.png +%%DATADIR%%/data/core/images/terrain/void-s-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/void-s-sw-nw.png +%%DATADIR%%/data/core/images/terrain/void-s-sw.png +%%DATADIR%%/data/core/images/terrain/void-s.png +%%DATADIR%%/data/core/images/terrain/void-se-s-sw.png +%%DATADIR%%/data/core/images/terrain/void-se-s.png +%%DATADIR%%/data/core/images/terrain/void-se.png +%%DATADIR%%/data/core/images/terrain/void-sw-nw-n.png +%%DATADIR%%/data/core/images/terrain/void-sw-nw.png +%%DATADIR%%/data/core/images/terrain/void-sw.png +%%DATADIR%%/data/core/images/terrain/void.png +%%DATADIR%%/data/core/images/terrain/water/coast-n.png +%%DATADIR%%/data/core/images/terrain/water/coast-ne.png +%%DATADIR%%/data/core/images/terrain/water/coast-nw.png +%%DATADIR%%/data/core/images/terrain/water/coast-s.png +%%DATADIR%%/data/core/images/terrain/water/coast-se.png +%%DATADIR%%/data/core/images/terrain/water/coast-sw.png +%%DATADIR%%/data/core/images/terrain/water/coast.png +%%DATADIR%%/data/core/images/terrain/water/coast2.png +%%DATADIR%%/data/core/images/terrain/water/coast3.png +%%DATADIR%%/data/core/images/terrain/water/ford-n.png +%%DATADIR%%/data/core/images/terrain/water/ford-ne.png +%%DATADIR%%/data/core/images/terrain/water/ford-nw.png +%%DATADIR%%/data/core/images/terrain/water/ford-s.png +%%DATADIR%%/data/core/images/terrain/water/ford-se.png +%%DATADIR%%/data/core/images/terrain/water/ford-sw.png +%%DATADIR%%/data/core/images/terrain/water/ford.png +%%DATADIR%%/data/core/images/terrain/water/ford2.png +%%DATADIR%%/data/core/images/terrain/water/ocean-n.png +%%DATADIR%%/data/core/images/terrain/water/ocean-ne.png +%%DATADIR%%/data/core/images/terrain/water/ocean-nw.png +%%DATADIR%%/data/core/images/terrain/water/ocean-s.png +%%DATADIR%%/data/core/images/terrain/water/ocean-se.png +%%DATADIR%%/data/core/images/terrain/water/ocean-sw.png +%%DATADIR%%/data/core/images/terrain/water/ocean.png +%%DATADIR%%/data/core/images/terrain/water/ocean2.png +%%DATADIR%%/data/core/images/terrain/water/ocean3.png +%%DATADIR%%/data/core/images/terrain/windmill-01.png +%%DATADIR%%/data/core/images/terrain/windmill-02.png +%%DATADIR%%/data/core/images/terrain/windmill-03.png +%%DATADIR%%/data/core/images/terrain/windmill-04.png +%%DATADIR%%/data/core/images/terrain/windmill-05.png +%%DATADIR%%/data/core/images/terrain/windmill-06.png +%%DATADIR%%/data/core/images/terrain/windmill-07.png +%%DATADIR%%/data/core/images/terrain/windmill-08.png +%%DATADIR%%/data/core/images/terrain/windmill-09.png +%%DATADIR%%/data/core/images/terrain/windmill-10.png +%%DATADIR%%/data/core/images/terrain/windmill-11.png +%%DATADIR%%/data/core/images/terrain/windmill-12.png +%%DATADIR%%/data/core/images/terrain/windmill-13.png +%%DATADIR%%/data/core/images/terrain/windmill-14.png +%%DATADIR%%/data/core/images/terrain/windmill-15.png +%%DATADIR%%/data/core/images/terrain/windmill-16.png +%%DATADIR%%/data/core/images/terrain/windmill-17.png +%%DATADIR%%/data/core/images/terrain/windmill-18.png +%%DATADIR%%/data/core/images/terrain/windmill-tile.png +%%DATADIR%%/data/core/images/themes/experimental-rightside.png +%%DATADIR%%/data/core/images/themes/gold.png +%%DATADIR%%/data/core/images/themes/income.png +%%DATADIR%%/data/core/images/themes/minimap.png +%%DATADIR%%/data/core/images/themes/rightside-bg.png +%%DATADIR%%/data/core/images/themes/rightside-bottom.png +%%DATADIR%%/data/core/images/themes/rightside-editor.png +%%DATADIR%%/data/core/images/themes/rightside-small.png +%%DATADIR%%/data/core/images/themes/rightside.png +%%DATADIR%%/data/core/images/themes/sand-clock.png +%%DATADIR%%/data/core/images/themes/status-bg.png +%%DATADIR%%/data/core/images/themes/timeofday.png +%%DATADIR%%/data/core/images/themes/top-bg.png +%%DATADIR%%/data/core/images/themes/unit.png +%%DATADIR%%/data/core/images/themes/units.png +%%DATADIR%%/data/core/images/themes/upkeep.png +%%DATADIR%%/data/core/images/themes/villages.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-attack-melee1.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-attack-melee2.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-attack-melee3.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-attack-range1.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-attack-range2.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-attack-range3.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-attack-range4.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-defend.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-die1.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-die2.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-die3.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-die4.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-die5.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-die6.png +%%DATADIR%%/data/core/images/units/drakes/armageddon-flying.png +%%DATADIR%%/data/core/images/units/drakes/armageddon.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-attack-close1.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-attack-close2.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-attack-ranged.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-defend.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-die-1.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-die-2.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-die-3.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-die-4.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-die-5.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-die-6.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-die-7.png +%%DATADIR%%/data/core/images/units/drakes/blademaster-flying.png +%%DATADIR%%/data/core/images/units/drakes/blademaster.png +%%DATADIR%%/data/core/images/units/drakes/burner-attack-close.png +%%DATADIR%%/data/core/images/units/drakes/burner-attack-ranged1.png +%%DATADIR%%/data/core/images/units/drakes/burner-attack-ranged2.png +%%DATADIR%%/data/core/images/units/drakes/burner-defend.png +%%DATADIR%%/data/core/images/units/drakes/burner-die-1.png +%%DATADIR%%/data/core/images/units/drakes/burner-die-2.png +%%DATADIR%%/data/core/images/units/drakes/burner-die-3.png +%%DATADIR%%/data/core/images/units/drakes/burner-die-4.png +%%DATADIR%%/data/core/images/units/drakes/burner-die-5.png +%%DATADIR%%/data/core/images/units/drakes/burner-die-6.png +%%DATADIR%%/data/core/images/units/drakes/burner-flying.png +%%DATADIR%%/data/core/images/units/drakes/burner.png +%%DATADIR%%/data/core/images/units/drakes/clasher-attack-spear.png +%%DATADIR%%/data/core/images/units/drakes/clasher-attack-sword.png +%%DATADIR%%/data/core/images/units/drakes/clasher-defend.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-1.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-10.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-2.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-3.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-4.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-5.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-6.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-7.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-8.png +%%DATADIR%%/data/core/images/units/drakes/clasher-die-9.png +%%DATADIR%%/data/core/images/units/drakes/clasher-flying.png +%%DATADIR%%/data/core/images/units/drakes/clasher.png +%%DATADIR%%/data/core/images/units/drakes/enforcer-die-1.png +%%DATADIR%%/data/core/images/units/drakes/enforcer-die-2.png +%%DATADIR%%/data/core/images/units/drakes/enforcer-die-3.png +%%DATADIR%%/data/core/images/units/drakes/enforcer-die-4.png +%%DATADIR%%/data/core/images/units/drakes/enforcer-die-5.png +%%DATADIR%%/data/core/images/units/drakes/enforcer-die-6.png +%%DATADIR%%/data/core/images/units/drakes/enforcer-die-7.png +%%DATADIR%%/data/core/images/units/drakes/enforcer-die-8.png +%%DATADIR%%/data/core/images/units/drakes/enforcer.png +%%DATADIR%%/data/core/images/units/drakes/fighter-attack-close1.png +%%DATADIR%%/data/core/images/units/drakes/fighter-attack-close2.png +%%DATADIR%%/data/core/images/units/drakes/fighter-attack-ranged1.png +%%DATADIR%%/data/core/images/units/drakes/fighter-attack-ranged2.png +%%DATADIR%%/data/core/images/units/drakes/fighter-defend.png +%%DATADIR%%/data/core/images/units/drakes/fighter-die-1.png +%%DATADIR%%/data/core/images/units/drakes/fighter-die-2.png +%%DATADIR%%/data/core/images/units/drakes/fighter-die-3.png +%%DATADIR%%/data/core/images/units/drakes/fighter-die-4.png +%%DATADIR%%/data/core/images/units/drakes/fighter-die-5.png +%%DATADIR%%/data/core/images/units/drakes/fighter-die-6.png +%%DATADIR%%/data/core/images/units/drakes/fighter-die-7.png +%%DATADIR%%/data/core/images/units/drakes/fighter-die-8.png +%%DATADIR%%/data/core/images/units/drakes/fighter-flying.png +%%DATADIR%%/data/core/images/units/drakes/fighter.png +%%DATADIR%%/data/core/images/units/drakes/fire-attack-close.png +%%DATADIR%%/data/core/images/units/drakes/fire-attack-ranged.png +%%DATADIR%%/data/core/images/units/drakes/fire-defend.png +%%DATADIR%%/data/core/images/units/drakes/fire-die-1.png +%%DATADIR%%/data/core/images/units/drakes/fire-die-2.png +%%DATADIR%%/data/core/images/units/drakes/fire-die-3.png +%%DATADIR%%/data/core/images/units/drakes/fire-die-4.png +%%DATADIR%%/data/core/images/units/drakes/fire-die-5.png +%%DATADIR%%/data/core/images/units/drakes/fire-die-6.png +%%DATADIR%%/data/core/images/units/drakes/fire-die-7.png +%%DATADIR%%/data/core/images/units/drakes/fire-flying.png +%%DATADIR%%/data/core/images/units/drakes/fire.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-attack-close1.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-attack-close2.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-attack-ranged.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-defend.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-die-1.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-die-2.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-die-3.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-die-4.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-die-5.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-die-6.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-die-7.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-flying.png +%%DATADIR%%/data/core/images/units/drakes/flameheart-lead.png +%%DATADIR%%/data/core/images/units/drakes/flameheart.png +%%DATADIR%%/data/core/images/units/drakes/flare-attack-close.png +%%DATADIR%%/data/core/images/units/drakes/flare-attack-ranged.png +%%DATADIR%%/data/core/images/units/drakes/flare-defend.png +%%DATADIR%%/data/core/images/units/drakes/flare-die-1.png +%%DATADIR%%/data/core/images/units/drakes/flare-die-2.png +%%DATADIR%%/data/core/images/units/drakes/flare-die-3.png +%%DATADIR%%/data/core/images/units/drakes/flare-die-4.png +%%DATADIR%%/data/core/images/units/drakes/flare-die-5.png +%%DATADIR%%/data/core/images/units/drakes/flare-die-6.png +%%DATADIR%%/data/core/images/units/drakes/flare-die-7.png +%%DATADIR%%/data/core/images/units/drakes/flare-die-8.png +%%DATADIR%%/data/core/images/units/drakes/flare-flying.png +%%DATADIR%%/data/core/images/units/drakes/flare-lead.png +%%DATADIR%%/data/core/images/units/drakes/flare.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-attack-mace.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-attack-spear.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-attack-sword.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-defend.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-die-1.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-die-2.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-die-3.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-die-4.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-die-5.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-die-6.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-die-7.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-die-8.png +%%DATADIR%%/data/core/images/units/drakes/gladiator-flying.png +%%DATADIR%%/data/core/images/units/drakes/gladiator.png +%%DATADIR%%/data/core/images/units/drakes/glider-attack-close1.png +%%DATADIR%%/data/core/images/units/drakes/glider-attack-close2.png +%%DATADIR%%/data/core/images/units/drakes/glider-attack-ranged.png +%%DATADIR%%/data/core/images/units/drakes/glider-defend.png +%%DATADIR%%/data/core/images/units/drakes/glider-die-1.png +%%DATADIR%%/data/core/images/units/drakes/glider-die-2.png +%%DATADIR%%/data/core/images/units/drakes/glider-die-3.png +%%DATADIR%%/data/core/images/units/drakes/glider-die-4.png +%%DATADIR%%/data/core/images/units/drakes/glider-die-5.png +%%DATADIR%%/data/core/images/units/drakes/glider-die-6.png +%%DATADIR%%/data/core/images/units/drakes/glider-die-7.png +%%DATADIR%%/data/core/images/units/drakes/glider-die-8.png +%%DATADIR%%/data/core/images/units/drakes/glider-flying.png +%%DATADIR%%/data/core/images/units/drakes/glider.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-attack-melee1.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-attack-melee2.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-attack-ranged-fire1.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-attack-ranged-fire2.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-die-1.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-die-2.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-die-3.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-die-4.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-die-5.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-die-6.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-die-7.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-die-8.png +%%DATADIR%%/data/core/images/units/drakes/hurricane-flying.png +%%DATADIR%%/data/core/images/units/drakes/hurricane.png +%%DATADIR%%/data/core/images/units/drakes/inferno-attack-close.png +%%DATADIR%%/data/core/images/units/drakes/inferno-attack-ranged.png +%%DATADIR%%/data/core/images/units/drakes/inferno-defend.png +%%DATADIR%%/data/core/images/units/drakes/inferno-die-1.png +%%DATADIR%%/data/core/images/units/drakes/inferno-die-2.png +%%DATADIR%%/data/core/images/units/drakes/inferno-die-3.png +%%DATADIR%%/data/core/images/units/drakes/inferno-die-4.png +%%DATADIR%%/data/core/images/units/drakes/inferno-die-5.png +%%DATADIR%%/data/core/images/units/drakes/inferno-die-6.png +%%DATADIR%%/data/core/images/units/drakes/inferno-die-7.png +%%DATADIR%%/data/core/images/units/drakes/inferno-flying.png +%%DATADIR%%/data/core/images/units/drakes/inferno.png +%%DATADIR%%/data/core/images/units/drakes/sky-attack-melee1.png +%%DATADIR%%/data/core/images/units/drakes/sky-attack-melee2.png +%%DATADIR%%/data/core/images/units/drakes/sky-attack-ranged-fire.png +%%DATADIR%%/data/core/images/units/drakes/sky-attack-ranged-impact.png +%%DATADIR%%/data/core/images/units/drakes/sky-defend.png +%%DATADIR%%/data/core/images/units/drakes/sky-die-1.png +%%DATADIR%%/data/core/images/units/drakes/sky-die-2.png +%%DATADIR%%/data/core/images/units/drakes/sky-die-3.png +%%DATADIR%%/data/core/images/units/drakes/sky-die-4.png +%%DATADIR%%/data/core/images/units/drakes/sky-die-5.png +%%DATADIR%%/data/core/images/units/drakes/sky-die-6.png +%%DATADIR%%/data/core/images/units/drakes/sky-die-7.png +%%DATADIR%%/data/core/images/units/drakes/sky-die-8.png +%%DATADIR%%/data/core/images/units/drakes/sky.png +%%DATADIR%%/data/core/images/units/drakes/slasher-defend.png +%%DATADIR%%/data/core/images/units/drakes/slasher-die-1.png +%%DATADIR%%/data/core/images/units/drakes/slasher-die-2.png +%%DATADIR%%/data/core/images/units/drakes/slasher-die-3.png +%%DATADIR%%/data/core/images/units/drakes/slasher-die-4.png +%%DATADIR%%/data/core/images/units/drakes/slasher-die-5.png +%%DATADIR%%/data/core/images/units/drakes/slasher-die-6.png +%%DATADIR%%/data/core/images/units/drakes/slasher-die-7.png +%%DATADIR%%/data/core/images/units/drakes/slasher-die-8.png +%%DATADIR%%/data/core/images/units/drakes/slasher-flying.png +%%DATADIR%%/data/core/images/units/drakes/slasher-pierce.png +%%DATADIR%%/data/core/images/units/drakes/slasher-slash.png +%%DATADIR%%/data/core/images/units/drakes/slasher.png +%%DATADIR%%/data/core/images/units/drakes/warden-defend.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-1.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-2.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-3.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-4.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-5.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-6.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-7.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-8.png +%%DATADIR%%/data/core/images/units/drakes/warden-die-9.png +%%DATADIR%%/data/core/images/units/drakes/warden-flying.png +%%DATADIR%%/data/core/images/units/drakes/warden-pierce.png +%%DATADIR%%/data/core/images/units/drakes/warden-slash.png +%%DATADIR%%/data/core/images/units/drakes/warden.png +%%DATADIR%%/data/core/images/units/drakes/warrior-attack-close1.png +%%DATADIR%%/data/core/images/units/drakes/warrior-attack-close2.png +%%DATADIR%%/data/core/images/units/drakes/warrior-attack-ranged.png +%%DATADIR%%/data/core/images/units/drakes/warrior-defend.png +%%DATADIR%%/data/core/images/units/drakes/warrior-die-1.png +%%DATADIR%%/data/core/images/units/drakes/warrior-die-2.png +%%DATADIR%%/data/core/images/units/drakes/warrior-die-3.png +%%DATADIR%%/data/core/images/units/drakes/warrior-die-4.png +%%DATADIR%%/data/core/images/units/drakes/warrior-die-5.png +%%DATADIR%%/data/core/images/units/drakes/warrior-die-6.png +%%DATADIR%%/data/core/images/units/drakes/warrior-die-7.png +%%DATADIR%%/data/core/images/units/drakes/warrior-die-8.png +%%DATADIR%%/data/core/images/units/drakes/warrior-flying.png +%%DATADIR%%/data/core/images/units/drakes/warrior.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-attack1.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-attack2.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-attack3.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-defend.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-1.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-10.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-11.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-12.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-13.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-14.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-15.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-16.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-2.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-3.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-4.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-5.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-6.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-7.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-8.png +%%DATADIR%%/data/core/images/units/dwarves/berserker-idle-9.png +%%DATADIR%%/data/core/images/units/dwarves/berserker.png +%%DATADIR%%/data/core/images/units/dwarves/dragonguard-attack-ranged-n.png +%%DATADIR%%/data/core/images/units/dwarves/dragonguard-attack-ranged-ne.png +%%DATADIR%%/data/core/images/units/dwarves/dragonguard-attack-ranged-s.png +%%DATADIR%%/data/core/images/units/dwarves/dragonguard-attack-ranged-se.png +%%DATADIR%%/data/core/images/units/dwarves/dragonguard-defend.png +%%DATADIR%%/data/core/images/units/dwarves/dragonguard-melee1.png +%%DATADIR%%/data/core/images/units/dwarves/dragonguard-melee2.png +%%DATADIR%%/data/core/images/units/dwarves/dragonguard.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-axe-1.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-axe-2.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-axe-3.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-axe-4.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-axe-5.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-defend.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-hammer-1.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-hammer-2.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-hammer-3.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-hammer-defend.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-hammer.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-idle-1.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-idle-2.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-idle-3.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-idle-4.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-idle-5.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-idle-6.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-idle-7.png +%%DATADIR%%/data/core/images/units/dwarves/fighter-idle-8.png +%%DATADIR%%/data/core/images/units/dwarves/fighter.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-attack.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-1and3.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-2.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-4.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-5and7.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-6.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-8.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-master.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-attack.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-1and3.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-2.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-4.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-5and7.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-6.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-8.png +%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider.png +%%DATADIR%%/data/core/images/units/dwarves/guard-attack.png +%%DATADIR%%/data/core/images/units/dwarves/guard-defend-1.png +%%DATADIR%%/data/core/images/units/dwarves/guard-defend-2.png +%%DATADIR%%/data/core/images/units/dwarves/guard-idle-1.png +%%DATADIR%%/data/core/images/units/dwarves/guard-idle-2.png +%%DATADIR%%/data/core/images/units/dwarves/guard-idle-3.png +%%DATADIR%%/data/core/images/units/dwarves/guard-idle-4.png +%%DATADIR%%/data/core/images/units/dwarves/guard-idle-5.png +%%DATADIR%%/data/core/images/units/dwarves/guard-idle-6.png +%%DATADIR%%/data/core/images/units/dwarves/guard.png +%%DATADIR%%/data/core/images/units/dwarves/lord-attack-mace.png +%%DATADIR%%/data/core/images/units/dwarves/lord-attack.png +%%DATADIR%%/data/core/images/units/dwarves/lord-defend.png +%%DATADIR%%/data/core/images/units/dwarves/lord-ranged.png +%%DATADIR%%/data/core/images/units/dwarves/lord.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-attack1.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-attack2.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-attack3.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-defend.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-idle-1.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-idle-2.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-idle-3.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-idle-4.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-idle-5.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-idle-6.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster-idle-7.png +%%DATADIR%%/data/core/images/units/dwarves/runemaster.png +%%DATADIR%%/data/core/images/units/dwarves/sentinel-attack.png +%%DATADIR%%/data/core/images/units/dwarves/sentinel-defend.png +%%DATADIR%%/data/core/images/units/dwarves/sentinel.png +%%DATADIR%%/data/core/images/units/dwarves/stalwart-attack.png +%%DATADIR%%/data/core/images/units/dwarves/stalwart-defend.png +%%DATADIR%%/data/core/images/units/dwarves/stalwart.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-attack-mace.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-attack.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-defend.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-1.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-10.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-11.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-2.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-3.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-4.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-5.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-6.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-7.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-8.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad-idle-9.png +%%DATADIR%%/data/core/images/units/dwarves/steelclad.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-attack-n.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-attack-ne.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-attack-s.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-attack-se.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-defend.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-die1.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-die2.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-die3.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-melee1.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer-melee2.png +%%DATADIR%%/data/core/images/units/dwarves/thunderer.png +%%DATADIR%%/data/core/images/units/dwarves/thunderguard-attack-ranged-n.png +%%DATADIR%%/data/core/images/units/dwarves/thunderguard-attack-ranged-ne.png +%%DATADIR%%/data/core/images/units/dwarves/thunderguard-attack-ranged-s.png +%%DATADIR%%/data/core/images/units/dwarves/thunderguard-attack-ranged-se.png +%%DATADIR%%/data/core/images/units/dwarves/thunderguard-attack1.png +%%DATADIR%%/data/core/images/units/dwarves/thunderguard-attack2.png +%%DATADIR%%/data/core/images/units/dwarves/thunderguard-defend.png +%%DATADIR%%/data/core/images/units/dwarves/thunderguard.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker-attack.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker-defend.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker-idle-1.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker-idle-2.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker-idle-3.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker-idle-4.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker-idle-5.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker-idle-6.png +%%DATADIR%%/data/core/images/units/dwarves/ulfserker.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-die1.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-die2.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-die3.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-die4.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-sword-4.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-sword-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/archer+female.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-die1.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-die2.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-die3.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-die4.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-idle-1.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-idle-2.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-idle-3.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-idle-4.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-idle-5.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-idle-6.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-sword-4.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-sword-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/archer-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/archer.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger+female.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-die1.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-die2.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-die3.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-die4.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-sword-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/avenger.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-leading.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-melee-1.png +%%DATADIR%%/data/core/images/units/elves-wood/captain-melee-2.png +%%DATADIR%%/data/core/images/units/elves-wood/captain.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-attack-1.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-attack-2.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-attack-3.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-attack-4.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-attack-5.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-attack-6.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/champion-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/champion.png +%%DATADIR%%/data/core/images/units/elves-wood/druid-attack.png +%%DATADIR%%/data/core/images/units/elves-wood/druid-defend-1.png +%%DATADIR%%/data/core/images/units/elves-wood/druid-defend-2.png +%%DATADIR%%/data/core/images/units/elves-wood/druid-magic-1.png +%%DATADIR%%/data/core/images/units/elves-wood/druid-magic-2.png +%%DATADIR%%/data/core/images/units/elves-wood/druid-magic-3.png +%%DATADIR%%/data/core/images/units/elves-wood/druid-magic-4.png +%%DATADIR%%/data/core/images/units/elves-wood/druid.png +%%DATADIR%%/data/core/images/units/elves-wood/enchantress-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/enchantress-magic.png +%%DATADIR%%/data/core/images/units/elves-wood/enchantress-melee.png +%%DATADIR%%/data/core/images/units/elves-wood/enchantress.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-1.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-10.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-11.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-12.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-2.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-3.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-4.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-5.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-6.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-7.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-8.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-idle-9.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-melee-1.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter-melee-2.png +%%DATADIR%%/data/core/images/units/elves-wood/fighter.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-melee-1.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-melee-2.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-melee-3.png +%%DATADIR%%/data/core/images/units/elves-wood/hero-melee-4.png +%%DATADIR%%/data/core/images/units/elves-wood/hero.png +%%DATADIR%%/data/core/images/units/elves-wood/high-lord-attack-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/high-lord-attack-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/high-lord-defend-1.png +%%DATADIR%%/data/core/images/units/elves-wood/high-lord-defend-2.png +%%DATADIR%%/data/core/images/units/elves-wood/high-lord-magic-1.png +%%DATADIR%%/data/core/images/units/elves-wood/high-lord-magic-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/high-lord-magic.png +%%DATADIR%%/data/core/images/units/elves-wood/high-lord.png +%%DATADIR%%/data/core/images/units/elves-wood/lady.png +%%DATADIR%%/data/core/images/units/elves-wood/lord-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/lord-magic-1.png +%%DATADIR%%/data/core/images/units/elves-wood/lord-magic-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/lord-magic.png +%%DATADIR%%/data/core/images/units/elves-wood/lord-melee.png +%%DATADIR%%/data/core/images/units/elves-wood/lord.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-die-1.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-die-2.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-die-3.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-sword-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman+female.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-die-1.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-die-2.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-die-3.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-die-4.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-die-5.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-sword-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/marksman.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-leading.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-melee-1.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal-melee-2.png +%%DATADIR%%/data/core/images/units/elves-wood/marshal.png +%%DATADIR%%/data/core/images/units/elves-wood/outrider-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/outrider-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/outrider-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/outrider-melee-1.png +%%DATADIR%%/data/core/images/units/elves-wood/outrider-melee-2.png +%%DATADIR%%/data/core/images/units/elves-wood/outrider-moving.png +%%DATADIR%%/data/core/images/units/elves-wood/outrider.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger+female.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-die1.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-die2.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-die3.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-die4.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-sword-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/ranger.png +%%DATADIR%%/data/core/images/units/elves-wood/rider-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/rider-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/rider-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/rider-melee-1.png +%%DATADIR%%/data/core/images/units/elves-wood/rider-melee-2.png +%%DATADIR%%/data/core/images/units/elves-wood/rider-moving.png +%%DATADIR%%/data/core/images/units/elves-wood/rider.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-attack.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-1.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-10.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-11.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-12.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-13.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-14.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-15.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-16.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-2.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-3.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-4.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-5.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-6.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-7.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-8.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-idle-9.png +%%DATADIR%%/data/core/images/units/elves-wood/scout-moving.png +%%DATADIR%%/data/core/images/units/elves-wood/scout.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-attack.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal1.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal2.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal3.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal4.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal5.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal6.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal7.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal8.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman-heal9.png +%%DATADIR%%/data/core/images/units/elves-wood/shaman.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-bow-attack5.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-sword-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter+female.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-bow-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-bow-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-bow-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-bow-attack4.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-bow-attack5.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-bow-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-bow.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-die1.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-die2.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-die3.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-die4.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-sword-1.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-sword-2.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-sword-3.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-sword-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter-sword.png +%%DATADIR%%/data/core/images/units/elves-wood/sharpshooter.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-ftouch-attack1.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-ftouch-attack2.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-ftouch-attack3.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing1.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing10.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing11.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing12.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing2.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing3.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing4.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing5.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing6.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing7.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing8.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde-healing9.png +%%DATADIR%%/data/core/images/units/elves-wood/shyde.png +%%DATADIR%%/data/core/images/units/elves-wood/sorceress-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/sorceress-magic.png +%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee.png +%%DATADIR%%/data/core/images/units/elves-wood/sorceress.png +%%DATADIR%%/data/core/images/units/elves-wood/sylph-defend.png +%%DATADIR%%/data/core/images/units/elves-wood/sylph-magic.png +%%DATADIR%%/data/core/images/units/elves-wood/sylph-melee.png +%%DATADIR%%/data/core/images/units/elves-wood/sylph.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-attack.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-defend.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-idle-1.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-idle-2.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-idle-3.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-idle-4.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-idle-5.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-idle-6.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-idle-7.png +%%DATADIR%%/data/core/images/units/goblins/direwolver-moving.png +%%DATADIR%%/data/core/images/units/goblins/direwolver.png +%%DATADIR%%/data/core/images/units/goblins/impaler-attack-n.png +%%DATADIR%%/data/core/images/units/goblins/impaler-attack-ne.png +%%DATADIR%%/data/core/images/units/goblins/impaler-attack-ranged-s.png +%%DATADIR%%/data/core/images/units/goblins/impaler-attack-s.png +%%DATADIR%%/data/core/images/units/goblins/impaler-attack-se-1.png +%%DATADIR%%/data/core/images/units/goblins/impaler-attack-se-2.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-1.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-2.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-3.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-4.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-5.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-6.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-7.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-8.png +%%DATADIR%%/data/core/images/units/goblins/impaler-death-9.png +%%DATADIR%%/data/core/images/units/goblins/impaler-defend.png +%%DATADIR%%/data/core/images/units/goblins/impaler-ne-defend.png +%%DATADIR%%/data/core/images/units/goblins/impaler-ne.png +%%DATADIR%%/data/core/images/units/goblins/impaler.png +%%DATADIR%%/data/core/images/units/goblins/knight-attack.png +%%DATADIR%%/data/core/images/units/goblins/knight-defend.png +%%DATADIR%%/data/core/images/units/goblins/knight-moving.png +%%DATADIR%%/data/core/images/units/goblins/knight.png +%%DATADIR%%/data/core/images/units/goblins/pillager-attack.png +%%DATADIR%%/data/core/images/units/goblins/pillager-attack2.png +%%DATADIR%%/data/core/images/units/goblins/pillager-defend.png +%%DATADIR%%/data/core/images/units/goblins/pillager-moving.png +%%DATADIR%%/data/core/images/units/goblins/pillager.png +%%DATADIR%%/data/core/images/units/goblins/rouser-attack-n.png +%%DATADIR%%/data/core/images/units/goblins/rouser-attack-ne.png +%%DATADIR%%/data/core/images/units/goblins/rouser-attack-s.png +%%DATADIR%%/data/core/images/units/goblins/rouser-attack-se.png +%%DATADIR%%/data/core/images/units/goblins/rouser-attack1.png +%%DATADIR%%/data/core/images/units/goblins/rouser-attack3.png +%%DATADIR%%/data/core/images/units/goblins/rouser-attack4.png +%%DATADIR%%/data/core/images/units/goblins/rouser-defend.png +%%DATADIR%%/data/core/images/units/goblins/rouser-leading.png +%%DATADIR%%/data/core/images/units/goblins/rouser-ne-defend.png +%%DATADIR%%/data/core/images/units/goblins/rouser-ne.png +%%DATADIR%%/data/core/images/units/goblins/rouser.png +%%DATADIR%%/data/core/images/units/goblins/spearman-attack-n1.png +%%DATADIR%%/data/core/images/units/goblins/spearman-attack-n2.png +%%DATADIR%%/data/core/images/units/goblins/spearman-attack-ne1.png +%%DATADIR%%/data/core/images/units/goblins/spearman-attack-ne2.png +%%DATADIR%%/data/core/images/units/goblins/spearman-attack-s1.png +%%DATADIR%%/data/core/images/units/goblins/spearman-attack-s2.png +%%DATADIR%%/data/core/images/units/goblins/spearman-attack-se1.png +%%DATADIR%%/data/core/images/units/goblins/spearman-attack-se2.png +%%DATADIR%%/data/core/images/units/goblins/spearman-defend.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-1.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-10.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-11.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-12.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-2.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-3.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-4.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-5.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-6.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-7.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-8.png +%%DATADIR%%/data/core/images/units/goblins/spearman-idle-9.png +%%DATADIR%%/data/core/images/units/goblins/spearman-ne-defend.png +%%DATADIR%%/data/core/images/units/goblins/spearman-ne.png +%%DATADIR%%/data/core/images/units/goblins/spearman.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-attack.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-defend.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-idle-1.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-idle-2.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-idle-3.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-idle-4.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-idle-5.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-moving.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider-water.png +%%DATADIR%%/data/core/images/units/goblins/wolf-rider.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-8.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-ranged-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-sword-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-sword-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman-sword.png +%%DATADIR%%/data/core/images/units/human-loyalists/bowman.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-attack.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-moving.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-ranged-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-ranged-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-ranged-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-ranged-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-ranged-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-ranged-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier-ranged-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalier.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalryman-attack.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalryman-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalryman-die-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalryman-die-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalryman-moving.png +%%DATADIR%%/data/core/images/units/human-loyalists/cavalryman.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-attack.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-idle-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-idle-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-moving.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-ranged-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-ranged-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-ranged-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-ranged-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-ranged-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-ranged-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon-ranged-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/dragoon.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-attack.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-die1.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-die2.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-die3.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-die4.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-die5.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-die6.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-die7.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-die8.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist-ranged.png +%%DATADIR%%/data/core/images/units/human-loyalists/duelist.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-8.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-attack-9.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-defend-1-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-defend-1-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-die1.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-die2.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-die3.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-die4.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-die5.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-idle-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-idle-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer-idle-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/fencer.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-attack-sword1.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-attack-sword2.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-attack-sword3.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-attack-sword4.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-attack-sword5.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-crossbow-attack1.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-crossbow-attack2.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-crossbow-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-crossbow.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-defend-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-defend-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-idle-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-idle-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/general-leading.png +%%DATADIR%%/data/core/images/units/human-loyalists/general.png +%%DATADIR%%/data/core/images/units/human-loyalists/grand-knight-attack-sword.png +%%DATADIR%%/data/core/images/units/human-loyalists/grand-knight-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/grand-knight-moving.png +%%DATADIR%%/data/core/images/units/human-loyalists/grand-knight.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-10.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-11.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-12.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-8.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-idle-9.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-pierce-n.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-pierce-ne.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-pierce-s.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-pierce-se.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-slash-se-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier-slash-se-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/halberdier.png +%%DATADIR%%/data/core/images/units/human-loyalists/heavyinfantry-attack-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/heavyinfantry-attack-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/heavyinfantry-defend-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/heavyinfantry-defend-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/heavyinfantry.png +%%DATADIR%%/data/core/images/units/human-loyalists/horseman-attack.png +%%DATADIR%%/data/core/images/units/human-loyalists/horseman-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/horseman-moving.png +%%DATADIR%%/data/core/images/units/human-loyalists/horseman.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-attack-melee-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-attack-melee-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-attack-melee-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-attack-ranged-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-attack-ranged-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-attack-ranged-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-attack-ranged-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-defend-ranged.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/javelineer.png +%%DATADIR%%/data/core/images/units/human-loyalists/knight-attack.png +%%DATADIR%%/data/core/images/units/human-loyalists/knight-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/knight-moving.png +%%DATADIR%%/data/core/images/units/human-loyalists/knight.png +%%DATADIR%%/data/core/images/units/human-loyalists/lancer-attack.png +%%DATADIR%%/data/core/images/units/human-loyalists/lancer-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/lancer-moving.png +%%DATADIR%%/data/core/images/units/human-loyalists/lancer.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-attack-sword-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-attack-sword-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-attack-sword-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-crossbow-attack1.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-crossbow-attack2.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-crossbow-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-crossbow.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-8.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-die-9.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-8.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-idle-9.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant-leading.png +%%DATADIR%%/data/core/images/units/human-loyalists/lieutenant.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow-attack1.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow-attack2.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow-attack3.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow-attack4.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-sword-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-sword-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-sword.png +%%DATADIR%%/data/core/images/units/human-loyalists/longbowman.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-attack-sword1.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-attack-sword2.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-attack-sword3.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-attack-sword4.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-attack-sword5.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-crossbow-attack1.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-crossbow-attack2.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-crossbow-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-crossbow.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-defend-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-defend-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-10.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-8.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-die-9.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal-leading.png +%%DATADIR%%/data/core/images/units/human-loyalists/marshal.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-crossbow-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-crossbow-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-crossbow-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-crossbow-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-crossbow-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-crossbow-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-defend-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-defend-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-melee-1-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-melee-1-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-melee-1-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-melee-2-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-melee-2-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-melee-2-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-melee-3-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-recover-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms-recover-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/master-at-arms.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow-attack1.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow-attack2.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow-attack3.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow-attack4.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-sword-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-sword-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-sword.png +%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman.png +%%DATADIR%%/data/core/images/units/human-loyalists/paladin-attack-sword.png +%%DATADIR%%/data/core/images/units/human-loyalists/paladin-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/paladin-healing.png +%%DATADIR%%/data/core/images/units/human-loyalists/paladin-moving.png +%%DATADIR%%/data/core/images/units/human-loyalists/paladin.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-attack-n.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-attack-ne.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-attack-s.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-attack-se.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-die-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-die-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-die-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-die-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-die-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/pikeman.png +%%DATADIR%%/data/core/images/units/human-loyalists/royalguard-attack-sword1.png +%%DATADIR%%/data/core/images/units/human-loyalists/royalguard-attack-sword2.png +%%DATADIR%%/data/core/images/units/human-loyalists/royalguard-attack-sword3.png +%%DATADIR%%/data/core/images/units/human-loyalists/royalguard-attack-sword4.png +%%DATADIR%%/data/core/images/units/human-loyalists/royalguard-attack-sword5.png +%%DATADIR%%/data/core/images/units/human-loyalists/royalguard-defend-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/royalguard-defend-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/royalguard.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-attack-sword-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-attack-sword-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-attack-sword-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-crossbow-attack1.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-crossbow-attack2.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-crossbow-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-crossbow.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-10.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-11.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-8.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-idle-9.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant-leading.png +%%DATADIR%%/data/core/images/units/human-loyalists/sergeant.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper-attack-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper-attack-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper-attack-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper-attack-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper-attack-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper-attack-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper-defend-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper-defend-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/shocktrooper.png +%%DATADIR%%/data/core/images/units/human-loyalists/siegetrooper-attack-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/siegetrooper-attack-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/siegetrooper-defend-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/siegetrooper-defend-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/siegetrooper.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-attack-n.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-attack-ne.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-attack-ranged.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-attack-ranged2.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-attack-s-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-attack-s-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-attack.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-death1.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-death2.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-death3.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-death4.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-defend-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/spearman.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-attack-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-attack-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-attack-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-defend.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-1.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-10.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-11.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-12.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-2.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-3.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-4.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-5.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-6.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-7.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-8.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman-idle-9.png +%%DATADIR%%/data/core/images/units/human-loyalists/swordsman.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage+female-attack-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage+female-attack-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage+female-attack-staff-1.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage+female-attack-staff-2.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage+female-defend.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage+female.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage-attack-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage-attack-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage-attack-staff-1.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage-attack-staff-2.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage-defend.png +%%DATADIR%%/data/core/images/units/human-magi/arch-mage.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage+female-attack-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage+female-attack-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage+female-attack-staff-1.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage+female-attack-staff-2.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage+female-defend.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage+female.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage-attack-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage-attack-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage-attack-staff-1.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage-attack-staff-2.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage-defend.png +%%DATADIR%%/data/core/images/units/human-magi/great-mage.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-attack-magic1.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-attack-magic2.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-attack-staff1.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-attack-staff2.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-defend.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-die-1.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-die-2.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-die-3.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female-die-4.png +%%DATADIR%%/data/core/images/units/human-magi/mage+female.png +%%DATADIR%%/data/core/images/units/human-magi/mage-attack-magic1.png +%%DATADIR%%/data/core/images/units/human-magi/mage-attack-magic2.png +%%DATADIR%%/data/core/images/units/human-magi/mage-attack-staff1.png +%%DATADIR%%/data/core/images/units/human-magi/mage-attack-staff2.png +%%DATADIR%%/data/core/images/units/human-magi/mage-defend.png +%%DATADIR%%/data/core/images/units/human-magi/mage-die-1.png +%%DATADIR%%/data/core/images/units/human-magi/mage-die-2.png +%%DATADIR%%/data/core/images/units/human-magi/mage-die-3.png +%%DATADIR%%/data/core/images/units/human-magi/mage-die-4.png +%%DATADIR%%/data/core/images/units/human-magi/mage.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-attack-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-attack-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-attack-staff-1.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-attack-staff-2.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-defend.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-die-1.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-die-2.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-die-3.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female-die-4.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage+female.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-attack-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-attack-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-attack-staff-1.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-attack-staff-2.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-defend.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-die-1.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-die-2.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-die-3.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage-die-4.png +%%DATADIR%%/data/core/images/units/human-magi/red-mage.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-attack-magic1.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-attack-magic2.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-attack-staff1.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-attack-staff2.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-defend.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage-attack-magic1.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage-attack-magic2.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage-attack-staff1.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage-attack-staff2.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage-defend.png +%%DATADIR%%/data/core/images/units/human-magi/silver-mage.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female-defend.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female-mace-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female-mace-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female-mace-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female-mace-4.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female-magic-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric+female.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric-defend.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric-mace-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric-mace-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric-mace-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric-mace-4.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric-magic-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-cleric.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-defend.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-die-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-die-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-die-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-die-4.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-magic-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-melee-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-melee-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-melee-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-melee-4.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-melee-5.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female-melee-6.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage+female.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-defend.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-die-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-die-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-die-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-die-4.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-magic-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-magic-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-magic-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-melee-1.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-melee-2.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-melee-3.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-melee-4.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-melee-5.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage-melee-6.png +%%DATADIR%%/data/core/images/units/human-magi/white-mage.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female-defend-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female-defend-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female-melee-1-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female-melee-1-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female-melee-2-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female-melee-2-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female-throwknife1.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female-throwknife2.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin+female.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin-defend-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin-defend-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin-melee-1-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin-melee-1-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin-melee-2-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin-melee-2-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin-throwknife1.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin-throwknife2.png +%%DATADIR%%/data/core/images/units/human-outlaws/assassin.png +%%DATADIR%%/data/core/images/units/human-outlaws/bandit-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/bandit-die-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/bandit-die-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/bandit-melee-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/bandit-melee-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/bandit-melee-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/bandit.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-idle-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-idle-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-idle-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-idle-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-melee-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-melee-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-melee-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female-melee-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad+female.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-idle-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-idle-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-idle-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-idle-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-melee-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-melee-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-melee-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad-melee-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/footpad.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive+female-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive+female-melee-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive+female-melee-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive+female-melee-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive+female-ranged-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive+female-ranged-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive+female.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive-melee-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive-melee-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive-melee-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive-ranged-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive-ranged-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/fugitive.png +%%DATADIR%%/data/core/images/units/human-outlaws/highwayman-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/highwayman-melee.png +%%DATADIR%%/data/core/images/units/human-outlaws/highwayman.png +%%DATADIR%%/data/core/images/units/human-outlaws/huntsman-attack-melee.png +%%DATADIR%%/data/core/images/units/human-outlaws/huntsman-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/huntsman-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/huntsman-attack3.png +%%DATADIR%%/data/core/images/units/human-outlaws/huntsman-bow-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/huntsman-bow.png +%%DATADIR%%/data/core/images/units/human-outlaws/huntsman-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/huntsman.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw+female-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw+female-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw+female-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw+female-melee-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw+female-melee-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw+female-melee-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw+female.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-idle-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-idle-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-idle-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-idle-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-idle-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-idle-6.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-idle-7.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-melee-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-melee-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw-melee-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/outlaw.png +%%DATADIR%%/data/core/images/units/human-outlaws/poacher-attack.png +%%DATADIR%%/data/core/images/units/human-outlaws/poacher-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/poacher-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/poacher-attack3.png +%%DATADIR%%/data/core/images/units/human-outlaws/poacher-bow-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/poacher-dagger.png +%%DATADIR%%/data/core/images/units/human-outlaws/poacher-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/poacher.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-bow-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-bow-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-bow-attack3.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-bow-attack4.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-bow-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-bow.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-sword-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-sword-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-sword-attack3.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-sword-defend-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-sword-defend-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger-sword.png +%%DATADIR%%/data/core/images/units/human-outlaws/ranger.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-attack.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-die-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-die-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-die-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-die-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-die-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-die-6.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female-ranged.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue+female.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-attack.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-die-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-die-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-die-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-die-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-die-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-die-6.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue-ranged.png +%%DATADIR%%/data/core/images/units/human-outlaws/rogue.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-attack.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-defend-1-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-defend-1-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-defend-2-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-defend-2-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-defend-3-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-defend-3-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-die-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-die-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-die-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-die-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-die-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-die-6.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-die-7.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-10.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-11.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-12.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-6.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-7.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-8.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female-idle-9.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief+female.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-attack.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-defend-1-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-defend-1-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-defend-2-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-defend-2-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-defend-3-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-defend-3-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-die-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-die-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-die-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-die-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-die-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-die-6.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-die-7.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-10.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-11.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-12.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-6.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-7.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-8.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief-idle-9.png +%%DATADIR%%/data/core/images/units/human-outlaws/thief.png +%%DATADIR%%/data/core/images/units/human-outlaws/thug-attack.png +%%DATADIR%%/data/core/images/units/human-outlaws/thug-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/thug-idle-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/thug-idle-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/thug-idle-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/thug-idle-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/thug-idle-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/thug.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-attack-melee-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-attack-melee.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-attack1.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-attack2.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-attack3.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-bow-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-dagger.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-defend.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-die-1.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-die-2.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-die-3.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-die-4.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-die-5.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-die-6.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-die-7.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper-die-8.png +%%DATADIR%%/data/core/images/units/human-outlaws/trapper.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-attack.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-attack2.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-defend.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-idle-1.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-idle-2.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-idle-3.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-idle-4.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-idle-5.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-idle-6.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-idle-7.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant-ranged.png +%%DATADIR%%/data/core/images/units/human-peasants/peasant.png +%%DATADIR%%/data/core/images/units/human-peasants/ruffian-defend.png +%%DATADIR%%/data/core/images/units/human-peasants/ruffian-melee-1.png +%%DATADIR%%/data/core/images/units/human-peasants/ruffian-melee-2.png +%%DATADIR%%/data/core/images/units/human-peasants/ruffian.png +%%DATADIR%%/data/core/images/units/human-peasants/woodsman-bow-1.png +%%DATADIR%%/data/core/images/units/human-peasants/woodsman-bow-2.png +%%DATADIR%%/data/core/images/units/human-peasants/woodsman-bow-3.png +%%DATADIR%%/data/core/images/units/human-peasants/woodsman-defend.png +%%DATADIR%%/data/core/images/units/human-peasants/woodsman-melee-1.png +%%DATADIR%%/data/core/images/units/human-peasants/woodsman-melee-2.png +%%DATADIR%%/data/core/images/units/human-peasants/woodsman.png +%%DATADIR%%/data/core/images/units/merfolk/diviner-defend.png +%%DATADIR%%/data/core/images/units/merfolk/diviner-magic1.png +%%DATADIR%%/data/core/images/units/merfolk/diviner-magic2.png +%%DATADIR%%/data/core/images/units/merfolk/diviner-magic3.png +%%DATADIR%%/data/core/images/units/merfolk/diviner-magic4.png +%%DATADIR%%/data/core/images/units/merfolk/diviner-magic5.png +%%DATADIR%%/data/core/images/units/merfolk/diviner-magic6.png +%%DATADIR%%/data/core/images/units/merfolk/diviner-staff-attack.png +%%DATADIR%%/data/core/images/units/merfolk/diviner.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-defend.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-staff-attack.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-water-attack1.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-water-attack2.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-water-attack3.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-water-attack4.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-water-attack5.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-water-attack6.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress-water-attack7.png +%%DATADIR%%/data/core/images/units/merfolk/enchantress.png +%%DATADIR%%/data/core/images/units/merfolk/entangler.png +%%DATADIR%%/data/core/images/units/merfolk/fighter-attack.png +%%DATADIR%%/data/core/images/units/merfolk/fighter-defend.png +%%DATADIR%%/data/core/images/units/merfolk/fighter.png +%%DATADIR%%/data/core/images/units/merfolk/hoplite-attack.png +%%DATADIR%%/data/core/images/units/merfolk/hoplite-defend.png +%%DATADIR%%/data/core/images/units/merfolk/hoplite.png +%%DATADIR%%/data/core/images/units/merfolk/hunter-attack-n.png +%%DATADIR%%/data/core/images/units/merfolk/hunter-attack-ne.png +%%DATADIR%%/data/core/images/units/merfolk/hunter-attack-ranged.png +%%DATADIR%%/data/core/images/units/merfolk/hunter-attack-s.png +%%DATADIR%%/data/core/images/units/merfolk/hunter-attack-se.png +%%DATADIR%%/data/core/images/units/merfolk/hunter-defend.png +%%DATADIR%%/data/core/images/units/merfolk/hunter.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-defend.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-staff-attack.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-water-attack1.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-water-attack2.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-water-attack3.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-water-attack4.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-water-attack5.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-water-attack6.png +%%DATADIR%%/data/core/images/units/merfolk/initiate-water-attack7.png +%%DATADIR%%/data/core/images/units/merfolk/initiate.png +%%DATADIR%%/data/core/images/units/merfolk/javelineer-attack-n.png +%%DATADIR%%/data/core/images/units/merfolk/javelineer-attack-ne.png +%%DATADIR%%/data/core/images/units/merfolk/javelineer-attack-ranged.png +%%DATADIR%%/data/core/images/units/merfolk/javelineer-attack-s.png +%%DATADIR%%/data/core/images/units/merfolk/javelineer-attack-se.png +%%DATADIR%%/data/core/images/units/merfolk/javelineer-defend.png +%%DATADIR%%/data/core/images/units/merfolk/javelineer.png +%%DATADIR%%/data/core/images/units/merfolk/netcaster.png +%%DATADIR%%/data/core/images/units/merfolk/priestess-defend.png +%%DATADIR%%/data/core/images/units/merfolk/priestess-magic1.png +%%DATADIR%%/data/core/images/units/merfolk/priestess-magic2.png +%%DATADIR%%/data/core/images/units/merfolk/priestess-magic3.png +%%DATADIR%%/data/core/images/units/merfolk/priestess-magic4.png +%%DATADIR%%/data/core/images/units/merfolk/priestess-magic5.png +%%DATADIR%%/data/core/images/units/merfolk/priestess-magic6.png +%%DATADIR%%/data/core/images/units/merfolk/priestess-staff-attack.png +%%DATADIR%%/data/core/images/units/merfolk/priestess.png +%%DATADIR%%/data/core/images/units/merfolk/siren-defend.png +%%DATADIR%%/data/core/images/units/merfolk/siren-naia-touch-attack1.png +%%DATADIR%%/data/core/images/units/merfolk/siren-naia-touch-attack2.png +%%DATADIR%%/data/core/images/units/merfolk/siren-naia-touch-attack3.png +%%DATADIR%%/data/core/images/units/merfolk/siren-naia-touch-attack4.png +%%DATADIR%%/data/core/images/units/merfolk/siren-water-attack1.png +%%DATADIR%%/data/core/images/units/merfolk/siren-water-attack2.png +%%DATADIR%%/data/core/images/units/merfolk/siren-water-attack3.png +%%DATADIR%%/data/core/images/units/merfolk/siren-water-attack4.png +%%DATADIR%%/data/core/images/units/merfolk/siren-water-attack5.png +%%DATADIR%%/data/core/images/units/merfolk/siren-water-attack6.png +%%DATADIR%%/data/core/images/units/merfolk/siren-water-attack7.png +%%DATADIR%%/data/core/images/units/merfolk/siren.png +%%DATADIR%%/data/core/images/units/merfolk/spearman-attack-n.png +%%DATADIR%%/data/core/images/units/merfolk/spearman-attack-ne.png +%%DATADIR%%/data/core/images/units/merfolk/spearman-attack-ranged.png +%%DATADIR%%/data/core/images/units/merfolk/spearman-attack-s.png +%%DATADIR%%/data/core/images/units/merfolk/spearman-attack-se.png +%%DATADIR%%/data/core/images/units/merfolk/spearman-defend.png +%%DATADIR%%/data/core/images/units/merfolk/spearman.png +%%DATADIR%%/data/core/images/units/merfolk/triton-attack-blade.png +%%DATADIR%%/data/core/images/units/merfolk/triton-attack-pierce.png +%%DATADIR%%/data/core/images/units/merfolk/triton-defend.png +%%DATADIR%%/data/core/images/units/merfolk/triton.png +%%DATADIR%%/data/core/images/units/merfolk/warrior-attack.png +%%DATADIR%%/data/core/images/units/merfolk/warrior-defend.png +%%DATADIR%%/data/core/images/units/merfolk/warrior.png +%%DATADIR%%/data/core/images/units/monsters/cavespider-attack-melee.png +%%DATADIR%%/data/core/images/units/monsters/cavespider-attack-ranged.png +%%DATADIR%%/data/core/images/units/monsters/cavespider-defend.png +%%DATADIR%%/data/core/images/units/monsters/cavespider-die-1.png +%%DATADIR%%/data/core/images/units/monsters/cavespider-die-2.png +%%DATADIR%%/data/core/images/units/monsters/cavespider.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish-attack-2.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish-attack-3.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish-attack-4.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish-attack-ink.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish-attack.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish-defend.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish-die-1.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish-die-2.png +%%DATADIR%%/data/core/images/units/monsters/cuttlefish.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle-attack.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle-defend.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle-die-1.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle-die-2.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle-die-3.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle-die-4.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle-die-5.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle-die-6.png +%%DATADIR%%/data/core/images/units/monsters/deep-tentacle.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-fire-1.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-fire-2.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-fire-3.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-fire-4.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-fire-5.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-fire-6.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-tail-1.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-tail-2.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-tail-3.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-attack-tail-4.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-defend-ranged-1.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-defend-ranged-2.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-defend-ranged-3.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon-defend-ranged-4.png +%%DATADIR%%/data/core/images/units/monsters/fire-dragon.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler-attack.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler-attack1.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler-attack2.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler-death1.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler-death2.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler-death3.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler-death4.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler-defend.png +%%DATADIR%%/data/core/images/units/monsters/giant-mudcrawler.png +%%DATADIR%%/data/core/images/units/monsters/gryphon-attack.png +%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-1and3.png +%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-2.png +%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-4.png +%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-5and7.png +%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-6.png +%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-8.png +%%DATADIR%%/data/core/images/units/monsters/gryphon.png +%%DATADIR%%/data/core/images/units/monsters/mudcrawler-attack.png +%%DATADIR%%/data/core/images/units/monsters/mudcrawler-death1.png +%%DATADIR%%/data/core/images/units/monsters/mudcrawler-death2.png +%%DATADIR%%/data/core/images/units/monsters/mudcrawler-death3.png +%%DATADIR%%/data/core/images/units/monsters/mudcrawler-death4.png +%%DATADIR%%/data/core/images/units/monsters/mudcrawler-defend.png +%%DATADIR%%/data/core/images/units/monsters/mudcrawler.png +%%DATADIR%%/data/core/images/units/monsters/scorpion-defend.png +%%DATADIR%%/data/core/images/units/monsters/scorpion-pincers-attack.png +%%DATADIR%%/data/core/images/units/monsters/scorpion-sting-attack.png +%%DATADIR%%/data/core/images/units/monsters/scorpion.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-attack.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-defend.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-1.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-2.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-3.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-4.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-5.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-6.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-7.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-8.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent-die-9.png +%%DATADIR%%/data/core/images/units/monsters/seaserpent.png +%%DATADIR%%/data/core/images/units/monsters/skeletal-dragon-attack-claws1.png +%%DATADIR%%/data/core/images/units/monsters/skeletal-dragon-attack-claws2.png +%%DATADIR%%/data/core/images/units/monsters/skeletal-dragon-attack-claws3.png +%%DATADIR%%/data/core/images/units/monsters/skeletal-dragon-attack-jaw1.png +%%DATADIR%%/data/core/images/units/monsters/skeletal-dragon-attack-jaw2.png +%%DATADIR%%/data/core/images/units/monsters/skeletal-dragon-defend.png +%%DATADIR%%/data/core/images/units/monsters/skeletal-dragon.png +%%DATADIR%%/data/core/images/units/monsters/wolf-attack.png +%%DATADIR%%/data/core/images/units/monsters/wolf-defend.png +%%DATADIR%%/data/core/images/units/monsters/wolf-moving.png +%%DATADIR%%/data/core/images/units/monsters/wolf-water.png +%%DATADIR%%/data/core/images/units/monsters/wolf.png +%%DATADIR%%/data/core/images/units/monsters/yeti-attack1.png +%%DATADIR%%/data/core/images/units/monsters/yeti-attack2.png +%%DATADIR%%/data/core/images/units/monsters/yeti-attack3.png +%%DATADIR%%/data/core/images/units/monsters/yeti-defend.png +%%DATADIR%%/data/core/images/units/monsters/yeti-die1.png +%%DATADIR%%/data/core/images/units/monsters/yeti-die2.png +%%DATADIR%%/data/core/images/units/monsters/yeti-die3.png +%%DATADIR%%/data/core/images/units/monsters/yeti-die4.png +%%DATADIR%%/data/core/images/units/monsters/yeti-die5.png +%%DATADIR%%/data/core/images/units/monsters/yeti.png +%%DATADIR%%/data/core/images/units/nagas/fighter+female-attack.png +%%DATADIR%%/data/core/images/units/nagas/fighter+female-defend.png +%%DATADIR%%/data/core/images/units/nagas/fighter+female.png +%%DATADIR%%/data/core/images/units/nagas/fighter-attack.png +%%DATADIR%%/data/core/images/units/nagas/fighter-defend.png +%%DATADIR%%/data/core/images/units/nagas/fighter-idle-1.png +%%DATADIR%%/data/core/images/units/nagas/fighter-idle-2.png +%%DATADIR%%/data/core/images/units/nagas/fighter-idle-3.png +%%DATADIR%%/data/core/images/units/nagas/fighter-idle-4.png +%%DATADIR%%/data/core/images/units/nagas/fighter-idle-5.png +%%DATADIR%%/data/core/images/units/nagas/fighter.png +%%DATADIR%%/data/core/images/units/nagas/myrmidon+female-attack.png +%%DATADIR%%/data/core/images/units/nagas/myrmidon+female-defend.png +%%DATADIR%%/data/core/images/units/nagas/myrmidon+female.png +%%DATADIR%%/data/core/images/units/nagas/myrmidon-attack.png +%%DATADIR%%/data/core/images/units/nagas/myrmidon-defend.png +%%DATADIR%%/data/core/images/units/nagas/myrmidon.png +%%DATADIR%%/data/core/images/units/nagas/warrior+female-attack.png +%%DATADIR%%/data/core/images/units/nagas/warrior+female-defend.png +%%DATADIR%%/data/core/images/units/nagas/warrior+female.png +%%DATADIR%%/data/core/images/units/nagas/warrior-attack.png +%%DATADIR%%/data/core/images/units/nagas/warrior-defend.png +%%DATADIR%%/data/core/images/units/nagas/warrior.png +%%DATADIR%%/data/core/images/units/ogres/ogre-attack1.png +%%DATADIR%%/data/core/images/units/ogres/ogre-attack2.png +%%DATADIR%%/data/core/images/units/ogres/ogre-attack3.png +%%DATADIR%%/data/core/images/units/ogres/ogre-attack4.png +%%DATADIR%%/data/core/images/units/ogres/ogre-attack5.png +%%DATADIR%%/data/core/images/units/ogres/ogre-defend.png +%%DATADIR%%/data/core/images/units/ogres/ogre-idle-1.png +%%DATADIR%%/data/core/images/units/ogres/ogre-idle-2.png +%%DATADIR%%/data/core/images/units/ogres/ogre.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-attack1.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-attack2.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-attack3.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-attack4.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-attack5.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-defend.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-idle-1.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-idle-2.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-idle-3.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre-idle-4.png +%%DATADIR%%/data/core/images/units/ogres/young-ogre.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-1.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-2.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-3.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-4.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-5.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-6.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-7.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-8.png +%%DATADIR%%/data/core/images/units/orcs/archer-death-9.png +%%DATADIR%%/data/core/images/units/orcs/archer-defend.png +%%DATADIR%%/data/core/images/units/orcs/archer-idle-1.png +%%DATADIR%%/data/core/images/units/orcs/archer-idle-2.png +%%DATADIR%%/data/core/images/units/orcs/archer-idle-3.png +%%DATADIR%%/data/core/images/units/orcs/archer-idle-4.png +%%DATADIR%%/data/core/images/units/orcs/archer-idle-5.png +%%DATADIR%%/data/core/images/units/orcs/archer-idle-6.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-01.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-02.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-03.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-04.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-05.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-06.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-07.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-08.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-09.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-10.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-11.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-12.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-13.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-14.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-15.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-16.png +%%DATADIR%%/data/core/images/units/orcs/archer-melee-17.png +%%DATADIR%%/data/core/images/units/orcs/archer-ranged-1.png +%%DATADIR%%/data/core/images/units/orcs/archer-ranged-2.png +%%DATADIR%%/data/core/images/units/orcs/archer-ranged-3.png +%%DATADIR%%/data/core/images/units/orcs/archer-ranged-4.png +%%DATADIR%%/data/core/images/units/orcs/archer-ranged-5.png +%%DATADIR%%/data/core/images/units/orcs/archer-ranged-6.png +%%DATADIR%%/data/core/images/units/orcs/archer.png +%%DATADIR%%/data/core/images/units/orcs/assassin-attack1.png +%%DATADIR%%/data/core/images/units/orcs/assassin-attack2.png +%%DATADIR%%/data/core/images/units/orcs/assassin-defend.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-1.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-10.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-2.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-3.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-4.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-5.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-6.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-7.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-8.png +%%DATADIR%%/data/core/images/units/orcs/assassin-die-9.png +%%DATADIR%%/data/core/images/units/orcs/assassin-ranged1.png +%%DATADIR%%/data/core/images/units/orcs/assassin-ranged2.png +%%DATADIR%%/data/core/images/units/orcs/assassin.png +%%DATADIR%%/data/core/images/units/orcs/grunt-attack-1.png +%%DATADIR%%/data/core/images/units/orcs/grunt-attack-2.png +%%DATADIR%%/data/core/images/units/orcs/grunt-attack-3.png +%%DATADIR%%/data/core/images/units/orcs/grunt-attack-4.png +%%DATADIR%%/data/core/images/units/orcs/grunt-attack-5.png +%%DATADIR%%/data/core/images/units/orcs/grunt-defend-1.png +%%DATADIR%%/data/core/images/units/orcs/grunt-defend-2.png +%%DATADIR%%/data/core/images/units/orcs/grunt-die-1.png +%%DATADIR%%/data/core/images/units/orcs/grunt-die-2.png +%%DATADIR%%/data/core/images/units/orcs/grunt-die-3.png +%%DATADIR%%/data/core/images/units/orcs/grunt-die-4.png +%%DATADIR%%/data/core/images/units/orcs/grunt-die-5.png +%%DATADIR%%/data/core/images/units/orcs/grunt-die-6.png +%%DATADIR%%/data/core/images/units/orcs/grunt-die-7.png +%%DATADIR%%/data/core/images/units/orcs/grunt-die-8.png +%%DATADIR%%/data/core/images/units/orcs/grunt.png +%%DATADIR%%/data/core/images/units/orcs/leader-attack.png +%%DATADIR%%/data/core/images/units/orcs/leader-bow-1.png +%%DATADIR%%/data/core/images/units/orcs/leader-bow-defend.png +%%DATADIR%%/data/core/images/units/orcs/leader-bow.png +%%DATADIR%%/data/core/images/units/orcs/leader-defend.png +%%DATADIR%%/data/core/images/units/orcs/leader-leading.png +%%DATADIR%%/data/core/images/units/orcs/leader.png +%%DATADIR%%/data/core/images/units/orcs/ruler-attack.png +%%DATADIR%%/data/core/images/units/orcs/ruler-defend.png +%%DATADIR%%/data/core/images/units/orcs/ruler-leading.png +%%DATADIR%%/data/core/images/units/orcs/ruler-ranged-1.png +%%DATADIR%%/data/core/images/units/orcs/ruler-ranged-2.png +%%DATADIR%%/data/core/images/units/orcs/ruler.png +%%DATADIR%%/data/core/images/units/orcs/slayer-attack1-s.png +%%DATADIR%%/data/core/images/units/orcs/slayer-attack1.png +%%DATADIR%%/data/core/images/units/orcs/slayer-attack2-s.png +%%DATADIR%%/data/core/images/units/orcs/slayer-attack2.png +%%DATADIR%%/data/core/images/units/orcs/slayer-defend.png +%%DATADIR%%/data/core/images/units/orcs/slayer-ranged1.png +%%DATADIR%%/data/core/images/units/orcs/slayer-ranged2.png +%%DATADIR%%/data/core/images/units/orcs/slayer.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-melee-attack-1.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-melee-attack-2.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-melee-attack-3.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-melee-attack-4.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-melee-defend-1.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-melee-defend-2.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-melee.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-ranged-1.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-ranged-2.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-ranged-defend.png +%%DATADIR%%/data/core/images/units/orcs/slurbow-ranged.png +%%DATADIR%%/data/core/images/units/orcs/slurbow.png +%%DATADIR%%/data/core/images/units/orcs/sovereign-attack1.png +%%DATADIR%%/data/core/images/units/orcs/sovereign-attack2.png +%%DATADIR%%/data/core/images/units/orcs/sovereign-defend.png +%%DATADIR%%/data/core/images/units/orcs/sovereign-leading.png +%%DATADIR%%/data/core/images/units/orcs/sovereign-ranged-1.png +%%DATADIR%%/data/core/images/units/orcs/sovereign-ranged-2.png +%%DATADIR%%/data/core/images/units/orcs/sovereign.png +%%DATADIR%%/data/core/images/units/orcs/warlord-attack-sword-1.png +%%DATADIR%%/data/core/images/units/orcs/warlord-attack-sword-2.png +%%DATADIR%%/data/core/images/units/orcs/warlord-attack-sword-3.png +%%DATADIR%%/data/core/images/units/orcs/warlord-attack-sword-4.png +%%DATADIR%%/data/core/images/units/orcs/warlord-bow-1.png +%%DATADIR%%/data/core/images/units/orcs/warlord-bow-2.png +%%DATADIR%%/data/core/images/units/orcs/warlord-bow-3.png +%%DATADIR%%/data/core/images/units/orcs/warlord-bow-4.png +%%DATADIR%%/data/core/images/units/orcs/warlord-bow-defend.png +%%DATADIR%%/data/core/images/units/orcs/warlord-defend-1.png +%%DATADIR%%/data/core/images/units/orcs/warlord-defend-2.png +%%DATADIR%%/data/core/images/units/orcs/warlord.png +%%DATADIR%%/data/core/images/units/orcs/warrior-attack-1.png +%%DATADIR%%/data/core/images/units/orcs/warrior-attack-2.png +%%DATADIR%%/data/core/images/units/orcs/warrior-attack-3.png +%%DATADIR%%/data/core/images/units/orcs/warrior-attack-4.png +%%DATADIR%%/data/core/images/units/orcs/warrior-attack-5.png +%%DATADIR%%/data/core/images/units/orcs/warrior-defend-1.png +%%DATADIR%%/data/core/images/units/orcs/warrior-defend-2.png +%%DATADIR%%/data/core/images/units/orcs/warrior.png +%%DATADIR%%/data/core/images/units/orcs/xbowman-defend.png +%%DATADIR%%/data/core/images/units/orcs/xbowman-ranged-1.png +%%DATADIR%%/data/core/images/units/orcs/xbowman-ranged-2.png +%%DATADIR%%/data/core/images/units/orcs/xbowman-sword-1.png +%%DATADIR%%/data/core/images/units/orcs/xbowman-sword-defend.png +%%DATADIR%%/data/core/images/units/orcs/xbowman-sword.png +%%DATADIR%%/data/core/images/units/orcs/xbowman.png +%%DATADIR%%/data/core/images/units/random-dice.png +%%DATADIR%%/data/core/images/units/random-enemy.png +%%DATADIR%%/data/core/images/units/saurians/ambusher-attack1.png +%%DATADIR%%/data/core/images/units/saurians/ambusher-attack2.png +%%DATADIR%%/data/core/images/units/saurians/ambusher-defend.png +%%DATADIR%%/data/core/images/units/saurians/ambusher-ranged-1.png +%%DATADIR%%/data/core/images/units/saurians/ambusher-ranged-2.png +%%DATADIR%%/data/core/images/units/saurians/ambusher-ranged-3.png +%%DATADIR%%/data/core/images/units/saurians/ambusher.png +%%DATADIR%%/data/core/images/units/saurians/augur-defend.png +%%DATADIR%%/data/core/images/units/saurians/augur-magic.png +%%DATADIR%%/data/core/images/units/saurians/augur-melee.png +%%DATADIR%%/data/core/images/units/saurians/augur.png +%%DATADIR%%/data/core/images/units/saurians/flanker-attack-ranged-1.png +%%DATADIR%%/data/core/images/units/saurians/flanker-attack-ranged-2.png +%%DATADIR%%/data/core/images/units/saurians/flanker-attack-ranged-3.png +%%DATADIR%%/data/core/images/units/saurians/flanker-attack-ranged-4.png +%%DATADIR%%/data/core/images/units/saurians/flanker-attack1.png +%%DATADIR%%/data/core/images/units/saurians/flanker-attack2.png +%%DATADIR%%/data/core/images/units/saurians/flanker-defend.png +%%DATADIR%%/data/core/images/units/saurians/flanker.png +%%DATADIR%%/data/core/images/units/saurians/oracle-defend.png +%%DATADIR%%/data/core/images/units/saurians/oracle-magic.png +%%DATADIR%%/data/core/images/units/saurians/oracle-melee.png +%%DATADIR%%/data/core/images/units/saurians/oracle.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-attack-n1.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-attack-n2.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-attack-ranged-1.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-attack-ranged-2.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-attack1.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-attack2.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-defend.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-1.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-10.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-11.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-12.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-13.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-2.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-3.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-4.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-5.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-6.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-7.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-8.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher-idle-9.png +%%DATADIR%%/data/core/images/units/saurians/skirmisher.png +%%DATADIR%%/data/core/images/units/saurians/soothsayer-defend.png +%%DATADIR%%/data/core/images/units/saurians/soothsayer-magic.png +%%DATADIR%%/data/core/images/units/saurians/soothsayer-melee.png +%%DATADIR%%/data/core/images/units/saurians/soothsayer.png +%%DATADIR%%/data/core/images/units/transport/boat.png +%%DATADIR%%/data/core/images/units/transport/galleon.png +%%DATADIR%%/data/core/images/units/transport/pirate-galleon.png +%%DATADIR%%/data/core/images/units/transport/transport-galleon.png +%%DATADIR%%/data/core/images/units/trolls/grunt-attack-1.png +%%DATADIR%%/data/core/images/units/trolls/grunt-attack-2.png +%%DATADIR%%/data/core/images/units/trolls/grunt-attack-3.png +%%DATADIR%%/data/core/images/units/trolls/grunt-attack-4.png +%%DATADIR%%/data/core/images/units/trolls/grunt-defend.png +%%DATADIR%%/data/core/images/units/trolls/grunt.png +%%DATADIR%%/data/core/images/units/trolls/lobber-attack-melee.png +%%DATADIR%%/data/core/images/units/trolls/lobber-attack-ranged1.png +%%DATADIR%%/data/core/images/units/trolls/lobber-attack-ranged2.png +%%DATADIR%%/data/core/images/units/trolls/lobber-defend.png +%%DATADIR%%/data/core/images/units/trolls/lobber.png +%%DATADIR%%/data/core/images/units/trolls/warrior-attack-1.png +%%DATADIR%%/data/core/images/units/trolls/warrior-attack-2.png +%%DATADIR%%/data/core/images/units/trolls/warrior-attack-3.png +%%DATADIR%%/data/core/images/units/trolls/warrior-attack-4.png +%%DATADIR%%/data/core/images/units/trolls/warrior-defend.png +%%DATADIR%%/data/core/images/units/trolls/warrior.png +%%DATADIR%%/data/core/images/units/trolls/whelp-attack-1.png +%%DATADIR%%/data/core/images/units/trolls/whelp-attack-2.png +%%DATADIR%%/data/core/images/units/trolls/whelp-attack-3.png +%%DATADIR%%/data/core/images/units/trolls/whelp-defend-2.png +%%DATADIR%%/data/core/images/units/trolls/whelp-defend.png +%%DATADIR%%/data/core/images/units/trolls/whelp-die-1.png +%%DATADIR%%/data/core/images/units/trolls/whelp-die-2.png +%%DATADIR%%/data/core/images/units/trolls/whelp-die-3.png +%%DATADIR%%/data/core/images/units/trolls/whelp-die-4.png +%%DATADIR%%/data/core/images/units/trolls/whelp-die-5.png +%%DATADIR%%/data/core/images/units/trolls/whelp-die-6.png +%%DATADIR%%/data/core/images/units/trolls/whelp-die-7.png +%%DATADIR%%/data/core/images/units/trolls/whelp-idle-1.png +%%DATADIR%%/data/core/images/units/trolls/whelp-idle-2.png +%%DATADIR%%/data/core/images/units/trolls/whelp-idle-3.png +%%DATADIR%%/data/core/images/units/trolls/whelp-idle-4.png +%%DATADIR%%/data/core/images/units/trolls/whelp-idle-5.png +%%DATADIR%%/data/core/images/units/trolls/whelp-idle-6.png +%%DATADIR%%/data/core/images/units/trolls/whelp-idle-7.png +%%DATADIR%%/data/core/images/units/trolls/whelp-skeleton.png +%%DATADIR%%/data/core/images/units/trolls/whelp.png +%%DATADIR%%/data/core/images/units/undead-blackspell.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept+female-defend-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept+female-defend-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept+female-magic-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept+female-magic-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept+female-magic-3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept+female.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-defend-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-defend-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-die1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-die2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-die3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-die4.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-die5.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-die6.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-die7.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-die8.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-magic-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-magic-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept-magic-3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/adept.png +%%DATADIR%%/data/core/images/units/undead-necromancers/ancient-lich-defend.png +%%DATADIR%%/data/core/images/units/undead-necromancers/ancient-lich-magic-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/ancient-lich-magic-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/ancient-lich-magic-3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/ancient-lich-melee.png +%%DATADIR%%/data/core/images/units/undead-necromancers/ancient-lich.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer+female-attack-staff-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer+female-attack-staff-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer+female-defend.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer+female-magic-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer+female-magic-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer+female-magic-3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer+female.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer-attack-staff-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer-attack-staff-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer-defend.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer-magic-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer-magic-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer-magic-3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/dark-sorcerer.png +%%DATADIR%%/data/core/images/units/undead-necromancers/lich-defend.png +%%DATADIR%%/data/core/images/units/undead-necromancers/lich-magic-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/lich-magic-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/lich-magic-3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/lich-melee-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/lich-melee-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/lich.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer+female-attack-staff-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer+female-attack-staff-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer+female-defend.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer+female-magic-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer+female-magic-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer+female-magic-3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer+female.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer-attack-staff-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer-attack-staff-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer-defend.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer-magic-1.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer-magic-2.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer-magic-3.png +%%DATADIR%%/data/core/images/units/undead-necromancers/necromancer.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-attack.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-attack1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-attack2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-defend.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-10.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-11.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-12.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-13.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-3.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-4.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-5.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-6.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-7.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-8.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die-9.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die2-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die2-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die2-3.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die2-4.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die2-5.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die2-6.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-die2-7.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-10.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-11.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-12.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-13.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-14.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-3.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-4.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-5.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-6.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-7.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-8.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer-idle-9.png +%%DATADIR%%/data/core/images/units/undead-skeletal/archer.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-bow-attack-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-bow-attack-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-bow-attack-3.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-bow-attack-4.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-bow-defend.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-bow.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-melee-attack.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-melee-defend-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-melee-defend-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/banebow.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-bow-attack-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-bow-attack-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-bow-attack-3.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-bow-attack-4.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-bow-defend.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-bow.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-melee-attack.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-melee-defend-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-melee-defend-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter.png +%%DATADIR%%/data/core/images/units/undead-skeletal/chocobone-attack.png +%%DATADIR%%/data/core/images/units/undead-skeletal/chocobone-defend.png +%%DATADIR%%/data/core/images/units/undead-skeletal/chocobone-die-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/chocobone-die-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/chocobone-moving.png +%%DATADIR%%/data/core/images/units/undead-skeletal/chocobone.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-attack1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-attack2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-attack3.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-defend.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-die-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-die-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-crossbow-attack1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-crossbow-attack2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-crossbow-defend.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-crossbow.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-defend-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-defend-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight.png +%%DATADIR%%/data/core/images/units/undead-skeletal/draug-attack1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/draug-attack2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/draug-defend-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/draug-defend-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/draug.png +%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack.png +%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-defend.png +%%DATADIR%%/data/core/images/units/undead-skeletal/revenant.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-attack.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-attackb.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-defend.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-dying-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-dying-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-dying-3.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-dying-4.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-dying-5.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-dying-6.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-dying-7.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-idle-1.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-idle-2.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-idle-3.png +%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton.png +%%DATADIR%%/data/core/images/units/undead/bat-ne-1.png +%%DATADIR%%/data/core/images/units/undead/bat-ne-2.png +%%DATADIR%%/data/core/images/units/undead/bat-ne-3.png +%%DATADIR%%/data/core/images/units/undead/bat-ne-4.png +%%DATADIR%%/data/core/images/units/undead/bat-ne-5.png +%%DATADIR%%/data/core/images/units/undead/bat-se-1.png +%%DATADIR%%/data/core/images/units/undead/bat-se-2.png +%%DATADIR%%/data/core/images/units/undead/bat-se-3.png +%%DATADIR%%/data/core/images/units/undead/bat-se-4.png +%%DATADIR%%/data/core/images/units/undead/bat-se-5.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-ne-1.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-ne-2.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-ne-3.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-ne-4.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-ne-5.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-se-1.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-se-2.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-se-3.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-se-4.png +%%DATADIR%%/data/core/images/units/undead/bloodbat-se-5.png +%%DATADIR%%/data/core/images/units/undead/ghost-attack-1.png +%%DATADIR%%/data/core/images/units/undead/ghost-attack-2.png +%%DATADIR%%/data/core/images/units/undead/ghost-defend.png +%%DATADIR%%/data/core/images/units/undead/ghost-n-1.png +%%DATADIR%%/data/core/images/units/undead/ghost-n-2.png +%%DATADIR%%/data/core/images/units/undead/ghost-n-3.png +%%DATADIR%%/data/core/images/units/undead/ghost-n-attack-1.png +%%DATADIR%%/data/core/images/units/undead/ghost-n-attack-2.png +%%DATADIR%%/data/core/images/units/undead/ghost-n-attack-3.png +%%DATADIR%%/data/core/images/units/undead/ghost-s-1.png +%%DATADIR%%/data/core/images/units/undead/ghost-s-2.png +%%DATADIR%%/data/core/images/units/undead/ghost-s-3.png +%%DATADIR%%/data/core/images/units/undead/ghost-s-attack-1.png +%%DATADIR%%/data/core/images/units/undead/ghost-s-attack-2.png +%%DATADIR%%/data/core/images/units/undead/ghost-s-attack-3.png +%%DATADIR%%/data/core/images/units/undead/ghost.png +%%DATADIR%%/data/core/images/units/undead/ghoul-attack-1.png +%%DATADIR%%/data/core/images/units/undead/ghoul-attack-2.png +%%DATADIR%%/data/core/images/units/undead/ghoul-attack-3.png +%%DATADIR%%/data/core/images/units/undead/ghoul-attack-4.png +%%DATADIR%%/data/core/images/units/undead/ghoul-defend-1.png +%%DATADIR%%/data/core/images/units/undead/ghoul-defend-2.png +%%DATADIR%%/data/core/images/units/undead/ghoul.png +%%DATADIR%%/data/core/images/units/undead/necrophage-attack-1.png +%%DATADIR%%/data/core/images/units/undead/necrophage-attack-2.png +%%DATADIR%%/data/core/images/units/undead/necrophage-attack-3.png +%%DATADIR%%/data/core/images/units/undead/necrophage-attack-4.png +%%DATADIR%%/data/core/images/units/undead/necrophage-defend-1.png +%%DATADIR%%/data/core/images/units/undead/necrophage-defend-2.png +%%DATADIR%%/data/core/images/units/undead/necrophage.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt-attack.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt-attack2.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt-defend.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt-die-1.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt-die-2.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt-die-3.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt-die-4.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt-die-5.png +%%DATADIR%%/data/core/images/units/undead/nightgaunt.png +%%DATADIR%%/data/core/images/units/undead/shadow-attack.png +%%DATADIR%%/data/core/images/units/undead/shadow-defend.png +%%DATADIR%%/data/core/images/units/undead/shadow.png +%%DATADIR%%/data/core/images/units/undead/soulless-attack-n.png +%%DATADIR%%/data/core/images/units/undead/soulless-attack-s.png +%%DATADIR%%/data/core/images/units/undead/soulless-attack.png +%%DATADIR%%/data/core/images/units/undead/soulless-defend.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-1.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-10.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-2.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-3.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-4.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-5.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-6.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-7.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-8.png +%%DATADIR%%/data/core/images/units/undead/soulless-die-9.png +%%DATADIR%%/data/core/images/units/undead/soulless-drake-attack-n.png +%%DATADIR%%/data/core/images/units/undead/soulless-drake-attack-s.png +%%DATADIR%%/data/core/images/units/undead/soulless-drake-attack.png +%%DATADIR%%/data/core/images/units/undead/soulless-drake-die-1.png +%%DATADIR%%/data/core/images/units/undead/soulless-drake-die-2.png +%%DATADIR%%/data/core/images/units/undead/soulless-drake-die-3.png +%%DATADIR%%/data/core/images/units/undead/soulless-drake.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf-attack-n.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf-attack-s.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf-attack.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf-defend.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf-die-1.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf-die-2.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf-die-3.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf-die-4.png +%%DATADIR%%/data/core/images/units/undead/soulless-dwarf.png +%%DATADIR%%/data/core/images/units/undead/soulless-melee.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted-attack-n.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted-attack-s.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted-attack.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted-defend.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted-die-1.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted-die-2.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted-die-3.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted-die-4.png +%%DATADIR%%/data/core/images/units/undead/soulless-mounted.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian-attack-n.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian-attack-s.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian-attack.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian-defend.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian-die-1.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian-die-2.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian-die-3.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian-die-4.png +%%DATADIR%%/data/core/images/units/undead/soulless-saurian.png +%%DATADIR%%/data/core/images/units/undead/soulless-swimmer-attack-n.png +%%DATADIR%%/data/core/images/units/undead/soulless-swimmer-attack-s.png +%%DATADIR%%/data/core/images/units/undead/soulless-swimmer-attack.png +%%DATADIR%%/data/core/images/units/undead/soulless-swimmer-die-1.png +%%DATADIR%%/data/core/images/units/undead/soulless-swimmer-die-2.png +%%DATADIR%%/data/core/images/units/undead/soulless-swimmer-die-3.png +%%DATADIR%%/data/core/images/units/undead/soulless-swimmer.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll-attack-n.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll-attack-s.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll-attack.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll-defend.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll-die-1.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll-die-2.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll-die-3.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll-die-4.png +%%DATADIR%%/data/core/images/units/undead/soulless-troll.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose-attack-n.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose-attack-s.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose-attack.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose-defend.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose-die-1.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose-die-2.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose-die-3.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose-die-4.png +%%DATADIR%%/data/core/images/units/undead/soulless-wose.png +%%DATADIR%%/data/core/images/units/undead/soulless.png +%%DATADIR%%/data/core/images/units/undead/spectre-attack.png +%%DATADIR%%/data/core/images/units/undead/spectre-attack1.png +%%DATADIR%%/data/core/images/units/undead/spectre-defend.png +%%DATADIR%%/data/core/images/units/undead/spectre-die-1.png +%%DATADIR%%/data/core/images/units/undead/spectre-die-2.png +%%DATADIR%%/data/core/images/units/undead/spectre-die-3.png +%%DATADIR%%/data/core/images/units/undead/spectre-die-4.png +%%DATADIR%%/data/core/images/units/undead/spectre.png +%%DATADIR%%/data/core/images/units/undead/wraith-attack.png +%%DATADIR%%/data/core/images/units/undead/wraith-attack1.png +%%DATADIR%%/data/core/images/units/undead/wraith-defend.png +%%DATADIR%%/data/core/images/units/undead/wraith.png +%%DATADIR%%/data/core/images/units/undead/zombie-attack-n.png +%%DATADIR%%/data/core/images/units/undead/zombie-attack-s.png +%%DATADIR%%/data/core/images/units/undead/zombie-attack.png +%%DATADIR%%/data/core/images/units/undead/zombie-defend.png +%%DATADIR%%/data/core/images/units/undead/zombie-die-1.png +%%DATADIR%%/data/core/images/units/undead/zombie-die-2.png +%%DATADIR%%/data/core/images/units/undead/zombie-die-3.png +%%DATADIR%%/data/core/images/units/undead/zombie-die-4.png +%%DATADIR%%/data/core/images/units/undead/zombie-drake-attack-n.png +%%DATADIR%%/data/core/images/units/undead/zombie-drake-attack-s.png +%%DATADIR%%/data/core/images/units/undead/zombie-drake-attack.png +%%DATADIR%%/data/core/images/units/undead/zombie-drake-defend.png +%%DATADIR%%/data/core/images/units/undead/zombie-drake.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf-attack-n.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf-attack-s.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf-attack.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf-defend.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf-die-1.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf-die-2.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf-die-3.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf-die-4.png +%%DATADIR%%/data/core/images/units/undead/zombie-dwarf.png +%%DATADIR%%/data/core/images/units/undead/zombie-mounted-attack-n.png +%%DATADIR%%/data/core/images/units/undead/zombie-mounted-attack-s.png +%%DATADIR%%/data/core/images/units/undead/zombie-mounted-attack.png +%%DATADIR%%/data/core/images/units/undead/zombie-mounted-defend.png +%%DATADIR%%/data/core/images/units/undead/zombie-mounted.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian-attack-n.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian-attack-s.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian-attack.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian-defend.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian-die-1.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian-die-2.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian-die-3.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian-die-4.png +%%DATADIR%%/data/core/images/units/undead/zombie-saurian.png +%%DATADIR%%/data/core/images/units/undead/zombie-swimmer-attack-n.png +%%DATADIR%%/data/core/images/units/undead/zombie-swimmer-attack-s.png +%%DATADIR%%/data/core/images/units/undead/zombie-swimmer-attack.png +%%DATADIR%%/data/core/images/units/undead/zombie-swimmer-defend.png +%%DATADIR%%/data/core/images/units/undead/zombie-swimmer.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll-attack-n.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll-attack-s.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll-attack.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll-defend.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll-die-1.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll-die-2.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll-die-3.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll-die-4.png +%%DATADIR%%/data/core/images/units/undead/zombie-troll.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose-attack-n.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose-attack-s.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose-attack.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose-defend.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose-die-1.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose-die-2.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose-die-3.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose-die-4.png +%%DATADIR%%/data/core/images/units/undead/zombie-wose.png +%%DATADIR%%/data/core/images/units/undead/zombie.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-attack-1.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-attack-2.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-defend.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-1.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-10.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-11.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-12.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-13.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-14.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-15.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-2.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-3.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-4.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-5.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-6.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-7.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-8.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient-die-fall-9.png +%%DATADIR%%/data/core/images/units/woses/wose-ancient.png +%%DATADIR%%/data/core/images/units/woses/wose-attack-1.png +%%DATADIR%%/data/core/images/units/woses/wose-attack-2.png +%%DATADIR%%/data/core/images/units/woses/wose-defend.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-1.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-2.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-3.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-4.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-5.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-6.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-7.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-8.png +%%DATADIR%%/data/core/images/units/woses/wose-die-decay-9.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-1.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-10.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-11.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-12.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-13.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-14.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-15.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-2.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-3.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-4.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-5.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-6.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-7.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-8.png +%%DATADIR%%/data/core/images/units/woses/wose-die-fall-9.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-attack-1.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-attack-2.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-defend.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-1.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-10.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-11.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-12.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-13.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-14.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-15.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-2.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-3.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-4.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-5.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-6.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-7.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-8.png +%%DATADIR%%/data/core/images/units/woses/wose-elder-die-fall-9.png +%%DATADIR%%/data/core/images/units/woses/wose-elder.png +%%DATADIR%%/data/core/images/units/woses/wose.png +%%DATADIR%%/data/core/images/wesnoth-icon.png +%%DATADIR%%/data/core/macros/abilities.cfg +%%DATADIR%%/data/core/macros/amla.cfg +%%DATADIR%%/data/core/macros/animation-utils.cfg +%%DATADIR%%/data/core/macros/conditional-utils.cfg +%%DATADIR%%/data/core/macros/deprecated-utils.cfg +%%DATADIR%%/data/core/macros/event-utils.cfg +%%DATADIR%%/data/core/macros/image-utils.cfg +%%DATADIR%%/data/core/macros/interface-utils.cfg +%%DATADIR%%/data/core/macros/items.cfg +%%DATADIR%%/data/core/macros/names.cfg +%%DATADIR%%/data/core/macros/scenario-utils.cfg +%%DATADIR%%/data/core/macros/schedules.cfg +%%DATADIR%%/data/core/macros/sidelimit-utils.cfg +%%DATADIR%%/data/core/macros/sound-utils.cfg +%%DATADIR%%/data/core/macros/special-notes.cfg +%%DATADIR%%/data/core/macros/teleport-utils.cfg +%%DATADIR%%/data/core/macros/terrain-utils.cfg +%%DATADIR%%/data/core/macros/traits.cfg +%%DATADIR%%/data/core/macros/unit-utils.cfg +%%DATADIR%%/data/core/macros/utils.cfg +%%DATADIR%%/data/core/music/battle.ogg +%%DATADIR%%/data/core/music/breaking_the_chains.ogg +%%DATADIR%%/data/core/music/defeat.ogg +%%DATADIR%%/data/core/music/defeat2.ogg +%%DATADIR%%/data/core/music/elf-land.ogg +%%DATADIR%%/data/core/music/elvish-theme.ogg +%%DATADIR%%/data/core/music/frantic.ogg +%%DATADIR%%/data/core/music/knalgan_theme.ogg +%%DATADIR%%/data/core/music/knolls.ogg +%%DATADIR%%/data/core/music/legends_of_the_north.ogg +%%DATADIR%%/data/core/music/loyalists.ogg +%%DATADIR%%/data/core/music/main_menu.ogg +%%DATADIR%%/data/core/music/main_menu_new.ogg +%%DATADIR%%/data/core/music/northerners.ogg +%%DATADIR%%/data/core/music/nunc_dimittis.ogg +%%DATADIR%%/data/core/music/revelation.ogg +%%DATADIR%%/data/core/music/silence.ogg +%%DATADIR%%/data/core/music/the_city_falls.ogg +%%DATADIR%%/data/core/music/the_king_is_dead.ogg +%%DATADIR%%/data/core/music/traveling_minstrels.ogg +%%DATADIR%%/data/core/music/underground.ogg +%%DATADIR%%/data/core/music/vengeful.ogg +%%DATADIR%%/data/core/music/victory.ogg +%%DATADIR%%/data/core/music/victory2.ogg +%%DATADIR%%/data/core/music/wanderer.ogg +%%DATADIR%%/data/core/sounds/ambient/morning.ogg +%%DATADIR%%/data/core/sounds/ambient/night.ogg +%%DATADIR%%/data/core/sounds/ambient/ship.ogg +%%DATADIR%%/data/core/sounds/ambient/wardrums.ogg +%%DATADIR%%/data/core/sounds/axe.ogg +%%DATADIR%%/data/core/sounds/bat-flapping.wav +%%DATADIR%%/data/core/sounds/bat-hit-1.ogg +%%DATADIR%%/data/core/sounds/bat-hit-2.ogg +%%DATADIR%%/data/core/sounds/bat-hit-3.ogg +%%DATADIR%%/data/core/sounds/bat-hit-4.ogg +%%DATADIR%%/data/core/sounds/bite-small.ogg +%%DATADIR%%/data/core/sounds/bite.ogg +%%DATADIR%%/data/core/sounds/bow-miss.ogg +%%DATADIR%%/data/core/sounds/bow-puny-fire-miss.ogg +%%DATADIR%%/data/core/sounds/bow-puny-fire.ogg +%%DATADIR%%/data/core/sounds/bow-puny-miss.ogg +%%DATADIR%%/data/core/sounds/bow-puny.ogg +%%DATADIR%%/data/core/sounds/bow.ogg +%%DATADIR%%/data/core/sounds/claws.ogg +%%DATADIR%%/data/core/sounds/club.ogg +%%DATADIR%%/data/core/sounds/crossbow-fire-miss.ogg +%%DATADIR%%/data/core/sounds/crossbow-fire.ogg +%%DATADIR%%/data/core/sounds/crossbow-miss.ogg +%%DATADIR%%/data/core/sounds/crossbow.ogg +%%DATADIR%%/data/core/sounds/dagger-swish.wav +%%DATADIR%%/data/core/sounds/dart.wav +%%DATADIR%%/data/core/sounds/dragonstick-miss.ogg +%%DATADIR%%/data/core/sounds/dragonstick.ogg +%%DATADIR%%/data/core/sounds/drake-die.ogg +%%DATADIR%%/data/core/sounds/drake-hit-1.ogg +%%DATADIR%%/data/core/sounds/drake-hit-2.ogg +%%DATADIR%%/data/core/sounds/drake-hit-3.ogg +%%DATADIR%%/data/core/sounds/dwarf-die-1.ogg +%%DATADIR%%/data/core/sounds/dwarf-die-2.ogg +%%DATADIR%%/data/core/sounds/dwarf-hit-1.ogg +%%DATADIR%%/data/core/sounds/dwarf-hit-2.ogg +%%DATADIR%%/data/core/sounds/dwarf-hit-3.ogg +%%DATADIR%%/data/core/sounds/dwarf-hit-4.ogg +%%DATADIR%%/data/core/sounds/dwarf-laugh.wav +%%DATADIR%%/data/core/sounds/elf-hit-1.ogg +%%DATADIR%%/data/core/sounds/elf-hit-2.ogg +%%DATADIR%%/data/core/sounds/entangle.wav +%%DATADIR%%/data/core/sounds/explosion.ogg +%%DATADIR%%/data/core/sounds/fanfare-short.wav +%%DATADIR%%/data/core/sounds/fire.wav +%%DATADIR%%/data/core/sounds/fist.ogg +%%DATADIR%%/data/core/sounds/flail-miss.ogg +%%DATADIR%%/data/core/sounds/flail.ogg +%%DATADIR%%/data/core/sounds/flame-big-miss.ogg +%%DATADIR%%/data/core/sounds/flame-big.ogg +%%DATADIR%%/data/core/sounds/fuse.ogg +%%DATADIR%%/data/core/sounds/ghoul-hit.wav +%%DATADIR%%/data/core/sounds/goblin-die-1.ogg +%%DATADIR%%/data/core/sounds/goblin-die-2.ogg +%%DATADIR%%/data/core/sounds/goblin-hit-1.ogg +%%DATADIR%%/data/core/sounds/goblin-hit-2.ogg +%%DATADIR%%/data/core/sounds/goblin-hit-3.ogg +%%DATADIR%%/data/core/sounds/gold.ogg +%%DATADIR%%/data/core/sounds/groan.wav +%%DATADIR%%/data/core/sounds/gryphon-die-1.ogg +%%DATADIR%%/data/core/sounds/gryphon-die-2.ogg +%%DATADIR%%/data/core/sounds/gryphon-hit-1.ogg +%%DATADIR%%/data/core/sounds/gryphon-hit-2.ogg +%%DATADIR%%/data/core/sounds/gryphon-hit-3.ogg +%%DATADIR%%/data/core/sounds/gryphon-shriek-1.ogg +%%DATADIR%%/data/core/sounds/gryphon-shriek-2.ogg +%%DATADIR%%/data/core/sounds/gunshot.wav +%%DATADIR%%/data/core/sounds/hatchet-miss.wav +%%DATADIR%%/data/core/sounds/hatchet.wav +%%DATADIR%%/data/core/sounds/heal.wav +%%DATADIR%%/data/core/sounds/hiss-big.wav +%%DATADIR%%/data/core/sounds/hiss-die.wav +%%DATADIR%%/data/core/sounds/hiss-hit.wav +%%DATADIR%%/data/core/sounds/hiss.wav +%%DATADIR%%/data/core/sounds/horse-canter.wav +%%DATADIR%%/data/core/sounds/horse-die.ogg +%%DATADIR%%/data/core/sounds/horse-elf-canter.wav +%%DATADIR%%/data/core/sounds/horse-hit-1.ogg +%%DATADIR%%/data/core/sounds/horse-hit-2.ogg +%%DATADIR%%/data/core/sounds/horse-hit-3.ogg +%%DATADIR%%/data/core/sounds/human-die-1.ogg +%%DATADIR%%/data/core/sounds/human-die-2.ogg +%%DATADIR%%/data/core/sounds/human-die-3.ogg +%%DATADIR%%/data/core/sounds/human-female-die-1.ogg +%%DATADIR%%/data/core/sounds/human-female-die-2.ogg +%%DATADIR%%/data/core/sounds/human-female-die-3.ogg +%%DATADIR%%/data/core/sounds/human-female-hit-1.ogg +%%DATADIR%%/data/core/sounds/human-female-hit-2.ogg +%%DATADIR%%/data/core/sounds/human-female-hit-3.ogg +%%DATADIR%%/data/core/sounds/human-hit-1.ogg +%%DATADIR%%/data/core/sounds/human-hit-2.ogg +%%DATADIR%%/data/core/sounds/human-hit-3.ogg +%%DATADIR%%/data/core/sounds/human-hit-4.ogg +%%DATADIR%%/data/core/sounds/human-hit-5.ogg +%%DATADIR%%/data/core/sounds/human-old-die-1.ogg +%%DATADIR%%/data/core/sounds/human-old-die-2.ogg +%%DATADIR%%/data/core/sounds/human-old-die-3.ogg +%%DATADIR%%/data/core/sounds/human-old-hit-1.ogg +%%DATADIR%%/data/core/sounds/human-old-hit-2.ogg +%%DATADIR%%/data/core/sounds/human-old-hit-3.ogg +%%DATADIR%%/data/core/sounds/human-old-hit-4.ogg +%%DATADIR%%/data/core/sounds/lich-die.ogg +%%DATADIR%%/data/core/sounds/lich-hit-1.ogg +%%DATADIR%%/data/core/sounds/lich-hit-2.ogg +%%DATADIR%%/data/core/sounds/lightning-miss.ogg +%%DATADIR%%/data/core/sounds/lightning.ogg +%%DATADIR%%/data/core/sounds/mace.wav +%%DATADIR%%/data/core/sounds/magic-dark-big-miss.ogg +%%DATADIR%%/data/core/sounds/magic-dark-big.ogg +%%DATADIR%%/data/core/sounds/magic-dark-miss.ogg +%%DATADIR%%/data/core/sounds/magic-dark.ogg +%%DATADIR%%/data/core/sounds/magic-faeriefire-miss.ogg +%%DATADIR%%/data/core/sounds/magic-faeriefire.ogg +%%DATADIR%%/data/core/sounds/magic-holy-1.ogg +%%DATADIR%%/data/core/sounds/magic-holy-2.ogg +%%DATADIR%%/data/core/sounds/magic-holy-3.ogg +%%DATADIR%%/data/core/sounds/magic-holy-4.ogg +%%DATADIR%%/data/core/sounds/magic-holy-miss-1.ogg +%%DATADIR%%/data/core/sounds/magic-holy-miss-2.ogg +%%DATADIR%%/data/core/sounds/magic-holy-miss-3.ogg +%%DATADIR%%/data/core/sounds/magic-holy-miss-4.ogg +%%DATADIR%%/data/core/sounds/magic-missile-1-miss.ogg +%%DATADIR%%/data/core/sounds/magic-missile-1.ogg +%%DATADIR%%/data/core/sounds/magic-missile-2-miss.ogg +%%DATADIR%%/data/core/sounds/magic-missile-2.ogg +%%DATADIR%%/data/core/sounds/magic-missile-3-miss.ogg +%%DATADIR%%/data/core/sounds/magic-missile-3.ogg +%%DATADIR%%/data/core/sounds/magic-thorns-1.ogg +%%DATADIR%%/data/core/sounds/magic-thorns-2.ogg +%%DATADIR%%/data/core/sounds/magic-thorns-miss-1.ogg +%%DATADIR%%/data/core/sounds/magic-thorns-miss-2.ogg +%%DATADIR%%/data/core/sounds/magicmissile.wav +%%DATADIR%%/data/core/sounds/mermaid-die.ogg +%%DATADIR%%/data/core/sounds/mermaid-hit.ogg +%%DATADIR%%/data/core/sounds/mermen-die.ogg +%%DATADIR%%/data/core/sounds/mermen-hit.wav +%%DATADIR%%/data/core/sounds/miss-1.ogg +%%DATADIR%%/data/core/sounds/miss-2.ogg +%%DATADIR%%/data/core/sounds/miss-3.ogg +%%DATADIR%%/data/core/sounds/naga-die.ogg +%%DATADIR%%/data/core/sounds/naga-hit-1.ogg +%%DATADIR%%/data/core/sounds/naga-hit-2.ogg +%%DATADIR%%/data/core/sounds/naga-hit-3.ogg +%%DATADIR%%/data/core/sounds/net.wav +%%DATADIR%%/data/core/sounds/ogre-die-1.ogg +%%DATADIR%%/data/core/sounds/ogre-die-2.ogg +%%DATADIR%%/data/core/sounds/ogre-die-3.ogg +%%DATADIR%%/data/core/sounds/ogre-hit-1.ogg +%%DATADIR%%/data/core/sounds/ogre-hit-2.ogg +%%DATADIR%%/data/core/sounds/ogre-hit-3.ogg +%%DATADIR%%/data/core/sounds/ogre-hit-4.ogg +%%DATADIR%%/data/core/sounds/open-chest.wav +%%DATADIR%%/data/core/sounds/orc-die-1.ogg +%%DATADIR%%/data/core/sounds/orc-die-2.ogg +%%DATADIR%%/data/core/sounds/orc-die-3.ogg +%%DATADIR%%/data/core/sounds/orc-hit-1.ogg +%%DATADIR%%/data/core/sounds/orc-hit-2.ogg +%%DATADIR%%/data/core/sounds/orc-hit-3.ogg +%%DATADIR%%/data/core/sounds/orc-hit-4.ogg +%%DATADIR%%/data/core/sounds/orc-small-die-1.ogg +%%DATADIR%%/data/core/sounds/orc-small-die-2.ogg +%%DATADIR%%/data/core/sounds/orc-small-hit-1.ogg +%%DATADIR%%/data/core/sounds/orc-small-hit-2.ogg +%%DATADIR%%/data/core/sounds/orc-small-hit-3.ogg +%%DATADIR%%/data/core/sounds/orc-small-hit-4.ogg +%%DATADIR%%/data/core/sounds/pincers.ogg +%%DATADIR%%/data/core/sounds/poison.ogg +%%DATADIR%%/data/core/sounds/rumble.ogg +%%DATADIR%%/data/core/sounds/skeleton-big-die.ogg +%%DATADIR%%/data/core/sounds/skeleton-big-hit-1.ogg +%%DATADIR%%/data/core/sounds/skeleton-big-hit-2.ogg +%%DATADIR%%/data/core/sounds/skeleton-big-hit-3.ogg +%%DATADIR%%/data/core/sounds/skeleton-die-1.ogg +%%DATADIR%%/data/core/sounds/skeleton-die-2.ogg +%%DATADIR%%/data/core/sounds/skeleton-hit-1.ogg +%%DATADIR%%/data/core/sounds/skeleton-hit-2.ogg +%%DATADIR%%/data/core/sounds/skeleton-hit-3.ogg +%%DATADIR%%/data/core/sounds/sling-big-miss.ogg +%%DATADIR%%/data/core/sounds/sling-big.ogg +%%DATADIR%%/data/core/sounds/sling-miss.ogg +%%DATADIR%%/data/core/sounds/sling.ogg +%%DATADIR%%/data/core/sounds/slowed.wav +%%DATADIR%%/data/core/sounds/spear-miss.ogg +%%DATADIR%%/data/core/sounds/spear.ogg +%%DATADIR%%/data/core/sounds/spear.wav +%%DATADIR%%/data/core/sounds/squishy-hit.wav +%%DATADIR%%/data/core/sounds/squishy-miss.wav +%%DATADIR%%/data/core/sounds/squishy-strike.wav +%%DATADIR%%/data/core/sounds/staff.wav +%%DATADIR%%/data/core/sounds/stoned.ogg +%%DATADIR%%/data/core/sounds/sword-1.ogg +%%DATADIR%%/data/core/sounds/tail.ogg +%%DATADIR%%/data/core/sounds/throw-1.wav +%%DATADIR%%/data/core/sounds/throw-2.wav +%%DATADIR%%/data/core/sounds/throw-3.wav +%%DATADIR%%/data/core/sounds/throw-4.wav +%%DATADIR%%/data/core/sounds/throwing-knife-miss.ogg +%%DATADIR%%/data/core/sounds/throwing-knife.ogg +%%DATADIR%%/data/core/sounds/thunderstick-miss.ogg +%%DATADIR%%/data/core/sounds/thunderstick.ogg +%%DATADIR%%/data/core/sounds/torch-miss.ogg +%%DATADIR%%/data/core/sounds/torch.ogg +%%DATADIR%%/data/core/sounds/troll-die-1.ogg +%%DATADIR%%/data/core/sounds/troll-die-2.ogg +%%DATADIR%%/data/core/sounds/troll-die-3.ogg +%%DATADIR%%/data/core/sounds/troll-hit-1.ogg +%%DATADIR%%/data/core/sounds/troll-hit-2.ogg +%%DATADIR%%/data/core/sounds/troll-hit-3.ogg +%%DATADIR%%/data/core/sounds/troll-hit-4.ogg +%%DATADIR%%/data/core/sounds/ugg.wav +%%DATADIR%%/data/core/sounds/wail-long.wav +%%DATADIR%%/data/core/sounds/wail-sml.wav +%%DATADIR%%/data/core/sounds/wail.wav +%%DATADIR%%/data/core/sounds/water-blast.wav +%%DATADIR%%/data/core/sounds/wolf-big-bite-miss.ogg +%%DATADIR%%/data/core/sounds/wolf-big-bite.ogg +%%DATADIR%%/data/core/sounds/wolf-bite-miss.ogg +%%DATADIR%%/data/core/sounds/wolf-bite.ogg +%%DATADIR%%/data/core/sounds/wolf-die.wav +%%DATADIR%%/data/core/sounds/wolf-hit.wav +%%DATADIR%%/data/core/sounds/wose-attack.ogg +%%DATADIR%%/data/core/sounds/wose-die.ogg +%%DATADIR%%/data/core/sounds/wose-hit.ogg +%%DATADIR%%/data/core/sounds/wose-miss.ogg +%%DATADIR%%/data/core/sounds/yeti-die.ogg +%%DATADIR%%/data/core/sounds/yeti-hit.ogg +%%DATADIR%%/data/core/sounds/zombie-attack.wav +%%DATADIR%%/data/core/sounds/zombie-hit-1.ogg +%%DATADIR%%/data/core/sounds/zombie-hit-2.ogg +%%DATADIR%%/data/core/sounds/zombie-hit-3.ogg +%%DATADIR%%/data/core/sounds/zombie-hit-4.ogg +%%DATADIR%%/data/core/sounds/zombie-hit-5.ogg +%%DATADIR%%/data/core/sounds/zombie-hit-6.ogg +%%DATADIR%%/data/core/team-colors.cfg +%%DATADIR%%/data/core/terrain-graphics/_final.cfg +%%DATADIR%%/data/core/terrain-graphics/adjacent.cfg +%%DATADIR%%/data/core/terrain-graphics/base.cfg +%%DATADIR%%/data/core/terrain-graphics/bridges.cfg +%%DATADIR%%/data/core/terrain-graphics/buildings.cfg +%%DATADIR%%/data/core/terrain-graphics/canyon.cfg +%%DATADIR%%/data/core/terrain-graphics/castles.cfg +%%DATADIR%%/data/core/terrain-graphics/forestcastle.cfg +%%DATADIR%%/data/core/terrain-graphics/forests.cfg +%%DATADIR%%/data/core/terrain-graphics/mountains.cfg +%%DATADIR%%/data/core/terrain-graphics/util.cfg +%%DATADIR%%/data/core/terrain.cfg +%%DATADIR%%/data/core/units.cfg +%%DATADIR%%/data/core/units/bats/Bat_Blood.cfg +%%DATADIR%%/data/core/units/bats/Bat_Vampire.cfg +%%DATADIR%%/data/core/units/boats/Boat.cfg +%%DATADIR%%/data/core/units/boats/Galleon.cfg +%%DATADIR%%/data/core/units/boats/Pirate_Galleon.cfg +%%DATADIR%%/data/core/units/boats/Transport_Galleon.cfg +%%DATADIR%%/data/core/units/drakes/Armageddon.cfg +%%DATADIR%%/data/core/units/drakes/Blademaster.cfg +%%DATADIR%%/data/core/units/drakes/Burner.cfg +%%DATADIR%%/data/core/units/drakes/Clasher.cfg +%%DATADIR%%/data/core/units/drakes/Enforcer.cfg +%%DATADIR%%/data/core/units/drakes/Fighter.cfg +%%DATADIR%%/data/core/units/drakes/Fire.cfg +%%DATADIR%%/data/core/units/drakes/Flameheart.cfg +%%DATADIR%%/data/core/units/drakes/Flare.cfg +%%DATADIR%%/data/core/units/drakes/Gladiator.cfg +%%DATADIR%%/data/core/units/drakes/Glider.cfg +%%DATADIR%%/data/core/units/drakes/Hurricane.cfg +%%DATADIR%%/data/core/units/drakes/Inferno.cfg +%%DATADIR%%/data/core/units/drakes/Sky.cfg +%%DATADIR%%/data/core/units/drakes/Slasher.cfg +%%DATADIR%%/data/core/units/drakes/Warden.cfg +%%DATADIR%%/data/core/units/drakes/Warrior.cfg +%%DATADIR%%/data/core/units/dwarves/Berserker.cfg +%%DATADIR%%/data/core/units/dwarves/Dragonguard.cfg +%%DATADIR%%/data/core/units/dwarves/Fighter.cfg +%%DATADIR%%/data/core/units/dwarves/Guardsman.cfg +%%DATADIR%%/data/core/units/dwarves/Lord.cfg +%%DATADIR%%/data/core/units/dwarves/Runemaster.cfg +%%DATADIR%%/data/core/units/dwarves/Sentinel.cfg +%%DATADIR%%/data/core/units/dwarves/Stalwart.cfg +%%DATADIR%%/data/core/units/dwarves/Steelclad.cfg +%%DATADIR%%/data/core/units/dwarves/Thunderer.cfg +%%DATADIR%%/data/core/units/dwarves/Thunderguard.cfg +%%DATADIR%%/data/core/units/dwarves/Ulfserker.cfg +%%DATADIR%%/data/core/units/elves/Archer.cfg +%%DATADIR%%/data/core/units/elves/Avenger.cfg +%%DATADIR%%/data/core/units/elves/Captain.cfg +%%DATADIR%%/data/core/units/elves/Champion.cfg +%%DATADIR%%/data/core/units/elves/Druid.cfg +%%DATADIR%%/data/core/units/elves/Enchantress.cfg +%%DATADIR%%/data/core/units/elves/Fighter.cfg +%%DATADIR%%/data/core/units/elves/Hero.cfg +%%DATADIR%%/data/core/units/elves/High_Lord.cfg +%%DATADIR%%/data/core/units/elves/Lady.cfg +%%DATADIR%%/data/core/units/elves/Lord.cfg +%%DATADIR%%/data/core/units/elves/Marksman.cfg +%%DATADIR%%/data/core/units/elves/Marshal.cfg +%%DATADIR%%/data/core/units/elves/Outrider.cfg +%%DATADIR%%/data/core/units/elves/Ranger.cfg +%%DATADIR%%/data/core/units/elves/Rider.cfg +%%DATADIR%%/data/core/units/elves/Scout.cfg +%%DATADIR%%/data/core/units/elves/Shaman.cfg +%%DATADIR%%/data/core/units/elves/Sharpshooter.cfg +%%DATADIR%%/data/core/units/elves/Shyde.cfg +%%DATADIR%%/data/core/units/elves/Sorceress.cfg +%%DATADIR%%/data/core/units/elves/Sylph.cfg +%%DATADIR%%/data/core/units/fake/Fog_Clearer.cfg +%%DATADIR%%/data/core/units/goblins/Direwolf_Rider.cfg +%%DATADIR%%/data/core/units/goblins/Impaler.cfg +%%DATADIR%%/data/core/units/goblins/Knight.cfg +%%DATADIR%%/data/core/units/goblins/Pillager.cfg +%%DATADIR%%/data/core/units/goblins/Rouser.cfg +%%DATADIR%%/data/core/units/goblins/Spearman.cfg +%%DATADIR%%/data/core/units/goblins/Wolf_Rider.cfg +%%DATADIR%%/data/core/units/gryphons/Gryphon.cfg +%%DATADIR%%/data/core/units/gryphons/Gryphon_Master.cfg +%%DATADIR%%/data/core/units/gryphons/Gryphon_Rider.cfg +%%DATADIR%%/data/core/units/humans/Horse_Grand_Knight.cfg +%%DATADIR%%/data/core/units/humans/Horse_Knight.cfg +%%DATADIR%%/data/core/units/humans/Horse_Lancer.cfg +%%DATADIR%%/data/core/units/humans/Horse_Paladin.cfg +%%DATADIR%%/data/core/units/humans/Horseman.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Bowman.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Cavalier.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Cavalryman.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Dragoon.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Duelist.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Fencer.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_General.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Grand_Marshal.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Halberdier.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Heavy_Infantryman.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Iron_Mauler.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Javelineer.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Lieutenant.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Longbowman.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Master_Bowman.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Master_at_Arms.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Pikeman.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Royal_Guard.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Sergeant.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Shock_Trooper.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Spearman.cfg +%%DATADIR%%/data/core/units/humans/Loyalist_Swordsman.cfg +%%DATADIR%%/data/core/units/humans/Mage.cfg +%%DATADIR%%/data/core/units/humans/Mage_Arch.cfg +%%DATADIR%%/data/core/units/humans/Mage_Great.cfg +%%DATADIR%%/data/core/units/humans/Mage_Red.cfg +%%DATADIR%%/data/core/units/humans/Mage_Silver.cfg +%%DATADIR%%/data/core/units/humans/Mage_White.cfg +%%DATADIR%%/data/core/units/humans/Mage_of_Light.cfg +%%DATADIR%%/data/core/units/humans/Outlaw.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Assassin.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Bandit.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Footpad.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Fugitive.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Highwayman.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Rogue.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Ruffian.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Thief.cfg +%%DATADIR%%/data/core/units/humans/Outlaw_Thug.cfg +%%DATADIR%%/data/core/units/humans/Peasant.cfg +%%DATADIR%%/data/core/units/humans/Woodsman.cfg +%%DATADIR%%/data/core/units/humans/Woodsman_Huntsman.cfg +%%DATADIR%%/data/core/units/humans/Woodsman_Poacher.cfg +%%DATADIR%%/data/core/units/humans/Woodsman_Ranger.cfg +%%DATADIR%%/data/core/units/humans/Woodsman_Trapper.cfg +%%DATADIR%%/data/core/units/merfolk/Diviner.cfg +%%DATADIR%%/data/core/units/merfolk/Enchantress.cfg +%%DATADIR%%/data/core/units/merfolk/Entangler.cfg +%%DATADIR%%/data/core/units/merfolk/Fighter.cfg +%%DATADIR%%/data/core/units/merfolk/Hoplite.cfg +%%DATADIR%%/data/core/units/merfolk/Hunter.cfg +%%DATADIR%%/data/core/units/merfolk/Initiate.cfg +%%DATADIR%%/data/core/units/merfolk/Javelineer.cfg +%%DATADIR%%/data/core/units/merfolk/Netcaster.cfg +%%DATADIR%%/data/core/units/merfolk/Priestess.cfg +%%DATADIR%%/data/core/units/merfolk/Siren.cfg +%%DATADIR%%/data/core/units/merfolk/Spearman.cfg +%%DATADIR%%/data/core/units/merfolk/Triton.cfg +%%DATADIR%%/data/core/units/merfolk/Warrior.cfg +%%DATADIR%%/data/core/units/monsters/Cave_Spider.cfg +%%DATADIR%%/data/core/units/monsters/Cuttle_Fish.cfg +%%DATADIR%%/data/core/units/monsters/Fire_Dragon.cfg +%%DATADIR%%/data/core/units/monsters/Giant_Mudcrawler.cfg +%%DATADIR%%/data/core/units/monsters/Giant_Scorpion.cfg +%%DATADIR%%/data/core/units/monsters/Mudcrawler.cfg +%%DATADIR%%/data/core/units/monsters/Sea_Serpent.cfg +%%DATADIR%%/data/core/units/monsters/Skeletal_Dragon.cfg +%%DATADIR%%/data/core/units/monsters/Tentacle.cfg +%%DATADIR%%/data/core/units/monsters/Wolf.cfg +%%DATADIR%%/data/core/units/monsters/Yeti.cfg +%%DATADIR%%/data/core/units/nagas/Fighter.cfg +%%DATADIR%%/data/core/units/nagas/Myrmidon.cfg +%%DATADIR%%/data/core/units/nagas/Warrior.cfg +%%DATADIR%%/data/core/units/ogres/Ogre.cfg +%%DATADIR%%/data/core/units/ogres/Young_Ogre.cfg +%%DATADIR%%/data/core/units/orcs/Archer.cfg +%%DATADIR%%/data/core/units/orcs/Assassin.cfg +%%DATADIR%%/data/core/units/orcs/Crossbowman.cfg +%%DATADIR%%/data/core/units/orcs/Grunt.cfg +%%DATADIR%%/data/core/units/orcs/Leader.cfg +%%DATADIR%%/data/core/units/orcs/Ruler.cfg +%%DATADIR%%/data/core/units/orcs/Slayer.cfg +%%DATADIR%%/data/core/units/orcs/Slurbow.cfg +%%DATADIR%%/data/core/units/orcs/Sovereign.cfg +%%DATADIR%%/data/core/units/orcs/Warlord.cfg +%%DATADIR%%/data/core/units/orcs/Warrior.cfg +%%DATADIR%%/data/core/units/saurians/Ambusher.cfg +%%DATADIR%%/data/core/units/saurians/Augur.cfg +%%DATADIR%%/data/core/units/saurians/Flanker.cfg +%%DATADIR%%/data/core/units/saurians/Oracle.cfg +%%DATADIR%%/data/core/units/saurians/Skirmisher.cfg +%%DATADIR%%/data/core/units/saurians/Soothsayer.cfg +%%DATADIR%%/data/core/units/trolls/Great.cfg +%%DATADIR%%/data/core/units/trolls/Hero.cfg +%%DATADIR%%/data/core/units/trolls/Rocklobber.cfg +%%DATADIR%%/data/core/units/trolls/Troll.cfg +%%DATADIR%%/data/core/units/trolls/Warrior.cfg +%%DATADIR%%/data/core/units/trolls/Whelp.cfg +%%DATADIR%%/data/core/units/undead/Corpse_Ghoul.cfg +%%DATADIR%%/data/core/units/undead/Corpse_Necrophage.cfg +%%DATADIR%%/data/core/units/undead/Corpse_Soulless.cfg +%%DATADIR%%/data/core/units/undead/Corpse_Walking.cfg +%%DATADIR%%/data/core/units/undead/Necro_Ancient_Lich.cfg +%%DATADIR%%/data/core/units/undead/Necro_Dark_Adept.cfg +%%DATADIR%%/data/core/units/undead/Necro_Dark_Sorcerer.cfg +%%DATADIR%%/data/core/units/undead/Necro_Lich.cfg +%%DATADIR%%/data/core/units/undead/Necromancer.cfg +%%DATADIR%%/data/core/units/undead/Skele_Banebow.cfg +%%DATADIR%%/data/core/units/undead/Skele_Bone_Shooter.cfg +%%DATADIR%%/data/core/units/undead/Skele_Chocobone.cfg +%%DATADIR%%/data/core/units/undead/Skele_Death_Knight.cfg +%%DATADIR%%/data/core/units/undead/Skele_Deathblade.cfg +%%DATADIR%%/data/core/units/undead/Skele_Draug.cfg +%%DATADIR%%/data/core/units/undead/Skele_Revenant.cfg +%%DATADIR%%/data/core/units/undead/Skeleton.cfg +%%DATADIR%%/data/core/units/undead/Skeleton_Archer.cfg +%%DATADIR%%/data/core/units/undead/Spirit_Ghost.cfg +%%DATADIR%%/data/core/units/undead/Spirit_Nightgaunt.cfg +%%DATADIR%%/data/core/units/undead/Spirit_Shadow.cfg +%%DATADIR%%/data/core/units/undead/Spirit_Spectre.cfg +%%DATADIR%%/data/core/units/undead/Spirit_Wraith.cfg +%%DATADIR%%/data/core/units/wose/Ancient.cfg +%%DATADIR%%/data/core/units/wose/Elder.cfg +%%DATADIR%%/data/core/units/wose/Wose.cfg +%%DATADIR%%/data/hardwired/WARNING +%%DATADIR%%/data/hardwired/english.cfg +%%DATADIR%%/data/hardwired/fonts.cfg +%%DATADIR%%/data/hardwired/language.cfg +%%DATADIR%%/data/hardwired/tips.cfg %%DATADIR%%/data/languages/C.cfg %%DATADIR%%/data/languages/af_ZA.cfg %%DATADIR%%/data/languages/bg_BG.cfg @@ -1575,6 +7383,7 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/languages/ja_JP.cfg %%DATADIR%%/data/languages/ko_KR.cfg %%DATADIR%%/data/languages/la_IT.cfg +%%DATADIR%%/data/languages/lt_LT.cfg %%DATADIR%%/data/languages/nb_NO.cfg %%DATADIR%%/data/languages/nl_NL.cfg %%DATADIR%%/data/languages/pl_PL.cfg @@ -1584,116 +7393,143 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/languages/ru_RU.cfg %%DATADIR%%/data/languages/sk_SK.cfg %%DATADIR%%/data/languages/sl_SI.cfg -%%DATADIR%%/data/languages/sr_RS@latin.cfg %%DATADIR%%/data/languages/sr_RS.cfg +%%DATADIR%%/data/languages/sr_RS@latin.cfg %%DATADIR%%/data/languages/sv_SE.cfg %%DATADIR%%/data/languages/tl_PH.cfg %%DATADIR%%/data/languages/tr_TR.cfg %%DATADIR%%/data/languages/zh_CN.cfg -%%DATADIR%%/data/maps/multiplayer/2p_Blitz -%%DATADIR%%/data/maps/multiplayer/2p_Caves_of_the_Basilisk -%%DATADIR%%/data/maps/multiplayer/2p_Charge -%%DATADIR%%/data/maps/multiplayer/2p_Cynsaun_Battlefield -%%DATADIR%%/data/maps/multiplayer/2p_Den_of_Onis -%%DATADIR%%/data/maps/multiplayer/2p_Hamlets -%%DATADIR%%/data/maps/multiplayer/2p_Hornshark_Island -%%DATADIR%%/data/maps/multiplayer/2p_Meteor_Lake -%%DATADIR%%/data/maps/multiplayer/2p_Sablestone_Delta -%%DATADIR%%/data/maps/multiplayer/2p_Silverhead_Crossing -%%DATADIR%%/data/maps/multiplayer/2p_Sullas_Ruins -%%DATADIR%%/data/maps/multiplayer/2p_Wesbowl -%%DATADIR%%/data/maps/multiplayer/3p_Island_of_the_Horatii -%%DATADIR%%/data/maps/multiplayer/3p_Morituri -%%DATADIR%%/data/maps/multiplayer/3p_Triple_Blitz -%%DATADIR%%/data/maps/multiplayer/4p_Blue_Water_Province -%%DATADIR%%/data/maps/multiplayer/4p_Castle_Hopping_Isle -%%DATADIR%%/data/maps/multiplayer/4p_Clash -%%DATADIR%%/data/maps/multiplayer/4p_Hamlets -%%DATADIR%%/data/maps/multiplayer/4p_Isars_Cross -%%DATADIR%%/data/maps/multiplayer/4p_King_of_the_Hill -%%DATADIR%%/data/maps/multiplayer/4p_Lagoon -%%DATADIR%%/data/maps/multiplayer/4p_Loris_River -%%DATADIR%%/data/maps/multiplayer/4p_Morituri -%%DATADIR%%/data/maps/multiplayer/4p_Paths_of_Daggers -%%DATADIR%%/data/maps/multiplayer/4p_Siege_Castles -%%DATADIR%%/data/maps/multiplayer/4p_The_Wilderlands -%%DATADIR%%/data/maps/multiplayer/5p_Forest_of_Fear -%%DATADIR%%/data/maps/multiplayer/6p_Amohsad_Caldera -%%DATADIR%%/data/maps/multiplayer/6p_Crusaders_Field -%%DATADIR%%/data/maps/multiplayer/6p_Hexcake -%%DATADIR%%/data/maps/multiplayer/6p_The_Manzivan_Traps -%%DATADIR%%/data/maps/multiplayer/6p_Waterloo_Sunset -%%DATADIR%%/data/maps/multiplayer/8p_Morituri -%%DATADIR%%/data/maps/multiplayer/9p_Merkwuerdigliebe -%%DATADIR%%/data/multiplayer.cfg -%%DATADIR%%/data/names.cfg +%%DATADIR%%/data/languages/zh_TW.cfg +%%DATADIR%%/data/multiplayer/_main.cfg +%%DATADIR%%/data/multiplayer/eras.cfg +%%DATADIR%%/data/multiplayer/factions/alliance_of_darkness.cfg +%%DATADIR%%/data/multiplayer/factions/alliance_of_light.cfg +%%DATADIR%%/data/multiplayer/factions/drakes-aoh.cfg +%%DATADIR%%/data/multiplayer/factions/drakes-default.cfg +%%DATADIR%%/data/multiplayer/factions/knalgans-aoh.cfg +%%DATADIR%%/data/multiplayer/factions/knalgans-default.cfg +%%DATADIR%%/data/multiplayer/factions/loyalists-aoh.cfg +%%DATADIR%%/data/multiplayer/factions/loyalists-default.cfg +%%DATADIR%%/data/multiplayer/factions/northerners-aoh.cfg +%%DATADIR%%/data/multiplayer/factions/northerners-default.cfg +%%DATADIR%%/data/multiplayer/factions/rebels-aoh.cfg +%%DATADIR%%/data/multiplayer/factions/rebels-default.cfg +%%DATADIR%%/data/multiplayer/factions/undead-aoh.cfg +%%DATADIR%%/data/multiplayer/factions/undead-default.cfg +%%DATADIR%%/data/multiplayer/maps/2p_Caves_of_the_Basilisk.map +%%DATADIR%%/data/multiplayer/maps/2p_Cynsaun_Battlefield.map +%%DATADIR%%/data/multiplayer/maps/2p_Den_of_Onis.map +%%DATADIR%%/data/multiplayer/maps/2p_Fallenstar_Lake.map +%%DATADIR%%/data/multiplayer/maps/2p_Hamlets.map +%%DATADIR%%/data/multiplayer/maps/2p_Hornshark_Island.map +%%DATADIR%%/data/multiplayer/maps/2p_Sablestone_Delta.map +%%DATADIR%%/data/multiplayer/maps/2p_Silverhead_Crossing.map +%%DATADIR%%/data/multiplayer/maps/2p_Sullas_Ruins.map +%%DATADIR%%/data/multiplayer/maps/2p_The_Freelands.map +%%DATADIR%%/data/multiplayer/maps/2p_Weldyn_Channel.map +%%DATADIR%%/data/multiplayer/maps/2p_Wesbowl.map +%%DATADIR%%/data/multiplayer/maps/3p_Alirok_Marsh.map +%%DATADIR%%/data/multiplayer/maps/3p_Island_of_the_Horatii.map +%%DATADIR%%/data/multiplayer/maps/3p_Morituri.map +%%DATADIR%%/data/multiplayer/maps/4p_Blue_Water_Province.map +%%DATADIR%%/data/multiplayer/maps/4p_Castle_Hopping_Isle.map +%%DATADIR%%/data/multiplayer/maps/4p_Clash.map +%%DATADIR%%/data/multiplayer/maps/4p_Hamlets.map +%%DATADIR%%/data/multiplayer/maps/4p_Isars_Cross.map +%%DATADIR%%/data/multiplayer/maps/4p_King_of_the_Hill.map +%%DATADIR%%/data/multiplayer/maps/4p_Lagoon.map +%%DATADIR%%/data/multiplayer/maps/4p_Loris_River.map +%%DATADIR%%/data/multiplayer/maps/4p_Morituri.map +%%DATADIR%%/data/multiplayer/maps/4p_Paths_of_Daggers.map +%%DATADIR%%/data/multiplayer/maps/4p_Siege_Castles.map +%%DATADIR%%/data/multiplayer/maps/4p_The_Wilderlands.map +%%DATADIR%%/data/multiplayer/maps/4p_Xanthe_Chaos.map +%%DATADIR%%/data/multiplayer/maps/5p_Auction-X.map +%%DATADIR%%/data/multiplayer/maps/5p_Forest_of_Fear.map +%%DATADIR%%/data/multiplayer/maps/6p_Amohsad_Caldera.map +%%DATADIR%%/data/multiplayer/maps/6p_Crusaders_Field.map +%%DATADIR%%/data/multiplayer/maps/6p_Hexcake.map +%%DATADIR%%/data/multiplayer/maps/6p_The_Manzivan_Traps.map +%%DATADIR%%/data/multiplayer/maps/6p_Waterloo_Sunset.map +%%DATADIR%%/data/multiplayer/maps/8p_Mokena_Prairie.map +%%DATADIR%%/data/multiplayer/maps/8p_Morituri.map +%%DATADIR%%/data/multiplayer/maps/9p_Merkwuerdigliebe.map +%%DATADIR%%/data/multiplayer/maps/Dark_Forecast.map +%%DATADIR%%/data/multiplayer/maps/Dark_Forecast_basic.mask +%%DATADIR%%/data/multiplayer/maps/Dark_Forecast_drought.mask +%%DATADIR%%/data/multiplayer/maps/Dark_Forecast_firstsnow.mask +%%DATADIR%%/data/multiplayer/maps/Dark_Forecast_rain.mask +%%DATADIR%%/data/multiplayer/maps/Dark_Forecast_secondsnow.mask +%%DATADIR%%/data/multiplayer/scenarios/2p_Caves_of_the_Basilisk.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Cynsaun_Battlefield.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Dark_Forecast.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Den_of_Onis.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Fallenstar_Lake.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Hamlets.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Hornshark_Island.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Sablestone_Delta.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Silverhead_Crossing.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Sullas_Ruins.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_The_Freelands.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Weldyn_Channel.cfg +%%DATADIR%%/data/multiplayer/scenarios/2p_Wesbowl.cfg +%%DATADIR%%/data/multiplayer/scenarios/3p_Alirok_Marsh.cfg +%%DATADIR%%/data/multiplayer/scenarios/3p_Island_of_the_Horatii.cfg +%%DATADIR%%/data/multiplayer/scenarios/3p_Morituri.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Blue_Water_Province.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Castle_Hopping_Isle.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Clash.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Hamlets.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Isars_Cross.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_King_of_the_Hill.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Lagoon.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Loris_River.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Morituri.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Paths_of_Daggers.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Siege_Castles.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_The_Wilderlands.cfg +%%DATADIR%%/data/multiplayer/scenarios/4p_Xanthe_Chaos.cfg +%%DATADIR%%/data/multiplayer/scenarios/5p_Auction-X.cfg +%%DATADIR%%/data/multiplayer/scenarios/5p_Forest_of_Fear.cfg +%%DATADIR%%/data/multiplayer/scenarios/6p_Amohsad_Caldera.cfg +%%DATADIR%%/data/multiplayer/scenarios/6p_Crusaders_Field.cfg +%%DATADIR%%/data/multiplayer/scenarios/6p_Hexcake.cfg +%%DATADIR%%/data/multiplayer/scenarios/6p_Team_Survival.cfg +%%DATADIR%%/data/multiplayer/scenarios/6p_The_Manzivan_Traps.cfg +%%DATADIR%%/data/multiplayer/scenarios/6p_Waterloo_Sunset.cfg +%%DATADIR%%/data/multiplayer/scenarios/8p_Mokena_Prairie.cfg +%%DATADIR%%/data/multiplayer/scenarios/8p_Morituri.cfg +%%DATADIR%%/data/multiplayer/scenarios/9p_Merkwuerdigliebe.cfg +%%DATADIR%%/data/multiplayer/scenarios/Random_Scenario.cfg +%%DATADIR%%/data/multiplayer/scenarios/Random_Scenario_Desert.cfg +%%DATADIR%%/data/multiplayer/scenarios/Random_Scenario_Marsh.cfg +%%DATADIR%%/data/multiplayer/scenarios/Random_Scenario_Winter.cfg +%%DATADIR%%/data/multiplayer/scenarios/Wesbench_AI.cfg +%%DATADIR%%/data/multiplayer/scenarios/Wesbench_Scroll.cfg +%%DATADIR%%/data/multiplayer/scenarios/Wesbench_Shroud_Walk.cfg %%DATADIR%%/data/scenario-test.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Blitz.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Caves_of_the_Basilisk.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Charge.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Cynsaun_Battlefield.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Den_of_Onis.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Hamlets.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Hornshark_Island.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Meteor_Lake.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Sablestone_Delta.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Silverhead_Crossing.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Sullas_Ruins.cfg -%%DATADIR%%/data/scenarios/multiplayer/2p_Wesbowl.cfg -%%DATADIR%%/data/scenarios/multiplayer/3p_Island_of_the_Horatii.cfg -%%DATADIR%%/data/scenarios/multiplayer/3p_Morituri.cfg -%%DATADIR%%/data/scenarios/multiplayer/3p_Triple_Blitz.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Blue_Water_Province.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Castle_Hopping_Isle.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Clash.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Hamlets.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Isars_Cross.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_King_of_the_Hill.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Lagoon.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Loris_River.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Morituri.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Paths_of_Daggers.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_Siege_Castles.cfg -%%DATADIR%%/data/scenarios/multiplayer/4p_The_Wilderlands.cfg -%%DATADIR%%/data/scenarios/multiplayer/5p_Forest_of_Fear.cfg -%%DATADIR%%/data/scenarios/multiplayer/6p_Amohsad_Caldera.cfg -%%DATADIR%%/data/scenarios/multiplayer/6p_Crusaders_Field.cfg -%%DATADIR%%/data/scenarios/multiplayer/6p_Hexcake.cfg -%%DATADIR%%/data/scenarios/multiplayer/6p_The_Manzivan_Traps.cfg -%%DATADIR%%/data/scenarios/multiplayer/6p_Waterloo_Sunset.cfg -%%DATADIR%%/data/scenarios/multiplayer/8p_Morituri.cfg -%%DATADIR%%/data/scenarios/multiplayer/9p_Merkwuerdigliebe.cfg -%%DATADIR%%/data/scenarios/multiplayer/Random_Scenario.cfg -%%DATADIR%%/data/scenarios/multiplayer/Random_Scenario_Desert.cfg -%%DATADIR%%/data/scenarios/multiplayer/Random_Scenario_Marsh.cfg -%%DATADIR%%/data/scenarios/multiplayer/Random_Scenario_Winter.cfg -%%DATADIR%%/data/scenarios/multiplayer/Wesbench_AI.cfg -%%DATADIR%%/data/scenarios/multiplayer/Wesbench_Scroll.cfg -%%DATADIR%%/data/scenarios/multiplayer/Wesbench_Shroud_Walk.cfg -%%DATADIR%%/data/schedules.cfg -%%DATADIR%%/data/sound-utils.cfg -%%DATADIR%%/data/special-notes.cfg -%%DATADIR%%/data/team-colors.cfg -%%DATADIR%%/data/terrain-graphics.cfg -%%DATADIR%%/data/terrain-graphics/adjacent.cfg -%%DATADIR%%/data/terrain-graphics/base.cfg -%%DATADIR%%/data/terrain-graphics/bridges.cfg -%%DATADIR%%/data/terrain-graphics/buildings.cfg -%%DATADIR%%/data/terrain-graphics/canyon.cfg -%%DATADIR%%/data/terrain-graphics/castle-transitions.cfg -%%DATADIR%%/data/terrain-graphics/castles.cfg -%%DATADIR%%/data/terrain-graphics/caves.cfg -%%DATADIR%%/data/terrain-graphics/forestcastle.cfg -%%DATADIR%%/data/terrain-graphics/forests.cfg -%%DATADIR%%/data/terrain-graphics/mountains.cfg -%%DATADIR%%/data/terrain-graphics/util.cfg -%%DATADIR%%/data/terrain.cfg %%DATADIR%%/data/themes/default.cfg %%DATADIR%%/data/themes/dfool.cfg %%DATADIR%%/data/themes/editor.cfg %%DATADIR%%/data/themes/experimental.cfg %%DATADIR%%/data/themes/macros.cfg -%%DATADIR%%/data/tips.cfg +%%DATADIR%%/data/tools/Makefile +%%DATADIR%%/data/tools/README +%%DATADIR%%/data/tools/TeamColorizer.pl +%%DATADIR%%/data/tools/about_cfg_to_wiki +%%DATADIR%%/data/tools/castle-cutter/castle-walls.tmpl +%%DATADIR%%/data/tools/castle-cutter/castle.png +%%DATADIR%%/data/tools/castle-cutter/castles.xcf +%%DATADIR%%/data/tools/castle-cutter/cutout-bg.png +%%DATADIR%%/data/tools/castle-cutter/cutout-fg.png +%%DATADIR%%/data/tools/castle-cutter/encampment.png +%%DATADIR%%/data/tools/castle-cutter/keep1.png +%%DATADIR%%/data/tools/castle-cutter/keep1.tmpl +%%DATADIR%%/data/tools/castle-cutter/keep2.png +%%DATADIR%%/data/tools/castle-cutter/keep2.tmpl +%%DATADIR%%/data/tools/castle-cutter/mask.png +%%DATADIR%%/data/tools/castle-cutter/mk-all-castles.sh +%%DATADIR%%/data/tools/castle-cutter/mk-castle.sh %%DATADIR%%/data/tools/exploder/castle-concave.cfg %%DATADIR%%/data/tools/exploder/castle-convex.cfg %%DATADIR%%/data/tools/exploder/castle-exploded-concave.cfg @@ -1713,341 +7549,70 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/data/tools/exploder/wall-convex.cfg %%DATADIR%%/data/tools/exploder/wall-exploded-concave.cfg %%DATADIR%%/data/tools/exploder/wall-exploded-convex.cfg -%%DATADIR%%/data/tools/unit_tree/index_languages.html -%%DATADIR%%/data/tools/unit_tree/units.pl -%%DATADIR%%/data/tools/unit_tree/tree_footer.html -%%DATADIR%%/data/tools/unit_tree/unit.html -%%DATADIR%%/data/tools/unit_tree/index.html +%%DATADIR%%/data/tools/extractbindings +%%DATADIR%%/data/tools/helpheader.xhtml +%%DATADIR%%/data/tools/helptrailer.xhtml +%%DATADIR%%/data/tools/mk-edges +%%DATADIR%%/data/tools/scoutDefault.py +%%DATADIR%%/data/tools/terrain2wiki.rb %%DATADIR%%/data/tools/unit_tree/TeamColorizer.pl -%%DATADIR%%/data/tools/unit_tree/tree_race_header.html -%%DATADIR%%/data/tools/unit_tree/units.css -%%DATADIR%%/data/tools/unit_tree/anim_header.html -%%DATADIR%%/data/tools/unit_tree/index_base.html -%%DATADIR%%/data/tools/unit_tree/tree_fact_header.html -%%DATADIR%%/data/tools/unit_tree/tree_header.html -%%DATADIR%%/data/traits.cfg -%%DATADIR%%/data/tutorial/images/portraits/delfador.png -%%DATADIR%%/data/tutorial/images/portraits/konrad.png -%%DATADIR%%/data/tutorial/images/portraits/lisar.png -%%DATADIR%%/data/tutorial/images/units/elder-mage-defend.png -%%DATADIR%%/data/tutorial/images/units/elder-mage.png -%%DATADIR%%/data/tutorial/images/units/elder-mage-ranged1.png -%%DATADIR%%/data/tutorial/images/units/elder-mage-ranged2.png -%%DATADIR%%/data/tutorial/images/units/elder-mage-ranged3.png -%%DATADIR%%/data/tutorial/images/units/human-princess-defend.png -%%DATADIR%%/data/tutorial/images/units/elder-mage-melee1.png -%%DATADIR%%/data/tutorial/images/units/elder-mage-melee2.png -%%DATADIR%%/data/tutorial/images/units/human-princess-attack-1.png -%%DATADIR%%/data/tutorial/images/units/human-princess-attack-2.png -%%DATADIR%%/data/tutorial/images/units/human-princess-attack-3.png -%%DATADIR%%/data/tutorial/images/units/human-princess-attack-4.png -%%DATADIR%%/data/tutorial/images/units/human-princess.png -%%DATADIR%%/data/tutorial/images/units/konrad-fighter-attack-1.png -%%DATADIR%%/data/tutorial/images/units/konrad-fighter-attack-2.png -%%DATADIR%%/data/tutorial/images/units/konrad-fighter-defend.png -%%DATADIR%%/data/tutorial/images/units/konrad-fighter.png -%%DATADIR%%/data/tutorial/images/units/quintain-attack1.png -%%DATADIR%%/data/tutorial/images/units/quintain-attack2.png -%%DATADIR%%/data/tutorial/images/units/quintain.png -%%DATADIR%%/data/tutorial/maps/2_Tutorial -%%DATADIR%%/data/tutorial/scenarios/1_Tutorial.cfg -%%DATADIR%%/data/tutorial/scenarios/2_Speaking.cfg -%%DATADIR%%/data/tutorial/scenarios/2_Tutorial.cfg -%%DATADIR%%/data/tutorial/scenarios/utils.cfg -%%DATADIR%%/data/tutorial/units/Elder_Mage.cfg -%%DATADIR%%/data/tutorial/units/Fighter.cfg -%%DATADIR%%/data/tutorial/units/Fighteress.cfg -%%DATADIR%%/data/tutorial/units/Quintain.cfg -%%DATADIR%%/data/units.cfg -%%DATADIR%%/data/units/Boat_Galleon.cfg -%%DATADIR%%/data/units/Boat_Pirate_Galleon.cfg -%%DATADIR%%/data/units/Boat_Transport_Galleon.cfg -%%DATADIR%%/data/units/Drake_Blademaster.cfg -%%DATADIR%%/data/units/Drake_Burner.cfg -%%DATADIR%%/data/units/Drake_Clasher.cfg -%%DATADIR%%/data/units/Drake_Enforcer.cfg -%%DATADIR%%/data/units/Drake_Fighter.cfg -%%DATADIR%%/data/units/Drake_Fire.cfg -%%DATADIR%%/data/units/Drake_Flameheart.cfg -%%DATADIR%%/data/units/Drake_Flare.cfg -%%DATADIR%%/data/units/Drake_Gladiator.cfg -%%DATADIR%%/data/units/Drake_Glider.cfg -%%DATADIR%%/data/units/Drake_Hurricane.cfg -%%DATADIR%%/data/units/Drake_Inferno.cfg -%%DATADIR%%/data/units/Drake_Sky.cfg -%%DATADIR%%/data/units/Drake_Slasher.cfg -%%DATADIR%%/data/units/Drake_Warden.cfg -%%DATADIR%%/data/units/Drake_Warrior.cfg -%%DATADIR%%/data/units/Dwarvish_Berserker.cfg -%%DATADIR%%/data/units/Dwarvish_Dragonguard.cfg -%%DATADIR%%/data/units/Dwarvish_Fighter.cfg -%%DATADIR%%/data/units/Dwarvish_Guardsman.cfg -%%DATADIR%%/data/units/Dwarvish_Lord.cfg -%%DATADIR%%/data/units/Dwarvish_Runemaster.cfg -%%DATADIR%%/data/units/Dwarvish_Sentinel.cfg -%%DATADIR%%/data/units/Dwarvish_Stalwart.cfg -%%DATADIR%%/data/units/Dwarvish_Steelclad.cfg -%%DATADIR%%/data/units/Dwarvish_Thunderer.cfg -%%DATADIR%%/data/units/Dwarvish_Thunderguard.cfg -%%DATADIR%%/data/units/Dwarvish_Ulfserker.cfg -%%DATADIR%%/data/units/Elvish_Archer.cfg -%%DATADIR%%/data/units/Elvish_Avenger.cfg -%%DATADIR%%/data/units/Elvish_Captain.cfg -%%DATADIR%%/data/units/Elvish_Champion.cfg -%%DATADIR%%/data/units/Elvish_Druid.cfg -%%DATADIR%%/data/units/Elvish_Enchantress.cfg -%%DATADIR%%/data/units/Elvish_Fighter.cfg -%%DATADIR%%/data/units/Elvish_Hero.cfg -%%DATADIR%%/data/units/Elvish_Marksman.cfg -%%DATADIR%%/data/units/Elvish_Marshal.cfg -%%DATADIR%%/data/units/Elvish_Outrider.cfg -%%DATADIR%%/data/units/Elvish_Ranger.cfg -%%DATADIR%%/data/units/Elvish_Rider.cfg -%%DATADIR%%/data/units/Elvish_Scout.cfg -%%DATADIR%%/data/units/Elvish_Shaman.cfg -%%DATADIR%%/data/units/Elvish_Sharpshooter.cfg -%%DATADIR%%/data/units/Elvish_Shyde.cfg -%%DATADIR%%/data/units/Elvish_Sorceress.cfg -%%DATADIR%%/data/units/Elvish_Sylph.cfg -%%DATADIR%%/data/units/Goblin_Direwolf_Rider.cfg -%%DATADIR%%/data/units/Goblin_Impaler.cfg -%%DATADIR%%/data/units/Goblin_Knight.cfg -%%DATADIR%%/data/units/Goblin_Pillager.cfg -%%DATADIR%%/data/units/Goblin_Rouser.cfg -%%DATADIR%%/data/units/Goblin_Spearman.cfg -%%DATADIR%%/data/units/Goblin_Wolf_Rider.cfg -%%DATADIR%%/data/units/Gryphon.cfg -%%DATADIR%%/data/units/Gryphon_Master.cfg -%%DATADIR%%/data/units/Gryphon_Rider.cfg -%%DATADIR%%/data/units/Human_Horse_Grand_Knight.cfg -%%DATADIR%%/data/units/Human_Horse_Knight.cfg -%%DATADIR%%/data/units/Human_Horse_Lancer.cfg -%%DATADIR%%/data/units/Human_Horse_Paladin.cfg -%%DATADIR%%/data/units/Human_Horseman.cfg -%%DATADIR%%/data/units/Human_Loyalist_Bowman.cfg -%%DATADIR%%/data/units/Human_Loyalist_Cavalier.cfg -%%DATADIR%%/data/units/Human_Loyalist_Cavalryman.cfg -%%DATADIR%%/data/units/Human_Loyalist_Dragoon.cfg -%%DATADIR%%/data/units/Human_Loyalist_Duelist.cfg -%%DATADIR%%/data/units/Human_Loyalist_Fencer.cfg -%%DATADIR%%/data/units/Human_Loyalist_General.cfg -%%DATADIR%%/data/units/Human_Loyalist_Grand_Marshal.cfg -%%DATADIR%%/data/units/Human_Loyalist_Halberdier.cfg -%%DATADIR%%/data/units/Human_Loyalist_Heavy_Infantryman.cfg -%%DATADIR%%/data/units/Human_Loyalist_Iron_Mauler.cfg -%%DATADIR%%/data/units/Human_Loyalist_Javelineer.cfg -%%DATADIR%%/data/units/Human_Loyalist_Lieutenant.cfg -%%DATADIR%%/data/units/Human_Loyalist_Longbowman.cfg -%%DATADIR%%/data/units/Human_Loyalist_Master_Bowman.cfg -%%DATADIR%%/data/units/Human_Loyalist_Master_at_Arms.cfg -%%DATADIR%%/data/units/Human_Loyalist_Pikeman.cfg -%%DATADIR%%/data/units/Human_Loyalist_Royal_Guard.cfg -%%DATADIR%%/data/units/Human_Loyalist_Sergeant.cfg -%%DATADIR%%/data/units/Human_Loyalist_Shock_Trooper.cfg -%%DATADIR%%/data/units/Human_Loyalist_Spearman.cfg -%%DATADIR%%/data/units/Human_Loyalist_Swordsman.cfg -%%DATADIR%%/data/units/Human_Mage.cfg -%%DATADIR%%/data/units/Human_Mage_Arch.cfg -%%DATADIR%%/data/units/Human_Mage_Great.cfg -%%DATADIR%%/data/units/Human_Mage_Red.cfg -%%DATADIR%%/data/units/Human_Mage_Silver.cfg -%%DATADIR%%/data/units/Human_Mage_White.cfg -%%DATADIR%%/data/units/Human_Mage_of_Light.cfg -%%DATADIR%%/data/units/Human_Outlaw.cfg -%%DATADIR%%/data/units/Human_Outlaw_Assassin.cfg -%%DATADIR%%/data/units/Human_Outlaw_Bandit.cfg -%%DATADIR%%/data/units/Human_Outlaw_Footpad.cfg -%%DATADIR%%/data/units/Human_Outlaw_Poacher.cfg -%%DATADIR%%/data/units/Human_Outlaw_Rogue.cfg -%%DATADIR%%/data/units/Human_Outlaw_Thief.cfg -%%DATADIR%%/data/units/Human_Outlaw_Thug.cfg -%%DATADIR%%/data/units/Human_Outlaw_Trapper.cfg -%%DATADIR%%/data/units/Human_Peasant.cfg -%%DATADIR%%/data/units/Mermaid_Diviner.cfg -%%DATADIR%%/data/units/Mermaid_Enchantress.cfg -%%DATADIR%%/data/units/Mermaid_Initiate.cfg -%%DATADIR%%/data/units/Mermaid_Priestess.cfg -%%DATADIR%%/data/units/Mermaid_Siren.cfg -%%DATADIR%%/data/units/Merman_Entangler.cfg -%%DATADIR%%/data/units/Merman_Fighter.cfg -%%DATADIR%%/data/units/Merman_Hoplite.cfg -%%DATADIR%%/data/units/Merman_Hunter.cfg -%%DATADIR%%/data/units/Merman_Javelineer.cfg -%%DATADIR%%/data/units/Merman_Netcaster.cfg -%%DATADIR%%/data/units/Merman_Spearman.cfg -%%DATADIR%%/data/units/Merman_Triton.cfg -%%DATADIR%%/data/units/Merman_Warrior.cfg -%%DATADIR%%/data/units/Monster_Cave_Spider.cfg -%%DATADIR%%/data/units/Monster_Cuttle_Fish.cfg -%%DATADIR%%/data/units/Monster_Giant_Mudcrawler.cfg -%%DATADIR%%/data/units/Monster_Giant_Scorpion.cfg -%%DATADIR%%/data/units/Monster_Mudcrawler.cfg -%%DATADIR%%/data/units/Monster_Sea_Serpent.cfg -%%DATADIR%%/data/units/Monster_Tentacle.cfg -%%DATADIR%%/data/units/Monster_Yeti.cfg -%%DATADIR%%/data/units/Naga_Fighter.cfg -%%DATADIR%%/data/units/Naga_Myrmidon.cfg -%%DATADIR%%/data/units/Naga_Warrior.cfg -%%DATADIR%%/data/units/Ogre.cfg -%%DATADIR%%/data/units/Ogre_Young.cfg -%%DATADIR%%/data/units/Orcish_Archer.cfg -%%DATADIR%%/data/units/Orcish_Assassin.cfg -%%DATADIR%%/data/units/Orcish_Crossbowman.cfg -%%DATADIR%%/data/units/Orcish_Grunt.cfg -%%DATADIR%%/data/units/Orcish_Leader.cfg -%%DATADIR%%/data/units/Orcish_Ruler.cfg -%%DATADIR%%/data/units/Orcish_Slayer.cfg -%%DATADIR%%/data/units/Orcish_Slurbow.cfg -%%DATADIR%%/data/units/Orcish_Sovereign.cfg -%%DATADIR%%/data/units/Orcish_Warlord.cfg -%%DATADIR%%/data/units/Orcish_Warrior.cfg -%%DATADIR%%/data/units/Saurian_Ambusher.cfg -%%DATADIR%%/data/units/Saurian_Augur.cfg -%%DATADIR%%/data/units/Saurian_Flanker.cfg -%%DATADIR%%/data/units/Saurian_Oracle.cfg -%%DATADIR%%/data/units/Saurian_Skirmisher.cfg -%%DATADIR%%/data/units/Saurian_Soothsayer.cfg -%%DATADIR%%/data/units/Troll.cfg -%%DATADIR%%/data/units/Troll_Great.cfg -%%DATADIR%%/data/units/Troll_Hero.cfg -%%DATADIR%%/data/units/Troll_Rocklobber.cfg -%%DATADIR%%/data/units/Troll_Warrior.cfg -%%DATADIR%%/data/units/Troll_Whelp.cfg -%%DATADIR%%/data/units/Undead_Bat_Blood.cfg -%%DATADIR%%/data/units/Undead_Bat_Vampire.cfg -%%DATADIR%%/data/units/Undead_Corpse_Ghoul.cfg -%%DATADIR%%/data/units/Undead_Corpse_Necrophage.cfg -%%DATADIR%%/data/units/Undead_Corpse_Soulless.cfg -%%DATADIR%%/data/units/Undead_Corpse_Walking.cfg -%%DATADIR%%/data/units/Undead_Necro_Ancient_Lich.cfg -%%DATADIR%%/data/units/Undead_Necro_Dark_Adept.cfg -%%DATADIR%%/data/units/Undead_Necro_Dark_Sorcerer.cfg -%%DATADIR%%/data/units/Undead_Necro_Lich.cfg -%%DATADIR%%/data/units/Undead_Necromancer.cfg -%%DATADIR%%/data/units/Undead_Skele_Bone_Shooter.cfg -%%DATADIR%%/data/units/Undead_Skele_Death_Knight.cfg -%%DATADIR%%/data/units/Undead_Skele_Deathblade.cfg -%%DATADIR%%/data/units/Undead_Skele_Draug.cfg -%%DATADIR%%/data/units/Undead_Skele_Revenant.cfg -%%DATADIR%%/data/units/Undead_Skele_Soul_Shooter.cfg -%%DATADIR%%/data/units/Undead_Skeleton.cfg -%%DATADIR%%/data/units/Undead_Skeleton_Archer.cfg -%%DATADIR%%/data/units/Undead_Spirit_Ghost.cfg -%%DATADIR%%/data/units/Undead_Spirit_Nightgaunt.cfg -%%DATADIR%%/data/units/Undead_Spirit_Shadow.cfg -%%DATADIR%%/data/units/Undead_Spirit_Spectre.cfg -%%DATADIR%%/data/units/Undead_Spirit_Wraith.cfg -%%DATADIR%%/data/units/Wose.cfg -%%DATADIR%%/data/units/Wose_Ancient.cfg -%%DATADIR%%/data/units/Wose_Elder.cfg -%%DATADIR%%/data/utils.cfg +%%DATADIR%%/data/tools/unit_tree/templates/anim_header.html +%%DATADIR%%/data/tools/unit_tree/templates/index.html +%%DATADIR%%/data/tools/unit_tree/templates/index_base.html +%%DATADIR%%/data/tools/unit_tree/templates/index_base_EOM.html +%%DATADIR%%/data/tools/unit_tree/templates/index_base_EXE.html +%%DATADIR%%/data/tools/unit_tree/templates/index_base_IME.html +%%DATADIR%%/data/tools/unit_tree/templates/index_languages.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_fact_header.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_fact_header_EOM.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_fact_header_EXE.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_fact_header_IME.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_footer.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_header.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_header_EOM.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_header_EXE.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_header_IME.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_race_header.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_race_header_EOM.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_race_header_EXE.html +%%DATADIR%%/data/tools/unit_tree/templates/tree_race_header_IME.html +%%DATADIR%%/data/tools/unit_tree/templates/trunk.sh +%%DATADIR%%/data/tools/unit_tree/templates/unit.html +%%DATADIR%%/data/tools/unit_tree/templates/unit_1.2.html +%%DATADIR%%/data/tools/unit_tree/templates/unit_EOM.html +%%DATADIR%%/data/tools/unit_tree/templates/unit_IME.html +%%DATADIR%%/data/tools/unit_tree/templates/unit_exe.html +%%DATADIR%%/data/tools/unit_tree/templates/units.css +%%DATADIR%%/data/tools/unit_tree/units.pl +%%DATADIR%%/data/tools/wesnoth-mode.el +%%DATADIR%%/data/tools/wesnoth/README +%%DATADIR%%/data/tools/wesnoth/__init__.py +%%DATADIR%%/data/tools/wesnoth/campaignserver_client.py +%%DATADIR%%/data/tools/wesnoth/libsvn.py +%%DATADIR%%/data/tools/wesnoth/wescamp.py +%%DATADIR%%/data/tools/wesnoth/wmldata.py +%%DATADIR%%/data/tools/wesnoth/wmliterator.py +%%DATADIR%%/data/tools/wesnoth/wmlparser.py +%%DATADIR%%/data/tools/wesnoth/wmltools.py +%%DATADIR%%/data/tools/wmlindent +%%DATADIR%%/data/tools/wmllint +%%DATADIR%%/data/tools/wmlmove +%%DATADIR%%/data/tools/wmlscope %%DATADIR%%/fonts/COPYING %%DATADIR%%/fonts/DejaVuSans.ttf -%%DATADIR%%/fonts/FreeSans.ttf %%DATADIR%%/fonts/sazanami-gothic.ttf -%%DATADIR%%/images/attacks/axe.png -%%DATADIR%%/images/attacks/axe-deathblade.png -%%DATADIR%%/images/attacks/axe-undead.png -%%DATADIR%%/images/attacks/ballista.png -%%DATADIR%%/images/attacks/baneblade.png -%%DATADIR%%/images/attacks/battleaxe.png -%%DATADIR%%/images/attacks/battleaxe-undead.png -%%DATADIR%%/images/attacks/beak.png -%%DATADIR%%/images/attacks/blank.png -%%DATADIR%%/images/attacks/bow-elven-magic.png -%%DATADIR%%/images/attacks/bow-elven.png -%%DATADIR%%/images/attacks/bow-orcish.png -%%DATADIR%%/images/attacks/bow.png -%%DATADIR%%/images/attacks/chakram.png -%%DATADIR%%/images/attacks/claws-animal.png -%%DATADIR%%/images/attacks/claws-drake.png -%%DATADIR%%/images/attacks/claws-flaming.png -%%DATADIR%%/images/attacks/claws-undead.png -%%DATADIR%%/images/attacks/claws.png -%%DATADIR%%/images/attacks/cleaver.png -%%DATADIR%%/images/attacks/club.png -%%DATADIR%%/images/attacks/crossbow-human.png -%%DATADIR%%/images/attacks/crossbow-orcish.png -%%DATADIR%%/images/attacks/crossbow-undead.png -%%DATADIR%%/images/attacks/crush-wose.png -%%DATADIR%%/images/attacks/curse.png -%%DATADIR%%/images/attacks/dagger-human.png -%%DATADIR%%/images/attacks/dagger-orcish.png -%%DATADIR%%/images/attacks/dagger-thrown-human.png -%%DATADIR%%/images/attacks/dagger-thrown-poison-human.png -%%DATADIR%%/images/attacks/dagger-thrown-poison-orcish.png -%%DATADIR%%/images/attacks/dagger-undead.png -%%DATADIR%%/images/attacks/dark-missile.png -%%DATADIR%%/images/attacks/dragonstaff.png -%%DATADIR%%/images/attacks/druidstaff.png -%%DATADIR%%/images/attacks/entangle.png -%%DATADIR%%/images/attacks/faerie-fire.png -%%DATADIR%%/images/attacks/fangs-animal.png -%%DATADIR%%/images/attacks/fangs-spider.png -%%DATADIR%%/images/attacks/fangs.png -%%DATADIR%%/images/attacks/fire-breath-drake.png -%%DATADIR%%/images/attacks/fireball.png -%%DATADIR%%/images/attacks/fist-human.png -%%DATADIR%%/images/attacks/fist-skeletal.png -%%DATADIR%%/images/attacks/fist-troll.png -%%DATADIR%%/images/attacks/fist-yeti.png -%%DATADIR%%/images/attacks/fist.png -%%DATADIR%%/images/attacks/frenzy.png -%%DATADIR%%/images/attacks/gaze.png -%%DATADIR%%/images/attacks/glaive.png -%%DATADIR%%/images/attacks/greatsword-human.png -%%DATADIR%%/images/attacks/greatsword-orcish.png -%%DATADIR%%/images/attacks/halberd.png -%%DATADIR%%/images/attacks/hammer-troll.png -%%DATADIR%%/images/attacks/hammer.png -%%DATADIR%%/images/attacks/hatchet.png -%%DATADIR%%/images/attacks/iceball.png -%%DATADIR%%/images/attacks/ink.png -%%DATADIR%%/images/attacks/javelin-human.png -%%DATADIR%%/images/attacks/javelin-orcish.png -%%DATADIR%%/images/attacks/lance.png -%%DATADIR%%/images/attacks/lightbeam.png -%%DATADIR%%/images/attacks/lightning.png -%%DATADIR%%/images/attacks/mace.png -%%DATADIR%%/images/attacks/magic-missile.png -%%DATADIR%%/images/attacks/morning-star.png -%%DATADIR%%/images/attacks/mud-glob.png -%%DATADIR%%/images/attacks/net.png -%%DATADIR%%/images/attacks/pick-axe.png -%%DATADIR%%/images/attacks/pike.png -%%DATADIR%%/images/attacks/pincers.png -%%DATADIR%%/images/attacks/pitchfork.png -%%DATADIR%%/images/attacks/quarterstaff.png -%%DATADIR%%/images/attacks/rectangular-shield.png -%%DATADIR%%/images/attacks/sabre-human.png -%%DATADIR%%/images/attacks/scimitar.png -%%DATADIR%%/images/attacks/slam-drake.png -%%DATADIR%%/images/attacks/sling.png -%%DATADIR%%/images/attacks/spear-orcish.png -%%DATADIR%%/images/attacks/spear.png -%%DATADIR%%/images/attacks/staff-elven.png -%%DATADIR%%/images/attacks/staff-magic.png -%%DATADIR%%/images/attacks/staff-necromantic.png -%%DATADIR%%/images/attacks/staff-plague.png -%%DATADIR%%/images/attacks/sting.png -%%DATADIR%%/images/attacks/sword-elven.png -%%DATADIR%%/images/attacks/sword-flaming.png -%%DATADIR%%/images/attacks/sword-holy.png -%%DATADIR%%/images/attacks/sword-human.png -%%DATADIR%%/images/attacks/sword-orcish.png -%%DATADIR%%/images/attacks/tentacle.png -%%DATADIR%%/images/attacks/thorns.png -%%DATADIR%%/images/attacks/thunderstick.png -%%DATADIR%%/images/attacks/torch.png -%%DATADIR%%/images/attacks/touch-faerie.png -%%DATADIR%%/images/attacks/touch-undead.png -%%DATADIR%%/images/attacks/touch-zombie.png -%%DATADIR%%/images/attacks/trident.png -%%DATADIR%%/images/attacks/wail.png -%%DATADIR%%/images/attacks/waterspray.png -%%DATADIR%%/images/attacks/web.png -%%DATADIR%%/images/attacks/whip.png -%%DATADIR%%/images/attacks/woodensword.png +%%DATADIR%%/fonts/wqy-zenhei-gb2312.ttf +%%DATADIR%%/icons/Makefile +%%DATADIR%%/icons/Makefile.am +%%DATADIR%%/icons/Makefile.in +%%DATADIR%%/icons/map-editor-icon-Mac.png +%%DATADIR%%/icons/wesnoth-icon-Mac.png +%%DATADIR%%/icons/wesnoth-icon.png +%%DATADIR%%/icons/wesnoth.desktop +%%DATADIR%%/icons/wesnoth_editor-icon.png +%%DATADIR%%/icons/wesnoth_editor.desktop +%%DATADIR%%/images/README +%%DATADIR%%/images/buttons/WML-custom.png %%DATADIR%%/images/buttons/action-button-active.png %%DATADIR%%/images/buttons/action-button-pressed.png %%DATADIR%%/images/buttons/action-button.png @@ -2065,6 +7630,7 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/images/buttons/draw_button_editor-pressed.png %%DATADIR%%/images/buttons/draw_button_editor.png %%DATADIR%%/images/buttons/endturn-button-active.png +%%DATADIR%%/images/buttons/endturn-button-pressed.png %%DATADIR%%/images/buttons/endturn-button.png %%DATADIR%%/images/buttons/flip_map_button_editor-active.png %%DATADIR%%/images/buttons/flip_map_button_editor-pressed.png @@ -2072,6 +7638,50 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/images/buttons/flood_button_editor-active.png %%DATADIR%%/images/buttons/flood_button_editor-pressed.png %%DATADIR%%/images/buttons/flood_button_editor.png +%%DATADIR%%/images/buttons/group_all-active-pressed.png +%%DATADIR%%/images/buttons/group_all-active.png +%%DATADIR%%/images/buttons/group_all-pressed.png +%%DATADIR%%/images/buttons/group_all.png +%%DATADIR%%/images/buttons/group_bridge-active-pressed.png +%%DATADIR%%/images/buttons/group_bridge-active.png +%%DATADIR%%/images/buttons/group_bridge-pressed.png +%%DATADIR%%/images/buttons/group_bridge.png +%%DATADIR%%/images/buttons/group_castle-active-pressed.png +%%DATADIR%%/images/buttons/group_castle-active.png +%%DATADIR%%/images/buttons/group_castle-pressed.png +%%DATADIR%%/images/buttons/group_castle.png +%%DATADIR%%/images/buttons/group_cave-active-pressed.png +%%DATADIR%%/images/buttons/group_cave-active.png +%%DATADIR%%/images/buttons/group_cave-pressed.png +%%DATADIR%%/images/buttons/group_cave.png +%%DATADIR%%/images/buttons/group_desert-active-pressed.png +%%DATADIR%%/images/buttons/group_desert-active.png +%%DATADIR%%/images/buttons/group_desert-pressed.png +%%DATADIR%%/images/buttons/group_desert.png +%%DATADIR%%/images/buttons/group_flat-active-pressed.png +%%DATADIR%%/images/buttons/group_flat-active.png +%%DATADIR%%/images/buttons/group_flat-pressed.png +%%DATADIR%%/images/buttons/group_flat.png +%%DATADIR%%/images/buttons/group_forest-active-pressed.png +%%DATADIR%%/images/buttons/group_forest-active.png +%%DATADIR%%/images/buttons/group_forest-pressed.png +%%DATADIR%%/images/buttons/group_forest.png +%%DATADIR%%/images/buttons/group_frozen-active-pressed.png +%%DATADIR%%/images/buttons/group_frozen-active.png +%%DATADIR%%/images/buttons/group_frozen-pressed.png +%%DATADIR%%/images/buttons/group_frozen.png +%%DATADIR%%/images/buttons/group_rough-active-pressed.png +%%DATADIR%%/images/buttons/group_rough-active.png +%%DATADIR%%/images/buttons/group_rough-pressed.png +%%DATADIR%%/images/buttons/group_rough.png +%%DATADIR%%/images/buttons/group_village-active-pressed.png +%%DATADIR%%/images/buttons/group_village-active.png +%%DATADIR%%/images/buttons/group_village-pressed.png +%%DATADIR%%/images/buttons/group_village.png +%%DATADIR%%/images/buttons/group_water-active-pressed.png +%%DATADIR%%/images/buttons/group_water-active.png +%%DATADIR%%/images/buttons/group_water-pressed.png +%%DATADIR%%/images/buttons/group_water.png %%DATADIR%%/images/buttons/lite-active.png %%DATADIR%%/images/buttons/lite-pressed.png %%DATADIR%%/images/buttons/lite.png @@ -2135,17 +7745,72 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/images/buttons/zoom_out_button_editor-pressed.png %%DATADIR%%/images/buttons/zoom_out_button_editor.png %%DATADIR%%/images/cursors-bw/attack.png +%%DATADIR%%/images/cursors-bw/attack_drag.png +%%DATADIR%%/images/cursors-bw/attack_drag_alt.png %%DATADIR%%/images/cursors-bw/move.png +%%DATADIR%%/images/cursors-bw/move_drag.png +%%DATADIR%%/images/cursors-bw/move_drag_alt.png +%%DATADIR%%/images/cursors-bw/no_cursor.png %%DATADIR%%/images/cursors-bw/normal.png +%%DATADIR%%/images/cursors-bw/select-illegal.png +%%DATADIR%%/images/cursors-bw/select-location.png %%DATADIR%%/images/cursors-bw/select.png %%DATADIR%%/images/cursors-bw/wait-alt.png %%DATADIR%%/images/cursors-bw/wait.png %%DATADIR%%/images/cursors/attack.png +%%DATADIR%%/images/cursors/attack_drag.png %%DATADIR%%/images/cursors/move.png +%%DATADIR%%/images/cursors/move_drag.png %%DATADIR%%/images/cursors/normal.png +%%DATADIR%%/images/cursors/select-illegal.png +%%DATADIR%%/images/cursors/select-location.png %%DATADIR%%/images/cursors/select.png -%%DATADIR%%/images/cursors/wait-alt.png %%DATADIR%%/images/cursors/wait.png +%%DATADIR%%/images/dialogs/README +%%DATADIR%%/images/dialogs/menu2-background.png +%%DATADIR%%/images/dialogs/menu2-border-botleft.png +%%DATADIR%%/images/dialogs/menu2-border-botright.png +%%DATADIR%%/images/dialogs/menu2-border-bottom.png +%%DATADIR%%/images/dialogs/menu2-border-left.png +%%DATADIR%%/images/dialogs/menu2-border-right.png +%%DATADIR%%/images/dialogs/menu2-border-top.png +%%DATADIR%%/images/dialogs/menu2-border-topleft.png +%%DATADIR%%/images/dialogs/menu2-border-topright.png +%%DATADIR%%/images/dialogs/opaque-background.png +%%DATADIR%%/images/dialogs/opaque-border-botleft.png +%%DATADIR%%/images/dialogs/opaque-border-botright.png +%%DATADIR%%/images/dialogs/opaque-border-bottom.png +%%DATADIR%%/images/dialogs/opaque-border-left.png +%%DATADIR%%/images/dialogs/opaque-border-right.png +%%DATADIR%%/images/dialogs/opaque-border-top.png +%%DATADIR%%/images/dialogs/opaque-border-topleft.png +%%DATADIR%%/images/dialogs/opaque-border-topright.png +%%DATADIR%%/images/dialogs/translucent-background_50.png +%%DATADIR%%/images/dialogs/translucent-background_55.png +%%DATADIR%%/images/dialogs/translucent-background_60.png +%%DATADIR%%/images/dialogs/translucent-background_65.png +%%DATADIR%%/images/dialogs/translucent-background_70.png +%%DATADIR%%/images/dialogs/translucent-background_75.png +%%DATADIR%%/images/dialogs/translucent-background_80.png +%%DATADIR%%/images/dialogs/translucent-background_85.png +%%DATADIR%%/images/dialogs/translucent54-background.png +%%DATADIR%%/images/dialogs/translucent54-border-botleft.png +%%DATADIR%%/images/dialogs/translucent54-border-botright.png +%%DATADIR%%/images/dialogs/translucent54-border-bottom.png +%%DATADIR%%/images/dialogs/translucent54-border-left.png +%%DATADIR%%/images/dialogs/translucent54-border-right.png +%%DATADIR%%/images/dialogs/translucent54-border-top.png +%%DATADIR%%/images/dialogs/translucent54-border-topleft.png +%%DATADIR%%/images/dialogs/translucent54-border-topright.png +%%DATADIR%%/images/dialogs/translucent65-background.png +%%DATADIR%%/images/dialogs/translucent65-border-botleft.png +%%DATADIR%%/images/dialogs/translucent65-border-botright.png +%%DATADIR%%/images/dialogs/translucent65-border-bottom.png +%%DATADIR%%/images/dialogs/translucent65-border-left.png +%%DATADIR%%/images/dialogs/translucent65-border-right.png +%%DATADIR%%/images/dialogs/translucent65-border-top.png +%%DATADIR%%/images/dialogs/translucent65-border-topleft.png +%%DATADIR%%/images/dialogs/translucent65-border-topright.png %%DATADIR%%/images/editor/brush-1-active.png %%DATADIR%%/images/editor/brush-1-pressed.png %%DATADIR%%/images/editor/brush-1.png @@ -2155,118 +7820,36 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/images/editor/brush-3-active.png %%DATADIR%%/images/editor/brush-3-pressed.png %%DATADIR%%/images/editor/brush-3.png -%%DATADIR%%/images/halo/elder-mage-halo.png -%%DATADIR%%/images/halo/elder-mage-halo1.png -%%DATADIR%%/images/halo/elder-mage-halo2.png -%%DATADIR%%/images/halo/elder-mage-halo3.png -%%DATADIR%%/images/halo/elder-mage-halo4.png -%%DATADIR%%/images/halo/elder-mage-halo5.png -%%DATADIR%%/images/halo/elder-mage-halo6.png -%%DATADIR%%/images/halo/elven/druid-healing1.png -%%DATADIR%%/images/halo/elven/druid-healing2.png -%%DATADIR%%/images/halo/elven/druid-healing3.png -%%DATADIR%%/images/halo/elven/druid-healing4.png -%%DATADIR%%/images/halo/elven/druid-healing5.png -%%DATADIR%%/images/halo/elven/druid-healing6.png -%%DATADIR%%/images/halo/elven/druid-healing7.png -%%DATADIR%%/images/halo/elven/druid-healing8.png -%%DATADIR%%/images/halo/elven/elven-shield-halo-100pct.png -%%DATADIR%%/images/halo/elven/elven-shield-halo-20pct.png -%%DATADIR%%/images/halo/elven/elven-shield-halo-40pct.png -%%DATADIR%%/images/halo/elven/elven-shield-halo-60pct.png -%%DATADIR%%/images/halo/elven/elven-shield-halo-80pct.png -%%DATADIR%%/images/halo/elven/faerie-fire-halo1.png -%%DATADIR%%/images/halo/elven/faerie-fire-halo2.png -%%DATADIR%%/images/halo/elven/faerie-fire-halo3.png -%%DATADIR%%/images/halo/elven/faerie-fire-halo4.png -%%DATADIR%%/images/halo/elven/faerie-fire-halo5.png -%%DATADIR%%/images/halo/elven/faerie-fire-halo6.png -%%DATADIR%%/images/halo/elven/faerie-fire-halo7.png -%%DATADIR%%/images/halo/elven/ice-halo1.png -%%DATADIR%%/images/halo/elven/ice-halo2.png -%%DATADIR%%/images/halo/elven/ice-halo3.png -%%DATADIR%%/images/halo/elven/ice-halo4.png -%%DATADIR%%/images/halo/elven/ice-halo5.png -%%DATADIR%%/images/halo/elven/ice-halo6.png -%%DATADIR%%/images/halo/elven/ice-halo7.png -%%DATADIR%%/images/halo/elven/ice-halo8.png -%%DATADIR%%/images/halo/elven/ice-halo9.png -%%DATADIR%%/images/halo/elven/nature-halo1.png -%%DATADIR%%/images/halo/elven/nature-halo2.png -%%DATADIR%%/images/halo/elven/nature-halo3.png -%%DATADIR%%/images/halo/elven/nature-halo4.png -%%DATADIR%%/images/halo/elven/nature-halo5.png -%%DATADIR%%/images/halo/elven/nature-halo6.png -%%DATADIR%%/images/halo/elven/nature-halo7.png -%%DATADIR%%/images/halo/elven/nature-halo8.png -%%DATADIR%%/images/halo/elven/shyde-stationary-halo1.png -%%DATADIR%%/images/halo/elven/shyde-stationary-halo2.png -%%DATADIR%%/images/halo/elven/shyde-stationary-halo3.png -%%DATADIR%%/images/halo/elven/shyde-stationary-halo4.png -%%DATADIR%%/images/halo/elven/shyde-stationary-halo5.png -%%DATADIR%%/images/halo/elven/shyde-stationary-halo6.png -%%DATADIR%%/images/halo/holy/halo1.png -%%DATADIR%%/images/halo/holy/halo2.png -%%DATADIR%%/images/halo/holy/halo3.png -%%DATADIR%%/images/halo/holy/halo4.png -%%DATADIR%%/images/halo/holy/halo5.png -%%DATADIR%%/images/halo/holy/halo6.png -%%DATADIR%%/images/halo/holy/white-cleric-aura.png -%%DATADIR%%/images/halo/holy/white-mage-halo1.png -%%DATADIR%%/images/halo/holy/white-mage-halo2.png -%%DATADIR%%/images/halo/holy/white-mage-halo3.png -%%DATADIR%%/images/halo/holy/white-mage-halo4.png -%%DATADIR%%/images/halo/lighthouse-aura.png -%%DATADIR%%/images/halo/lightning-bolt-1-1.png -%%DATADIR%%/images/halo/lightning-bolt-1-2.png -%%DATADIR%%/images/halo/lightning-bolt-1-3.png -%%DATADIR%%/images/halo/lightning-bolt-1-4.png -%%DATADIR%%/images/halo/lightning-bolt-2-1.png -%%DATADIR%%/images/halo/lightning-bolt-2-2.png -%%DATADIR%%/images/halo/lightning-bolt-2-3.png -%%DATADIR%%/images/halo/lightning-bolt-2-4.png -%%DATADIR%%/images/halo/lightning-bolt-3-1.png -%%DATADIR%%/images/halo/lightning-bolt-3-2.png -%%DATADIR%%/images/halo/lightning-bolt-3-3.png -%%DATADIR%%/images/halo/lightning-bolt-3-4.png -%%DATADIR%%/images/halo/mage-halo1.png -%%DATADIR%%/images/halo/mage-halo2-big.png -%%DATADIR%%/images/halo/mage-halo2.png -%%DATADIR%%/images/halo/mage-halo3-big.png -%%DATADIR%%/images/halo/mage-halo3.png -%%DATADIR%%/images/halo/mage-halo4-big.png -%%DATADIR%%/images/halo/mage-halo4.png -%%DATADIR%%/images/halo/mage-halo5-big.png -%%DATADIR%%/images/halo/mage-halo5.png -%%DATADIR%%/images/halo/mage-halo6-big.png -%%DATADIR%%/images/halo/mage-preparation-halo1.png -%%DATADIR%%/images/halo/mage-preparation-halo2.png -%%DATADIR%%/images/halo/mage-preparation-halo3.png -%%DATADIR%%/images/halo/mage-preparation-halo4.png -%%DATADIR%%/images/halo/mage-preparation-halo5.png -%%DATADIR%%/images/halo/mage-preparation-halo6.png -%%DATADIR%%/images/halo/mage-preparation-halo7.png -%%DATADIR%%/images/halo/saurian-magic-halo.png -%%DATADIR%%/images/halo/siren-naia-touch-halo.png -%%DATADIR%%/images/halo/white-cleric-aura.png -%%DATADIR%%/images/halo/white-mage-halo1.png -%%DATADIR%%/images/halo/white-mage-halo2.png -%%DATADIR%%/images/halo/white-mage-halo3.png -%%DATADIR%%/images/halo/white-mage-halo4.png -%%DATADIR%%/images/help/closed_section.png -%%DATADIR%%/images/help/hp-bars.png -%%DATADIR%%/images/help/hpxp.png -%%DATADIR%%/images/help/moving1.png -%%DATADIR%%/images/help/moving2.png -%%DATADIR%%/images/help/open_section.png -%%DATADIR%%/images/help/orb-blue.png -%%DATADIR%%/images/help/orb-green.png -%%DATADIR%%/images/help/orb-none.png -%%DATADIR%%/images/help/orb-red.png -%%DATADIR%%/images/help/orb-yellow.png -%%DATADIR%%/images/help/recruit.png -%%DATADIR%%/images/help/tooltip.png -%%DATADIR%%/images/help/topic.png +%%DATADIR%%/images/flags/flag-1.png +%%DATADIR%%/images/flags/flag-2.png +%%DATADIR%%/images/flags/flag-3.png +%%DATADIR%%/images/flags/flag-4.png +%%DATADIR%%/images/flags/flag-icon.png +%%DATADIR%%/images/flags/undead-flag-icon.png +%%DATADIR%%/images/flags/undead-flag1.png +%%DATADIR%%/images/flags/undead-flag2.png +%%DATADIR%%/images/flags/undead-flag3.png +%%DATADIR%%/images/flags/undead-flag4.png +%%DATADIR%%/images/footsteps/foot-medium-in-n.png +%%DATADIR%%/images/footsteps/foot-medium-in-ne.png +%%DATADIR%%/images/footsteps/foot-medium-in-se.png +%%DATADIR%%/images/footsteps/foot-medium-out-n.png +%%DATADIR%%/images/footsteps/foot-medium-out-ne.png +%%DATADIR%%/images/footsteps/foot-medium-out-se.png +%%DATADIR%%/images/footsteps/foot-normal-in-n.png +%%DATADIR%%/images/footsteps/foot-normal-in-ne.png +%%DATADIR%%/images/footsteps/foot-normal-in-se.png +%%DATADIR%%/images/footsteps/foot-normal-out-n.png +%%DATADIR%%/images/footsteps/foot-normal-out-ne.png +%%DATADIR%%/images/footsteps/foot-normal-out-se.png +%%DATADIR%%/images/footsteps/foot-slow-in-n.png +%%DATADIR%%/images/footsteps/foot-slow-in-ne.png +%%DATADIR%%/images/footsteps/foot-slow-in-se.png +%%DATADIR%%/images/footsteps/foot-slow-out-n.png +%%DATADIR%%/images/footsteps/foot-slow-out-ne.png +%%DATADIR%%/images/footsteps/foot-slow-out-se.png +%%DATADIR%%/images/footsteps/teleport-in.png +%%DATADIR%%/images/footsteps/teleport-out.png %%DATADIR%%/images/icons/icon-advanced.png %%DATADIR%%/images/icons/icon-ai.png %%DATADIR%%/images/icons/icon-display.png @@ -2277,91 +7860,33 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/images/icons/icon-music.png %%DATADIR%%/images/icons/icon-server.png %%DATADIR%%/images/icons/icon-serverother.png -%%DATADIR%%/images/items/altar.png -%%DATADIR%%/images/items/ankh-necklace.png -%%DATADIR%%/images/items/armor.png -%%DATADIR%%/images/items/ball-blue.png -%%DATADIR%%/images/items/ball-green.png -%%DATADIR%%/images/items/ball.png -%%DATADIR%%/images/items/barrel.png -%%DATADIR%%/images/items/bones.png -%%DATADIR%%/images/items/book1.png -%%DATADIR%%/images/items/book2.png -%%DATADIR%%/images/items/book3.png -%%DATADIR%%/images/items/book4.png -%%DATADIR%%/images/items/book5.png -%%DATADIR%%/images/items/box.png -%%DATADIR%%/images/items/cage.png -%%DATADIR%%/images/items/castle-ruins.png -%%DATADIR%%/images/items/chest-plain-closed.png -%%DATADIR%%/images/items/chest-plain-open.png -%%DATADIR%%/images/items/chest.png -%%DATADIR%%/images/items/dragonstatue.png -%%DATADIR%%/images/items/dummy.png -%%DATADIR%%/images/items/fire.png -%%DATADIR%%/images/items/fire2.png -%%DATADIR%%/images/items/fire3.png -%%DATADIR%%/images/items/fire4.png -%%DATADIR%%/images/items/flame-sword.png -%%DATADIR%%/images/items/flower1.png -%%DATADIR%%/images/items/flower2.png -%%DATADIR%%/images/items/flower3.png -%%DATADIR%%/images/items/flower4.png -%%DATADIR%%/images/items/gohere.png -%%DATADIR%%/images/items/holy-water.png -%%DATADIR%%/images/items/leanto.png -%%DATADIR%%/images/items/lighthouse.png -%%DATADIR%%/images/items/monolith1.png -%%DATADIR%%/images/items/monolith2.png -%%DATADIR%%/images/items/monolith3.png -%%DATADIR%%/images/items/monolith4.png -%%DATADIR%%/images/items/orcish-flag.png -%%DATADIR%%/images/items/ornate1.png -%%DATADIR%%/images/items/ornate2.png -%%DATADIR%%/images/items/pine1.png -%%DATADIR%%/images/items/pine2.png -%%DATADIR%%/images/items/potion-blue.png -%%DATADIR%%/images/items/potion-grey.png -%%DATADIR%%/images/items/potion-red.png -%%DATADIR%%/images/items/potion-yellow.png -%%DATADIR%%/images/items/ring1.png -%%DATADIR%%/images/items/ring2.png -%%DATADIR%%/images/items/rock1.png -%%DATADIR%%/images/items/rock2.png -%%DATADIR%%/images/items/rock3.png -%%DATADIR%%/images/items/rock4.png -%%DATADIR%%/images/items/sceptre-of-fire.png -%%DATADIR%%/images/items/signpost.png -%%DATADIR%%/images/items/slab.png -%%DATADIR%%/images/items/staff.png -%%DATADIR%%/images/items/storm-trident.png -%%DATADIR%%/images/items/trapdoor.png -%%DATADIR%%/images/items/well.png -%%DATADIR%%/images/maps/northlands.jpg -%%DATADIR%%/images/maps/wesnoth-httt.jpg -%%DATADIR%%/images/maps/wesnoth.png +%%DATADIR%%/images/misc/attack-indicator-dst-n.png +%%DATADIR%%/images/misc/attack-indicator-dst-ne.png +%%DATADIR%%/images/misc/attack-indicator-dst-nw.png +%%DATADIR%%/images/misc/attack-indicator-dst-s.png +%%DATADIR%%/images/misc/attack-indicator-dst-se.png +%%DATADIR%%/images/misc/attack-indicator-dst-sw.png +%%DATADIR%%/images/misc/attack-indicator-src-n.png +%%DATADIR%%/images/misc/attack-indicator-src-ne.png +%%DATADIR%%/images/misc/attack-indicator-src-nw.png +%%DATADIR%%/images/misc/attack-indicator-src-s.png +%%DATADIR%%/images/misc/attack-indicator-src-se.png +%%DATADIR%%/images/misc/attack-indicator-src-sw.png %%DATADIR%%/images/misc/ball-ally.png %%DATADIR%%/images/misc/ball-enemy.png %%DATADIR%%/images/misc/ball-moved.png %%DATADIR%%/images/misc/ball-partmoved.png %%DATADIR%%/images/misc/ball-unmoved.png -%%DATADIR%%/images/misc/bar-energy-ally.png -%%DATADIR%%/images/misc/bar-energy-enemy.png -%%DATADIR%%/images/misc/bar-energy-moved.png -%%DATADIR%%/images/misc/bar-energy-partmoved.png -%%DATADIR%%/images/misc/bar-energy-unmoved.png +%%DATADIR%%/images/misc/bar-energy-tinygui.png %%DATADIR%%/images/misc/bar-energy.png -%%DATADIR%%/images/misc/blank-hex.png %%DATADIR%%/images/misc/blank.png %%DATADIR%%/images/misc/botleft-corner.png %%DATADIR%%/images/misc/botright-corner.png +%%DATADIR%%/images/misc/capture.png %%DATADIR%%/images/misc/character-box.png %%DATADIR%%/images/misc/compass-north.png %%DATADIR%%/images/misc/compass-south.png -%%DATADIR%%/images/misc/cross.png %%DATADIR%%/images/misc/disk.png -%%DATADIR%%/images/misc/dot.png -%%DATADIR%%/images/misc/dwarven-doors.png %%DATADIR%%/images/misc/ellipse-1.png %%DATADIR%%/images/misc/ellipse-bottom.png %%DATADIR%%/images/misc/ellipse-hero-bottom.png @@ -2379,76 +7904,21 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/images/misc/ellipse-selected-bottom.png %%DATADIR%%/images/misc/ellipse-selected-top.png %%DATADIR%%/images/misc/ellipse-top.png -%%DATADIR%%/images/misc/experimental-rightside.png %%DATADIR%%/images/misc/eye.png %%DATADIR%%/images/misc/folder-icon.png %%DATADIR%%/images/misc/font8x8.png -%%DATADIR%%/images/misc/foot-left-n-slow.png -%%DATADIR%%/images/misc/foot-left-n.png -%%DATADIR%%/images/misc/foot-left-nw-slow.png -%%DATADIR%%/images/misc/foot-left-nw.png -%%DATADIR%%/images/misc/foot-right-n-slow.png -%%DATADIR%%/images/misc/foot-right-n.png -%%DATADIR%%/images/misc/foot-right-nw-slow.png -%%DATADIR%%/images/misc/foot-right-nw.png -%%DATADIR%%/images/misc/gold.png -%%DATADIR%%/images/misc/hero-icon.png +%%DATADIR%%/images/misc/hidden.png %%DATADIR%%/images/misc/icon-advance.png -%%DATADIR%%/images/misc/icon-amla-fullheal.png -%%DATADIR%%/images/misc/icon-amla-tough-3.png -%%DATADIR%%/images/misc/icon-amla-tough.png %%DATADIR%%/images/misc/icon-ellipsis.png -%%DATADIR%%/images/misc/income.png %%DATADIR%%/images/misc/invisible.png %%DATADIR%%/images/misc/leader-crown.png +%%DATADIR%%/images/misc/leader-expendable.png %%DATADIR%%/images/misc/lobby.png +%%DATADIR%%/images/misc/lobby_tiny.png %%DATADIR%%/images/misc/logo.png -%%DATADIR%%/images/misc/mainmenu-background.png -%%DATADIR%%/images/misc/mainmenu-border-botleft.png -%%DATADIR%%/images/misc/mainmenu-border-botright.png -%%DATADIR%%/images/misc/mainmenu-border-bottom.png -%%DATADIR%%/images/misc/mainmenu-border-left.png -%%DATADIR%%/images/misc/mainmenu-border-right.png -%%DATADIR%%/images/misc/mainmenu-border-top.png -%%DATADIR%%/images/misc/mainmenu-border-topleft.png -%%DATADIR%%/images/misc/mainmenu-border-topright.png -%%DATADIR%%/images/misc/menu-background.png -%%DATADIR%%/images/misc/menu-border-botleft.png -%%DATADIR%%/images/misc/menu-border-botright.png -%%DATADIR%%/images/misc/menu-border-bottom.png -%%DATADIR%%/images/misc/menu-border-left.png -%%DATADIR%%/images/misc/menu-border-right.png -%%DATADIR%%/images/misc/menu-border-top.png -%%DATADIR%%/images/misc/menu-border-topleft.png -%%DATADIR%%/images/misc/menu-border-topright.png -%%DATADIR%%/images/misc/menu2-background.png -%%DATADIR%%/images/misc/menu2-border-botleft.png -%%DATADIR%%/images/misc/menu2-border-botright.png -%%DATADIR%%/images/misc/menu2-border-bottom.png -%%DATADIR%%/images/misc/menu2-border-left.png -%%DATADIR%%/images/misc/menu2-border-right.png -%%DATADIR%%/images/misc/menu2-border-top.png -%%DATADIR%%/images/misc/menu2-border-topleft.png -%%DATADIR%%/images/misc/menu2-border-topright.png -%%DATADIR%%/images/misc/mine.png -%%DATADIR%%/images/misc/minimap.png -%%DATADIR%%/images/misc/nest-empty.png -%%DATADIR%%/images/misc/nest-full.png +%%DATADIR%%/images/misc/no_observer.png %%DATADIR%%/images/misc/poisoned.png -%%DATADIR%%/images/misc/rightside-bg.png -%%DATADIR%%/images/misc/rightside-bottom.png -%%DATADIR%%/images/misc/rightside-editor.png -%%DATADIR%%/images/misc/rightside.png -%%DATADIR%%/images/misc/rocks.png -%%DATADIR%%/images/misc/sand-clock.png -%%DATADIR%%/images/misc/schedule-afternoon.png -%%DATADIR%%/images/misc/schedule-dawn.png -%%DATADIR%%/images/misc/schedule-dusk.png -%%DATADIR%%/images/misc/schedule-firstwatch.png -%%DATADIR%%/images/misc/schedule-morning.png -%%DATADIR%%/images/misc/schedule-secondwatch.png -%%DATADIR%%/images/misc/schedule-underground-illum.png -%%DATADIR%%/images/misc/schedule-underground.png +%%DATADIR%%/images/misc/selection-background.png %%DATADIR%%/images/misc/selection-border-botleft.png %%DATADIR%%/images/misc/selection-border-botright.png %%DATADIR%%/images/misc/selection-border-bottom.png @@ -2467,1345 +7937,17 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/images/misc/selection2-border-topleft.png %%DATADIR%%/images/misc/selection2-border-topright.png %%DATADIR%%/images/misc/slowed.png -%%DATADIR%%/images/misc/snowbits.png %%DATADIR%%/images/misc/sort-arrow-reverse.png %%DATADIR%%/images/misc/sort-arrow.png -%%DATADIR%%/images/misc/status-bg.png +%%DATADIR%%/images/misc/status-friend.png +%%DATADIR%%/images/misc/status-ignore.png +%%DATADIR%%/images/misc/status-neutral.png +%%DATADIR%%/images/misc/status-self.png %%DATADIR%%/images/misc/stone.png -%%DATADIR%%/images/misc/temple.png -%%DATADIR%%/images/misc/timeofday.png %%DATADIR%%/images/misc/tod-bright.png -%%DATADIR%%/images/misc/top-bg.png %%DATADIR%%/images/misc/topleft-corner.png %%DATADIR%%/images/misc/topright-corner.png -%%DATADIR%%/images/misc/trash.png -%%DATADIR%%/images/misc/unit.png -%%DATADIR%%/images/misc/units.png -%%DATADIR%%/images/misc/upkeep.png -%%DATADIR%%/images/misc/villages.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/drake-burner.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/drake-clasher.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/drake-fighter.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/drake-glider.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/elvish-shaman.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/ghoul.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/mermaid-initiate.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/merman-fighter.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/merman-hunter.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/naga-fighter.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/nagini-fighter.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/orcish-assassin.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/saurian-augur.png -%%DATADIR%%/images/portraits/Alex_Jarocha-Ernst/saurian-skirmisher.png -%%DATADIR%%/images/portraits/James_Woo/assassin.png -%%DATADIR%%/images/portraits/James_Woo/dwarf-guard.png -%%DATADIR%%/images/portraits/James_Woo/orc-warlord.png -%%DATADIR%%/images/portraits/James_Woo/orc-warlord2.png -%%DATADIR%%/images/portraits/James_Woo/orc-warlord3.png -%%DATADIR%%/images/portraits/James_Woo/orc-warlord4.png -%%DATADIR%%/images/portraits/James_Woo/orc-warlord5.png -%%DATADIR%%/images/portraits/James_Woo/troll.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-bandit.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-grand-knight.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-halberdier.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-highwayman.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-horseman.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-javelineer.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-knight.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-lancer.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-paladin.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-peasant.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-pikeman.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-royalguard.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-spearman.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-swordsman.png -%%DATADIR%%/images/portraits/Jason_Lutes/human-thug.png -%%DATADIR%%/images/portraits/Neoriceisgood/dwarvish_berzerker.png -%%DATADIR%%/images/portraits/Neoriceisgood/orcish_grunt.png -%%DATADIR%%/images/portraits/Neoriceisgood/orcish_leader.png -%%DATADIR%%/images/portraits/Neoriceisgood/orcish_shaman_old.png -%%DATADIR%%/images/portraits/Nicholas_Kerpan/human-poacher.png -%%DATADIR%%/images/portraits/Nicholas_Kerpan/human-thief.png -%%DATADIR%%/images/portraits/Other/scorpion.png -%%DATADIR%%/images/portraits/Other/silver_mage.png -%%DATADIR%%/images/portraits/Pekka_Aikio/human-bowman.png -%%DATADIR%%/images/portraits/Pekka_Aikio/human-longbowman.png -%%DATADIR%%/images/portraits/Tristan_Millner/dwarven-fighter.png -%%DATADIR%%/images/projectiles/bone-n.png -%%DATADIR%%/images/projectiles/bone-ne.png -%%DATADIR%%/images/projectiles/bullet.png -%%DATADIR%%/images/projectiles/chakram.png -%%DATADIR%%/images/projectiles/dagger-n.png -%%DATADIR%%/images/projectiles/dagger-ne.png -%%DATADIR%%/images/projectiles/darkmissile-n.png -%%DATADIR%%/images/projectiles/darkmissile-ne.png -%%DATADIR%%/images/projectiles/entangle.png -%%DATADIR%%/images/projectiles/fire-breath-n-1.png -%%DATADIR%%/images/projectiles/fire-breath-n-2.png -%%DATADIR%%/images/projectiles/fire-breath-n-3.png -%%DATADIR%%/images/projectiles/fire-breath-n-4.png -%%DATADIR%%/images/projectiles/fire-breath-n-5.png -%%DATADIR%%/images/projectiles/fire-breath-ne-1.png -%%DATADIR%%/images/projectiles/fire-breath-ne-2.png -%%DATADIR%%/images/projectiles/fire-breath-ne-3.png -%%DATADIR%%/images/projectiles/fire-breath-ne-4.png -%%DATADIR%%/images/projectiles/fire-breath-ne-5.png -%%DATADIR%%/images/projectiles/fire-breath-s-1.png -%%DATADIR%%/images/projectiles/fire-breath-s-2.png -%%DATADIR%%/images/projectiles/fire-breath-s-3.png -%%DATADIR%%/images/projectiles/fire-breath-s-4.png -%%DATADIR%%/images/projectiles/fire-breath-s-5.png -%%DATADIR%%/images/projectiles/fire-breath-se-1.png -%%DATADIR%%/images/projectiles/fire-breath-se-2.png -%%DATADIR%%/images/projectiles/fire-breath-se-3.png -%%DATADIR%%/images/projectiles/fire-breath-se-4.png -%%DATADIR%%/images/projectiles/fire-breath-se-5.png -%%DATADIR%%/images/projectiles/fireball-n-2.png -%%DATADIR%%/images/projectiles/fireball-n.png -%%DATADIR%%/images/projectiles/fireball-nw-2.png -%%DATADIR%%/images/projectiles/fireball-nw.png -%%DATADIR%%/images/projectiles/gaze.png -%%DATADIR%%/images/projectiles/hatchet-n.png -%%DATADIR%%/images/projectiles/hatchet-ne.png -%%DATADIR%%/images/projectiles/icemissile-n-1.png -%%DATADIR%%/images/projectiles/icemissile-n-2.png -%%DATADIR%%/images/projectiles/icemissile-n-3.png -%%DATADIR%%/images/projectiles/icemissile-n-4.png -%%DATADIR%%/images/projectiles/icemissile-n-5.png -%%DATADIR%%/images/projectiles/icemissile-n-6.png -%%DATADIR%%/images/projectiles/icemissile-n-7.png -%%DATADIR%%/images/projectiles/icemissile-n.png -%%DATADIR%%/images/projectiles/icemissile-ne-1.png -%%DATADIR%%/images/projectiles/icemissile-ne-2.png -%%DATADIR%%/images/projectiles/icemissile-ne-3.png -%%DATADIR%%/images/projectiles/icemissile-ne-4.png -%%DATADIR%%/images/projectiles/icemissile-ne-5.png -%%DATADIR%%/images/projectiles/icemissile-ne-6.png -%%DATADIR%%/images/projectiles/icemissile-ne-7.png -%%DATADIR%%/images/projectiles/icemissile-ne.png -%%DATADIR%%/images/projectiles/ink.png -%%DATADIR%%/images/projectiles/lightning-bolt.png -%%DATADIR%%/images/projectiles/lightning-n.png -%%DATADIR%%/images/projectiles/lightning-ne.png -%%DATADIR%%/images/projectiles/magicmissile-n.png -%%DATADIR%%/images/projectiles/magicmissile-ne.png -%%DATADIR%%/images/projectiles/missile-fire-n.png -%%DATADIR%%/images/projectiles/missile-fire-ne.png -%%DATADIR%%/images/projectiles/missile-n.png -%%DATADIR%%/images/projectiles/missile-ne.png -%%DATADIR%%/images/projectiles/missile.png -%%DATADIR%%/images/projectiles/mud-glob.png -%%DATADIR%%/images/projectiles/pitchfork-n.png -%%DATADIR%%/images/projectiles/pitchfork-ne.png -%%DATADIR%%/images/projectiles/spear-n.png -%%DATADIR%%/images/projectiles/spear-ne.png -%%DATADIR%%/images/projectiles/stone.png -%%DATADIR%%/images/projectiles/thorns-ne.png -%%DATADIR%%/images/projectiles/thorns.png -%%DATADIR%%/images/projectiles/wailprojectile-n-1.png -%%DATADIR%%/images/projectiles/wailprojectile-n-2.png -%%DATADIR%%/images/projectiles/wailprojectile-n-3.png -%%DATADIR%%/images/projectiles/wailprojectile-n-4.png -%%DATADIR%%/images/projectiles/wailprojectile-n-5.png -%%DATADIR%%/images/projectiles/wailprojectile-n-6.png -%%DATADIR%%/images/projectiles/wailprojectile-ne-1.png -%%DATADIR%%/images/projectiles/wailprojectile-ne-2.png -%%DATADIR%%/images/projectiles/wailprojectile-ne-3.png -%%DATADIR%%/images/projectiles/wailprojectile-ne-4.png -%%DATADIR%%/images/projectiles/wailprojectile-ne-5.png -%%DATADIR%%/images/projectiles/wailprojectile-ne-6.png -%%DATADIR%%/images/projectiles/wailprojectile-s-1.png -%%DATADIR%%/images/projectiles/wailprojectile-s-2.png -%%DATADIR%%/images/projectiles/wailprojectile-s-3.png -%%DATADIR%%/images/projectiles/wailprojectile-s-4.png -%%DATADIR%%/images/projectiles/wailprojectile-s-5.png -%%DATADIR%%/images/projectiles/wailprojectile-s-6.png -%%DATADIR%%/images/projectiles/wailprojectile-se-1.png -%%DATADIR%%/images/projectiles/wailprojectile-se-2.png -%%DATADIR%%/images/projectiles/wailprojectile-se-3.png -%%DATADIR%%/images/projectiles/wailprojectile-se-4.png -%%DATADIR%%/images/projectiles/wailprojectile-se-5.png -%%DATADIR%%/images/projectiles/wailprojectile-se-6.png -%%DATADIR%%/images/projectiles/water-spray.png -%%DATADIR%%/images/projectiles/web.png -%%DATADIR%%/images/projectiles/whitemissile-n.png -%%DATADIR%%/images/projectiles/whitemissile-ne.png -%%DATADIR%%/images/terrain/alpha.png -%%DATADIR%%/images/terrain/alphamask.png -%%DATADIR%%/images/terrain/bridge-joint-n-se-sw.png -%%DATADIR%%/images/terrain/bridge-joint-n-se.png -%%DATADIR%%/images/terrain/bridge-joint-n-sw.png -%%DATADIR%%/images/terrain/bridge-joint-ne-nw.png -%%DATADIR%%/images/terrain/bridge-joint-ne-s-nw.png -%%DATADIR%%/images/terrain/bridge-joint-ne-s.png -%%DATADIR%%/images/terrain/bridge-joint-s-nw.png -%%DATADIR%%/images/terrain/bridge-joint-se-sw.png -%%DATADIR%%/images/terrain/bridge-n-end.png -%%DATADIR%%/images/terrain/bridge-n-s-tile.png -%%DATADIR%%/images/terrain/bridge-n-s.png -%%DATADIR%%/images/terrain/bridge-n.png -%%DATADIR%%/images/terrain/bridge-ne-end.png -%%DATADIR%%/images/terrain/bridge-ne-sw-tile.png -%%DATADIR%%/images/terrain/bridge-ne-sw.png -%%DATADIR%%/images/terrain/bridge-ne.png -%%DATADIR%%/images/terrain/bridge-nw-end.png -%%DATADIR%%/images/terrain/bridge-nw.png -%%DATADIR%%/images/terrain/bridge-s-end.png -%%DATADIR%%/images/terrain/bridge-s.png -%%DATADIR%%/images/terrain/bridge-se-end.png -%%DATADIR%%/images/terrain/bridge-se-nw-tile.png -%%DATADIR%%/images/terrain/bridge-se-nw.png -%%DATADIR%%/images/terrain/bridge-se.png -%%DATADIR%%/images/terrain/bridge-sw-end.png -%%DATADIR%%/images/terrain/bridge-sw.png -%%DATADIR%%/images/terrain/castle-concave-e.png -%%DATADIR%%/images/terrain/castle-concave-ne.png -%%DATADIR%%/images/terrain/castle-concave-nw.png -%%DATADIR%%/images/terrain/castle-concave-se.png -%%DATADIR%%/images/terrain/castle-concave-sw.png -%%DATADIR%%/images/terrain/castle-concave-w.png -%%DATADIR%%/images/terrain/castle-convex-e.png -%%DATADIR%%/images/terrain/castle-convex-ne.png -%%DATADIR%%/images/terrain/castle-convex-nw.png -%%DATADIR%%/images/terrain/castle-convex-se.png -%%DATADIR%%/images/terrain/castle-convex-sw.png -%%DATADIR%%/images/terrain/castle-convex-w.png -%%DATADIR%%/images/terrain/castle-ruin-tile.png -%%DATADIR%%/images/terrain/castle-sunken-ruin-tile.png -%%DATADIR%%/images/terrain/castle-swamp-ruin-tile.png -%%DATADIR%%/images/terrain/castle-tile.png -%%DATADIR%%/images/terrain/castle-to-ice-n.png -%%DATADIR%%/images/terrain/castle-to-ice-ne.png -%%DATADIR%%/images/terrain/castle-to-ice-nw.png -%%DATADIR%%/images/terrain/castle-to-water-n.png -%%DATADIR%%/images/terrain/castle-to-water-ne.png -%%DATADIR%%/images/terrain/castle-to-water-nw.png -%%DATADIR%%/images/terrain/castle-walls.tmpl -%%DATADIR%%/images/terrain/castle.png -%%DATADIR%%/images/terrain/cave-beam-tile.png -%%DATADIR%%/images/terrain/cave-beam1.png -%%DATADIR%%/images/terrain/cave-beam2.png -%%DATADIR%%/images/terrain/cave-beam3.png -%%DATADIR%%/images/terrain/cave-floor-n-ne-se-s.png -%%DATADIR%%/images/terrain/cave-floor-n-ne-se.png -%%DATADIR%%/images/terrain/cave-floor-n-ne.png -%%DATADIR%%/images/terrain/cave-floor-n.png -%%DATADIR%%/images/terrain/cave-floor-ne-se-s.png -%%DATADIR%%/images/terrain/cave-floor-ne-se.png -%%DATADIR%%/images/terrain/cave-floor-ne.png -%%DATADIR%%/images/terrain/cave-floor-nw-n-ne.png -%%DATADIR%%/images/terrain/cave-floor-nw-n.png -%%DATADIR%%/images/terrain/cave-floor-nw.png -%%DATADIR%%/images/terrain/cave-floor-s-sw-nw-n.png -%%DATADIR%%/images/terrain/cave-floor-s-sw-nw.png -%%DATADIR%%/images/terrain/cave-floor-s-sw.png -%%DATADIR%%/images/terrain/cave-floor-s.png -%%DATADIR%%/images/terrain/cave-floor-se-s-sw.png -%%DATADIR%%/images/terrain/cave-floor-se-s.png -%%DATADIR%%/images/terrain/cave-floor-se.png -%%DATADIR%%/images/terrain/cave-floor-sw-nw-n.png -%%DATADIR%%/images/terrain/cave-floor-sw-nw.png -%%DATADIR%%/images/terrain/cave-floor-sw.png -%%DATADIR%%/images/terrain/cave-floor.png -%%DATADIR%%/images/terrain/cave-floor1.png -%%DATADIR%%/images/terrain/cave-floor2.png -%%DATADIR%%/images/terrain/cave-floor3.png -%%DATADIR%%/images/terrain/cave-floor4.png -%%DATADIR%%/images/terrain/cave-hills-n.png -%%DATADIR%%/images/terrain/cave-hills-ne.png -%%DATADIR%%/images/terrain/cave-hills-nw.png -%%DATADIR%%/images/terrain/cave-hills-s.png -%%DATADIR%%/images/terrain/cave-hills-se.png -%%DATADIR%%/images/terrain/cave-hills-sw.png -%%DATADIR%%/images/terrain/cave-hills-variation1.png -%%DATADIR%%/images/terrain/cave-hills-variation2.png -%%DATADIR%%/images/terrain/cave-hills-variation3.png -%%DATADIR%%/images/terrain/cavewall-concave-e.png -%%DATADIR%%/images/terrain/cavewall-concave-ne.png -%%DATADIR%%/images/terrain/cavewall-concave-nw.png -%%DATADIR%%/images/terrain/cavewall-concave-se.png -%%DATADIR%%/images/terrain/cavewall-concave-sw.png -%%DATADIR%%/images/terrain/cavewall-concave-w.png -%%DATADIR%%/images/terrain/cavewall-convex-e.png -%%DATADIR%%/images/terrain/cavewall-convex-ne.png -%%DATADIR%%/images/terrain/cavewall-convex-nw.png -%%DATADIR%%/images/terrain/cavewall-convex-se.png -%%DATADIR%%/images/terrain/cavewall-convex-sw.png -%%DATADIR%%/images/terrain/cavewall-convex-w.png -%%DATADIR%%/images/terrain/cavewall.png -%%DATADIR%%/images/terrain/chasm-concave-e.png -%%DATADIR%%/images/terrain/chasm-concave-ne.png -%%DATADIR%%/images/terrain/chasm-concave-nw.png -%%DATADIR%%/images/terrain/chasm-concave-se.png -%%DATADIR%%/images/terrain/chasm-concave-sw.png -%%DATADIR%%/images/terrain/chasm-concave-w.png -%%DATADIR%%/images/terrain/chasm-convex-e.png -%%DATADIR%%/images/terrain/chasm-convex-ne.png -%%DATADIR%%/images/terrain/chasm-convex-nw.png -%%DATADIR%%/images/terrain/chasm-convex-se.png -%%DATADIR%%/images/terrain/chasm-convex-sw.png -%%DATADIR%%/images/terrain/chasm-convex-w.png -%%DATADIR%%/images/terrain/chasm-dcastle-ccw-e.png -%%DATADIR%%/images/terrain/chasm-dcastle-ccw-ne.png -%%DATADIR%%/images/terrain/chasm-dcastle-ccw-nw.png -%%DATADIR%%/images/terrain/chasm-dcastle-ccw-se.png -%%DATADIR%%/images/terrain/chasm-dcastle-ccw-sw.png -%%DATADIR%%/images/terrain/chasm-dcastle-ccw-w.png -%%DATADIR%%/images/terrain/chasm-dcastle-concave-e.png -%%DATADIR%%/images/terrain/chasm-dcastle-concave-ne.png -%%DATADIR%%/images/terrain/chasm-dcastle-concave-nw.png -%%DATADIR%%/images/terrain/chasm-dcastle-concave-se.png -%%DATADIR%%/images/terrain/chasm-dcastle-concave-sw.png -%%DATADIR%%/images/terrain/chasm-dcastle-concave-w.png -%%DATADIR%%/images/terrain/chasm-dcastle-convex-e.png -%%DATADIR%%/images/terrain/chasm-dcastle-convex-ne.png -%%DATADIR%%/images/terrain/chasm-dcastle-convex-nw.png -%%DATADIR%%/images/terrain/chasm-dcastle-convex-se.png -%%DATADIR%%/images/terrain/chasm-dcastle-convex-sw.png -%%DATADIR%%/images/terrain/chasm-dcastle-convex-w.png -%%DATADIR%%/images/terrain/chasm-dcastle-cw-e.png -%%DATADIR%%/images/terrain/chasm-dcastle-cw-ne.png -%%DATADIR%%/images/terrain/chasm-dcastle-cw-nw.png -%%DATADIR%%/images/terrain/chasm-dcastle-cw-se.png -%%DATADIR%%/images/terrain/chasm-dcastle-cw-sw.png -%%DATADIR%%/images/terrain/chasm-dcastle-cw-w.png -%%DATADIR%%/images/terrain/chasm-tile.png -%%DATADIR%%/images/terrain/chasm.png -%%DATADIR%%/images/terrain/cloud-tile.png -%%DATADIR%%/images/terrain/cloud1_1.png -%%DATADIR%%/images/terrain/cloud1_2.png -%%DATADIR%%/images/terrain/cloud1_3.png -%%DATADIR%%/images/terrain/cloud2_2.png -%%DATADIR%%/images/terrain/cloud3_2.png -%%DATADIR%%/images/terrain/coast-n.png -%%DATADIR%%/images/terrain/coast-ne.png -%%DATADIR%%/images/terrain/coast-nw.png -%%DATADIR%%/images/terrain/coast-s.png -%%DATADIR%%/images/terrain/coast-se.png -%%DATADIR%%/images/terrain/coast-sw.png -%%DATADIR%%/images/terrain/coast.png -%%DATADIR%%/images/terrain/coast2.png -%%DATADIR%%/images/terrain/coast3.png -%%DATADIR%%/images/terrain/dawn.png -%%DATADIR%%/images/terrain/desert-hills-n-ne.png -%%DATADIR%%/images/terrain/desert-hills-n.png -%%DATADIR%%/images/terrain/desert-hills-ne.png -%%DATADIR%%/images/terrain/desert-hills-nw.png -%%DATADIR%%/images/terrain/desert-hills-s-sw.png -%%DATADIR%%/images/terrain/desert-hills-s.png -%%DATADIR%%/images/terrain/desert-hills-se.png -%%DATADIR%%/images/terrain/desert-hills-sw.png -%%DATADIR%%/images/terrain/desert-hills.png -%%DATADIR%%/images/terrain/desert-hills2.png -%%DATADIR%%/images/terrain/desert-hills3.png -%%DATADIR%%/images/terrain/desert-mountain-peak1.png -%%DATADIR%%/images/terrain/desert-mountain-peak2.png -%%DATADIR%%/images/terrain/desert-mountain-peak3.png -%%DATADIR%%/images/terrain/desert-mountains-n.png -%%DATADIR%%/images/terrain/desert-mountains-ne.png -%%DATADIR%%/images/terrain/desert-mountains-nw.png -%%DATADIR%%/images/terrain/desert-mountains-s.png -%%DATADIR%%/images/terrain/desert-mountains-se.png -%%DATADIR%%/images/terrain/desert-mountains-sw.png -%%DATADIR%%/images/terrain/desert-mountains.png -%%DATADIR%%/images/terrain/desert-n-ne-se.png -%%DATADIR%%/images/terrain/desert-n-ne.png -%%DATADIR%%/images/terrain/desert-n.png -%%DATADIR%%/images/terrain/desert-ne-se-s.png -%%DATADIR%%/images/terrain/desert-ne-se.png -%%DATADIR%%/images/terrain/desert-ne.png -%%DATADIR%%/images/terrain/desert-nw-n-ne.png -%%DATADIR%%/images/terrain/desert-nw-n.png -%%DATADIR%%/images/terrain/desert-nw.png -%%DATADIR%%/images/terrain/desert-oasis.png -%%DATADIR%%/images/terrain/desert-plant.png -%%DATADIR%%/images/terrain/desert-plant2.png -%%DATADIR%%/images/terrain/desert-plant3.png -%%DATADIR%%/images/terrain/desert-road-n-ne-se.png -%%DATADIR%%/images/terrain/desert-road-n-ne.png -%%DATADIR%%/images/terrain/desert-road-n.png -%%DATADIR%%/images/terrain/desert-road-ne-se-s.png -%%DATADIR%%/images/terrain/desert-road-ne-se.png -%%DATADIR%%/images/terrain/desert-road-ne.png -%%DATADIR%%/images/terrain/desert-road-nw-n-ne.png -%%DATADIR%%/images/terrain/desert-road-nw-n.png -%%DATADIR%%/images/terrain/desert-road-nw.png -%%DATADIR%%/images/terrain/desert-road-s-sw-nw.png -%%DATADIR%%/images/terrain/desert-road-s-sw.png -%%DATADIR%%/images/terrain/desert-road-s.png -%%DATADIR%%/images/terrain/desert-road-se-s-sw.png -%%DATADIR%%/images/terrain/desert-road-se-s.png -%%DATADIR%%/images/terrain/desert-road-se.png -%%DATADIR%%/images/terrain/desert-road-sw-nw-n.png -%%DATADIR%%/images/terrain/desert-road-sw-nw.png -%%DATADIR%%/images/terrain/desert-road-sw.png -%%DATADIR%%/images/terrain/desert-road.png -%%DATADIR%%/images/terrain/desert-s-sw-nw.png -%%DATADIR%%/images/terrain/desert-s-sw.png -%%DATADIR%%/images/terrain/desert-s.png -%%DATADIR%%/images/terrain/desert-se-s-sw.png -%%DATADIR%%/images/terrain/desert-se-s.png -%%DATADIR%%/images/terrain/desert-se.png -%%DATADIR%%/images/terrain/desert-sw-nw-n.png -%%DATADIR%%/images/terrain/desert-sw-nw.png -%%DATADIR%%/images/terrain/desert-sw.png -%%DATADIR%%/images/terrain/desert.png -%%DATADIR%%/images/terrain/desert2.png -%%DATADIR%%/images/terrain/desert3.png -%%DATADIR%%/images/terrain/desert4.png -%%DATADIR%%/images/terrain/desert5.png -%%DATADIR%%/images/terrain/desert6.png -%%DATADIR%%/images/terrain/desert7.png -%%DATADIR%%/images/terrain/dirt-n-ne-se-s.png -%%DATADIR%%/images/terrain/dirt-n-ne-se.png -%%DATADIR%%/images/terrain/dirt-n-ne.png -%%DATADIR%%/images/terrain/dirt-n.png -%%DATADIR%%/images/terrain/dirt-ne-se-s.png -%%DATADIR%%/images/terrain/dirt-ne-se.png -%%DATADIR%%/images/terrain/dirt-ne.png -%%DATADIR%%/images/terrain/dirt-nw-n-ne.png -%%DATADIR%%/images/terrain/dirt-nw-n.png -%%DATADIR%%/images/terrain/dirt-nw.png -%%DATADIR%%/images/terrain/dirt-s-sw-nw-n.png -%%DATADIR%%/images/terrain/dirt-s-sw-nw.png -%%DATADIR%%/images/terrain/dirt-s-sw.png -%%DATADIR%%/images/terrain/dirt-s.png -%%DATADIR%%/images/terrain/dirt-se-s-sw.png -%%DATADIR%%/images/terrain/dirt-se-s.png -%%DATADIR%%/images/terrain/dirt-se.png -%%DATADIR%%/images/terrain/dirt-sw-nw-n.png -%%DATADIR%%/images/terrain/dirt-sw-nw.png -%%DATADIR%%/images/terrain/dirt-sw.png -%%DATADIR%%/images/terrain/dirt.png -%%DATADIR%%/images/terrain/dwarven-castle-concave-e.png -%%DATADIR%%/images/terrain/dwarven-castle-concave-ne.png -%%DATADIR%%/images/terrain/dwarven-castle-concave-nw.png -%%DATADIR%%/images/terrain/dwarven-castle-concave-se.png -%%DATADIR%%/images/terrain/dwarven-castle-concave-sw.png -%%DATADIR%%/images/terrain/dwarven-castle-concave-w.png -%%DATADIR%%/images/terrain/dwarven-castle-convex-e.png -%%DATADIR%%/images/terrain/dwarven-castle-convex-ne.png -%%DATADIR%%/images/terrain/dwarven-castle-convex-nw.png -%%DATADIR%%/images/terrain/dwarven-castle-convex-se.png -%%DATADIR%%/images/terrain/dwarven-castle-convex-sw.png -%%DATADIR%%/images/terrain/dwarven-castle-convex-w.png -%%DATADIR%%/images/terrain/dwarven-castle-floor.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-e.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-ne.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-nw.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-se.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-sw.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-ccw-w.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-e.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-ne.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-nw.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-se.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-sw.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-concave-w.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-e.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-ne.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-nw.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-se.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-sw.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-convex-w.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-e.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-ne.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-nw.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-se.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-sw.png -%%DATADIR%%/images/terrain/dwarven-castle-wall-cw-w.png -%%DATADIR%%/images/terrain/dwarven-keep-floor.png -%%DATADIR%%/images/terrain/dwarven-keep.png -%%DATADIR%%/images/terrain/dwarven_castle-tile.png -%%DATADIR%%/images/terrain/encampment-concave-e.png -%%DATADIR%%/images/terrain/encampment-concave-ne.png -%%DATADIR%%/images/terrain/encampment-concave-nw.png -%%DATADIR%%/images/terrain/encampment-concave-se.png -%%DATADIR%%/images/terrain/encampment-concave-sw.png -%%DATADIR%%/images/terrain/encampment-concave-w.png -%%DATADIR%%/images/terrain/encampment-convex-e.png -%%DATADIR%%/images/terrain/encampment-convex-ne.png -%%DATADIR%%/images/terrain/encampment-convex-nw.png -%%DATADIR%%/images/terrain/encampment-convex-se.png -%%DATADIR%%/images/terrain/encampment-convex-sw.png -%%DATADIR%%/images/terrain/encampment-convex-w.png -%%DATADIR%%/images/terrain/encampment-tile.png -%%DATADIR%%/images/terrain/flag-1.png -%%DATADIR%%/images/terrain/flag-2.png -%%DATADIR%%/images/terrain/flag-3.png -%%DATADIR%%/images/terrain/flag-4.png -%%DATADIR%%/images/terrain/flag-sotbe-1.png -%%DATADIR%%/images/terrain/flag-sotbe-2.png -%%DATADIR%%/images/terrain/flag-sotbe-3.png -%%DATADIR%%/images/terrain/fog-n-ne-se-s.png -%%DATADIR%%/images/terrain/fog-n-ne-se.png -%%DATADIR%%/images/terrain/fog-n-ne.png -%%DATADIR%%/images/terrain/fog-n.png -%%DATADIR%%/images/terrain/fog-ne-se-s.png -%%DATADIR%%/images/terrain/fog-ne-se.png -%%DATADIR%%/images/terrain/fog-ne.png -%%DATADIR%%/images/terrain/fog-nw-n-ne.png -%%DATADIR%%/images/terrain/fog-nw-n.png -%%DATADIR%%/images/terrain/fog-nw.png -%%DATADIR%%/images/terrain/fog-s-sw-nw-n.png -%%DATADIR%%/images/terrain/fog-s-sw-nw.png -%%DATADIR%%/images/terrain/fog-s-sw.png -%%DATADIR%%/images/terrain/fog-s.png -%%DATADIR%%/images/terrain/fog-se-s-sw.png -%%DATADIR%%/images/terrain/fog-se-s.png -%%DATADIR%%/images/terrain/fog-se.png -%%DATADIR%%/images/terrain/fog-sw-nw-n.png -%%DATADIR%%/images/terrain/fog-sw-nw.png -%%DATADIR%%/images/terrain/fog-sw.png -%%DATADIR%%/images/terrain/fog.png -%%DATADIR%%/images/terrain/ford-n.png -%%DATADIR%%/images/terrain/ford-ne.png -%%DATADIR%%/images/terrain/ford-nw.png -%%DATADIR%%/images/terrain/ford-s.png -%%DATADIR%%/images/terrain/ford-se.png -%%DATADIR%%/images/terrain/ford-sw.png -%%DATADIR%%/images/terrain/ford.png -%%DATADIR%%/images/terrain/ford2.png -%%DATADIR%%/images/terrain/forest-castle-n.png -%%DATADIR%%/images/terrain/forest-castle-ne.png -%%DATADIR%%/images/terrain/forest-castle-nw.png -%%DATADIR%%/images/terrain/forest-castle-s.png -%%DATADIR%%/images/terrain/forest-castle-se.png -%%DATADIR%%/images/terrain/forest-castle-sw.png -%%DATADIR%%/images/terrain/forest-castle.png -%%DATADIR%%/images/terrain/forest-tile.png -%%DATADIR%%/images/terrain/forest.png -%%DATADIR%%/images/terrain/forest2.png -%%DATADIR%%/images/terrain/forest2_small.png -%%DATADIR%%/images/terrain/forest3.png -%%DATADIR%%/images/terrain/forest4.png -%%DATADIR%%/images/terrain/forest_small.png -%%DATADIR%%/images/terrain/grassland-flowers1.png -%%DATADIR%%/images/terrain/grassland-flowers2.png -%%DATADIR%%/images/terrain/grassland-n-ne-se.png -%%DATADIR%%/images/terrain/grassland-n-ne.png -%%DATADIR%%/images/terrain/grassland-n.png -%%DATADIR%%/images/terrain/grassland-ne-se-s.png -%%DATADIR%%/images/terrain/grassland-ne-se.png -%%DATADIR%%/images/terrain/grassland-ne.png -%%DATADIR%%/images/terrain/grassland-nw-n-ne.png -%%DATADIR%%/images/terrain/grassland-nw-n.png -%%DATADIR%%/images/terrain/grassland-nw.png -%%DATADIR%%/images/terrain/grassland-r1.png -%%DATADIR%%/images/terrain/grassland-r2.png -%%DATADIR%%/images/terrain/grassland-r3.png -%%DATADIR%%/images/terrain/grassland-r4.png -%%DATADIR%%/images/terrain/grassland-r5.png -%%DATADIR%%/images/terrain/grassland-r6.png -%%DATADIR%%/images/terrain/grassland-r7.png -%%DATADIR%%/images/terrain/grassland-r8.png -%%DATADIR%%/images/terrain/grassland-rocks1.png -%%DATADIR%%/images/terrain/grassland-rocks2.png -%%DATADIR%%/images/terrain/grassland-s-sw-nw.png -%%DATADIR%%/images/terrain/grassland-s-sw.png -%%DATADIR%%/images/terrain/grassland-s.png -%%DATADIR%%/images/terrain/grassland-se-s-sw.png -%%DATADIR%%/images/terrain/grassland-se-s.png -%%DATADIR%%/images/terrain/grassland-se.png -%%DATADIR%%/images/terrain/grassland-sw-nw-n.png -%%DATADIR%%/images/terrain/grassland-sw-nw.png -%%DATADIR%%/images/terrain/grassland-sw.png -%%DATADIR%%/images/terrain/grassland-to-water-n-ne-se-s.png -%%DATADIR%%/images/terrain/grassland-to-water-n-ne-se.png -%%DATADIR%%/images/terrain/grassland-to-water-n-ne.png -%%DATADIR%%/images/terrain/grassland-to-water-n.png -%%DATADIR%%/images/terrain/grassland-to-water-ne-se-s-sw.png -%%DATADIR%%/images/terrain/grassland-to-water-ne-se-s.png -%%DATADIR%%/images/terrain/grassland-to-water-ne-se.png -%%DATADIR%%/images/terrain/grassland-to-water-ne.png -%%DATADIR%%/images/terrain/grassland-to-water-nw-n-ne-se.png -%%DATADIR%%/images/terrain/grassland-to-water-nw-n-ne.png -%%DATADIR%%/images/terrain/grassland-to-water-nw-n.png -%%DATADIR%%/images/terrain/grassland-to-water-nw.png -%%DATADIR%%/images/terrain/grassland-to-water-s-sw-nw-n.png -%%DATADIR%%/images/terrain/grassland-to-water-s-sw-nw.png -%%DATADIR%%/images/terrain/grassland-to-water-s-sw.png -%%DATADIR%%/images/terrain/grassland-to-water-s.png -%%DATADIR%%/images/terrain/grassland-to-water-se-s-sw-nw.png -%%DATADIR%%/images/terrain/grassland-to-water-se-s-sw.png -%%DATADIR%%/images/terrain/grassland-to-water-se-s.png -%%DATADIR%%/images/terrain/grassland-to-water-se.png -%%DATADIR%%/images/terrain/grassland-to-water-sw-nw-n-ne.png -%%DATADIR%%/images/terrain/grassland-to-water-sw-nw-n.png -%%DATADIR%%/images/terrain/grassland-to-water-sw-nw.png -%%DATADIR%%/images/terrain/grassland-to-water-sw.png -%%DATADIR%%/images/terrain/great-tree-tile.png -%%DATADIR%%/images/terrain/great-tree1.png -%%DATADIR%%/images/terrain/great-tree2.png -%%DATADIR%%/images/terrain/great-tree3.png -%%DATADIR%%/images/terrain/grid.png -%%DATADIR%%/images/terrain/hills-n-ne.png -%%DATADIR%%/images/terrain/hills-n.png -%%DATADIR%%/images/terrain/hills-ne.png -%%DATADIR%%/images/terrain/hills-nw.png -%%DATADIR%%/images/terrain/hills-s-sw.png -%%DATADIR%%/images/terrain/hills-s.png -%%DATADIR%%/images/terrain/hills-se.png -%%DATADIR%%/images/terrain/hills-sw.png -%%DATADIR%%/images/terrain/hills-variation1.png -%%DATADIR%%/images/terrain/hills-variation2.png -%%DATADIR%%/images/terrain/hills-variation3.png -%%DATADIR%%/images/terrain/ice-n-ne-se-s.png -%%DATADIR%%/images/terrain/ice-n-ne.png -%%DATADIR%%/images/terrain/ice-n.png -%%DATADIR%%/images/terrain/ice-ne-se.png -%%DATADIR%%/images/terrain/ice-ne.png -%%DATADIR%%/images/terrain/ice-nw-n-ne.png -%%DATADIR%%/images/terrain/ice-nw-n.png -%%DATADIR%%/images/terrain/ice-nw.png -%%DATADIR%%/images/terrain/ice-s-sw-nw-n.png -%%DATADIR%%/images/terrain/ice-s-sw.png -%%DATADIR%%/images/terrain/ice-s.png -%%DATADIR%%/images/terrain/ice-se-s-sw.png -%%DATADIR%%/images/terrain/ice-se-s.png -%%DATADIR%%/images/terrain/ice-se.png -%%DATADIR%%/images/terrain/ice-sw-nw.png -%%DATADIR%%/images/terrain/ice-sw.png -%%DATADIR%%/images/terrain/ice-to-water-n-ne-se-s.png -%%DATADIR%%/images/terrain/ice-to-water-n-ne.png -%%DATADIR%%/images/terrain/ice-to-water-n.png -%%DATADIR%%/images/terrain/ice-to-water-ne-se.png -%%DATADIR%%/images/terrain/ice-to-water-ne.png -%%DATADIR%%/images/terrain/ice-to-water-nw-n-ne.png -%%DATADIR%%/images/terrain/ice-to-water-nw-n.png -%%DATADIR%%/images/terrain/ice-to-water-nw.png -%%DATADIR%%/images/terrain/ice-to-water-s-sw-nw-n.png -%%DATADIR%%/images/terrain/ice-to-water-s-sw.png -%%DATADIR%%/images/terrain/ice-to-water-s.png -%%DATADIR%%/images/terrain/ice-to-water-se-s-sw.png -%%DATADIR%%/images/terrain/ice-to-water-se-s.png -%%DATADIR%%/images/terrain/ice-to-water-se.png -%%DATADIR%%/images/terrain/ice-to-water-sw-nw.png -%%DATADIR%%/images/terrain/ice-to-water-sw.png -%%DATADIR%%/images/terrain/ice.png -%%DATADIR%%/images/terrain/ice2.png -%%DATADIR%%/images/terrain/ice3.png -%%DATADIR%%/images/terrain/ice4.png -%%DATADIR%%/images/terrain/ice5.png -%%DATADIR%%/images/terrain/ice6.png -%%DATADIR%%/images/terrain/keep-inside-e.png -%%DATADIR%%/images/terrain/keep-inside-ne.png -%%DATADIR%%/images/terrain/keep-inside-nw.png -%%DATADIR%%/images/terrain/keep-inside-se.png -%%DATADIR%%/images/terrain/keep-inside-sw.png -%%DATADIR%%/images/terrain/keep-inside-w.png -%%DATADIR%%/images/terrain/keep-keep-e.png -%%DATADIR%%/images/terrain/keep-keep-ne.png -%%DATADIR%%/images/terrain/keep-keep-nw.png -%%DATADIR%%/images/terrain/keep-keep-se.png -%%DATADIR%%/images/terrain/keep-keep-sw.png -%%DATADIR%%/images/terrain/keep-keep-w.png -%%DATADIR%%/images/terrain/keep-tile.png -%%DATADIR%%/images/terrain/keep-wall-0-e.png -%%DATADIR%%/images/terrain/keep-wall-0-ne.png -%%DATADIR%%/images/terrain/keep-wall-0-nw.png -%%DATADIR%%/images/terrain/keep-wall-0-se.png -%%DATADIR%%/images/terrain/keep-wall-0-sw.png -%%DATADIR%%/images/terrain/keep-wall-0-w.png -%%DATADIR%%/images/terrain/keep-wall-1-e.png -%%DATADIR%%/images/terrain/keep-wall-1-ne.png -%%DATADIR%%/images/terrain/keep-wall-1-nw.png -%%DATADIR%%/images/terrain/keep-wall-1-se.png -%%DATADIR%%/images/terrain/keep-wall-1-sw.png -%%DATADIR%%/images/terrain/keep-wall-1-w.png -%%DATADIR%%/images/terrain/keep-wall-e.png -%%DATADIR%%/images/terrain/keep-wall-ne.png -%%DATADIR%%/images/terrain/keep-wall-nw.png -%%DATADIR%%/images/terrain/keep-wall-se.png -%%DATADIR%%/images/terrain/keep-wall-sw.png -%%DATADIR%%/images/terrain/keep-wall-w.png -%%DATADIR%%/images/terrain/keep.png -%%DATADIR%%/images/terrain/lava-chasm-ccw-e.png -%%DATADIR%%/images/terrain/lava-chasm-ccw-ne.png -%%DATADIR%%/images/terrain/lava-chasm-ccw-nw.png -%%DATADIR%%/images/terrain/lava-chasm-ccw-se.png -%%DATADIR%%/images/terrain/lava-chasm-ccw-sw.png -%%DATADIR%%/images/terrain/lava-chasm-ccw-w.png -%%DATADIR%%/images/terrain/lava-chasm-concave-e.png -%%DATADIR%%/images/terrain/lava-chasm-concave-ne.png -%%DATADIR%%/images/terrain/lava-chasm-concave-nw.png -%%DATADIR%%/images/terrain/lava-chasm-concave-se.png -%%DATADIR%%/images/terrain/lava-chasm-concave-sw.png -%%DATADIR%%/images/terrain/lava-chasm-concave-w.png -%%DATADIR%%/images/terrain/lava-chasm-convex-e.png -%%DATADIR%%/images/terrain/lava-chasm-convex-ne.png -%%DATADIR%%/images/terrain/lava-chasm-convex-nw.png -%%DATADIR%%/images/terrain/lava-chasm-convex-se.png -%%DATADIR%%/images/terrain/lava-chasm-convex-sw.png -%%DATADIR%%/images/terrain/lava-chasm-convex-w.png -%%DATADIR%%/images/terrain/lava-chasm-cw-e.png -%%DATADIR%%/images/terrain/lava-chasm-cw-ne.png -%%DATADIR%%/images/terrain/lava-chasm-cw-nw.png -%%DATADIR%%/images/terrain/lava-chasm-cw-se.png -%%DATADIR%%/images/terrain/lava-chasm-cw-sw.png -%%DATADIR%%/images/terrain/lava-chasm-cw-w.png -%%DATADIR%%/images/terrain/lava-concave-e.png -%%DATADIR%%/images/terrain/lava-concave-ne.png -%%DATADIR%%/images/terrain/lava-concave-nw.png -%%DATADIR%%/images/terrain/lava-concave-se.png -%%DATADIR%%/images/terrain/lava-concave-sw.png -%%DATADIR%%/images/terrain/lava-concave-w.png -%%DATADIR%%/images/terrain/lava-convex-e.png -%%DATADIR%%/images/terrain/lava-convex-ne.png -%%DATADIR%%/images/terrain/lava-convex-nw.png -%%DATADIR%%/images/terrain/lava-convex-se.png -%%DATADIR%%/images/terrain/lava-convex-sw.png -%%DATADIR%%/images/terrain/lava-convex-w.png -%%DATADIR%%/images/terrain/lava-dcastle-ccw-e.png -%%DATADIR%%/images/terrain/lava-dcastle-ccw-ne.png -%%DATADIR%%/images/terrain/lava-dcastle-ccw-nw.png -%%DATADIR%%/images/terrain/lava-dcastle-ccw-se.png -%%DATADIR%%/images/terrain/lava-dcastle-ccw-sw.png -%%DATADIR%%/images/terrain/lava-dcastle-ccw-w.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-e.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-ne.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-nw.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-se.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-sw.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-ccw-w.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-e.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-ne.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-nw.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-se.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-sw.png -%%DATADIR%%/images/terrain/lava-dcastle-chasm-cw-w.png -%%DATADIR%%/images/terrain/lava-dcastle-concave-e.png -%%DATADIR%%/images/terrain/lava-dcastle-concave-ne.png -%%DATADIR%%/images/terrain/lava-dcastle-concave-nw.png -%%DATADIR%%/images/terrain/lava-dcastle-concave-se.png -%%DATADIR%%/images/terrain/lava-dcastle-concave-sw.png -%%DATADIR%%/images/terrain/lava-dcastle-concave-w.png -%%DATADIR%%/images/terrain/lava-dcastle-convex-e.png -%%DATADIR%%/images/terrain/lava-dcastle-convex-ne.png -%%DATADIR%%/images/terrain/lava-dcastle-convex-nw.png -%%DATADIR%%/images/terrain/lava-dcastle-convex-se.png -%%DATADIR%%/images/terrain/lava-dcastle-convex-sw.png -%%DATADIR%%/images/terrain/lava-dcastle-convex-w.png -%%DATADIR%%/images/terrain/lava-dcastle-cw-e.png -%%DATADIR%%/images/terrain/lava-dcastle-cw-ne.png -%%DATADIR%%/images/terrain/lava-dcastle-cw-nw.png -%%DATADIR%%/images/terrain/lava-dcastle-cw-se.png -%%DATADIR%%/images/terrain/lava-dcastle-cw-sw.png -%%DATADIR%%/images/terrain/lava-dcastle-cw-w.png -%%DATADIR%%/images/terrain/lava-n-ne-nw-s.png -%%DATADIR%%/images/terrain/lava-n-ne-nw.png -%%DATADIR%%/images/terrain/lava-n-ne.png -%%DATADIR%%/images/terrain/lava-n.png -%%DATADIR%%/images/terrain/lava-ne-nw-s.png -%%DATADIR%%/images/terrain/lava-ne-se.png -%%DATADIR%%/images/terrain/lava-ne.png -%%DATADIR%%/images/terrain/lava-nw-n.png -%%DATADIR%%/images/terrain/lava-nw.png -%%DATADIR%%/images/terrain/lava-s-nw-ne-n.png -%%DATADIR%%/images/terrain/lava-s-sw-nw.png -%%DATADIR%%/images/terrain/lava-s-sw.png -%%DATADIR%%/images/terrain/lava-s.png -%%DATADIR%%/images/terrain/lava-se-s.png -%%DATADIR%%/images/terrain/lava-se.png -%%DATADIR%%/images/terrain/lava-sw-nw-n.png -%%DATADIR%%/images/terrain/lava-sw-nw.png -%%DATADIR%%/images/terrain/lava-sw.png -%%DATADIR%%/images/terrain/lava.png -%%DATADIR%%/images/terrain/lava2.png -%%DATADIR%%/images/terrain/lava3.png -%%DATADIR%%/images/terrain/mask.png -%%DATADIR%%/images/terrain/mountain-tile.png -%%DATADIR%%/images/terrain/mountain5_1.png -%%DATADIR%%/images/terrain/mountain5_2.png -%%DATADIR%%/images/terrain/mountain5_3.png -%%DATADIR%%/images/terrain/mountain6_1.png -%%DATADIR%%/images/terrain/mountain6_2.png -%%DATADIR%%/images/terrain/mountain6_3.png -%%DATADIR%%/images/terrain/mountain_range1_1.png -%%DATADIR%%/images/terrain/mountain_range1_2.png -%%DATADIR%%/images/terrain/mountain_range1_3.png -%%DATADIR%%/images/terrain/mountain_range2_1.png -%%DATADIR%%/images/terrain/mountain_range2_2.png -%%DATADIR%%/images/terrain/mountain_range2_3.png -%%DATADIR%%/images/terrain/mountain_range3_1.png -%%DATADIR%%/images/terrain/mountain_range3_2.png -%%DATADIR%%/images/terrain/mountain_range3_3.png -%%DATADIR%%/images/terrain/mountain_range3_4.png -%%DATADIR%%/images/terrain/mountain_range3_5.png -%%DATADIR%%/images/terrain/mountain_range4_1.png -%%DATADIR%%/images/terrain/mountain_range4_2.png -%%DATADIR%%/images/terrain/mountain_range4_3.png -%%DATADIR%%/images/terrain/mountain_range4_4.png -%%DATADIR%%/images/terrain/mountain_range4_5.png -%%DATADIR%%/images/terrain/mountains-castle-n-ne.png -%%DATADIR%%/images/terrain/mountains-castle-n.png -%%DATADIR%%/images/terrain/mountains-castle-ne.png -%%DATADIR%%/images/terrain/mountains-castle-nw-n.png -%%DATADIR%%/images/terrain/mountains-castle-nw.png -%%DATADIR%%/images/terrain/mountains-castle-s.png -%%DATADIR%%/images/terrain/mountains-castle-se.png -%%DATADIR%%/images/terrain/mountains-castle-sw-nw.png -%%DATADIR%%/images/terrain/mountains-castle-sw.png -%%DATADIR%%/images/terrain/mountains-n-ne.png -%%DATADIR%%/images/terrain/mountains-n.png -%%DATADIR%%/images/terrain/mountains-ne.png -%%DATADIR%%/images/terrain/mountains-nw-n.png -%%DATADIR%%/images/terrain/mountains-nw.png -%%DATADIR%%/images/terrain/mountains-small-n-ne.png -%%DATADIR%%/images/terrain/mountains-small-n.png -%%DATADIR%%/images/terrain/mountains-small-ne.png -%%DATADIR%%/images/terrain/mountains-small-nw-n.png -%%DATADIR%%/images/terrain/mountains-small-nw.png -%%DATADIR%%/images/terrain/mountains.png -%%DATADIR%%/images/terrain/mountains2.png -%%DATADIR%%/images/terrain/mountains3.png -%%DATADIR%%/images/terrain/mushrooms-castle-n.png -%%DATADIR%%/images/terrain/mushrooms-castle-ne.png -%%DATADIR%%/images/terrain/mushrooms-castle-nw.png -%%DATADIR%%/images/terrain/mushrooms-castle-s.png -%%DATADIR%%/images/terrain/mushrooms-castle-se.png -%%DATADIR%%/images/terrain/mushrooms-castle-sw.png -%%DATADIR%%/images/terrain/mushrooms-castle.png -%%DATADIR%%/images/terrain/mushrooms-tile.png -%%DATADIR%%/images/terrain/mushrooms.png -%%DATADIR%%/images/terrain/mushrooms2.png -%%DATADIR%%/images/terrain/mushrooms3.png -%%DATADIR%%/images/terrain/mushrooms4.png -%%DATADIR%%/images/terrain/mushrooms5.png -%%DATADIR%%/images/terrain/ocean-n.png -%%DATADIR%%/images/terrain/ocean-ne.png -%%DATADIR%%/images/terrain/ocean-nw.png -%%DATADIR%%/images/terrain/ocean-s.png -%%DATADIR%%/images/terrain/ocean-se.png -%%DATADIR%%/images/terrain/ocean-sw.png -%%DATADIR%%/images/terrain/ocean.png -%%DATADIR%%/images/terrain/ocean2.png -%%DATADIR%%/images/terrain/ocean3.png -%%DATADIR%%/images/terrain/out.png -%%DATADIR%%/images/terrain/reed-castle-n.png -%%DATADIR%%/images/terrain/reed-castle-ne.png -%%DATADIR%%/images/terrain/reed-castle-nw.png -%%DATADIR%%/images/terrain/reed-castle-s.png -%%DATADIR%%/images/terrain/reed-castle-se.png -%%DATADIR%%/images/terrain/reed-castle-sw.png -%%DATADIR%%/images/terrain/reed1-small.png -%%DATADIR%%/images/terrain/reed1.png -%%DATADIR%%/images/terrain/reed2-small.png -%%DATADIR%%/images/terrain/reed2.png -%%DATADIR%%/images/terrain/reed3-small.png -%%DATADIR%%/images/terrain/reed3.png -%%DATADIR%%/images/terrain/reed4-small.png -%%DATADIR%%/images/terrain/reed4.png -%%DATADIR%%/images/terrain/reed5.png -%%DATADIR%%/images/terrain/reed6.png -%%DATADIR%%/images/terrain/road-n-ne.png -%%DATADIR%%/images/terrain/road-n.png -%%DATADIR%%/images/terrain/road-ne-se.png -%%DATADIR%%/images/terrain/road-ne.png -%%DATADIR%%/images/terrain/road-nw-n.png -%%DATADIR%%/images/terrain/road-nw.png -%%DATADIR%%/images/terrain/road-s-sw.png -%%DATADIR%%/images/terrain/road-s.png -%%DATADIR%%/images/terrain/road-se-s.png -%%DATADIR%%/images/terrain/road-se.png -%%DATADIR%%/images/terrain/road-sw-nw.png -%%DATADIR%%/images/terrain/road-sw.png -%%DATADIR%%/images/terrain/road.png -%%DATADIR%%/images/terrain/road2.png -%%DATADIR%%/images/terrain/road3.png -%%DATADIR%%/images/terrain/ruin1-concave-e.png -%%DATADIR%%/images/terrain/ruin1-concave-ne.png -%%DATADIR%%/images/terrain/ruin1-concave-nw.png -%%DATADIR%%/images/terrain/ruin1-concave-se.png -%%DATADIR%%/images/terrain/ruin1-concave-sw.png -%%DATADIR%%/images/terrain/ruin1-concave-w.png -%%DATADIR%%/images/terrain/ruin1-convex-e.png -%%DATADIR%%/images/terrain/ruin1-convex-ne.png -%%DATADIR%%/images/terrain/ruin1-convex-nw.png -%%DATADIR%%/images/terrain/ruin1-convex-se.png -%%DATADIR%%/images/terrain/ruin1-convex-sw.png -%%DATADIR%%/images/terrain/ruin1-convex-w.png -%%DATADIR%%/images/terrain/ruin2-concave-e.png -%%DATADIR%%/images/terrain/ruin2-concave-ne.png -%%DATADIR%%/images/terrain/ruin2-concave-nw.png -%%DATADIR%%/images/terrain/ruin2-concave-se.png -%%DATADIR%%/images/terrain/ruin2-concave-sw.png -%%DATADIR%%/images/terrain/ruin2-concave-w.png -%%DATADIR%%/images/terrain/ruin2-convex-e.png -%%DATADIR%%/images/terrain/ruin2-convex-ne.png -%%DATADIR%%/images/terrain/ruin2-convex-nw.png -%%DATADIR%%/images/terrain/ruin2-convex-se.png -%%DATADIR%%/images/terrain/ruin2-convex-sw.png -%%DATADIR%%/images/terrain/ruin2-convex-w.png -%%DATADIR%%/images/terrain/ruin3-concave-e.png -%%DATADIR%%/images/terrain/ruin3-concave-ne.png -%%DATADIR%%/images/terrain/ruin3-concave-nw.png -%%DATADIR%%/images/terrain/ruin3-concave-se.png -%%DATADIR%%/images/terrain/ruin3-concave-sw.png -%%DATADIR%%/images/terrain/ruin3-concave-w.png -%%DATADIR%%/images/terrain/ruin3-convex-e.png -%%DATADIR%%/images/terrain/ruin3-convex-ne.png -%%DATADIR%%/images/terrain/ruin3-convex-nw.png -%%DATADIR%%/images/terrain/ruin3-convex-se.png -%%DATADIR%%/images/terrain/ruin3-convex-sw.png -%%DATADIR%%/images/terrain/ruin3-convex-w.png -%%DATADIR%%/images/terrain/ruin4-concave-e.png -%%DATADIR%%/images/terrain/ruin4-concave-ne.png -%%DATADIR%%/images/terrain/ruin4-concave-nw.png -%%DATADIR%%/images/terrain/ruin4-concave-se.png -%%DATADIR%%/images/terrain/ruin4-concave-sw.png -%%DATADIR%%/images/terrain/ruin4-concave-w.png -%%DATADIR%%/images/terrain/ruin4-convex-e.png -%%DATADIR%%/images/terrain/ruin4-convex-ne.png -%%DATADIR%%/images/terrain/ruin4-convex-nw.png -%%DATADIR%%/images/terrain/ruin4-convex-se.png -%%DATADIR%%/images/terrain/ruin4-convex-sw.png -%%DATADIR%%/images/terrain/ruin4-convex-w.png -%%DATADIR%%/images/terrain/ruin5-concave-e.png -%%DATADIR%%/images/terrain/ruin5-concave-ne.png -%%DATADIR%%/images/terrain/ruin5-concave-nw.png -%%DATADIR%%/images/terrain/ruin5-concave-se.png -%%DATADIR%%/images/terrain/ruin5-concave-sw.png -%%DATADIR%%/images/terrain/ruin5-concave-w.png -%%DATADIR%%/images/terrain/ruin5-convex-e.png -%%DATADIR%%/images/terrain/ruin5-convex-ne.png -%%DATADIR%%/images/terrain/ruin5-convex-nw.png -%%DATADIR%%/images/terrain/ruin5-convex-se.png -%%DATADIR%%/images/terrain/ruin5-convex-sw.png -%%DATADIR%%/images/terrain/ruin5-convex-w.png -%%DATADIR%%/images/terrain/ruinkeep.png -%%DATADIR%%/images/terrain/ruinkeep1-inside-e.png -%%DATADIR%%/images/terrain/ruinkeep1-inside-ne.png -%%DATADIR%%/images/terrain/ruinkeep1-inside-nw.png -%%DATADIR%%/images/terrain/ruinkeep1-inside-se.png -%%DATADIR%%/images/terrain/ruinkeep1-inside-sw.png -%%DATADIR%%/images/terrain/ruinkeep1-inside-w.png -%%DATADIR%%/images/terrain/ruinkeep1-keep-e.png -%%DATADIR%%/images/terrain/ruinkeep1-keep-ne.png -%%DATADIR%%/images/terrain/ruinkeep1-keep-nw.png -%%DATADIR%%/images/terrain/ruinkeep1-keep-se.png -%%DATADIR%%/images/terrain/ruinkeep1-keep-sw.png -%%DATADIR%%/images/terrain/ruinkeep1-keep-w.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-0-e.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-0-ne.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-0-nw.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-0-se.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-0-sw.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-0-w.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-1-e.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-1-ne.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-1-nw.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-1-se.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-1-sw.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-1-w.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-e.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-ne.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-nw.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-se.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-sw.png -%%DATADIR%%/images/terrain/ruinkeep1-wall-w.png -%%DATADIR%%/images/terrain/sand-n-ne-se.png -%%DATADIR%%/images/terrain/sand-n-ne.png -%%DATADIR%%/images/terrain/sand-n.png -%%DATADIR%%/images/terrain/sand-ne-se-s.png -%%DATADIR%%/images/terrain/sand-ne-se.png -%%DATADIR%%/images/terrain/sand-ne.png -%%DATADIR%%/images/terrain/sand-nw-n-ne.png -%%DATADIR%%/images/terrain/sand-nw-n.png -%%DATADIR%%/images/terrain/sand-nw.png -%%DATADIR%%/images/terrain/sand-rock1.png -%%DATADIR%%/images/terrain/sand-rock2.png -%%DATADIR%%/images/terrain/sand-rock3.png -%%DATADIR%%/images/terrain/sand-s-sw-nw.png -%%DATADIR%%/images/terrain/sand-s-sw.png -%%DATADIR%%/images/terrain/sand-s.png -%%DATADIR%%/images/terrain/sand-se-s-sw.png -%%DATADIR%%/images/terrain/sand-se-s.png -%%DATADIR%%/images/terrain/sand-se.png -%%DATADIR%%/images/terrain/sand-sw-nw-n.png -%%DATADIR%%/images/terrain/sand-sw-nw.png -%%DATADIR%%/images/terrain/sand-sw.png -%%DATADIR%%/images/terrain/sand.png -%%DATADIR%%/images/terrain/savanna-n-ne-se.png -%%DATADIR%%/images/terrain/savanna-n-ne.png -%%DATADIR%%/images/terrain/savanna-n.png -%%DATADIR%%/images/terrain/savanna-ne-se-s.png -%%DATADIR%%/images/terrain/savanna-ne-se.png -%%DATADIR%%/images/terrain/savanna-ne.png -%%DATADIR%%/images/terrain/savanna-nw-n-ne.png -%%DATADIR%%/images/terrain/savanna-nw-n.png -%%DATADIR%%/images/terrain/savanna-nw.png -%%DATADIR%%/images/terrain/savanna-s-sw-nw.png -%%DATADIR%%/images/terrain/savanna-s-sw.png -%%DATADIR%%/images/terrain/savanna-s.png -%%DATADIR%%/images/terrain/savanna-se-s-sw.png -%%DATADIR%%/images/terrain/savanna-se-s.png -%%DATADIR%%/images/terrain/savanna-se.png -%%DATADIR%%/images/terrain/savanna-sw-nw-n.png -%%DATADIR%%/images/terrain/savanna-sw-nw.png -%%DATADIR%%/images/terrain/savanna-sw.png -%%DATADIR%%/images/terrain/savanna-to-water-n-ne-se.png -%%DATADIR%%/images/terrain/savanna-to-water-n-ne.png -%%DATADIR%%/images/terrain/savanna-to-water-n.png -%%DATADIR%%/images/terrain/savanna-to-water-ne-se-s.png -%%DATADIR%%/images/terrain/savanna-to-water-ne-se.png -%%DATADIR%%/images/terrain/savanna-to-water-ne.png -%%DATADIR%%/images/terrain/savanna-to-water-nw-n-ne.png -%%DATADIR%%/images/terrain/savanna-to-water-nw-n.png -%%DATADIR%%/images/terrain/savanna-to-water-nw.png -%%DATADIR%%/images/terrain/savanna-to-water-s-sw-nw.png -%%DATADIR%%/images/terrain/savanna-to-water-s-sw.png -%%DATADIR%%/images/terrain/savanna-to-water-s.png -%%DATADIR%%/images/terrain/savanna-to-water-se-s-sw.png -%%DATADIR%%/images/terrain/savanna-to-water-se-s.png -%%DATADIR%%/images/terrain/savanna-to-water-se.png -%%DATADIR%%/images/terrain/savanna-to-water-sw-nw-n.png -%%DATADIR%%/images/terrain/savanna-to-water-sw-nw.png -%%DATADIR%%/images/terrain/savanna-to-water-sw.png -%%DATADIR%%/images/terrain/savanna.png -%%DATADIR%%/images/terrain/savanna2.png -%%DATADIR%%/images/terrain/savanna3.png -%%DATADIR%%/images/terrain/snow-forest-castle-n-ne.png -%%DATADIR%%/images/terrain/snow-forest-castle-n.png -%%DATADIR%%/images/terrain/snow-forest-castle-ne.png -%%DATADIR%%/images/terrain/snow-forest-castle-nw-n-ne.png -%%DATADIR%%/images/terrain/snow-forest-castle-nw-n.png -%%DATADIR%%/images/terrain/snow-forest-castle-nw.png -%%DATADIR%%/images/terrain/snow-forest-castle-s.png -%%DATADIR%%/images/terrain/snow-forest-castle-se.png -%%DATADIR%%/images/terrain/snow-forest-castle-sw-nw.png -%%DATADIR%%/images/terrain/snow-forest-castle-sw.png -%%DATADIR%%/images/terrain/snow-forest-castle.png -%%DATADIR%%/images/terrain/snow-forest-tile.png -%%DATADIR%%/images/terrain/snow-forest.png -%%DATADIR%%/images/terrain/snow-forest2.png -%%DATADIR%%/images/terrain/snow-forest3.png -%%DATADIR%%/images/terrain/snow-forest4.png -%%DATADIR%%/images/terrain/snow-forest_small.png -%%DATADIR%%/images/terrain/snow-hills-n-ne.png -%%DATADIR%%/images/terrain/snow-hills-n.png -%%DATADIR%%/images/terrain/snow-hills-ne.png -%%DATADIR%%/images/terrain/snow-hills-nw.png -%%DATADIR%%/images/terrain/snow-hills-s-sw.png -%%DATADIR%%/images/terrain/snow-hills-s.png -%%DATADIR%%/images/terrain/snow-hills-se.png -%%DATADIR%%/images/terrain/snow-hills-sw.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-n-ne.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-n.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-ne-se.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-ne.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-nw-n.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-nw.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-s-sw.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-s.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-se-s.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-se.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-sw-nw.png -%%DATADIR%%/images/terrain/snow-hills-to-hills-sw.png -%%DATADIR%%/images/terrain/snow-hills-to-water-n-ne.png -%%DATADIR%%/images/terrain/snow-hills-to-water-n.png -%%DATADIR%%/images/terrain/snow-hills-to-water-ne.png -%%DATADIR%%/images/terrain/snow-hills-to-water-nw-n.png -%%DATADIR%%/images/terrain/snow-hills-to-water-nw.png -%%DATADIR%%/images/terrain/snow-hills-to-water-s-sw.png -%%DATADIR%%/images/terrain/snow-hills-to-water-se-s.png -%%DATADIR%%/images/terrain/snow-hills-to-water-se.png -%%DATADIR%%/images/terrain/snow-hills-to-water-sw-nw.png -%%DATADIR%%/images/terrain/snow-hills-to-water-sw.png -%%DATADIR%%/images/terrain/snow-hills.png -%%DATADIR%%/images/terrain/snow-hills2.png -%%DATADIR%%/images/terrain/snow-hills3.png -%%DATADIR%%/images/terrain/snow-n-ne-se-s.png -%%DATADIR%%/images/terrain/snow-n-ne-se.png -%%DATADIR%%/images/terrain/snow-n-ne.png -%%DATADIR%%/images/terrain/snow-n.png -%%DATADIR%%/images/terrain/snow-ne-se-s-sw.png -%%DATADIR%%/images/terrain/snow-ne-se-s.png -%%DATADIR%%/images/terrain/snow-ne-se.png -%%DATADIR%%/images/terrain/snow-ne.png -%%DATADIR%%/images/terrain/snow-nw-n-ne-se.png -%%DATADIR%%/images/terrain/snow-nw-n-ne.png -%%DATADIR%%/images/terrain/snow-nw-n.png -%%DATADIR%%/images/terrain/snow-nw.png -%%DATADIR%%/images/terrain/snow-s-sw-nw-n.png -%%DATADIR%%/images/terrain/snow-s-sw-nw.png -%%DATADIR%%/images/terrain/snow-s-sw.png -%%DATADIR%%/images/terrain/snow-s.png -%%DATADIR%%/images/terrain/snow-se-s-sw-nw.png -%%DATADIR%%/images/terrain/snow-se-s-sw.png -%%DATADIR%%/images/terrain/snow-se-s.png -%%DATADIR%%/images/terrain/snow-se.png -%%DATADIR%%/images/terrain/snow-sw-nw-n-ne.png -%%DATADIR%%/images/terrain/snow-sw-nw-n.png -%%DATADIR%%/images/terrain/snow-sw-nw.png -%%DATADIR%%/images/terrain/snow-sw.png -%%DATADIR%%/images/terrain/snow-to-water-n-ne-se-s.png -%%DATADIR%%/images/terrain/snow-to-water-n-ne-se.png -%%DATADIR%%/images/terrain/snow-to-water-n-ne.png -%%DATADIR%%/images/terrain/snow-to-water-n.png -%%DATADIR%%/images/terrain/snow-to-water-ne-se-s-sw.png -%%DATADIR%%/images/terrain/snow-to-water-ne-se-s.png -%%DATADIR%%/images/terrain/snow-to-water-ne-se.png -%%DATADIR%%/images/terrain/snow-to-water-ne.png -%%DATADIR%%/images/terrain/snow-to-water-nw-n-ne-se.png -%%DATADIR%%/images/terrain/snow-to-water-nw-n-ne.png -%%DATADIR%%/images/terrain/snow-to-water-nw-n.png -%%DATADIR%%/images/terrain/snow-to-water-nw.png -%%DATADIR%%/images/terrain/snow-to-water-s-sw-nw-n.png -%%DATADIR%%/images/terrain/snow-to-water-s-sw-nw.png -%%DATADIR%%/images/terrain/snow-to-water-s-sw.png -%%DATADIR%%/images/terrain/snow-to-water-s.png -%%DATADIR%%/images/terrain/snow-to-water-se-s-sw-nw.png -%%DATADIR%%/images/terrain/snow-to-water-se-s-sw.png -%%DATADIR%%/images/terrain/snow-to-water-se-s.png -%%DATADIR%%/images/terrain/snow-to-water-se.png -%%DATADIR%%/images/terrain/snow-to-water-sw-nw-n-ne.png -%%DATADIR%%/images/terrain/snow-to-water-sw-nw-n.png -%%DATADIR%%/images/terrain/snow-to-water-sw-nw.png -%%DATADIR%%/images/terrain/snow-to-water-sw.png -%%DATADIR%%/images/terrain/snow.png -%%DATADIR%%/images/terrain/snow2.png -%%DATADIR%%/images/terrain/sunken-keep-coast.png -%%DATADIR%%/images/terrain/sunken-keep-ocean.png -%%DATADIR%%/images/terrain/sunken-ruin-concave-e.png -%%DATADIR%%/images/terrain/sunken-ruin-concave-ne.png -%%DATADIR%%/images/terrain/sunken-ruin-concave-nw.png -%%DATADIR%%/images/terrain/sunken-ruin-concave-se.png -%%DATADIR%%/images/terrain/sunken-ruin-concave-sw.png -%%DATADIR%%/images/terrain/sunken-ruin-concave-w.png -%%DATADIR%%/images/terrain/sunken-ruin-convex-e.png -%%DATADIR%%/images/terrain/sunken-ruin-convex-ne.png -%%DATADIR%%/images/terrain/sunken-ruin-convex-nw.png -%%DATADIR%%/images/terrain/sunken-ruin-convex-se.png -%%DATADIR%%/images/terrain/sunken-ruin-convex-sw.png -%%DATADIR%%/images/terrain/sunken-ruin-convex-w.png -%%DATADIR%%/images/terrain/sunken-ruin-n.png -%%DATADIR%%/images/terrain/sunken-ruin-ne.png -%%DATADIR%%/images/terrain/sunken-ruin-nw.png -%%DATADIR%%/images/terrain/sunken-ruin-s.png -%%DATADIR%%/images/terrain/sunken-ruin-se.png -%%DATADIR%%/images/terrain/sunken-ruin-sw.png -%%DATADIR%%/images/terrain/sunken-ruin.png -%%DATADIR%%/images/terrain/sunken-ruin1-concave-e.png -%%DATADIR%%/images/terrain/sunken-ruin1-concave-ne.png -%%DATADIR%%/images/terrain/sunken-ruin1-concave-nw.png -%%DATADIR%%/images/terrain/sunken-ruin1-concave-se.png -%%DATADIR%%/images/terrain/sunken-ruin1-concave-sw.png -%%DATADIR%%/images/terrain/sunken-ruin1-concave-w.png -%%DATADIR%%/images/terrain/sunken-ruin1-convex-e.png -%%DATADIR%%/images/terrain/sunken-ruin1-convex-ne.png -%%DATADIR%%/images/terrain/sunken-ruin1-convex-nw.png -%%DATADIR%%/images/terrain/sunken-ruin1-convex-se.png -%%DATADIR%%/images/terrain/sunken-ruin1-convex-sw.png -%%DATADIR%%/images/terrain/sunken-ruin1-convex-w.png -%%DATADIR%%/images/terrain/sunken-ruin2-concave-e.png -%%DATADIR%%/images/terrain/sunken-ruin2-concave-ne.png -%%DATADIR%%/images/terrain/sunken-ruin2-concave-nw.png -%%DATADIR%%/images/terrain/sunken-ruin2-concave-se.png -%%DATADIR%%/images/terrain/sunken-ruin2-concave-sw.png -%%DATADIR%%/images/terrain/sunken-ruin2-concave-w.png -%%DATADIR%%/images/terrain/sunken-ruin2-convex-e.png -%%DATADIR%%/images/terrain/sunken-ruin2-convex-ne.png -%%DATADIR%%/images/terrain/sunken-ruin2-convex-nw.png -%%DATADIR%%/images/terrain/sunken-ruin2-convex-se.png -%%DATADIR%%/images/terrain/sunken-ruin2-convex-sw.png -%%DATADIR%%/images/terrain/sunken-ruin2-convex-w.png -%%DATADIR%%/images/terrain/sunken-ruin3-concave-e.png -%%DATADIR%%/images/terrain/sunken-ruin3-concave-ne.png -%%DATADIR%%/images/terrain/sunken-ruin3-concave-nw.png -%%DATADIR%%/images/terrain/sunken-ruin3-concave-se.png -%%DATADIR%%/images/terrain/sunken-ruin3-concave-sw.png -%%DATADIR%%/images/terrain/sunken-ruin3-concave-w.png -%%DATADIR%%/images/terrain/sunken-ruin3-convex-e.png -%%DATADIR%%/images/terrain/sunken-ruin3-convex-ne.png -%%DATADIR%%/images/terrain/sunken-ruin3-convex-nw.png -%%DATADIR%%/images/terrain/sunken-ruin3-convex-se.png -%%DATADIR%%/images/terrain/sunken-ruin3-convex-sw.png -%%DATADIR%%/images/terrain/sunken-ruin3-convex-w.png -%%DATADIR%%/images/terrain/sunken-ruin4-concave-e.png -%%DATADIR%%/images/terrain/sunken-ruin4-concave-ne.png -%%DATADIR%%/images/terrain/sunken-ruin4-concave-nw.png -%%DATADIR%%/images/terrain/sunken-ruin4-concave-se.png -%%DATADIR%%/images/terrain/sunken-ruin4-concave-sw.png -%%DATADIR%%/images/terrain/sunken-ruin4-concave-w.png -%%DATADIR%%/images/terrain/sunken-ruin4-convex-e.png -%%DATADIR%%/images/terrain/sunken-ruin4-convex-ne.png -%%DATADIR%%/images/terrain/sunken-ruin4-convex-nw.png -%%DATADIR%%/images/terrain/sunken-ruin4-convex-se.png -%%DATADIR%%/images/terrain/sunken-ruin4-convex-sw.png -%%DATADIR%%/images/terrain/sunken-ruin4-convex-w.png -%%DATADIR%%/images/terrain/sunken-ruin5-concave-e.png -%%DATADIR%%/images/terrain/sunken-ruin5-concave-ne.png -%%DATADIR%%/images/terrain/sunken-ruin5-concave-nw.png -%%DATADIR%%/images/terrain/sunken-ruin5-concave-se.png -%%DATADIR%%/images/terrain/sunken-ruin5-concave-sw.png -%%DATADIR%%/images/terrain/sunken-ruin5-concave-w.png -%%DATADIR%%/images/terrain/sunken-ruin5-convex-e.png -%%DATADIR%%/images/terrain/sunken-ruin5-convex-ne.png -%%DATADIR%%/images/terrain/sunken-ruin5-convex-nw.png -%%DATADIR%%/images/terrain/sunken-ruin5-convex-se.png -%%DATADIR%%/images/terrain/sunken-ruin5-convex-sw.png -%%DATADIR%%/images/terrain/sunken-ruin5-convex-w.png -%%DATADIR%%/images/terrain/sunken-ruinkeep.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-e.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-ne.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-nw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-se.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-sw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-inside-w.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-e.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-ne.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-nw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-se.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-sw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-keep-w.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-e.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-ne.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-nw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-se.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-sw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-0-w.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-e.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-ne.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-nw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-se.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-sw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-1-w.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-e.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-ne.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-nw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-se.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-sw.png -%%DATADIR%%/images/terrain/sunken-ruinkeep1-wall-w.png -%%DATADIR%%/images/terrain/sunkenkeep-inside-e.png -%%DATADIR%%/images/terrain/sunkenkeep-inside-ne.png -%%DATADIR%%/images/terrain/sunkenkeep-inside-nw.png -%%DATADIR%%/images/terrain/sunkenkeep-inside-se.png -%%DATADIR%%/images/terrain/sunkenkeep-inside-sw.png -%%DATADIR%%/images/terrain/sunkenkeep-inside-w.png -%%DATADIR%%/images/terrain/sunkenkeep-keep-e.png -%%DATADIR%%/images/terrain/sunkenkeep-keep-ne.png -%%DATADIR%%/images/terrain/sunkenkeep-keep-nw.png -%%DATADIR%%/images/terrain/sunkenkeep-keep-se.png -%%DATADIR%%/images/terrain/sunkenkeep-keep-sw.png -%%DATADIR%%/images/terrain/sunkenkeep-keep-w.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-0-e.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-0-ne.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-0-nw.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-0-se.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-0-sw.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-0-w.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-1-e.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-1-ne.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-1-nw.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-1-se.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-1-sw.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-1-w.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-e.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-ne.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-nw.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-se.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-sw.png -%%DATADIR%%/images/terrain/sunkenkeep-wall-w.png -%%DATADIR%%/images/terrain/sunkenkeep.png -%%DATADIR%%/images/terrain/swampwater-flowers1.png -%%DATADIR%%/images/terrain/swampwater-flowers2.png -%%DATADIR%%/images/terrain/swampwater-n-ne-se.png -%%DATADIR%%/images/terrain/swampwater-n-ne.png -%%DATADIR%%/images/terrain/swampwater-n.png -%%DATADIR%%/images/terrain/swampwater-ne-se-s.png -%%DATADIR%%/images/terrain/swampwater-ne-se.png -%%DATADIR%%/images/terrain/swampwater-ne.png -%%DATADIR%%/images/terrain/swampwater-nw-n-ne.png -%%DATADIR%%/images/terrain/swampwater-nw-n.png -%%DATADIR%%/images/terrain/swampwater-nw.png -%%DATADIR%%/images/terrain/swampwater-plant1.png -%%DATADIR%%/images/terrain/swampwater-plant2.png -%%DATADIR%%/images/terrain/swampwater-s-sw-nw.png -%%DATADIR%%/images/terrain/swampwater-s-sw.png -%%DATADIR%%/images/terrain/swampwater-s.png -%%DATADIR%%/images/terrain/swampwater-se-s-sw.png -%%DATADIR%%/images/terrain/swampwater-se-s.png -%%DATADIR%%/images/terrain/swampwater-se.png -%%DATADIR%%/images/terrain/swampwater-sw-nw-n.png -%%DATADIR%%/images/terrain/swampwater-sw-nw.png -%%DATADIR%%/images/terrain/swampwater-sw.png -%%DATADIR%%/images/terrain/swampwater-tile.png -%%DATADIR%%/images/terrain/swampwater.png -%%DATADIR%%/images/terrain/swampwater2.png -%%DATADIR%%/images/terrain/swampwater3.png -%%DATADIR%%/images/terrain/tent.png -%%DATADIR%%/images/terrain/tent2.png -%%DATADIR%%/images/terrain/tropical-forest-castle-n.png -%%DATADIR%%/images/terrain/tropical-forest-castle-ne.png -%%DATADIR%%/images/terrain/tropical-forest-castle-nw.png -%%DATADIR%%/images/terrain/tropical-forest-castle.png -%%DATADIR%%/images/terrain/tropical-forest-tile.png -%%DATADIR%%/images/terrain/tropical-forest.png -%%DATADIR%%/images/terrain/tropical-forest2.png -%%DATADIR%%/images/terrain/tropical-forest3.png -%%DATADIR%%/images/terrain/tropical-forest4.png -%%DATADIR%%/images/terrain/village-cave-tile.png -%%DATADIR%%/images/terrain/village-cave.png -%%DATADIR%%/images/terrain/village-cave2.png -%%DATADIR%%/images/terrain/village-cave3.png -%%DATADIR%%/images/terrain/village-coast-tile.png -%%DATADIR%%/images/terrain/village-coast.png -%%DATADIR%%/images/terrain/village-desert-tile.png -%%DATADIR%%/images/terrain/village-desert.png -%%DATADIR%%/images/terrain/village-desert2-tile.png -%%DATADIR%%/images/terrain/village-desert2.png -%%DATADIR%%/images/terrain/village-dwarven-tile.png -%%DATADIR%%/images/terrain/village-dwarven.png -%%DATADIR%%/images/terrain/village-elven-snow-tile.png -%%DATADIR%%/images/terrain/village-elven-snow.png -%%DATADIR%%/images/terrain/village-elven-snow2.png -%%DATADIR%%/images/terrain/village-elven-snow3.png -%%DATADIR%%/images/terrain/village-elven-snow4.png -%%DATADIR%%/images/terrain/village-elven-tile.png -%%DATADIR%%/images/terrain/village-elven.png -%%DATADIR%%/images/terrain/village-elven2.png -%%DATADIR%%/images/terrain/village-elven3.png -%%DATADIR%%/images/terrain/village-elven4.png -%%DATADIR%%/images/terrain/village-human-hills-tile.png -%%DATADIR%%/images/terrain/village-human-mountain-tile.png -%%DATADIR%%/images/terrain/village-human-snow-hills-tile.png -%%DATADIR%%/images/terrain/village-human-snow.png -%%DATADIR%%/images/terrain/village-human-snow2.png -%%DATADIR%%/images/terrain/village-human-snow3.png -%%DATADIR%%/images/terrain/village-human-snow4.png -%%DATADIR%%/images/terrain/village-human-tile.png -%%DATADIR%%/images/terrain/village-human.png -%%DATADIR%%/images/terrain/village-human2.png -%%DATADIR%%/images/terrain/village-human3.png -%%DATADIR%%/images/terrain/village-human4.png -%%DATADIR%%/images/terrain/village-snow-tile.png -%%DATADIR%%/images/terrain/village-swampwater-tile.png -%%DATADIR%%/images/terrain/village-swampwater.png -%%DATADIR%%/images/terrain/village-swampwater2.png -%%DATADIR%%/images/terrain/village-tropical-forest.png -%%DATADIR%%/images/terrain/village-tropical-tile.png -%%DATADIR%%/images/terrain/void-n-ne-se-s.png -%%DATADIR%%/images/terrain/void-n-ne-se.png -%%DATADIR%%/images/terrain/void-n-ne.png -%%DATADIR%%/images/terrain/void-n.png -%%DATADIR%%/images/terrain/void-ne-se-s.png -%%DATADIR%%/images/terrain/void-ne-se.png -%%DATADIR%%/images/terrain/void-ne.png -%%DATADIR%%/images/terrain/void-nw-n-ne.png -%%DATADIR%%/images/terrain/void-nw-n.png -%%DATADIR%%/images/terrain/void-nw.png -%%DATADIR%%/images/terrain/void-s-sw-nw-n.png -%%DATADIR%%/images/terrain/void-s-sw-nw.png -%%DATADIR%%/images/terrain/void-s-sw.png -%%DATADIR%%/images/terrain/void-s.png -%%DATADIR%%/images/terrain/void-se-s-sw.png -%%DATADIR%%/images/terrain/void-se-s.png -%%DATADIR%%/images/terrain/void-se.png -%%DATADIR%%/images/terrain/void-sw-nw-n.png -%%DATADIR%%/images/terrain/void-sw-nw.png -%%DATADIR%%/images/terrain/void-sw.png -%%DATADIR%%/images/terrain/void.png +%%DATADIR%%/images/misc/zoc.png %%DATADIR%%/images/tools/chasm-convex.png %%DATADIR%%/images/tools/chasm-exploded-concave.png %%DATADIR%%/images/tools/exploder/mask-castle-e.png @@ -3814,2068 +7956,70 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo %%DATADIR%%/images/tools/exploder/mask-castle-se.png %%DATADIR%%/images/tools/exploder/mask-castle-sw.png %%DATADIR%%/images/tools/exploder/mask-castle-w.png -%%DATADIR%%/images/units/drakes/blademaster-attack-close1.png -%%DATADIR%%/images/units/drakes/blademaster-attack-close2.png -%%DATADIR%%/images/units/drakes/blademaster-attack-ranged.png -%%DATADIR%%/images/units/drakes/blademaster-defend.png -%%DATADIR%%/images/units/drakes/blademaster-die-1.png -%%DATADIR%%/images/units/drakes/blademaster-die-2.png -%%DATADIR%%/images/units/drakes/blademaster-die-3.png -%%DATADIR%%/images/units/drakes/blademaster-die-4.png -%%DATADIR%%/images/units/drakes/blademaster-die-5.png -%%DATADIR%%/images/units/drakes/blademaster-die-6.png -%%DATADIR%%/images/units/drakes/blademaster-die-7.png -%%DATADIR%%/images/units/drakes/blademaster-flying.png -%%DATADIR%%/images/units/drakes/blademaster.png -%%DATADIR%%/images/units/drakes/burner-attack-close.png -%%DATADIR%%/images/units/drakes/burner-attack-ranged1.png -%%DATADIR%%/images/units/drakes/burner-attack-ranged2.png -%%DATADIR%%/images/units/drakes/burner-defend.png -%%DATADIR%%/images/units/drakes/burner-die-1.png -%%DATADIR%%/images/units/drakes/burner-die-2.png -%%DATADIR%%/images/units/drakes/burner-die-3.png -%%DATADIR%%/images/units/drakes/burner-die-4.png -%%DATADIR%%/images/units/drakes/burner-die-5.png -%%DATADIR%%/images/units/drakes/burner-die-6.png -%%DATADIR%%/images/units/drakes/burner-flying.png -%%DATADIR%%/images/units/drakes/burner.png -%%DATADIR%%/images/units/drakes/clasher-attack-mace.png -%%DATADIR%%/images/units/drakes/clasher-attack-spear.png -%%DATADIR%%/images/units/drakes/clasher-attack-sword.png -%%DATADIR%%/images/units/drakes/clasher-defend.png -%%DATADIR%%/images/units/drakes/clasher-die-1.png -%%DATADIR%%/images/units/drakes/clasher-die-10.png -%%DATADIR%%/images/units/drakes/clasher-die-2.png -%%DATADIR%%/images/units/drakes/clasher-die-3.png -%%DATADIR%%/images/units/drakes/clasher-die-4.png -%%DATADIR%%/images/units/drakes/clasher-die-5.png -%%DATADIR%%/images/units/drakes/clasher-die-6.png -%%DATADIR%%/images/units/drakes/clasher-die-7.png -%%DATADIR%%/images/units/drakes/clasher-die-8.png -%%DATADIR%%/images/units/drakes/clasher-die-9.png -%%DATADIR%%/images/units/drakes/clasher-flying.png -%%DATADIR%%/images/units/drakes/clasher.png -%%DATADIR%%/images/units/drakes/enforcer-die-1.png -%%DATADIR%%/images/units/drakes/enforcer-die-2.png -%%DATADIR%%/images/units/drakes/enforcer-die-3.png -%%DATADIR%%/images/units/drakes/enforcer-die-4.png -%%DATADIR%%/images/units/drakes/enforcer-die-5.png -%%DATADIR%%/images/units/drakes/enforcer-die-6.png -%%DATADIR%%/images/units/drakes/enforcer-die-7.png -%%DATADIR%%/images/units/drakes/enforcer-die-8.png -%%DATADIR%%/images/units/drakes/enforcer.png -%%DATADIR%%/images/units/drakes/fighter-attack-close1.png -%%DATADIR%%/images/units/drakes/fighter-attack-close2.png -%%DATADIR%%/images/units/drakes/fighter-attack-ranged1.png -%%DATADIR%%/images/units/drakes/fighter-attack-ranged2.png -%%DATADIR%%/images/units/drakes/fighter-defend.png -%%DATADIR%%/images/units/drakes/fighter-die-1.png -%%DATADIR%%/images/units/drakes/fighter-die-2.png -%%DATADIR%%/images/units/drakes/fighter-die-3.png -%%DATADIR%%/images/units/drakes/fighter-die-4.png -%%DATADIR%%/images/units/drakes/fighter-die-5.png -%%DATADIR%%/images/units/drakes/fighter-die-6.png -%%DATADIR%%/images/units/drakes/fighter-die-7.png -%%DATADIR%%/images/units/drakes/fighter-die-8.png -%%DATADIR%%/images/units/drakes/fighter-flying.png -%%DATADIR%%/images/units/drakes/fighter.png -%%DATADIR%%/images/units/drakes/fire-attack-close.png -%%DATADIR%%/images/units/drakes/fire-attack-ranged.png -%%DATADIR%%/images/units/drakes/fire-defend.png -%%DATADIR%%/images/units/drakes/fire-die-1.png -%%DATADIR%%/images/units/drakes/fire-die-2.png -%%DATADIR%%/images/units/drakes/fire-die-3.png -%%DATADIR%%/images/units/drakes/fire-die-4.png -%%DATADIR%%/images/units/drakes/fire-die-5.png -%%DATADIR%%/images/units/drakes/fire-die-6.png -%%DATADIR%%/images/units/drakes/fire-die-7.png -%%DATADIR%%/images/units/drakes/fire-flying.png -%%DATADIR%%/images/units/drakes/fire.png -%%DATADIR%%/images/units/drakes/flameheart-attack-close1.png -%%DATADIR%%/images/units/drakes/flameheart-attack-close2.png -%%DATADIR%%/images/units/drakes/flameheart-attack-ranged.png -%%DATADIR%%/images/units/drakes/flameheart-defend.png -%%DATADIR%%/images/units/drakes/flameheart-die-1.png -%%DATADIR%%/images/units/drakes/flameheart-die-2.png -%%DATADIR%%/images/units/drakes/flameheart-die-3.png -%%DATADIR%%/images/units/drakes/flameheart-die-4.png -%%DATADIR%%/images/units/drakes/flameheart-die-5.png -%%DATADIR%%/images/units/drakes/flameheart-die-6.png -%%DATADIR%%/images/units/drakes/flameheart-die-7.png -%%DATADIR%%/images/units/drakes/flameheart-flying.png -%%DATADIR%%/images/units/drakes/flameheart-lead.png -%%DATADIR%%/images/units/drakes/flameheart.png -%%DATADIR%%/images/units/drakes/flare-attack-close.png -%%DATADIR%%/images/units/drakes/flare-attack-ranged.png -%%DATADIR%%/images/units/drakes/flare-defend.png -%%DATADIR%%/images/units/drakes/flare-die-1.png -%%DATADIR%%/images/units/drakes/flare-die-2.png -%%DATADIR%%/images/units/drakes/flare-die-3.png -%%DATADIR%%/images/units/drakes/flare-die-4.png -%%DATADIR%%/images/units/drakes/flare-die-5.png -%%DATADIR%%/images/units/drakes/flare-die-6.png -%%DATADIR%%/images/units/drakes/flare-die-7.png -%%DATADIR%%/images/units/drakes/flare-die-8.png -%%DATADIR%%/images/units/drakes/flare-flying.png -%%DATADIR%%/images/units/drakes/flare-lead.png -%%DATADIR%%/images/units/drakes/flare.png -%%DATADIR%%/images/units/drakes/gladiator-attack-mace.png -%%DATADIR%%/images/units/drakes/gladiator-attack-spear.png -%%DATADIR%%/images/units/drakes/gladiator-attack-sword.png -%%DATADIR%%/images/units/drakes/gladiator-defend.png -%%DATADIR%%/images/units/drakes/gladiator-die-1.png -%%DATADIR%%/images/units/drakes/gladiator-die-2.png -%%DATADIR%%/images/units/drakes/gladiator-die-3.png -%%DATADIR%%/images/units/drakes/gladiator-die-4.png -%%DATADIR%%/images/units/drakes/gladiator-die-5.png -%%DATADIR%%/images/units/drakes/gladiator-die-6.png -%%DATADIR%%/images/units/drakes/gladiator-die-7.png -%%DATADIR%%/images/units/drakes/gladiator-die-8.png -%%DATADIR%%/images/units/drakes/gladiator-flying.png -%%DATADIR%%/images/units/drakes/gladiator.png -%%DATADIR%%/images/units/drakes/glider-attack-close1.png -%%DATADIR%%/images/units/drakes/glider-attack-close2.png -%%DATADIR%%/images/units/drakes/glider-attack-ranged.png -%%DATADIR%%/images/units/drakes/glider-defend.png -%%DATADIR%%/images/units/drakes/glider-die-1.png -%%DATADIR%%/images/units/drakes/glider-die-2.png -%%DATADIR%%/images/units/drakes/glider-die-3.png -%%DATADIR%%/images/units/drakes/glider-die-4.png -%%DATADIR%%/images/units/drakes/glider-die-5.png -%%DATADIR%%/images/units/drakes/glider-die-6.png -%%DATADIR%%/images/units/drakes/glider-die-7.png -%%DATADIR%%/images/units/drakes/glider-die-8.png -%%DATADIR%%/images/units/drakes/glider-flying.png -%%DATADIR%%/images/units/drakes/glider.png -%%DATADIR%%/images/units/drakes/hurricane-attack-melee1.png -%%DATADIR%%/images/units/drakes/hurricane-attack-melee2.png -%%DATADIR%%/images/units/drakes/hurricane-attack-ranged-fire1.png -%%DATADIR%%/images/units/drakes/hurricane-attack-ranged-fire2.png -%%DATADIR%%/images/units/drakes/hurricane-die-1.png -%%DATADIR%%/images/units/drakes/hurricane-die-2.png -%%DATADIR%%/images/units/drakes/hurricane-die-3.png -%%DATADIR%%/images/units/drakes/hurricane-die-4.png -%%DATADIR%%/images/units/drakes/hurricane-die-5.png -%%DATADIR%%/images/units/drakes/hurricane-die-6.png -%%DATADIR%%/images/units/drakes/hurricane-die-7.png -%%DATADIR%%/images/units/drakes/hurricane-die-8.png -%%DATADIR%%/images/units/drakes/hurricane-flying.png -%%DATADIR%%/images/units/drakes/hurricane.png -%%DATADIR%%/images/units/drakes/inferno-attack-close.png -%%DATADIR%%/images/units/drakes/inferno-attack-ranged.png -%%DATADIR%%/images/units/drakes/inferno-defend.png -%%DATADIR%%/images/units/drakes/inferno-die-1.png -%%DATADIR%%/images/units/drakes/inferno-die-2.png -%%DATADIR%%/images/units/drakes/inferno-die-3.png -%%DATADIR%%/images/units/drakes/inferno-die-4.png -%%DATADIR%%/images/units/drakes/inferno-die-5.png -%%DATADIR%%/images/units/drakes/inferno-die-6.png -%%DATADIR%%/images/units/drakes/inferno-die-7.png -%%DATADIR%%/images/units/drakes/inferno-flying.png -%%DATADIR%%/images/units/drakes/inferno.png -%%DATADIR%%/images/units/drakes/sky-attack-melee1.png -%%DATADIR%%/images/units/drakes/sky-attack-melee2.png -%%DATADIR%%/images/units/drakes/sky-attack-ranged-fire.png -%%DATADIR%%/images/units/drakes/sky-attack-ranged-impact.png -%%DATADIR%%/images/units/drakes/sky-defend.png -%%DATADIR%%/images/units/drakes/sky-die-1.png -%%DATADIR%%/images/units/drakes/sky-die-2.png -%%DATADIR%%/images/units/drakes/sky-die-3.png -%%DATADIR%%/images/units/drakes/sky-die-4.png -%%DATADIR%%/images/units/drakes/sky-die-5.png -%%DATADIR%%/images/units/drakes/sky-die-6.png -%%DATADIR%%/images/units/drakes/sky-die-7.png -%%DATADIR%%/images/units/drakes/sky-die-8.png -%%DATADIR%%/images/units/drakes/sky.png -%%DATADIR%%/images/units/drakes/slasher-defend.png -%%DATADIR%%/images/units/drakes/slasher-die-1.png -%%DATADIR%%/images/units/drakes/slasher-die-2.png -%%DATADIR%%/images/units/drakes/slasher-die-3.png -%%DATADIR%%/images/units/drakes/slasher-die-4.png -%%DATADIR%%/images/units/drakes/slasher-die-5.png -%%DATADIR%%/images/units/drakes/slasher-die-6.png -%%DATADIR%%/images/units/drakes/slasher-die-7.png -%%DATADIR%%/images/units/drakes/slasher-die-8.png -%%DATADIR%%/images/units/drakes/slasher-flying.png -%%DATADIR%%/images/units/drakes/slasher-pierce.png -%%DATADIR%%/images/units/drakes/slasher-slash.png -%%DATADIR%%/images/units/drakes/slasher.png -%%DATADIR%%/images/units/drakes/warden-defend.png -%%DATADIR%%/images/units/drakes/warden-die-1.png -%%DATADIR%%/images/units/drakes/warden-die-2.png -%%DATADIR%%/images/units/drakes/warden-die-3.png -%%DATADIR%%/images/units/drakes/warden-die-4.png -%%DATADIR%%/images/units/drakes/warden-die-5.png -%%DATADIR%%/images/units/drakes/warden-die-6.png -%%DATADIR%%/images/units/drakes/warden-die-7.png -%%DATADIR%%/images/units/drakes/warden-die-8.png -%%DATADIR%%/images/units/drakes/warden-die-9.png -%%DATADIR%%/images/units/drakes/warden-flying.png -%%DATADIR%%/images/units/drakes/warden-pierce.png -%%DATADIR%%/images/units/drakes/warden-slash.png -%%DATADIR%%/images/units/drakes/warden.png -%%DATADIR%%/images/units/drakes/warrior-attack-close1.png -%%DATADIR%%/images/units/drakes/warrior-attack-close2.png -%%DATADIR%%/images/units/drakes/warrior-attack-ranged.png -%%DATADIR%%/images/units/drakes/warrior-defend.png -%%DATADIR%%/images/units/drakes/warrior-die-1.png -%%DATADIR%%/images/units/drakes/warrior-die-2.png -%%DATADIR%%/images/units/drakes/warrior-die-3.png -%%DATADIR%%/images/units/drakes/warrior-die-4.png -%%DATADIR%%/images/units/drakes/warrior-die-5.png -%%DATADIR%%/images/units/drakes/warrior-die-6.png -%%DATADIR%%/images/units/drakes/warrior-die-7.png -%%DATADIR%%/images/units/drakes/warrior-die-8.png -%%DATADIR%%/images/units/drakes/warrior-flying.png -%%DATADIR%%/images/units/drakes/warrior.png -%%DATADIR%%/images/units/dwarves/berserker-attack1.png -%%DATADIR%%/images/units/dwarves/berserker-attack2.png -%%DATADIR%%/images/units/dwarves/berserker-attack3.png -%%DATADIR%%/images/units/dwarves/berserker-defend.png -%%DATADIR%%/images/units/dwarves/berserker.png -%%DATADIR%%/images/units/dwarves/dragonguard-attack-ranged-n.png -%%DATADIR%%/images/units/dwarves/dragonguard-attack-ranged-ne.png -%%DATADIR%%/images/units/dwarves/dragonguard-attack-ranged-s.png -%%DATADIR%%/images/units/dwarves/dragonguard-attack-ranged-se.png -%%DATADIR%%/images/units/dwarves/dragonguard-defend.png -%%DATADIR%%/images/units/dwarves/dragonguard-melee1.png -%%DATADIR%%/images/units/dwarves/dragonguard-melee2.png -%%DATADIR%%/images/units/dwarves/dragonguard.png -%%DATADIR%%/images/units/dwarves/fighter-attack-mace.png -%%DATADIR%%/images/units/dwarves/fighter-attack.png -%%DATADIR%%/images/units/dwarves/fighter-defend.png -%%DATADIR%%/images/units/dwarves/fighter.png -%%DATADIR%%/images/units/dwarves/gryphon-master-attack.png -%%DATADIR%%/images/units/dwarves/gryphon-master-flying-1and3.png -%%DATADIR%%/images/units/dwarves/gryphon-master-flying-2.png -%%DATADIR%%/images/units/dwarves/gryphon-master-flying-4.png -%%DATADIR%%/images/units/dwarves/gryphon-master-flying-5and7.png -%%DATADIR%%/images/units/dwarves/gryphon-master-flying-6.png -%%DATADIR%%/images/units/dwarves/gryphon-master-flying-8.png -%%DATADIR%%/images/units/dwarves/gryphon-master.png -%%DATADIR%%/images/units/dwarves/gryphon-rider-attack.png -%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-1and3.png -%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-2.png -%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-4.png -%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-5and7.png -%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-6.png -%%DATADIR%%/images/units/dwarves/gryphon-rider-flying-8.png -%%DATADIR%%/images/units/dwarves/gryphon-rider.png -%%DATADIR%%/images/units/dwarves/guard-attack.png -%%DATADIR%%/images/units/dwarves/guard-defend.png -%%DATADIR%%/images/units/dwarves/guard.png -%%DATADIR%%/images/units/dwarves/lord-attack-mace.png -%%DATADIR%%/images/units/dwarves/lord-attack.png -%%DATADIR%%/images/units/dwarves/lord-defend.png -%%DATADIR%%/images/units/dwarves/lord-ranged.png -%%DATADIR%%/images/units/dwarves/lord.png -%%DATADIR%%/images/units/dwarves/runemaster-attack1.png -%%DATADIR%%/images/units/dwarves/runemaster-attack2.png -%%DATADIR%%/images/units/dwarves/runemaster-attack3.png -%%DATADIR%%/images/units/dwarves/runemaster-defend.png -%%DATADIR%%/images/units/dwarves/runemaster.png -%%DATADIR%%/images/units/dwarves/sentinel-attack.png -%%DATADIR%%/images/units/dwarves/sentinel-defend.png -%%DATADIR%%/images/units/dwarves/sentinel.png -%%DATADIR%%/images/units/dwarves/stalwart-attack.png -%%DATADIR%%/images/units/dwarves/stalwart-defend.png -%%DATADIR%%/images/units/dwarves/stalwart.png -%%DATADIR%%/images/units/dwarves/thunderer-attack-n.png -%%DATADIR%%/images/units/dwarves/thunderer-attack-ne.png -%%DATADIR%%/images/units/dwarves/thunderer-attack-s.png -%%DATADIR%%/images/units/dwarves/thunderer-attack-se.png -%%DATADIR%%/images/units/dwarves/thunderer-defend.png -%%DATADIR%%/images/units/dwarves/thunderer-die1.png -%%DATADIR%%/images/units/dwarves/thunderer-die2.png -%%DATADIR%%/images/units/dwarves/thunderer-die3.png -%%DATADIR%%/images/units/dwarves/thunderer-melee1.png -%%DATADIR%%/images/units/dwarves/thunderer-melee2.png -%%DATADIR%%/images/units/dwarves/thunderer.png -%%DATADIR%%/images/units/dwarves/thunderguard-attack-ranged-n.png -%%DATADIR%%/images/units/dwarves/thunderguard-attack-ranged-ne.png -%%DATADIR%%/images/units/dwarves/thunderguard-attack-ranged-s.png -%%DATADIR%%/images/units/dwarves/thunderguard-attack-ranged-se.png -%%DATADIR%%/images/units/dwarves/thunderguard-attack1.png -%%DATADIR%%/images/units/dwarves/thunderguard-attack2.png -%%DATADIR%%/images/units/dwarves/thunderguard-defend.png -%%DATADIR%%/images/units/dwarves/thunderguard.png -%%DATADIR%%/images/units/dwarves/ulfserker-attack.png -%%DATADIR%%/images/units/dwarves/ulfserker-defend.png -%%DATADIR%%/images/units/dwarves/ulfserker.png -%%DATADIR%%/images/units/dwarves/warrior-attack-mace.png -%%DATADIR%%/images/units/dwarves/warrior-attack.png -%%DATADIR%%/images/units/dwarves/warrior-defend.png -%%DATADIR%%/images/units/dwarves/warrior.png -%%DATADIR%%/images/units/elves-wood/archer+female-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/archer+female-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/archer+female-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/archer+female-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/archer+female-bow-defend.png -%%DATADIR%%/images/units/elves-wood/archer+female-bow.png -%%DATADIR%%/images/units/elves-wood/archer+female-defend.png -%%DATADIR%%/images/units/elves-wood/archer+female-die1.png -%%DATADIR%%/images/units/elves-wood/archer+female-die2.png -%%DATADIR%%/images/units/elves-wood/archer+female-die3.png -%%DATADIR%%/images/units/elves-wood/archer+female-die4.png -%%DATADIR%%/images/units/elves-wood/archer+female-melee-1.png -%%DATADIR%%/images/units/elves-wood/archer+female-melee-2.png -%%DATADIR%%/images/units/elves-wood/archer+female.png -%%DATADIR%%/images/units/elves-wood/archer-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/archer-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/archer-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/archer-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/archer-bow-defend.png -%%DATADIR%%/images/units/elves-wood/archer-bow.png -%%DATADIR%%/images/units/elves-wood/archer-defend.png -%%DATADIR%%/images/units/elves-wood/archer-die1.png -%%DATADIR%%/images/units/elves-wood/archer-die2.png -%%DATADIR%%/images/units/elves-wood/archer-die3.png -%%DATADIR%%/images/units/elves-wood/archer-die4.png -%%DATADIR%%/images/units/elves-wood/archer-melee-1.png -%%DATADIR%%/images/units/elves-wood/archer-melee-2.png -%%DATADIR%%/images/units/elves-wood/archer.png -%%DATADIR%%/images/units/elves-wood/avenger+female-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/avenger+female-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/avenger+female-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/avenger+female-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/avenger+female-bow-defend.png -%%DATADIR%%/images/units/elves-wood/avenger+female-bow.png -%%DATADIR%%/images/units/elves-wood/avenger+female-defend.png -%%DATADIR%%/images/units/elves-wood/avenger+female-melee-1.png -%%DATADIR%%/images/units/elves-wood/avenger+female-melee-2.png -%%DATADIR%%/images/units/elves-wood/avenger+female.png -%%DATADIR%%/images/units/elves-wood/avenger-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/avenger-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/avenger-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/avenger-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/avenger-bow-defend.png -%%DATADIR%%/images/units/elves-wood/avenger-bow.png -%%DATADIR%%/images/units/elves-wood/avenger-defend.png -%%DATADIR%%/images/units/elves-wood/avenger-die1.png -%%DATADIR%%/images/units/elves-wood/avenger-die2.png -%%DATADIR%%/images/units/elves-wood/avenger-die3.png -%%DATADIR%%/images/units/elves-wood/avenger-die4.png -%%DATADIR%%/images/units/elves-wood/avenger-melee-1.png -%%DATADIR%%/images/units/elves-wood/avenger-melee-2.png -%%DATADIR%%/images/units/elves-wood/avenger.png -%%DATADIR%%/images/units/elves-wood/captain-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/captain-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/captain-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/captain-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/captain-bow-defend.png -%%DATADIR%%/images/units/elves-wood/captain-bow.png -%%DATADIR%%/images/units/elves-wood/captain-defend.png -%%DATADIR%%/images/units/elves-wood/captain-leading.png -%%DATADIR%%/images/units/elves-wood/captain-melee-1.png -%%DATADIR%%/images/units/elves-wood/captain-melee-2.png -%%DATADIR%%/images/units/elves-wood/captain.png -%%DATADIR%%/images/units/elves-wood/champion-attack-1.png -%%DATADIR%%/images/units/elves-wood/champion-attack-2.png -%%DATADIR%%/images/units/elves-wood/champion-attack-3.png -%%DATADIR%%/images/units/elves-wood/champion-attack-4.png -%%DATADIR%%/images/units/elves-wood/champion-attack-5.png -%%DATADIR%%/images/units/elves-wood/champion-attack-6.png -%%DATADIR%%/images/units/elves-wood/champion-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/champion-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/champion-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/champion-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/champion-bow-defend.png -%%DATADIR%%/images/units/elves-wood/champion-bow.png -%%DATADIR%%/images/units/elves-wood/champion-defend.png -%%DATADIR%%/images/units/elves-wood/champion.png -%%DATADIR%%/images/units/elves-wood/druid-attack.png -%%DATADIR%%/images/units/elves-wood/druid-defend-1.png -%%DATADIR%%/images/units/elves-wood/druid-defend-2.png -%%DATADIR%%/images/units/elves-wood/druid-magic-1.png -%%DATADIR%%/images/units/elves-wood/druid-magic-2.png -%%DATADIR%%/images/units/elves-wood/druid-magic-3.png -%%DATADIR%%/images/units/elves-wood/druid-magic-4.png -%%DATADIR%%/images/units/elves-wood/druid.png -%%DATADIR%%/images/units/elves-wood/enchantress-defend.png -%%DATADIR%%/images/units/elves-wood/enchantress-magic.png -%%DATADIR%%/images/units/elves-wood/enchantress-melee.png -%%DATADIR%%/images/units/elves-wood/enchantress.png -%%DATADIR%%/images/units/elves-wood/fighter-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/fighter-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/fighter-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/fighter-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/fighter-bow-defend.png -%%DATADIR%%/images/units/elves-wood/fighter-bow.png -%%DATADIR%%/images/units/elves-wood/fighter-defend.png -%%DATADIR%%/images/units/elves-wood/fighter-melee-1.png -%%DATADIR%%/images/units/elves-wood/fighter-melee-2.png -%%DATADIR%%/images/units/elves-wood/fighter.png -%%DATADIR%%/images/units/elves-wood/hero-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/hero-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/hero-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/hero-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/hero-bow-defend.png -%%DATADIR%%/images/units/elves-wood/hero-bow.png -%%DATADIR%%/images/units/elves-wood/hero-defend.png -%%DATADIR%%/images/units/elves-wood/hero-melee-1.png -%%DATADIR%%/images/units/elves-wood/hero-melee-2.png -%%DATADIR%%/images/units/elves-wood/hero-melee-3.png -%%DATADIR%%/images/units/elves-wood/hero-melee-4.png -%%DATADIR%%/images/units/elves-wood/hero.png -%%DATADIR%%/images/units/elves-wood/marksman+female-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/marksman+female-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/marksman+female-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/marksman+female-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/marksman+female-bow-defend.png -%%DATADIR%%/images/units/elves-wood/marksman+female-bow.png -%%DATADIR%%/images/units/elves-wood/marksman+female-defend.png -%%DATADIR%%/images/units/elves-wood/marksman+female-die-1.png -%%DATADIR%%/images/units/elves-wood/marksman+female-die-2.png -%%DATADIR%%/images/units/elves-wood/marksman+female-die-3.png -%%DATADIR%%/images/units/elves-wood/marksman+female-melee-1.png -%%DATADIR%%/images/units/elves-wood/marksman+female-melee-2.png -%%DATADIR%%/images/units/elves-wood/marksman+female.png -%%DATADIR%%/images/units/elves-wood/marksman-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/marksman-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/marksman-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/marksman-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/marksman-bow-defend.png -%%DATADIR%%/images/units/elves-wood/marksman-bow.png -%%DATADIR%%/images/units/elves-wood/marksman-defend.png -%%DATADIR%%/images/units/elves-wood/marksman-die-1.png -%%DATADIR%%/images/units/elves-wood/marksman-die-2.png -%%DATADIR%%/images/units/elves-wood/marksman-die-3.png -%%DATADIR%%/images/units/elves-wood/marksman-die-4.png -%%DATADIR%%/images/units/elves-wood/marksman-die-5.png -%%DATADIR%%/images/units/elves-wood/marksman-melee-1.png -%%DATADIR%%/images/units/elves-wood/marksman-melee-2.png -%%DATADIR%%/images/units/elves-wood/marksman.png -%%DATADIR%%/images/units/elves-wood/marshal-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/marshal-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/marshal-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/marshal-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/marshal-bow-defend.png -%%DATADIR%%/images/units/elves-wood/marshal-bow.png -%%DATADIR%%/images/units/elves-wood/marshal-defend.png -%%DATADIR%%/images/units/elves-wood/marshal-leading.png -%%DATADIR%%/images/units/elves-wood/marshal-melee-1.png -%%DATADIR%%/images/units/elves-wood/marshal-melee-2.png -%%DATADIR%%/images/units/elves-wood/marshal.png -%%DATADIR%%/images/units/elves-wood/outrider-attack1.png -%%DATADIR%%/images/units/elves-wood/outrider-attack2.png -%%DATADIR%%/images/units/elves-wood/outrider-defend.png -%%DATADIR%%/images/units/elves-wood/outrider-melee-1.png -%%DATADIR%%/images/units/elves-wood/outrider-melee-2.png -%%DATADIR%%/images/units/elves-wood/outrider-moving.png -%%DATADIR%%/images/units/elves-wood/outrider.png -%%DATADIR%%/images/units/elves-wood/ranger+female-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/ranger+female-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/ranger+female-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/ranger+female-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/ranger+female-bow-defend.png -%%DATADIR%%/images/units/elves-wood/ranger+female-bow.png -%%DATADIR%%/images/units/elves-wood/ranger+female-defend.png -%%DATADIR%%/images/units/elves-wood/ranger+female-melee-1.png -%%DATADIR%%/images/units/elves-wood/ranger+female-melee-2.png -%%DATADIR%%/images/units/elves-wood/ranger+female.png -%%DATADIR%%/images/units/elves-wood/ranger-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/ranger-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/ranger-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/ranger-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/ranger-bow-defend.png -%%DATADIR%%/images/units/elves-wood/ranger-bow.png -%%DATADIR%%/images/units/elves-wood/ranger-defend.png -%%DATADIR%%/images/units/elves-wood/ranger-die1.png -%%DATADIR%%/images/units/elves-wood/ranger-die2.png -%%DATADIR%%/images/units/elves-wood/ranger-die3.png -%%DATADIR%%/images/units/elves-wood/ranger-die4.png -%%DATADIR%%/images/units/elves-wood/ranger-melee-1.png -%%DATADIR%%/images/units/elves-wood/ranger-melee-2.png -%%DATADIR%%/images/units/elves-wood/ranger.png -%%DATADIR%%/images/units/elves-wood/rider-attack1.png -%%DATADIR%%/images/units/elves-wood/rider-attack2.png -%%DATADIR%%/images/units/elves-wood/rider-defend.png -%%DATADIR%%/images/units/elves-wood/rider-melee-1.png -%%DATADIR%%/images/units/elves-wood/rider-melee-2.png -%%DATADIR%%/images/units/elves-wood/rider-moving.png -%%DATADIR%%/images/units/elves-wood/rider.png -%%DATADIR%%/images/units/elves-wood/scout-attack.png -%%DATADIR%%/images/units/elves-wood/scout-attack1.png -%%DATADIR%%/images/units/elves-wood/scout-attack2.png -%%DATADIR%%/images/units/elves-wood/scout-defend.png -%%DATADIR%%/images/units/elves-wood/scout-moving.png -%%DATADIR%%/images/units/elves-wood/scout.png -%%DATADIR%%/images/units/elves-wood/shaman-attack.png -%%DATADIR%%/images/units/elves-wood/shaman-attack2.png -%%DATADIR%%/images/units/elves-wood/shaman-defend.png -%%DATADIR%%/images/units/elves-wood/shaman-heal1.png -%%DATADIR%%/images/units/elves-wood/shaman-heal2.png -%%DATADIR%%/images/units/elves-wood/shaman-heal3.png -%%DATADIR%%/images/units/elves-wood/shaman-heal4.png -%%DATADIR%%/images/units/elves-wood/shaman-heal5.png -%%DATADIR%%/images/units/elves-wood/shaman-heal6.png -%%DATADIR%%/images/units/elves-wood/shaman-heal7.png -%%DATADIR%%/images/units/elves-wood/shaman-heal8.png -%%DATADIR%%/images/units/elves-wood/shaman-heal9.png -%%DATADIR%%/images/units/elves-wood/shaman.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow-defend.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-bow.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-defend.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-melee-1.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female-melee-2.png -%%DATADIR%%/images/units/elves-wood/sharpshooter+female.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-attack1.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-attack2.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-attack3.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-attack4.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-bow-defend.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-bow.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-defend.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-die1.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-die2.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-die3.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-die4.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-melee-1.png -%%DATADIR%%/images/units/elves-wood/sharpshooter-melee-2.png -%%DATADIR%%/images/units/elves-wood/sharpshooter.png -%%DATADIR%%/images/units/elves-wood/shyde-defend.png -%%DATADIR%%/images/units/elves-wood/shyde-ftouch-attack1.png -%%DATADIR%%/images/units/elves-wood/shyde-ftouch-attack2.png -%%DATADIR%%/images/units/elves-wood/shyde-ftouch-attack3.png -%%DATADIR%%/images/units/elves-wood/shyde-healing1.png -%%DATADIR%%/images/units/elves-wood/shyde-healing10.png -%%DATADIR%%/images/units/elves-wood/shyde-healing11.png -%%DATADIR%%/images/units/elves-wood/shyde-healing12.png -%%DATADIR%%/images/units/elves-wood/shyde-healing2.png -%%DATADIR%%/images/units/elves-wood/shyde-healing3.png -%%DATADIR%%/images/units/elves-wood/shyde-healing4.png -%%DATADIR%%/images/units/elves-wood/shyde-healing5.png -%%DATADIR%%/images/units/elves-wood/shyde-healing6.png -%%DATADIR%%/images/units/elves-wood/shyde-healing7.png -%%DATADIR%%/images/units/elves-wood/shyde-healing8.png -%%DATADIR%%/images/units/elves-wood/shyde-healing9.png -%%DATADIR%%/images/units/elves-wood/shyde.png -%%DATADIR%%/images/units/elves-wood/sorceress-defend.png -%%DATADIR%%/images/units/elves-wood/sorceress-magic.png -%%DATADIR%%/images/units/elves-wood/sorceress-melee.png -%%DATADIR%%/images/units/elves-wood/sorceress.png -%%DATADIR%%/images/units/elves-wood/sylph-defend.png -%%DATADIR%%/images/units/elves-wood/sylph-magic.png -%%DATADIR%%/images/units/elves-wood/sylph-melee.png -%%DATADIR%%/images/units/elves-wood/sylph.png -%%DATADIR%%/images/units/goblins/direwolver-attack.png -%%DATADIR%%/images/units/goblins/direwolver-defend.png -%%DATADIR%%/images/units/goblins/direwolver-moving.png -%%DATADIR%%/images/units/goblins/direwolver.png -%%DATADIR%%/images/units/goblins/impaler-attack-n.png -%%DATADIR%%/images/units/goblins/impaler-attack-ne.png -%%DATADIR%%/images/units/goblins/impaler-attack-ranged-s.png -%%DATADIR%%/images/units/goblins/impaler-attack-s.png -%%DATADIR%%/images/units/goblins/impaler-attack-se-1.png -%%DATADIR%%/images/units/goblins/impaler-attack-se-2.png -%%DATADIR%%/images/units/goblins/impaler-death-1.png -%%DATADIR%%/images/units/goblins/impaler-death-2.png -%%DATADIR%%/images/units/goblins/impaler-death-3.png -%%DATADIR%%/images/units/goblins/impaler-death-4.png -%%DATADIR%%/images/units/goblins/impaler-death-5.png -%%DATADIR%%/images/units/goblins/impaler-death-6.png -%%DATADIR%%/images/units/goblins/impaler-death-7.png -%%DATADIR%%/images/units/goblins/impaler-death-8.png -%%DATADIR%%/images/units/goblins/impaler-death-9.png -%%DATADIR%%/images/units/goblins/impaler-defend.png -%%DATADIR%%/images/units/goblins/impaler.png -%%DATADIR%%/images/units/goblins/knight-attack.png -%%DATADIR%%/images/units/goblins/knight-defend.png -%%DATADIR%%/images/units/goblins/knight-moving.png -%%DATADIR%%/images/units/goblins/knight.png -%%DATADIR%%/images/units/goblins/pillager-attack.png -%%DATADIR%%/images/units/goblins/pillager-attack2.png -%%DATADIR%%/images/units/goblins/pillager-defend.png -%%DATADIR%%/images/units/goblins/pillager-moving.png -%%DATADIR%%/images/units/goblins/pillager.png -%%DATADIR%%/images/units/goblins/rouser-attack-n.png -%%DATADIR%%/images/units/goblins/rouser-attack-ne.png -%%DATADIR%%/images/units/goblins/rouser-attack-s.png -%%DATADIR%%/images/units/goblins/rouser-attack-se.png -%%DATADIR%%/images/units/goblins/rouser-attack1.png -%%DATADIR%%/images/units/goblins/rouser-attack3.png -%%DATADIR%%/images/units/goblins/rouser-attack4.png -%%DATADIR%%/images/units/goblins/rouser-defend.png -%%DATADIR%%/images/units/goblins/rouser-leading.png -%%DATADIR%%/images/units/goblins/rouser.png -%%DATADIR%%/images/units/goblins/spearman-attack-n1.png -%%DATADIR%%/images/units/goblins/spearman-attack-n2.png -%%DATADIR%%/images/units/goblins/spearman-attack-ne1.png -%%DATADIR%%/images/units/goblins/spearman-attack-ne2.png -%%DATADIR%%/images/units/goblins/spearman-attack-s1.png -%%DATADIR%%/images/units/goblins/spearman-attack-s2.png -%%DATADIR%%/images/units/goblins/spearman-attack-se1.png -%%DATADIR%%/images/units/goblins/spearman-attack-se2.png -%%DATADIR%%/images/units/goblins/spearman-defend.png -%%DATADIR%%/images/units/goblins/spearman.png -%%DATADIR%%/images/units/goblins/wolf-rider-attack.png -%%DATADIR%%/images/units/goblins/wolf-rider-defend.png -%%DATADIR%%/images/units/goblins/wolf-rider-moving.png -%%DATADIR%%/images/units/goblins/wolf-rider.png -%%DATADIR%%/images/units/human-loyalists/bowman-attack-sword.png -%%DATADIR%%/images/units/human-loyalists/bowman-defend.png -%%DATADIR%%/images/units/human-loyalists/bowman-ranged-1.png -%%DATADIR%%/images/units/human-loyalists/bowman-ranged-2.png -%%DATADIR%%/images/units/human-loyalists/bowman-ranged-3.png -%%DATADIR%%/images/units/human-loyalists/bowman-ranged-4.png -%%DATADIR%%/images/units/human-loyalists/bowman-ranged-5.png -%%DATADIR%%/images/units/human-loyalists/bowman-ranged-6.png -%%DATADIR%%/images/units/human-loyalists/bowman-ranged-7.png -%%DATADIR%%/images/units/human-loyalists/bowman-ranged-8.png -%%DATADIR%%/images/units/human-loyalists/bowman.png -%%DATADIR%%/images/units/human-loyalists/cavalier-attack.png -%%DATADIR%%/images/units/human-loyalists/cavalier-defend.png -%%DATADIR%%/images/units/human-loyalists/cavalier-moving.png -%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-1.png -%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-2.png -%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-3.png -%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-4.png -%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-5.png -%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-6.png -%%DATADIR%%/images/units/human-loyalists/cavalier-ranged-7.png -%%DATADIR%%/images/units/human-loyalists/cavalier.png -%%DATADIR%%/images/units/human-loyalists/cavalryman-attack.png -%%DATADIR%%/images/units/human-loyalists/cavalryman-defend.png -%%DATADIR%%/images/units/human-loyalists/cavalryman-die-1.png -%%DATADIR%%/images/units/human-loyalists/cavalryman-die-2.png -%%DATADIR%%/images/units/human-loyalists/cavalryman-moving.png -%%DATADIR%%/images/units/human-loyalists/cavalryman.png -%%DATADIR%%/images/units/human-loyalists/dragoon-attack.png -%%DATADIR%%/images/units/human-loyalists/dragoon-defend.png -%%DATADIR%%/images/units/human-loyalists/dragoon-moving.png -%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-1.png -%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-2.png -%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-3.png -%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-4.png -%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-5.png -%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-6.png -%%DATADIR%%/images/units/human-loyalists/dragoon-ranged-7.png -%%DATADIR%%/images/units/human-loyalists/dragoon.png -%%DATADIR%%/images/units/human-loyalists/duelist-attack.png -%%DATADIR%%/images/units/human-loyalists/duelist-defend.png -%%DATADIR%%/images/units/human-loyalists/duelist-die1.png -%%DATADIR%%/images/units/human-loyalists/duelist-die2.png -%%DATADIR%%/images/units/human-loyalists/duelist-die3.png -%%DATADIR%%/images/units/human-loyalists/duelist-die4.png -%%DATADIR%%/images/units/human-loyalists/duelist-die5.png -%%DATADIR%%/images/units/human-loyalists/duelist-die6.png -%%DATADIR%%/images/units/human-loyalists/duelist-die7.png -%%DATADIR%%/images/units/human-loyalists/duelist-die8.png -%%DATADIR%%/images/units/human-loyalists/duelist-ranged.png -%%DATADIR%%/images/units/human-loyalists/duelist-stand2.png -%%DATADIR%%/images/units/human-loyalists/duelist.png -%%DATADIR%%/images/units/human-loyalists/fencer-attack.png -%%DATADIR%%/images/units/human-loyalists/fencer-defend-1-1.png -%%DATADIR%%/images/units/human-loyalists/fencer-defend-1-2.png -%%DATADIR%%/images/units/human-loyalists/fencer-defend.png -%%DATADIR%%/images/units/human-loyalists/fencer-die1.png -%%DATADIR%%/images/units/human-loyalists/fencer-die2.png -%%DATADIR%%/images/units/human-loyalists/fencer-die3.png -%%DATADIR%%/images/units/human-loyalists/fencer-die4.png -%%DATADIR%%/images/units/human-loyalists/fencer-die5.png -%%DATADIR%%/images/units/human-loyalists/fencer.png -%%DATADIR%%/images/units/human-loyalists/general-attack-crossbow.png -%%DATADIR%%/images/units/human-loyalists/general-attack-sword1.png -%%DATADIR%%/images/units/human-loyalists/general-attack-sword2.png -%%DATADIR%%/images/units/human-loyalists/general-defend-crossbow.png -%%DATADIR%%/images/units/human-loyalists/general-defend.png -%%DATADIR%%/images/units/human-loyalists/general-leading.png -%%DATADIR%%/images/units/human-loyalists/general.png -%%DATADIR%%/images/units/human-loyalists/grand-knight-attack-sword.png -%%DATADIR%%/images/units/human-loyalists/grand-knight-defend.png -%%DATADIR%%/images/units/human-loyalists/grand-knight-moving.png -%%DATADIR%%/images/units/human-loyalists/grand-knight.png -%%DATADIR%%/images/units/human-loyalists/halberdier-defend.png -%%DATADIR%%/images/units/human-loyalists/halberdier-pierce-n.png -%%DATADIR%%/images/units/human-loyalists/halberdier-pierce-ne.png -%%DATADIR%%/images/units/human-loyalists/halberdier-pierce-s.png -%%DATADIR%%/images/units/human-loyalists/halberdier-pierce-se.png -%%DATADIR%%/images/units/human-loyalists/halberdier-slash-se-1.png -%%DATADIR%%/images/units/human-loyalists/halberdier-slash-se-2.png -%%DATADIR%%/images/units/human-loyalists/halberdier.png -%%DATADIR%%/images/units/human-loyalists/heavyinfantry-attack-1.png -%%DATADIR%%/images/units/human-loyalists/heavyinfantry-attack-2.png -%%DATADIR%%/images/units/human-loyalists/heavyinfantry-defend-1.png -%%DATADIR%%/images/units/human-loyalists/heavyinfantry-defend-2.png -%%DATADIR%%/images/units/human-loyalists/heavyinfantry.png -%%DATADIR%%/images/units/human-loyalists/horseman-attack.png -%%DATADIR%%/images/units/human-loyalists/horseman-defend.png -%%DATADIR%%/images/units/human-loyalists/horseman-moving.png -%%DATADIR%%/images/units/human-loyalists/horseman.png -%%DATADIR%%/images/units/human-loyalists/javelineer-attack-melee-1.png -%%DATADIR%%/images/units/human-loyalists/javelineer-attack-melee-2.png -%%DATADIR%%/images/units/human-loyalists/javelineer-attack-melee-3.png -%%DATADIR%%/images/units/human-loyalists/javelineer-attack-ranged-1.png -%%DATADIR%%/images/units/human-loyalists/javelineer-attack-ranged-2.png -%%DATADIR%%/images/units/human-loyalists/javelineer-attack-ranged-3.png -%%DATADIR%%/images/units/human-loyalists/javelineer-attack-ranged-4.png -%%DATADIR%%/images/units/human-loyalists/javelineer-defend.png -%%DATADIR%%/images/units/human-loyalists/javelineer.png -%%DATADIR%%/images/units/human-loyalists/knight-attack.png -%%DATADIR%%/images/units/human-loyalists/knight-defend.png -%%DATADIR%%/images/units/human-loyalists/knight-moving.png -%%DATADIR%%/images/units/human-loyalists/knight.png -%%DATADIR%%/images/units/human-loyalists/lancer-attack.png -%%DATADIR%%/images/units/human-loyalists/lancer-defend.png -%%DATADIR%%/images/units/human-loyalists/lancer-moving.png -%%DATADIR%%/images/units/human-loyalists/lancer.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-attack-crossbow.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-attack-sword-1.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-attack-sword-2.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-attack-sword-3.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-defend.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-1.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-2.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-3.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-4.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-5.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-6.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-7.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-8.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-die-9.png -%%DATADIR%%/images/units/human-loyalists/lieutenant-leading.png -%%DATADIR%%/images/units/human-loyalists/lieutenant.png -%%DATADIR%%/images/units/human-loyalists/longbowman-bow-attack1.png -%%DATADIR%%/images/units/human-loyalists/longbowman-bow-attack2.png -%%DATADIR%%/images/units/human-loyalists/longbowman-bow-attack3.png -%%DATADIR%%/images/units/human-loyalists/longbowman-bow-attack4.png -%%DATADIR%%/images/units/human-loyalists/longbowman-bow-defend.png -%%DATADIR%%/images/units/human-loyalists/longbowman-bow.png -%%DATADIR%%/images/units/human-loyalists/longbowman-defend.png -%%DATADIR%%/images/units/human-loyalists/longbowman-melee-1.png -%%DATADIR%%/images/units/human-loyalists/longbowman-melee-2.png -%%DATADIR%%/images/units/human-loyalists/longbowman.png -%%DATADIR%%/images/units/human-loyalists/marshal-attack-crossbow.png -%%DATADIR%%/images/units/human-loyalists/marshal-attack-sword1.png -%%DATADIR%%/images/units/human-loyalists/marshal-attack-sword2.png -%%DATADIR%%/images/units/human-loyalists/marshal-defend-crossbow.png -%%DATADIR%%/images/units/human-loyalists/marshal-defend.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-1.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-10.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-2.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-3.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-4.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-5.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-6.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-7.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-8.png -%%DATADIR%%/images/units/human-loyalists/marshal-die-9.png -%%DATADIR%%/images/units/human-loyalists/marshal-leading.png -%%DATADIR%%/images/units/human-loyalists/marshal.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-1-1.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-1-2.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-1-3.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-2-1.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-2-2.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-2-3.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-melee-3-3.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-recover-1.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms-recover-2.png -%%DATADIR%%/images/units/human-loyalists/master-at-arms.png -%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-attack1.png -%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-attack2.png -%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-attack3.png -%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-attack4.png -%%DATADIR%%/images/units/human-loyalists/masterbowman-bow-defend.png -%%DATADIR%%/images/units/human-loyalists/masterbowman-bow.png -%%DATADIR%%/images/units/human-loyalists/masterbowman-melee-1.png -%%DATADIR%%/images/units/human-loyalists/masterbowman-melee-2.png -%%DATADIR%%/images/units/human-loyalists/masterbowman.png -%%DATADIR%%/images/units/human-loyalists/paladin-attack-sword.png -%%DATADIR%%/images/units/human-loyalists/paladin-defend.png -%%DATADIR%%/images/units/human-loyalists/paladin-healing.png -%%DATADIR%%/images/units/human-loyalists/paladin-moving.png -%%DATADIR%%/images/units/human-loyalists/paladin.png -%%DATADIR%%/images/units/human-loyalists/peasant-attack.png -%%DATADIR%%/images/units/human-loyalists/peasant-attack2.png -%%DATADIR%%/images/units/human-loyalists/peasant-defend.png -%%DATADIR%%/images/units/human-loyalists/peasant-ranged.png -%%DATADIR%%/images/units/human-loyalists/peasant.png -%%DATADIR%%/images/units/human-loyalists/pikeman-attack-n.png -%%DATADIR%%/images/units/human-loyalists/pikeman-attack-ne.png -%%DATADIR%%/images/units/human-loyalists/pikeman-attack-s.png -%%DATADIR%%/images/units/human-loyalists/pikeman-attack-se.png -%%DATADIR%%/images/units/human-loyalists/pikeman-defend.png -%%DATADIR%%/images/units/human-loyalists/pikeman-die-1.png -%%DATADIR%%/images/units/human-loyalists/pikeman-die-2.png -%%DATADIR%%/images/units/human-loyalists/pikeman-die-3.png -%%DATADIR%%/images/units/human-loyalists/pikeman-die-4.png -%%DATADIR%%/images/units/human-loyalists/pikeman-die-5.png -%%DATADIR%%/images/units/human-loyalists/pikeman.png -%%DATADIR%%/images/units/human-loyalists/royalguard-attack.png -%%DATADIR%%/images/units/human-loyalists/royalguard-attack2.png -%%DATADIR%%/images/units/human-loyalists/royalguard-defend.png -%%DATADIR%%/images/units/human-loyalists/royalguard.png -%%DATADIR%%/images/units/human-loyalists/sergeant-attack-crossbow.png -%%DATADIR%%/images/units/human-loyalists/sergeant-attack-sword-1.png -%%DATADIR%%/images/units/human-loyalists/sergeant-attack-sword-2.png -%%DATADIR%%/images/units/human-loyalists/sergeant-attack-sword-3.png -%%DATADIR%%/images/units/human-loyalists/sergeant-defend.png -%%DATADIR%%/images/units/human-loyalists/sergeant-leading.png -%%DATADIR%%/images/units/human-loyalists/sergeant.png -%%DATADIR%%/images/units/human-loyalists/shocktrooper-attack-1.png -%%DATADIR%%/images/units/human-loyalists/shocktrooper-attack-2.png -%%DATADIR%%/images/units/human-loyalists/shocktrooper-defend-1.png -%%DATADIR%%/images/units/human-loyalists/shocktrooper-defend-2.png -%%DATADIR%%/images/units/human-loyalists/shocktrooper.png -%%DATADIR%%/images/units/human-loyalists/siegetrooper-attack-1.png -%%DATADIR%%/images/units/human-loyalists/siegetrooper-attack-2.png -%%DATADIR%%/images/units/human-loyalists/siegetrooper-defend-1.png -%%DATADIR%%/images/units/human-loyalists/siegetrooper-defend-2.png -%%DATADIR%%/images/units/human-loyalists/siegetrooper.png -%%DATADIR%%/images/units/human-loyalists/spearman-attack-n.png -%%DATADIR%%/images/units/human-loyalists/spearman-attack-ne.png -%%DATADIR%%/images/units/human-loyalists/spearman-attack-ranged.png -%%DATADIR%%/images/units/human-loyalists/spearman-attack-ranged2.png -%%DATADIR%%/images/units/human-loyalists/spearman-attack-s-1.png -%%DATADIR%%/images/units/human-loyalists/spearman-attack-s-2.png -%%DATADIR%%/images/units/human-loyalists/spearman-attack.png -%%DATADIR%%/images/units/human-loyalists/spearman-death1.png -%%DATADIR%%/images/units/human-loyalists/spearman-death2.png -%%DATADIR%%/images/units/human-loyalists/spearman-death3.png -%%DATADIR%%/images/units/human-loyalists/spearman-death4.png -%%DATADIR%%/images/units/human-loyalists/spearman-defend-2.png -%%DATADIR%%/images/units/human-loyalists/spearman-defend.png -%%DATADIR%%/images/units/human-loyalists/spearman.png -%%DATADIR%%/images/units/human-loyalists/swordsman-attack-1.png -%%DATADIR%%/images/units/human-loyalists/swordsman-attack-2.png -%%DATADIR%%/images/units/human-loyalists/swordsman-attack-3.png -%%DATADIR%%/images/units/human-loyalists/swordsman-defend.png -%%DATADIR%%/images/units/human-loyalists/swordsman.png -%%DATADIR%%/images/units/human-magi/arch-mage+female-attack-magic1.png -%%DATADIR%%/images/units/human-magi/arch-mage+female-attack-magic2.png -%%DATADIR%%/images/units/human-magi/arch-mage+female-attack-staff1.png -%%DATADIR%%/images/units/human-magi/arch-mage+female-attack-staff2.png -%%DATADIR%%/images/units/human-magi/arch-mage+female-defend.png -%%DATADIR%%/images/units/human-magi/arch-mage+female.png -%%DATADIR%%/images/units/human-magi/arch-mage-attack-magic1.png -%%DATADIR%%/images/units/human-magi/arch-mage-attack-magic2.png -%%DATADIR%%/images/units/human-magi/arch-mage-attack-staff1.png -%%DATADIR%%/images/units/human-magi/arch-mage-attack-staff2.png -%%DATADIR%%/images/units/human-magi/arch-mage-defend.png -%%DATADIR%%/images/units/human-magi/arch-mage.png -%%DATADIR%%/images/units/human-magi/great-mage+female-attack-magic1.png -%%DATADIR%%/images/units/human-magi/great-mage+female-attack-magic2.png -%%DATADIR%%/images/units/human-magi/great-mage+female-attack-staff1.png -%%DATADIR%%/images/units/human-magi/great-mage+female-attack-staff2.png -%%DATADIR%%/images/units/human-magi/great-mage+female-defend.png -%%DATADIR%%/images/units/human-magi/great-mage+female.png -%%DATADIR%%/images/units/human-magi/great-mage-attack-magic1.png -%%DATADIR%%/images/units/human-magi/great-mage-attack-magic2.png -%%DATADIR%%/images/units/human-magi/great-mage-attack-staff1.png -%%DATADIR%%/images/units/human-magi/great-mage-attack-staff2.png -%%DATADIR%%/images/units/human-magi/great-mage-defend.png -%%DATADIR%%/images/units/human-magi/great-mage.png -%%DATADIR%%/images/units/human-magi/mage+female-attack-magic1.png -%%DATADIR%%/images/units/human-magi/mage+female-attack-magic2.png -%%DATADIR%%/images/units/human-magi/mage+female-attack-staff1.png -%%DATADIR%%/images/units/human-magi/mage+female-attack-staff2.png -%%DATADIR%%/images/units/human-magi/mage+female-defend.png -%%DATADIR%%/images/units/human-magi/mage+female-die-1.png -%%DATADIR%%/images/units/human-magi/mage+female-die-2.png -%%DATADIR%%/images/units/human-magi/mage+female-die-3.png -%%DATADIR%%/images/units/human-magi/mage+female-die-4.png -%%DATADIR%%/images/units/human-magi/mage+female.png -%%DATADIR%%/images/units/human-magi/mage-attack-magic1.png -%%DATADIR%%/images/units/human-magi/mage-attack-magic2.png -%%DATADIR%%/images/units/human-magi/mage-attack-staff1.png -%%DATADIR%%/images/units/human-magi/mage-attack-staff2.png -%%DATADIR%%/images/units/human-magi/mage-defend.png -%%DATADIR%%/images/units/human-magi/mage-die-1.png -%%DATADIR%%/images/units/human-magi/mage-die-2.png -%%DATADIR%%/images/units/human-magi/mage-die-3.png -%%DATADIR%%/images/units/human-magi/mage-die-4.png -%%DATADIR%%/images/units/human-magi/mage.png -%%DATADIR%%/images/units/human-magi/red-mage+female-attack-magic1.png -%%DATADIR%%/images/units/human-magi/red-mage+female-attack-magic2.png -%%DATADIR%%/images/units/human-magi/red-mage+female-attack-staff1.png -%%DATADIR%%/images/units/human-magi/red-mage+female-attack-staff2.png -%%DATADIR%%/images/units/human-magi/red-mage+female-defend.png -%%DATADIR%%/images/units/human-magi/red-mage+female-die-1.png -%%DATADIR%%/images/units/human-magi/red-mage+female-die-2.png -%%DATADIR%%/images/units/human-magi/red-mage+female-die-3.png -%%DATADIR%%/images/units/human-magi/red-mage+female-die-4.png -%%DATADIR%%/images/units/human-magi/red-mage+female.png -%%DATADIR%%/images/units/human-magi/red-mage-attack-magic1.png -%%DATADIR%%/images/units/human-magi/red-mage-attack-magic2.png -%%DATADIR%%/images/units/human-magi/red-mage-attack-staff1.png -%%DATADIR%%/images/units/human-magi/red-mage-attack-staff2.png -%%DATADIR%%/images/units/human-magi/red-mage-defend.png -%%DATADIR%%/images/units/human-magi/red-mage-die-1.png -%%DATADIR%%/images/units/human-magi/red-mage-die-2.png -%%DATADIR%%/images/units/human-magi/red-mage-die-3.png -%%DATADIR%%/images/units/human-magi/red-mage-die-4.png -%%DATADIR%%/images/units/human-magi/red-mage.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-attack-magic1.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-attack-magic2.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-attack-staff1.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-attack-staff2.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-defend.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport1.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport10.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport2.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport3.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport4.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport5.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport6.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport7.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport8.png -%%DATADIR%%/images/units/human-magi/silver-mage+female-teleport9.png -%%DATADIR%%/images/units/human-magi/silver-mage+female.png -%%DATADIR%%/images/units/human-magi/silver-mage-attack-magic1.png -%%DATADIR%%/images/units/human-magi/silver-mage-attack-magic2.png -%%DATADIR%%/images/units/human-magi/silver-mage-attack-staff1.png -%%DATADIR%%/images/units/human-magi/silver-mage-attack-staff2.png -%%DATADIR%%/images/units/human-magi/silver-mage-defend.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport1.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport10.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport2.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport3.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport4.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport5.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport6.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport7.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport8.png -%%DATADIR%%/images/units/human-magi/silver-mage-teleport9.png -%%DATADIR%%/images/units/human-magi/silver-mage.png -%%DATADIR%%/images/units/human-magi/white-cleric+female-mace-1.png -%%DATADIR%%/images/units/human-magi/white-cleric+female-mace-2.png -%%DATADIR%%/images/units/human-magi/white-cleric+female-mace-3.png -%%DATADIR%%/images/units/human-magi/white-cleric+female-mace-4.png -%%DATADIR%%/images/units/human-magi/white-cleric+female-magic-1.png -%%DATADIR%%/images/units/human-magi/white-cleric+female-magic-2.png -%%DATADIR%%/images/units/human-magi/white-cleric+female-magic-3.png -%%DATADIR%%/images/units/human-magi/white-cleric+female-defend.png -%%DATADIR%%/images/units/human-magi/white-cleric+female.png -%%DATADIR%%/images/units/human-magi/white-cleric-defend.png -%%DATADIR%%/images/units/human-magi/white-cleric-mace-1.png -%%DATADIR%%/images/units/human-magi/white-cleric-mace-2.png -%%DATADIR%%/images/units/human-magi/white-cleric-mace-3.png -%%DATADIR%%/images/units/human-magi/white-cleric-mace-4.png -%%DATADIR%%/images/units/human-magi/white-cleric-magic-1.png -%%DATADIR%%/images/units/human-magi/white-cleric-magic-2.png -%%DATADIR%%/images/units/human-magi/white-cleric-magic-3.png -%%DATADIR%%/images/units/human-magi/white-cleric.png -%%DATADIR%%/images/units/human-magi/white-mage+female-defend.png -%%DATADIR%%/images/units/human-magi/white-mage+female-die-1.png -%%DATADIR%%/images/units/human-magi/white-mage+female-die-2.png -%%DATADIR%%/images/units/human-magi/white-mage+female-die-3.png -%%DATADIR%%/images/units/human-magi/white-mage+female-die-4.png -%%DATADIR%%/images/units/human-magi/white-mage+female-magic-1.png -%%DATADIR%%/images/units/human-magi/white-mage+female-magic-2.png -%%DATADIR%%/images/units/human-magi/white-mage+female-magic-3.png -%%DATADIR%%/images/units/human-magi/white-mage+female-melee-1.png -%%DATADIR%%/images/units/human-magi/white-mage+female-melee-2.png -%%DATADIR%%/images/units/human-magi/white-mage+female-melee-3.png -%%DATADIR%%/images/units/human-magi/white-mage+female-melee-4.png -%%DATADIR%%/images/units/human-magi/white-mage+female-melee-5.png -%%DATADIR%%/images/units/human-magi/white-mage+female-melee-6.png -%%DATADIR%%/images/units/human-magi/white-mage+female.png -%%DATADIR%%/images/units/human-magi/white-mage-defend.png -%%DATADIR%%/images/units/human-magi/white-mage-die-1.png -%%DATADIR%%/images/units/human-magi/white-mage-die-2.png -%%DATADIR%%/images/units/human-magi/white-mage-die-3.png -%%DATADIR%%/images/units/human-magi/white-mage-die-4.png -%%DATADIR%%/images/units/human-magi/white-mage-magic-1.png -%%DATADIR%%/images/units/human-magi/white-mage-magic-2.png -%%DATADIR%%/images/units/human-magi/white-mage-magic-3.png -%%DATADIR%%/images/units/human-magi/white-mage-melee-1.png -%%DATADIR%%/images/units/human-magi/white-mage-melee-2.png -%%DATADIR%%/images/units/human-magi/white-mage-melee-3.png -%%DATADIR%%/images/units/human-magi/white-mage-melee-4.png -%%DATADIR%%/images/units/human-magi/white-mage-melee-5.png -%%DATADIR%%/images/units/human-magi/white-mage-melee-6.png -%%DATADIR%%/images/units/human-magi/white-mage.png -%%DATADIR%%/images/units/human-outlaws/assassin+female-defend-1.png -%%DATADIR%%/images/units/human-outlaws/assassin+female-defend-2.png -%%DATADIR%%/images/units/human-outlaws/assassin+female-melee-1-1.png -%%DATADIR%%/images/units/human-outlaws/assassin+female-melee-1-2.png -%%DATADIR%%/images/units/human-outlaws/assassin+female-melee-2-1.png -%%DATADIR%%/images/units/human-outlaws/assassin+female-melee-2-2.png -%%DATADIR%%/images/units/human-outlaws/assassin+female-throwknife1.png -%%DATADIR%%/images/units/human-outlaws/assassin+female-throwknife2.png -%%DATADIR%%/images/units/human-outlaws/assassin+female.png -%%DATADIR%%/images/units/human-outlaws/assassin-defend-1.png -%%DATADIR%%/images/units/human-outlaws/assassin-defend-2.png -%%DATADIR%%/images/units/human-outlaws/assassin-melee-1-1.png -%%DATADIR%%/images/units/human-outlaws/assassin-melee-1-2.png -%%DATADIR%%/images/units/human-outlaws/assassin-melee-2-1.png -%%DATADIR%%/images/units/human-outlaws/assassin-melee-2-2.png -%%DATADIR%%/images/units/human-outlaws/assassin-throwknife1.png -%%DATADIR%%/images/units/human-outlaws/assassin-throwknife2.png -%%DATADIR%%/images/units/human-outlaws/assassin.png -%%DATADIR%%/images/units/human-outlaws/bandit-defend.png -%%DATADIR%%/images/units/human-outlaws/bandit-die-1.png -%%DATADIR%%/images/units/human-outlaws/bandit-die-2.png -%%DATADIR%%/images/units/human-outlaws/bandit-melee-1.png -%%DATADIR%%/images/units/human-outlaws/bandit-melee-2.png -%%DATADIR%%/images/units/human-outlaws/bandit-melee-3.png -%%DATADIR%%/images/units/human-outlaws/bandit.png -%%DATADIR%%/images/units/human-outlaws/footpad+female-attack1.png -%%DATADIR%%/images/units/human-outlaws/footpad+female-attack2.png -%%DATADIR%%/images/units/human-outlaws/footpad+female-defend.png -%%DATADIR%%/images/units/human-outlaws/footpad+female-melee-1.png -%%DATADIR%%/images/units/human-outlaws/footpad+female-melee-2.png -%%DATADIR%%/images/units/human-outlaws/footpad+female-melee-3.png -%%DATADIR%%/images/units/human-outlaws/footpad+female-melee-4.png -%%DATADIR%%/images/units/human-outlaws/footpad+female.png -%%DATADIR%%/images/units/human-outlaws/footpad-attack1.png -%%DATADIR%%/images/units/human-outlaws/footpad-attack2.png -%%DATADIR%%/images/units/human-outlaws/footpad-defend.png -%%DATADIR%%/images/units/human-outlaws/footpad-melee-1.png -%%DATADIR%%/images/units/human-outlaws/footpad-melee-2.png -%%DATADIR%%/images/units/human-outlaws/footpad-melee-3.png -%%DATADIR%%/images/units/human-outlaws/footpad-melee-4.png -%%DATADIR%%/images/units/human-outlaws/footpad.png -%%DATADIR%%/images/units/human-outlaws/outlaw+female-attack1.png -%%DATADIR%%/images/units/human-outlaws/outlaw+female-attack2.png -%%DATADIR%%/images/units/human-outlaws/outlaw+female-defend.png -%%DATADIR%%/images/units/human-outlaws/outlaw+female-melee-1.png -%%DATADIR%%/images/units/human-outlaws/outlaw+female-melee-2.png -%%DATADIR%%/images/units/human-outlaws/outlaw+female-melee-3.png -%%DATADIR%%/images/units/human-outlaws/outlaw+female.png -%%DATADIR%%/images/units/human-outlaws/outlaw-attack1.png -%%DATADIR%%/images/units/human-outlaws/outlaw-attack2.png -%%DATADIR%%/images/units/human-outlaws/outlaw-defend.png -%%DATADIR%%/images/units/human-outlaws/outlaw-melee-1.png -%%DATADIR%%/images/units/human-outlaws/outlaw-melee-2.png -%%DATADIR%%/images/units/human-outlaws/outlaw-melee-3.png -%%DATADIR%%/images/units/human-outlaws/outlaw.png -%%DATADIR%%/images/units/human-outlaws/poacher-attack.png -%%DATADIR%%/images/units/human-outlaws/poacher-attack1.png -%%DATADIR%%/images/units/human-outlaws/poacher-attack2.png -%%DATADIR%%/images/units/human-outlaws/poacher-attack3.png -%%DATADIR%%/images/units/human-outlaws/poacher-bow-defend.png -%%DATADIR%%/images/units/human-outlaws/poacher-defend.png -%%DATADIR%%/images/units/human-outlaws/poacher.png -%%DATADIR%%/images/units/human-outlaws/rogue+female-attack.png -%%DATADIR%%/images/units/human-outlaws/rogue+female-defend.png -%%DATADIR%%/images/units/human-outlaws/rogue+female-ranged.png -%%DATADIR%%/images/units/human-outlaws/rogue+female.png -%%DATADIR%%/images/units/human-outlaws/rogue-attack.png -%%DATADIR%%/images/units/human-outlaws/rogue-defend.png -%%DATADIR%%/images/units/human-outlaws/rogue-ranged.png -%%DATADIR%%/images/units/human-outlaws/rogue.png -%%DATADIR%%/images/units/human-outlaws/thief+female-attack.png -%%DATADIR%%/images/units/human-outlaws/thief+female-defend-1-1.png -%%DATADIR%%/images/units/human-outlaws/thief+female-defend-1-2.png -%%DATADIR%%/images/units/human-outlaws/thief+female-defend-2-1.png -%%DATADIR%%/images/units/human-outlaws/thief+female-defend-2-2.png -%%DATADIR%%/images/units/human-outlaws/thief+female-defend-3-1.png -%%DATADIR%%/images/units/human-outlaws/thief+female-defend-3-2.png -%%DATADIR%%/images/units/human-outlaws/thief+female-defend.png -%%DATADIR%%/images/units/human-outlaws/thief+female-die-1.png -%%DATADIR%%/images/units/human-outlaws/thief+female-die-2.png -%%DATADIR%%/images/units/human-outlaws/thief+female-die-3.png -%%DATADIR%%/images/units/human-outlaws/thief+female-die-4.png -%%DATADIR%%/images/units/human-outlaws/thief+female-die-5.png -%%DATADIR%%/images/units/human-outlaws/thief+female-die-6.png -%%DATADIR%%/images/units/human-outlaws/thief+female-die-7.png -%%DATADIR%%/images/units/human-outlaws/thief+female.png -%%DATADIR%%/images/units/human-outlaws/thief-attack.png -%%DATADIR%%/images/units/human-outlaws/thief-defend-1-1.png -%%DATADIR%%/images/units/human-outlaws/thief-defend-1-2.png -%%DATADIR%%/images/units/human-outlaws/thief-defend-2-1.png -%%DATADIR%%/images/units/human-outlaws/thief-defend-2-2.png -%%DATADIR%%/images/units/human-outlaws/thief-defend-3-1.png -%%DATADIR%%/images/units/human-outlaws/thief-defend-3-2.png -%%DATADIR%%/images/units/human-outlaws/thief-defend.png -%%DATADIR%%/images/units/human-outlaws/thief-die-1.png -%%DATADIR%%/images/units/human-outlaws/thief-die-2.png -%%DATADIR%%/images/units/human-outlaws/thief-die-3.png -%%DATADIR%%/images/units/human-outlaws/thief-die-4.png -%%DATADIR%%/images/units/human-outlaws/thief-die-5.png -%%DATADIR%%/images/units/human-outlaws/thief-die-6.png -%%DATADIR%%/images/units/human-outlaws/thief-die-7.png -%%DATADIR%%/images/units/human-outlaws/thief.png -%%DATADIR%%/images/units/human-outlaws/thug-attack.png -%%DATADIR%%/images/units/human-outlaws/thug-defend.png -%%DATADIR%%/images/units/human-outlaws/thug.png -%%DATADIR%%/images/units/human-outlaws/trapper-attack-melee-2.png -%%DATADIR%%/images/units/human-outlaws/trapper-attack-melee.png -%%DATADIR%%/images/units/human-outlaws/trapper-attack1.png -%%DATADIR%%/images/units/human-outlaws/trapper-attack2.png -%%DATADIR%%/images/units/human-outlaws/trapper-attack3.png -%%DATADIR%%/images/units/human-outlaws/trapper-bow-defend.png -%%DATADIR%%/images/units/human-outlaws/trapper-defend.png -%%DATADIR%%/images/units/human-outlaws/trapper-die-1.png -%%DATADIR%%/images/units/human-outlaws/trapper-die-2.png -%%DATADIR%%/images/units/human-outlaws/trapper-die-3.png -%%DATADIR%%/images/units/human-outlaws/trapper-die-4.png -%%DATADIR%%/images/units/human-outlaws/trapper-die-5.png -%%DATADIR%%/images/units/human-outlaws/trapper-die-6.png -%%DATADIR%%/images/units/human-outlaws/trapper-die-7.png -%%DATADIR%%/images/units/human-outlaws/trapper-die-8.png -%%DATADIR%%/images/units/human-outlaws/trapper.png -%%DATADIR%%/images/units/merfolk/diviner-defend.png -%%DATADIR%%/images/units/merfolk/diviner-magic1.png -%%DATADIR%%/images/units/merfolk/diviner-magic2.png -%%DATADIR%%/images/units/merfolk/diviner-magic3.png -%%DATADIR%%/images/units/merfolk/diviner-magic4.png -%%DATADIR%%/images/units/merfolk/diviner-magic5.png -%%DATADIR%%/images/units/merfolk/diviner-magic6.png -%%DATADIR%%/images/units/merfolk/diviner-staff-attack.png -%%DATADIR%%/images/units/merfolk/diviner.png -%%DATADIR%%/images/units/merfolk/enchantress-defend.png -%%DATADIR%%/images/units/merfolk/enchantress-staff-attack.png -%%DATADIR%%/images/units/merfolk/enchantress-water-attack1.png -%%DATADIR%%/images/units/merfolk/enchantress-water-attack2.png -%%DATADIR%%/images/units/merfolk/enchantress-water-attack3.png -%%DATADIR%%/images/units/merfolk/enchantress-water-attack4.png -%%DATADIR%%/images/units/merfolk/enchantress-water-attack5.png -%%DATADIR%%/images/units/merfolk/enchantress-water-attack6.png -%%DATADIR%%/images/units/merfolk/enchantress-water-attack7.png -%%DATADIR%%/images/units/merfolk/enchantress.png -%%DATADIR%%/images/units/merfolk/entangler.png -%%DATADIR%%/images/units/merfolk/fighter-attack.png -%%DATADIR%%/images/units/merfolk/fighter-defend.png -%%DATADIR%%/images/units/merfolk/fighter.png -%%DATADIR%%/images/units/merfolk/hoplite-attack.png -%%DATADIR%%/images/units/merfolk/hoplite-defend.png -%%DATADIR%%/images/units/merfolk/hoplite.png -%%DATADIR%%/images/units/merfolk/hunter-attack-n.png -%%DATADIR%%/images/units/merfolk/hunter-attack-ne.png -%%DATADIR%%/images/units/merfolk/hunter-attack-ranged.png -%%DATADIR%%/images/units/merfolk/hunter-attack-s.png -%%DATADIR%%/images/units/merfolk/hunter-attack-se.png -%%DATADIR%%/images/units/merfolk/hunter-defend.png -%%DATADIR%%/images/units/merfolk/hunter.png -%%DATADIR%%/images/units/merfolk/initiate-defend.png -%%DATADIR%%/images/units/merfolk/initiate-staff-attack.png -%%DATADIR%%/images/units/merfolk/initiate-water-attack1.png -%%DATADIR%%/images/units/merfolk/initiate-water-attack2.png -%%DATADIR%%/images/units/merfolk/initiate-water-attack3.png -%%DATADIR%%/images/units/merfolk/initiate-water-attack4.png -%%DATADIR%%/images/units/merfolk/initiate-water-attack5.png -%%DATADIR%%/images/units/merfolk/initiate-water-attack6.png -%%DATADIR%%/images/units/merfolk/initiate-water-attack7.png -%%DATADIR%%/images/units/merfolk/initiate.png -%%DATADIR%%/images/units/merfolk/javelineer-attack-n.png -%%DATADIR%%/images/units/merfolk/javelineer-attack-ne.png -%%DATADIR%%/images/units/merfolk/javelineer-attack-ranged.png -%%DATADIR%%/images/units/merfolk/javelineer-attack-s.png -%%DATADIR%%/images/units/merfolk/javelineer-attack-se.png -%%DATADIR%%/images/units/merfolk/javelineer-defend.png -%%DATADIR%%/images/units/merfolk/javelineer.png -%%DATADIR%%/images/units/merfolk/king-attack.png -%%DATADIR%%/images/units/merfolk/king-defend.png -%%DATADIR%%/images/units/merfolk/king.png -%%DATADIR%%/images/units/merfolk/netcaster.png -%%DATADIR%%/images/units/merfolk/priestess-defend.png -%%DATADIR%%/images/units/merfolk/priestess-magic1.png -%%DATADIR%%/images/units/merfolk/priestess-magic2.png -%%DATADIR%%/images/units/merfolk/priestess-magic3.png -%%DATADIR%%/images/units/merfolk/priestess-magic4.png -%%DATADIR%%/images/units/merfolk/priestess-magic5.png -%%DATADIR%%/images/units/merfolk/priestess-magic6.png -%%DATADIR%%/images/units/merfolk/priestess-staff-attack.png -%%DATADIR%%/images/units/merfolk/priestess.png -%%DATADIR%%/images/units/merfolk/siren-defend.png -%%DATADIR%%/images/units/merfolk/siren-naia-touch-attack1.png -%%DATADIR%%/images/units/merfolk/siren-naia-touch-attack2.png -%%DATADIR%%/images/units/merfolk/siren-naia-touch-attack3.png -%%DATADIR%%/images/units/merfolk/siren-naia-touch-attack4.png -%%DATADIR%%/images/units/merfolk/siren-water-attack1.png -%%DATADIR%%/images/units/merfolk/siren-water-attack2.png -%%DATADIR%%/images/units/merfolk/siren-water-attack3.png -%%DATADIR%%/images/units/merfolk/siren-water-attack4.png -%%DATADIR%%/images/units/merfolk/siren-water-attack5.png -%%DATADIR%%/images/units/merfolk/siren-water-attack6.png -%%DATADIR%%/images/units/merfolk/siren-water-attack7.png -%%DATADIR%%/images/units/merfolk/siren.png -%%DATADIR%%/images/units/merfolk/spearman-attack-n.png -%%DATADIR%%/images/units/merfolk/spearman-attack-ne.png -%%DATADIR%%/images/units/merfolk/spearman-attack-ranged.png -%%DATADIR%%/images/units/merfolk/spearman-attack-s.png -%%DATADIR%%/images/units/merfolk/spearman-attack-se.png -%%DATADIR%%/images/units/merfolk/spearman-defend.png -%%DATADIR%%/images/units/merfolk/spearman.png -%%DATADIR%%/images/units/merfolk/triton-attack-blade.png -%%DATADIR%%/images/units/merfolk/triton-attack-pierce.png -%%DATADIR%%/images/units/merfolk/triton-defend.png -%%DATADIR%%/images/units/merfolk/triton.png -%%DATADIR%%/images/units/merfolk/warrior-attack.png -%%DATADIR%%/images/units/merfolk/warrior-defend.png -%%DATADIR%%/images/units/merfolk/warrior.png -%%DATADIR%%/images/units/monsters/cavespider-attack-melee.png -%%DATADIR%%/images/units/monsters/cavespider-attack-ranged.png -%%DATADIR%%/images/units/monsters/cavespider-defend.png -%%DATADIR%%/images/units/monsters/cavespider-die-1.png -%%DATADIR%%/images/units/monsters/cavespider-die-2.png -%%DATADIR%%/images/units/monsters/cavespider.png -%%DATADIR%%/images/units/monsters/cuttlefish-attack-2.png -%%DATADIR%%/images/units/monsters/cuttlefish-attack-3.png -%%DATADIR%%/images/units/monsters/cuttlefish-attack-4.png -%%DATADIR%%/images/units/monsters/cuttlefish-attack-ink.png -%%DATADIR%%/images/units/monsters/cuttlefish-attack.png -%%DATADIR%%/images/units/monsters/cuttlefish-defend.png -%%DATADIR%%/images/units/monsters/cuttlefish-die-1.png -%%DATADIR%%/images/units/monsters/cuttlefish-die-2.png -%%DATADIR%%/images/units/monsters/cuttlefish.png -%%DATADIR%%/images/units/monsters/deep-tentacle-attack.png -%%DATADIR%%/images/units/monsters/deep-tentacle-defend.png -%%DATADIR%%/images/units/monsters/deep-tentacle-die-1.png -%%DATADIR%%/images/units/monsters/deep-tentacle-die-2.png -%%DATADIR%%/images/units/monsters/deep-tentacle-die-3.png -%%DATADIR%%/images/units/monsters/deep-tentacle-die-4.png -%%DATADIR%%/images/units/monsters/deep-tentacle-die-5.png -%%DATADIR%%/images/units/monsters/deep-tentacle-die-6.png -%%DATADIR%%/images/units/monsters/deep-tentacle.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler-attack.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler-attack1.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler-attack2.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler-death1.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler-death2.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler-death3.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler-death4.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler-defend.png -%%DATADIR%%/images/units/monsters/giant-mudcrawler.png -%%DATADIR%%/images/units/monsters/gryphon-attack.png -%%DATADIR%%/images/units/monsters/gryphon-flying-1and3.png -%%DATADIR%%/images/units/monsters/gryphon-flying-2.png -%%DATADIR%%/images/units/monsters/gryphon-flying-4.png -%%DATADIR%%/images/units/monsters/gryphon-flying-5and7.png -%%DATADIR%%/images/units/monsters/gryphon-flying-6.png -%%DATADIR%%/images/units/monsters/gryphon-flying-8.png -%%DATADIR%%/images/units/monsters/gryphon.png -%%DATADIR%%/images/units/monsters/mudcrawler-attack.png -%%DATADIR%%/images/units/monsters/mudcrawler-death1.png -%%DATADIR%%/images/units/monsters/mudcrawler-death2.png -%%DATADIR%%/images/units/monsters/mudcrawler-death3.png -%%DATADIR%%/images/units/monsters/mudcrawler-death4.png -%%DATADIR%%/images/units/monsters/mudcrawler-defend.png -%%DATADIR%%/images/units/monsters/mudcrawler.png -%%DATADIR%%/images/units/monsters/scorpion-defend.png -%%DATADIR%%/images/units/monsters/scorpion-pincers-attack.png -%%DATADIR%%/images/units/monsters/scorpion-sting-attack.png -%%DATADIR%%/images/units/monsters/scorpion.png -%%DATADIR%%/images/units/monsters/seaserpent-attack.png -%%DATADIR%%/images/units/monsters/seaserpent-defend.png -%%DATADIR%%/images/units/monsters/seaserpent-die-1.png -%%DATADIR%%/images/units/monsters/seaserpent-die-2.png -%%DATADIR%%/images/units/monsters/seaserpent-die-3.png -%%DATADIR%%/images/units/monsters/seaserpent-die-4.png -%%DATADIR%%/images/units/monsters/seaserpent-die-5.png -%%DATADIR%%/images/units/monsters/seaserpent-die-6.png -%%DATADIR%%/images/units/monsters/seaserpent-die-7.png -%%DATADIR%%/images/units/monsters/seaserpent-die-8.png -%%DATADIR%%/images/units/monsters/seaserpent-die-9.png -%%DATADIR%%/images/units/monsters/seaserpent.png -%%DATADIR%%/images/units/monsters/yeti-attack1.png -%%DATADIR%%/images/units/monsters/yeti-attack2.png -%%DATADIR%%/images/units/monsters/yeti-attack3.png -%%DATADIR%%/images/units/monsters/yeti-defend.png -%%DATADIR%%/images/units/monsters/yeti-die1.png -%%DATADIR%%/images/units/monsters/yeti-die2.png -%%DATADIR%%/images/units/monsters/yeti-die3.png -%%DATADIR%%/images/units/monsters/yeti-die4.png -%%DATADIR%%/images/units/monsters/yeti-die5.png -%%DATADIR%%/images/units/monsters/yeti.png -%%DATADIR%%/images/units/nagas/fighter+female-attack.png -%%DATADIR%%/images/units/nagas/fighter+female-defend.png -%%DATADIR%%/images/units/nagas/fighter+female.png -%%DATADIR%%/images/units/nagas/fighter-attack.png -%%DATADIR%%/images/units/nagas/fighter-defend.png -%%DATADIR%%/images/units/nagas/fighter.png -%%DATADIR%%/images/units/nagas/myrmidon+female-attack.png -%%DATADIR%%/images/units/nagas/myrmidon+female-defend.png -%%DATADIR%%/images/units/nagas/myrmidon+female.png -%%DATADIR%%/images/units/nagas/myrmidon-attack.png -%%DATADIR%%/images/units/nagas/myrmidon-defend.png -%%DATADIR%%/images/units/nagas/myrmidon.png -%%DATADIR%%/images/units/nagas/warrior+female-attack.png -%%DATADIR%%/images/units/nagas/warrior+female-defend.png -%%DATADIR%%/images/units/nagas/warrior+female.png -%%DATADIR%%/images/units/nagas/warrior-attack.png -%%DATADIR%%/images/units/nagas/warrior-defend.png -%%DATADIR%%/images/units/nagas/warrior.png -%%DATADIR%%/images/units/ogres/ogre-attack1.png -%%DATADIR%%/images/units/ogres/ogre-attack2.png -%%DATADIR%%/images/units/ogres/ogre-attack3.png -%%DATADIR%%/images/units/ogres/ogre-attack4.png -%%DATADIR%%/images/units/ogres/ogre-attack5.png -%%DATADIR%%/images/units/ogres/ogre-defend.png -%%DATADIR%%/images/units/ogres/ogre.png -%%DATADIR%%/images/units/ogres/young-ogre-attack1.png -%%DATADIR%%/images/units/ogres/young-ogre-attack2.png -%%DATADIR%%/images/units/ogres/young-ogre-attack3.png -%%DATADIR%%/images/units/ogres/young-ogre-attack4.png -%%DATADIR%%/images/units/ogres/young-ogre-attack5.png -%%DATADIR%%/images/units/ogres/young-ogre-defend.png -%%DATADIR%%/images/units/ogres/young-ogre.png -%%DATADIR%%/images/units/orcs/archer-death-1.png -%%DATADIR%%/images/units/orcs/archer-death-2.png -%%DATADIR%%/images/units/orcs/archer-death-3.png -%%DATADIR%%/images/units/orcs/archer-death-4.png -%%DATADIR%%/images/units/orcs/archer-death-5.png -%%DATADIR%%/images/units/orcs/archer-death-6.png -%%DATADIR%%/images/units/orcs/archer-death-7.png -%%DATADIR%%/images/units/orcs/archer-death-8.png -%%DATADIR%%/images/units/orcs/archer-death-9.png -%%DATADIR%%/images/units/orcs/archer-defend.png -%%DATADIR%%/images/units/orcs/archer-melee-01.png -%%DATADIR%%/images/units/orcs/archer-melee-02.png -%%DATADIR%%/images/units/orcs/archer-melee-03.png -%%DATADIR%%/images/units/orcs/archer-melee-04.png -%%DATADIR%%/images/units/orcs/archer-melee-05.png -%%DATADIR%%/images/units/orcs/archer-melee-06.png -%%DATADIR%%/images/units/orcs/archer-melee-07.png -%%DATADIR%%/images/units/orcs/archer-melee-08.png -%%DATADIR%%/images/units/orcs/archer-melee-09.png -%%DATADIR%%/images/units/orcs/archer-melee-10.png -%%DATADIR%%/images/units/orcs/archer-melee-11.png -%%DATADIR%%/images/units/orcs/archer-melee-12.png -%%DATADIR%%/images/units/orcs/archer-melee-13.png -%%DATADIR%%/images/units/orcs/archer-melee-14.png -%%DATADIR%%/images/units/orcs/archer-melee-15.png -%%DATADIR%%/images/units/orcs/archer-melee-16.png -%%DATADIR%%/images/units/orcs/archer-melee-17.png -%%DATADIR%%/images/units/orcs/archer-ranged-1.png -%%DATADIR%%/images/units/orcs/archer-ranged-2.png -%%DATADIR%%/images/units/orcs/archer-ranged-3.png -%%DATADIR%%/images/units/orcs/archer-ranged-4.png -%%DATADIR%%/images/units/orcs/archer-ranged-5.png -%%DATADIR%%/images/units/orcs/archer-ranged-6.png -%%DATADIR%%/images/units/orcs/archer.png -%%DATADIR%%/images/units/orcs/assassin-attack1.png -%%DATADIR%%/images/units/orcs/assassin-attack2.png -%%DATADIR%%/images/units/orcs/assassin-defend.png -%%DATADIR%%/images/units/orcs/assassin-die-1.png -%%DATADIR%%/images/units/orcs/assassin-die-2.png -%%DATADIR%%/images/units/orcs/assassin-die-3.png -%%DATADIR%%/images/units/orcs/assassin-die-4.png -%%DATADIR%%/images/units/orcs/assassin-die-5.png -%%DATADIR%%/images/units/orcs/assassin-die-6.png -%%DATADIR%%/images/units/orcs/assassin-die-7.png -%%DATADIR%%/images/units/orcs/assassin-die-8.png -%%DATADIR%%/images/units/orcs/assassin-die-9.png -%%DATADIR%%/images/units/orcs/assassin-die-10.png -%%DATADIR%%/images/units/orcs/assassin-ranged1.png -%%DATADIR%%/images/units/orcs/assassin-ranged2.png -%%DATADIR%%/images/units/orcs/assassin.png -%%DATADIR%%/images/units/orcs/grunt-attack-w1.png -%%DATADIR%%/images/units/orcs/grunt-attack-w2.png -%%DATADIR%%/images/units/orcs/grunt-attack-w3.png -%%DATADIR%%/images/units/orcs/grunt-attack-w4.png -%%DATADIR%%/images/units/orcs/grunt-attack-w5.png -%%DATADIR%%/images/units/orcs/grunt-attack.png -%%DATADIR%%/images/units/orcs/grunt-defend.png -%%DATADIR%%/images/units/orcs/grunt-die-1.png -%%DATADIR%%/images/units/orcs/grunt-die-2.png -%%DATADIR%%/images/units/orcs/grunt-die-3.png -%%DATADIR%%/images/units/orcs/grunt-die-4.png -%%DATADIR%%/images/units/orcs/grunt-die-5.png -%%DATADIR%%/images/units/orcs/grunt-die-6.png -%%DATADIR%%/images/units/orcs/grunt-die-7.png -%%DATADIR%%/images/units/orcs/grunt-die-8.png -%%DATADIR%%/images/units/orcs/grunt.png -%%DATADIR%%/images/units/orcs/leader-attack.png -%%DATADIR%%/images/units/orcs/leader-defend.png -%%DATADIR%%/images/units/orcs/leader-ranged-1.png -%%DATADIR%%/images/units/orcs/leader-ranged-2.png -%%DATADIR%%/images/units/orcs/leader.png -%%DATADIR%%/images/units/orcs/ruler-attack.png -%%DATADIR%%/images/units/orcs/ruler-defend.png -%%DATADIR%%/images/units/orcs/ruler-ranged-1.png -%%DATADIR%%/images/units/orcs/ruler-ranged-2.png -%%DATADIR%%/images/units/orcs/ruler.png -%%DATADIR%%/images/units/orcs/slayer-attack1-s.png -%%DATADIR%%/images/units/orcs/slayer-attack1.png -%%DATADIR%%/images/units/orcs/slayer-attack2-s.png -%%DATADIR%%/images/units/orcs/slayer-attack2.png -%%DATADIR%%/images/units/orcs/slayer-defend.png -%%DATADIR%%/images/units/orcs/slayer-ranged1.png -%%DATADIR%%/images/units/orcs/slayer-ranged2.png -%%DATADIR%%/images/units/orcs/slayer.png -%%DATADIR%%/images/units/orcs/slurbow-attack-1.png -%%DATADIR%%/images/units/orcs/slurbow-attack-2.png -%%DATADIR%%/images/units/orcs/slurbow-attack-3.png -%%DATADIR%%/images/units/orcs/slurbow-attack-4.png -%%DATADIR%%/images/units/orcs/slurbow-attack-5.png -%%DATADIR%%/images/units/orcs/slurbow-attack-6.png -%%DATADIR%%/images/units/orcs/slurbow-attack-ranged.png -%%DATADIR%%/images/units/orcs/slurbow-defend.png -%%DATADIR%%/images/units/orcs/slurbow.png -%%DATADIR%%/images/units/orcs/sovereign-attack1.png -%%DATADIR%%/images/units/orcs/sovereign-attack2.png -%%DATADIR%%/images/units/orcs/sovereign-defend.png -%%DATADIR%%/images/units/orcs/sovereign-ranged-1.png -%%DATADIR%%/images/units/orcs/sovereign-ranged-2.png -%%DATADIR%%/images/units/orcs/sovereign.png -%%DATADIR%%/images/units/orcs/warlord-attack-sword-1.png -%%DATADIR%%/images/units/orcs/warlord-attack-sword-2.png -%%DATADIR%%/images/units/orcs/warlord-attack-sword-3.png -%%DATADIR%%/images/units/orcs/warlord-attack-sword-4.png -%%DATADIR%%/images/units/orcs/warlord-defend.png -%%DATADIR%%/images/units/orcs/warlord-ranged-1.png -%%DATADIR%%/images/units/orcs/warlord-ranged-2.png -%%DATADIR%%/images/units/orcs/warlord-ranged-3.png -%%DATADIR%%/images/units/orcs/warlord-ranged-4.png -%%DATADIR%%/images/units/orcs/warlord.png -%%DATADIR%%/images/units/orcs/warrior-attack-w1.png -%%DATADIR%%/images/units/orcs/warrior-attack-w2.png -%%DATADIR%%/images/units/orcs/warrior-attack-w3.png -%%DATADIR%%/images/units/orcs/warrior-attack-w4.png -%%DATADIR%%/images/units/orcs/warrior-attack-w5.png -%%DATADIR%%/images/units/orcs/warrior-defend.png -%%DATADIR%%/images/units/orcs/warrior.png -%%DATADIR%%/images/units/orcs/xbowman-attack.png -%%DATADIR%%/images/units/orcs/xbowman-defend.png -%%DATADIR%%/images/units/orcs/xbowman-ranged-1.png -%%DATADIR%%/images/units/orcs/xbowman-ranged-2.png -%%DATADIR%%/images/units/orcs/xbowman.png -%%DATADIR%%/images/units/random-enemy.png -%%DATADIR%%/images/units/saurians/ambusher-attack1.png -%%DATADIR%%/images/units/saurians/ambusher-attack2.png -%%DATADIR%%/images/units/saurians/ambusher-defend.png -%%DATADIR%%/images/units/saurians/ambusher-ranged-1.png -%%DATADIR%%/images/units/saurians/ambusher-ranged-2.png -%%DATADIR%%/images/units/saurians/ambusher-ranged-3.png -%%DATADIR%%/images/units/saurians/ambusher.png -%%DATADIR%%/images/units/saurians/augur-defend.png -%%DATADIR%%/images/units/saurians/augur-magic.png -%%DATADIR%%/images/units/saurians/augur-melee.png -%%DATADIR%%/images/units/saurians/augur.png -%%DATADIR%%/images/units/saurians/flanker-attack-ranged-1.png -%%DATADIR%%/images/units/saurians/flanker-attack-ranged-2.png -%%DATADIR%%/images/units/saurians/flanker-attack-ranged-3.png -%%DATADIR%%/images/units/saurians/flanker-attack-ranged-4.png -%%DATADIR%%/images/units/saurians/flanker-attack1.png -%%DATADIR%%/images/units/saurians/flanker-attack2.png -%%DATADIR%%/images/units/saurians/flanker-defend.png -%%DATADIR%%/images/units/saurians/flanker.png -%%DATADIR%%/images/units/saurians/oracle-defend.png -%%DATADIR%%/images/units/saurians/oracle-magic.png -%%DATADIR%%/images/units/saurians/oracle-melee.png -%%DATADIR%%/images/units/saurians/oracle.png -%%DATADIR%%/images/units/saurians/skirmisher-attack-ranged-1.png -%%DATADIR%%/images/units/saurians/skirmisher-attack-ranged-2.png -%%DATADIR%%/images/units/saurians/skirmisher-attack1.png -%%DATADIR%%/images/units/saurians/skirmisher-attack2.png -%%DATADIR%%/images/units/saurians/skirmisher-defend.png -%%DATADIR%%/images/units/saurians/skirmisher.png -%%DATADIR%%/images/units/saurians/soothsayer-defend.png -%%DATADIR%%/images/units/saurians/soothsayer-magic.png -%%DATADIR%%/images/units/saurians/soothsayer-melee.png -%%DATADIR%%/images/units/saurians/soothsayer.png -%%DATADIR%%/images/units/transport/galleon.png -%%DATADIR%%/images/units/transport/pirate-galleon.png -%%DATADIR%%/images/units/transport/transport-galleon.png -%%DATADIR%%/images/units/trolls/great-troll-attack-1.png -%%DATADIR%%/images/units/trolls/great-troll-attack-2.png -%%DATADIR%%/images/units/trolls/great-troll-attack-3.png -%%DATADIR%%/images/units/trolls/great-troll-attack-4.png -%%DATADIR%%/images/units/trolls/great-troll-attack-5.png -%%DATADIR%%/images/units/trolls/great-troll-attack.png -%%DATADIR%%/images/units/trolls/great-troll-defend.png -%%DATADIR%%/images/units/trolls/great-troll.png -%%DATADIR%%/images/units/trolls/grunt-attack-1.png -%%DATADIR%%/images/units/trolls/grunt-attack-2.png -%%DATADIR%%/images/units/trolls/grunt-attack-3.png -%%DATADIR%%/images/units/trolls/grunt-attack-4.png -%%DATADIR%%/images/units/trolls/grunt-defend.png -%%DATADIR%%/images/units/trolls/grunt.png -%%DATADIR%%/images/units/trolls/hero-attack-1.png -%%DATADIR%%/images/units/trolls/hero-attack-2.png -%%DATADIR%%/images/units/trolls/hero-attack-3.png -%%DATADIR%%/images/units/trolls/hero-attack-4.png -%%DATADIR%%/images/units/trolls/hero-defend.png -%%DATADIR%%/images/units/trolls/hero.png -%%DATADIR%%/images/units/trolls/lobber-attack-melee.png -%%DATADIR%%/images/units/trolls/lobber-attack-ranged1.png -%%DATADIR%%/images/units/trolls/lobber-attack-ranged2.png -%%DATADIR%%/images/units/trolls/lobber-defend.png -%%DATADIR%%/images/units/trolls/lobber.png -%%DATADIR%%/images/units/trolls/warrior-attack-1.png -%%DATADIR%%/images/units/trolls/warrior-attack-2.png -%%DATADIR%%/images/units/trolls/warrior-attack-3.png -%%DATADIR%%/images/units/trolls/warrior-attack-4.png -%%DATADIR%%/images/units/trolls/warrior-defend.png -%%DATADIR%%/images/units/trolls/warrior.png -%%DATADIR%%/images/units/trolls/whelp-attack-1.png -%%DATADIR%%/images/units/trolls/whelp-attack-2.png -%%DATADIR%%/images/units/trolls/whelp-attack-3.png -%%DATADIR%%/images/units/trolls/whelp-defend-2.png -%%DATADIR%%/images/units/trolls/whelp-defend.png -%%DATADIR%%/images/units/trolls/whelp-die-1.png -%%DATADIR%%/images/units/trolls/whelp-die-2.png -%%DATADIR%%/images/units/trolls/whelp-die-3.png -%%DATADIR%%/images/units/trolls/whelp-die-4.png -%%DATADIR%%/images/units/trolls/whelp-die-5.png -%%DATADIR%%/images/units/trolls/whelp-die-6.png -%%DATADIR%%/images/units/trolls/whelp-die-7.png -%%DATADIR%%/images/units/trolls/whelp-skeleton.png -%%DATADIR%%/images/units/trolls/whelp.png -%%DATADIR%%/images/units/undead-blackspell.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-defend.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-1.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-2.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-3.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-4.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-5.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-6.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-7.png -%%DATADIR%%/images/units/undead-necromancers/adept+female-ranged-8.png -%%DATADIR%%/images/units/undead-necromancers/adept+female.png -%%DATADIR%%/images/units/undead-necromancers/adept-defend.png -%%DATADIR%%/images/units/undead-necromancers/adept-die1.png -%%DATADIR%%/images/units/undead-necromancers/adept-die2.png -%%DATADIR%%/images/units/undead-necromancers/adept-die3.png -%%DATADIR%%/images/units/undead-necromancers/adept-die4.png -%%DATADIR%%/images/units/undead-necromancers/adept-ranged-1.png -%%DATADIR%%/images/units/undead-necromancers/adept-ranged-2.png -%%DATADIR%%/images/units/undead-necromancers/adept-ranged-3.png -%%DATADIR%%/images/units/undead-necromancers/adept-ranged-4.png -%%DATADIR%%/images/units/undead-necromancers/adept-ranged-5.png -%%DATADIR%%/images/units/undead-necromancers/adept-ranged-6.png -%%DATADIR%%/images/units/undead-necromancers/adept-ranged-7.png -%%DATADIR%%/images/units/undead-necromancers/adept-ranged-8.png -%%DATADIR%%/images/units/undead-necromancers/adept.png -%%DATADIR%%/images/units/undead-necromancers/ancient-lich-defend.png -%%DATADIR%%/images/units/undead-necromancers/ancient-lich-magic-1.png -%%DATADIR%%/images/units/undead-necromancers/ancient-lich-magic-2.png -%%DATADIR%%/images/units/undead-necromancers/ancient-lich-magic-3.png -%%DATADIR%%/images/units/undead-necromancers/ancient-lich-melee.png -%%DATADIR%%/images/units/undead-necromancers/ancient-lich.png -%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-defend.png -%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-magic-1.png -%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-magic-2.png -%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-magic-3.png -%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer-melee.png -%%DATADIR%%/images/units/undead-necromancers/dark-sorcerer.png -%%DATADIR%%/images/units/undead-necromancers/lich-defend.png -%%DATADIR%%/images/units/undead-necromancers/lich-magic-1.png -%%DATADIR%%/images/units/undead-necromancers/lich-magic-2.png -%%DATADIR%%/images/units/undead-necromancers/lich-magic-3.png -%%DATADIR%%/images/units/undead-necromancers/lich-melee.png -%%DATADIR%%/images/units/undead-necromancers/lich.png -%%DATADIR%%/images/units/undead-necromancers/necromancer-defend.png -%%DATADIR%%/images/units/undead-necromancers/necromancer-magic-1.png -%%DATADIR%%/images/units/undead-necromancers/necromancer-magic-2.png -%%DATADIR%%/images/units/undead-necromancers/necromancer-magic-3.png -%%DATADIR%%/images/units/undead-necromancers/necromancer-melee.png -%%DATADIR%%/images/units/undead-necromancers/necromancer.png -%%DATADIR%%/images/units/undead-skeletal/archer-attack.png -%%DATADIR%%/images/units/undead-skeletal/archer-attack1.png -%%DATADIR%%/images/units/undead-skeletal/archer-attack2.png -%%DATADIR%%/images/units/undead-skeletal/archer-defend.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-1.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-10.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-11.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-12.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-13.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-2.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-3.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-4.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-5.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-6.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-7.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-8.png -%%DATADIR%%/images/units/undead-skeletal/archer-die-9.png -%%DATADIR%%/images/units/undead-skeletal/archer.png -%%DATADIR%%/images/units/undead-skeletal/boneshooter-attack.png -%%DATADIR%%/images/units/undead-skeletal/boneshooter-attack1.png -%%DATADIR%%/images/units/undead-skeletal/boneshooter-attack2.png -%%DATADIR%%/images/units/undead-skeletal/boneshooter-defend.png -%%DATADIR%%/images/units/undead-skeletal/boneshooter-die-1.png -%%DATADIR%%/images/units/undead-skeletal/boneshooter-die-2.png -%%DATADIR%%/images/units/undead-skeletal/boneshooter.png -%%DATADIR%%/images/units/undead-skeletal/deathblade-attack1.png -%%DATADIR%%/images/units/undead-skeletal/deathblade-attack2.png -%%DATADIR%%/images/units/undead-skeletal/deathblade-attack3.png -%%DATADIR%%/images/units/undead-skeletal/deathblade-defend.png -%%DATADIR%%/images/units/undead-skeletal/deathblade-die-1.png -%%DATADIR%%/images/units/undead-skeletal/deathblade-die-2.png -%%DATADIR%%/images/units/undead-skeletal/deathblade.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-1.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-2.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-3.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-4.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-crossbow-1.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-attack-crossbow-2.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-defend.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-die-1.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-die-2.png -%%DATADIR%%/images/units/undead-skeletal/deathknight-leading.png -%%DATADIR%%/images/units/undead-skeletal/deathknight.png -%%DATADIR%%/images/units/undead-skeletal/draug-attack1.png -%%DATADIR%%/images/units/undead-skeletal/draug-attack2.png -%%DATADIR%%/images/units/undead-skeletal/draug-defend-1.png -%%DATADIR%%/images/units/undead-skeletal/draug-defend-2.png -%%DATADIR%%/images/units/undead-skeletal/draug.png -%%DATADIR%%/images/units/undead-skeletal/revenant-attack.png -%%DATADIR%%/images/units/undead-skeletal/revenant-defend.png -%%DATADIR%%/images/units/undead-skeletal/revenant.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-attack.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-attackb.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-defend.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-1.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-2.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-3.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-4.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-5.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-6.png -%%DATADIR%%/images/units/undead-skeletal/skeleton-dying-7.png -%%DATADIR%%/images/units/undead-skeletal/skeleton.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter-attack.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter-defend.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged1.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged2.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged3.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged4.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter-ranged5.png -%%DATADIR%%/images/units/undead-skeletal/soulshooter.png -%%DATADIR%%/images/units/undead/bat-attack.png -%%DATADIR%%/images/units/undead/bat-defend.png -%%DATADIR%%/images/units/undead/bat-die-1.png -%%DATADIR%%/images/units/undead/bat-die-2.png -%%DATADIR%%/images/units/undead/bat-die-3.png -%%DATADIR%%/images/units/undead/bat-die-4.png -%%DATADIR%%/images/units/undead/bat-die-5.png -%%DATADIR%%/images/units/undead/bat-die-6.png -%%DATADIR%%/images/units/undead/bat-die-7.png -%%DATADIR%%/images/units/undead/bat.png -%%DATADIR%%/images/units/undead/bloodbat-attack.png -%%DATADIR%%/images/units/undead/bloodbat-defend.png -%%DATADIR%%/images/units/undead/bloodbat-die-1.png -%%DATADIR%%/images/units/undead/bloodbat-die-2.png -%%DATADIR%%/images/units/undead/bloodbat.png -%%DATADIR%%/images/units/undead/ghost-attack.png -%%DATADIR%%/images/units/undead/ghost-attack1.png -%%DATADIR%%/images/units/undead/ghost-defend.png -%%DATADIR%%/images/units/undead/ghost.png -%%DATADIR%%/images/units/undead/ghoul-attack-1.png -%%DATADIR%%/images/units/undead/ghoul-attack-2.png -%%DATADIR%%/images/units/undead/ghoul-defend.png -%%DATADIR%%/images/units/undead/ghoul-die-1.png -%%DATADIR%%/images/units/undead/ghoul-die-2.png -%%DATADIR%%/images/units/undead/ghoul-die-3.png -%%DATADIR%%/images/units/undead/ghoul-die-4.png -%%DATADIR%%/images/units/undead/ghoul-die-5.png -%%DATADIR%%/images/units/undead/ghoul-die-6.png -%%DATADIR%%/images/units/undead/ghoul-die-7.png -%%DATADIR%%/images/units/undead/ghoul.png -%%DATADIR%%/images/units/undead/necrophage-attack.png -%%DATADIR%%/images/units/undead/necrophage-defend.png -%%DATADIR%%/images/units/undead/necrophage.png -%%DATADIR%%/images/units/undead/nightgaunt-attack.png -%%DATADIR%%/images/units/undead/nightgaunt-attack2.png -%%DATADIR%%/images/units/undead/nightgaunt-defend.png -%%DATADIR%%/images/units/undead/nightgaunt-die-1.png -%%DATADIR%%/images/units/undead/nightgaunt-die-2.png -%%DATADIR%%/images/units/undead/nightgaunt-die-3.png -%%DATADIR%%/images/units/undead/nightgaunt-die-4.png -%%DATADIR%%/images/units/undead/nightgaunt-die-5.png -%%DATADIR%%/images/units/undead/nightgaunt.png -%%DATADIR%%/images/units/undead/shadow-attack.png -%%DATADIR%%/images/units/undead/shadow-defend.png -%%DATADIR%%/images/units/undead/shadow.png -%%DATADIR%%/images/units/undead/soulless-attack-n.png -%%DATADIR%%/images/units/undead/soulless-attack-s.png -%%DATADIR%%/images/units/undead/soulless-attack.png -%%DATADIR%%/images/units/undead/soulless-defend.png -%%DATADIR%%/images/units/undead/soulless-die-1.png -%%DATADIR%%/images/units/undead/soulless-die-2.png -%%DATADIR%%/images/units/undead/soulless-die-3.png -%%DATADIR%%/images/units/undead/soulless-drake-attack-n.png -%%DATADIR%%/images/units/undead/soulless-drake-attack-s.png -%%DATADIR%%/images/units/undead/soulless-drake-attack.png -%%DATADIR%%/images/units/undead/soulless-drake-die-1.png -%%DATADIR%%/images/units/undead/soulless-drake-die-2.png -%%DATADIR%%/images/units/undead/soulless-drake-die-3.png -%%DATADIR%%/images/units/undead/soulless-drake.png -%%DATADIR%%/images/units/undead/soulless-melee.png -%%DATADIR%%/images/units/undead/soulless-mounted-attack-n.png -%%DATADIR%%/images/units/undead/soulless-mounted-attack-s.png -%%DATADIR%%/images/units/undead/soulless-mounted-attack.png -%%DATADIR%%/images/units/undead/soulless-mounted-die-1.png -%%DATADIR%%/images/units/undead/soulless-mounted-die-2.png -%%DATADIR%%/images/units/undead/soulless-mounted-die-3.png -%%DATADIR%%/images/units/undead/soulless-mounted.png -%%DATADIR%%/images/units/undead/soulless-saurian-attack-n.png -%%DATADIR%%/images/units/undead/soulless-saurian-attack-s.png -%%DATADIR%%/images/units/undead/soulless-saurian-attack.png -%%DATADIR%%/images/units/undead/soulless-saurian-die-1.png -%%DATADIR%%/images/units/undead/soulless-saurian-die-2.png -%%DATADIR%%/images/units/undead/soulless-saurian-die-3.png -%%DATADIR%%/images/units/undead/soulless-saurian.png -%%DATADIR%%/images/units/undead/soulless-swimmer-attack-n.png -%%DATADIR%%/images/units/undead/soulless-swimmer-attack-s.png -%%DATADIR%%/images/units/undead/soulless-swimmer-attack.png -%%DATADIR%%/images/units/undead/soulless-swimmer-die-1.png -%%DATADIR%%/images/units/undead/soulless-swimmer-die-2.png -%%DATADIR%%/images/units/undead/soulless-swimmer-die-3.png -%%DATADIR%%/images/units/undead/soulless-swimmer.png -%%DATADIR%%/images/units/undead/soulless-troll-attack-n.png -%%DATADIR%%/images/units/undead/soulless-troll-attack-s.png -%%DATADIR%%/images/units/undead/soulless-troll-attack.png -%%DATADIR%%/images/units/undead/soulless-troll-die-1.png -%%DATADIR%%/images/units/undead/soulless-troll-die-2.png -%%DATADIR%%/images/units/undead/soulless-troll-die-3.png -%%DATADIR%%/images/units/undead/soulless-troll.png -%%DATADIR%%/images/units/undead/soulless-wose-attack-n.png -%%DATADIR%%/images/units/undead/soulless-wose-attack-s.png -%%DATADIR%%/images/units/undead/soulless-wose-attack.png -%%DATADIR%%/images/units/undead/soulless-wose-die-1.png -%%DATADIR%%/images/units/undead/soulless-wose-die-2.png -%%DATADIR%%/images/units/undead/soulless-wose-die-3.png -%%DATADIR%%/images/units/undead/soulless-wose.png -%%DATADIR%%/images/units/undead/soulless.png -%%DATADIR%%/images/units/undead/spectre-attack.png -%%DATADIR%%/images/units/undead/spectre-attack1.png -%%DATADIR%%/images/units/undead/spectre-defend.png -%%DATADIR%%/images/units/undead/spectre-die-1.png -%%DATADIR%%/images/units/undead/spectre-die-2.png -%%DATADIR%%/images/units/undead/spectre-die-3.png -%%DATADIR%%/images/units/undead/spectre-die-4.png -%%DATADIR%%/images/units/undead/spectre.png -%%DATADIR%%/images/units/undead/wraith-attack.png -%%DATADIR%%/images/units/undead/wraith-attack1.png -%%DATADIR%%/images/units/undead/wraith-defend.png -%%DATADIR%%/images/units/undead/wraith.png -%%DATADIR%%/images/units/undead/zombie-attack-n.png -%%DATADIR%%/images/units/undead/zombie-attack-s.png -%%DATADIR%%/images/units/undead/zombie-attack.png -%%DATADIR%%/images/units/undead/zombie-defend.png -%%DATADIR%%/images/units/undead/zombie-drake-attack-n.png -%%DATADIR%%/images/units/undead/zombie-drake-attack-s.png -%%DATADIR%%/images/units/undead/zombie-drake-attack.png -%%DATADIR%%/images/units/undead/zombie-drake-defend.png -%%DATADIR%%/images/units/undead/zombie-drake.png -%%DATADIR%%/images/units/undead/zombie-mounted-attack-n.png -%%DATADIR%%/images/units/undead/zombie-mounted-attack-s.png -%%DATADIR%%/images/units/undead/zombie-mounted-attack.png -%%DATADIR%%/images/units/undead/zombie-mounted-defend.png -%%DATADIR%%/images/units/undead/zombie-mounted.png -%%DATADIR%%/images/units/undead/zombie-saurian-attack-n.png -%%DATADIR%%/images/units/undead/zombie-saurian-attack-s.png -%%DATADIR%%/images/units/undead/zombie-saurian-attack.png -%%DATADIR%%/images/units/undead/zombie-saurian-defend.png -%%DATADIR%%/images/units/undead/zombie-saurian.png -%%DATADIR%%/images/units/undead/zombie-swimmer-attack-n.png -%%DATADIR%%/images/units/undead/zombie-swimmer-attack-s.png -%%DATADIR%%/images/units/undead/zombie-swimmer-attack.png -%%DATADIR%%/images/units/undead/zombie-swimmer-defend.png -%%DATADIR%%/images/units/undead/zombie-swimmer.png -%%DATADIR%%/images/units/undead/zombie-troll-attack-n.png -%%DATADIR%%/images/units/undead/zombie-troll-attack-s.png -%%DATADIR%%/images/units/undead/zombie-troll-attack.png -%%DATADIR%%/images/units/undead/zombie-troll-defend.png -%%DATADIR%%/images/units/undead/zombie-troll.png -%%DATADIR%%/images/units/undead/zombie-wose-attack-n.png -%%DATADIR%%/images/units/undead/zombie-wose-attack-s.png -%%DATADIR%%/images/units/undead/zombie-wose-attack.png -%%DATADIR%%/images/units/undead/zombie-wose-defend.png -%%DATADIR%%/images/units/undead/zombie-wose-die-1.png -%%DATADIR%%/images/units/undead/zombie-wose-die-2.png -%%DATADIR%%/images/units/undead/zombie-wose-die-3.png -%%DATADIR%%/images/units/undead/zombie-wose.png -%%DATADIR%%/images/units/undead/zombie.png -%%DATADIR%%/images/units/woses/wose-ancient-attack-1.png -%%DATADIR%%/images/units/woses/wose-ancient-attack-2.png -%%DATADIR%%/images/units/woses/wose-ancient-defend.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-1.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-2.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-3.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-4.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-5.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-6.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-7.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-8.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-9.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-10.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-11.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-12.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-13.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-14.png -%%DATADIR%%/images/units/woses/wose-ancient-die-fall-15.png -%%DATADIR%%/images/units/woses/wose-ancient.png -%%DATADIR%%/images/units/woses/wose-attack-1.png -%%DATADIR%%/images/units/woses/wose-attack-2.png -%%DATADIR%%/images/units/woses/wose-defend.png -%%DATADIR%%/images/units/woses/wose-die-decay-1.png -%%DATADIR%%/images/units/woses/wose-die-decay-2.png -%%DATADIR%%/images/units/woses/wose-die-decay-3.png -%%DATADIR%%/images/units/woses/wose-die-decay-4.png -%%DATADIR%%/images/units/woses/wose-die-decay-5.png -%%DATADIR%%/images/units/woses/wose-die-decay-6.png -%%DATADIR%%/images/units/woses/wose-die-decay-7.png -%%DATADIR%%/images/units/woses/wose-die-decay-8.png -%%DATADIR%%/images/units/woses/wose-die-decay-9.png -%%DATADIR%%/images/units/woses/wose-die-fall-1.png -%%DATADIR%%/images/units/woses/wose-die-fall-2.png -%%DATADIR%%/images/units/woses/wose-die-fall-3.png -%%DATADIR%%/images/units/woses/wose-die-fall-4.png -%%DATADIR%%/images/units/woses/wose-die-fall-5.png -%%DATADIR%%/images/units/woses/wose-die-fall-6.png -%%DATADIR%%/images/units/woses/wose-die-fall-7.png -%%DATADIR%%/images/units/woses/wose-die-fall-8.png -%%DATADIR%%/images/units/woses/wose-die-fall-9.png -%%DATADIR%%/images/units/woses/wose-die-fall-10.png -%%DATADIR%%/images/units/woses/wose-die-fall-11.png -%%DATADIR%%/images/units/woses/wose-die-fall-12.png -%%DATADIR%%/images/units/woses/wose-die-fall-13.png -%%DATADIR%%/images/units/woses/wose-die-fall-14.png -%%DATADIR%%/images/units/woses/wose-die-fall-15.png -%%DATADIR%%/images/units/woses/wose-elder-attack-1.png -%%DATADIR%%/images/units/woses/wose-elder-attack-2.png -%%DATADIR%%/images/units/woses/wose-elder-defend.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-1.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-2.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-3.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-4.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-5.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-6.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-7.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-8.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-9.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-10.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-11.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-12.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-13.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-14.png -%%DATADIR%%/images/units/woses/wose-elder-die-fall-15.png -%%DATADIR%%/images/units/woses/wose-elder.png -%%DATADIR%%/images/units/woses/wose.png +%%DATADIR%%/images/tools/magenta_team_color_palette.png %%DATADIR%%/images/wesnoth-icon.png -%%DATADIR%%/music/defeat.ogg -%%DATADIR%%/music/elf-land.ogg -%%DATADIR%%/music/frantic.ogg -%%DATADIR%%/music/gameplay01.ogg -%%DATADIR%%/music/gameplay02.ogg -%%DATADIR%%/music/gameplay03.ogg -%%DATADIR%%/music/main_menu.ogg -%%DATADIR%%/music/main_menu_new.ogg -%%DATADIR%%/music/underground.ogg -%%DATADIR%%/music/victory.ogg -%%DATADIR%%/music/wesnoth-1.ogg -%%DATADIR%%/music/wesnoth-2.ogg -%%DATADIR%%/music/wesnoth-5.ogg +%%DATADIR%%/sounds/README %%DATADIR%%/sounds/arrive.wav -%%DATADIR%%/sounds/axe.ogg -%%DATADIR%%/sounds/bat-flapping.wav %%DATADIR%%/sounds/bell.wav -%%DATADIR%%/sounds/bite-small.ogg -%%DATADIR%%/sounds/bite.ogg -%%DATADIR%%/sounds/bow-miss.ogg -%%DATADIR%%/sounds/bow-puny-fire-miss.ogg -%%DATADIR%%/sounds/bow-puny-fire.ogg -%%DATADIR%%/sounds/bow-puny-miss.ogg -%%DATADIR%%/sounds/bow-puny.ogg -%%DATADIR%%/sounds/bow.ogg -%%DATADIR%%/sounds/claws.ogg -%%DATADIR%%/sounds/club.ogg -%%DATADIR%%/sounds/crossbow-fire-miss.ogg -%%DATADIR%%/sounds/crossbow-fire.ogg -%%DATADIR%%/sounds/crossbow-miss.ogg -%%DATADIR%%/sounds/crossbow.ogg -%%DATADIR%%/sounds/dagger-swish.wav -%%DATADIR%%/sounds/dart.wav -%%DATADIR%%/sounds/dragonstick-miss.ogg -%%DATADIR%%/sounds/dragonstick.ogg -%%DATADIR%%/sounds/drake-die.ogg -%%DATADIR%%/sounds/drake-hit-1.ogg -%%DATADIR%%/sounds/drake-hit-2.ogg -%%DATADIR%%/sounds/drake-hit-3.ogg -%%DATADIR%%/sounds/dwarf-die-1.ogg -%%DATADIR%%/sounds/dwarf-die-2.ogg -%%DATADIR%%/sounds/dwarf-hit-1.ogg -%%DATADIR%%/sounds/dwarf-hit-2.ogg -%%DATADIR%%/sounds/dwarf-hit-3.ogg -%%DATADIR%%/sounds/dwarf-hit-4.ogg -%%DATADIR%%/sounds/elf-female-hit-1.ogg -%%DATADIR%%/sounds/elf-female-hit-2.ogg -%%DATADIR%%/sounds/elf-female-hit-3.ogg -%%DATADIR%%/sounds/elf-female-hit-4.ogg -%%DATADIR%%/sounds/elf-female-hit-5.ogg -%%DATADIR%%/sounds/elf-hit-1.ogg -%%DATADIR%%/sounds/elf-hit-2.ogg -%%DATADIR%%/sounds/elf-hit-3.ogg -%%DATADIR%%/sounds/elf-hit-4.ogg -%%DATADIR%%/sounds/entangle.wav -%%DATADIR%%/sounds/fanfare-short.wav -%%DATADIR%%/sounds/female-hit.wav -%%DATADIR%%/sounds/female-strong-hit.wav -%%DATADIR%%/sounds/fire.wav -%%DATADIR%%/sounds/firearrow.wav -%%DATADIR%%/sounds/fist.ogg -%%DATADIR%%/sounds/flame-big-miss.ogg -%%DATADIR%%/sounds/flame-big.ogg -%%DATADIR%%/sounds/ghoul-hit.wav -%%DATADIR%%/sounds/ghoul-swish.wav -%%DATADIR%%/sounds/goblin-die-1.ogg -%%DATADIR%%/sounds/goblin-die-2.ogg -%%DATADIR%%/sounds/goblin-hit-1.ogg -%%DATADIR%%/sounds/goblin-hit-2.ogg -%%DATADIR%%/sounds/goblin-hit-3.ogg -%%DATADIR%%/sounds/gold.ogg -%%DATADIR%%/sounds/groan-strong.wav -%%DATADIR%%/sounds/groan.wav -%%DATADIR%%/sounds/gryphon-die-1.ogg -%%DATADIR%%/sounds/gryphon-die-2.ogg -%%DATADIR%%/sounds/gryphon-hit-1.ogg -%%DATADIR%%/sounds/gryphon-hit-2.ogg -%%DATADIR%%/sounds/gryphon-hit-3.ogg -%%DATADIR%%/sounds/gryphon-shriek-1.ogg -%%DATADIR%%/sounds/gryphon-shriek-2.ogg -%%DATADIR%%/sounds/gunshot.wav -%%DATADIR%%/sounds/hatchet.ogg -%%DATADIR%%/sounds/heal.wav -%%DATADIR%%/sounds/hiss-big.wav -%%DATADIR%%/sounds/hiss-die.wav -%%DATADIR%%/sounds/hiss-hit.wav -%%DATADIR%%/sounds/hiss.wav -%%DATADIR%%/sounds/horse-canter.wav -%%DATADIR%%/sounds/horse-die.ogg -%%DATADIR%%/sounds/horse-elf-canter.wav -%%DATADIR%%/sounds/horse-hit-1.ogg -%%DATADIR%%/sounds/horse-hit-2.ogg -%%DATADIR%%/sounds/horse-hit-3.ogg -%%DATADIR%%/sounds/human-die-1.ogg -%%DATADIR%%/sounds/human-die-2.ogg -%%DATADIR%%/sounds/human-die-3.ogg -%%DATADIR%%/sounds/human-female-die-1.ogg -%%DATADIR%%/sounds/human-female-die-2.ogg -%%DATADIR%%/sounds/human-female-die-3.ogg -%%DATADIR%%/sounds/human-female-hit-1.ogg -%%DATADIR%%/sounds/human-female-hit-2.ogg -%%DATADIR%%/sounds/human-female-hit-3.ogg -%%DATADIR%%/sounds/human-hit-1.ogg -%%DATADIR%%/sounds/human-hit-2.ogg -%%DATADIR%%/sounds/human-hit-3.ogg -%%DATADIR%%/sounds/human-hit-4.ogg -%%DATADIR%%/sounds/human-hit-5.ogg -%%DATADIR%%/sounds/human-old-die-1.ogg -%%DATADIR%%/sounds/human-old-die-2.ogg -%%DATADIR%%/sounds/human-old-die-3.ogg -%%DATADIR%%/sounds/human-old-hit-1.ogg -%%DATADIR%%/sounds/human-old-hit-2.ogg -%%DATADIR%%/sounds/human-old-hit-3.ogg -%%DATADIR%%/sounds/human-old-hit-4.ogg +%%DATADIR%%/sounds/button.wav +%%DATADIR%%/sounds/chat-1.ogg +%%DATADIR%%/sounds/chat-2.ogg +%%DATADIR%%/sounds/chat-3.ogg +%%DATADIR%%/sounds/chat-friend.ogg +%%DATADIR%%/sounds/chat-highlight.ogg +%%DATADIR%%/sounds/checkbox.wav +%%DATADIR%%/sounds/contract.wav +%%DATADIR%%/sounds/expand.wav +%%DATADIR%%/sounds/join.wav %%DATADIR%%/sounds/leave.wav -%%DATADIR%%/sounds/lich-die.ogg -%%DATADIR%%/sounds/lich-hit-1.ogg -%%DATADIR%%/sounds/lich-hit-2.ogg -%%DATADIR%%/sounds/lightning-miss.ogg -%%DATADIR%%/sounds/lightning.ogg -%%DATADIR%%/sounds/mace.wav -%%DATADIR%%/sounds/magic-dark-big-miss.ogg -%%DATADIR%%/sounds/magic-dark-big.ogg -%%DATADIR%%/sounds/magic-dark-miss.ogg -%%DATADIR%%/sounds/magic-dark.ogg -%%DATADIR%%/sounds/magic-faeriefire-miss.ogg -%%DATADIR%%/sounds/magic-faeriefire.ogg -%%DATADIR%%/sounds/magic-holy-1.ogg -%%DATADIR%%/sounds/magic-holy-2.ogg -%%DATADIR%%/sounds/magic-holy-3.ogg -%%DATADIR%%/sounds/magic-holy-4.ogg -%%DATADIR%%/sounds/magic-holy-miss-1.ogg -%%DATADIR%%/sounds/magic-holy-miss-2.ogg -%%DATADIR%%/sounds/magic-holy-miss-3.ogg -%%DATADIR%%/sounds/magic-holy-miss-4.ogg -%%DATADIR%%/sounds/magic-missile-1-miss.ogg -%%DATADIR%%/sounds/magic-missile-1.ogg -%%DATADIR%%/sounds/magic-missile-2-miss.ogg -%%DATADIR%%/sounds/magic-missile-2.ogg -%%DATADIR%%/sounds/magic-missile-3-miss.ogg -%%DATADIR%%/sounds/magic-missile-3.ogg -%%DATADIR%%/sounds/magic-thorns-1.ogg -%%DATADIR%%/sounds/magic-thorns-2.ogg -%%DATADIR%%/sounds/magic-thorns-miss-1.ogg -%%DATADIR%%/sounds/magic-thorns-miss-2.ogg -%%DATADIR%%/sounds/magicmissile.wav -%%DATADIR%%/sounds/mermaid-die.ogg -%%DATADIR%%/sounds/mermaid-hit.ogg -%%DATADIR%%/sounds/mermen-die.ogg -%%DATADIR%%/sounds/mermen-hit.wav -%%DATADIR%%/sounds/miss-1.ogg -%%DATADIR%%/sounds/miss-2.ogg -%%DATADIR%%/sounds/miss-3.ogg -%%DATADIR%%/sounds/naga-die.ogg -%%DATADIR%%/sounds/naga-hit-1.ogg -%%DATADIR%%/sounds/naga-hit-2.ogg -%%DATADIR%%/sounds/naga-hit-3.ogg -%%DATADIR%%/sounds/net.wav -%%DATADIR%%/sounds/ogre-die.wav -%%DATADIR%%/sounds/ogre-hit.wav -%%DATADIR%%/sounds/open-chest.wav -%%DATADIR%%/sounds/orc-die-1.ogg -%%DATADIR%%/sounds/orc-die-2.ogg -%%DATADIR%%/sounds/orc-die-3.ogg -%%DATADIR%%/sounds/orc-hit-1.ogg -%%DATADIR%%/sounds/orc-hit-2.ogg -%%DATADIR%%/sounds/orc-hit-3.ogg -%%DATADIR%%/sounds/orc-hit-4.ogg -%%DATADIR%%/sounds/orc-small-die-1.ogg -%%DATADIR%%/sounds/orc-small-die-2.ogg -%%DATADIR%%/sounds/orc-small-hit-1.ogg -%%DATADIR%%/sounds/orc-small-hit-2.ogg -%%DATADIR%%/sounds/orc-small-hit-3.ogg -%%DATADIR%%/sounds/orc-small-hit-4.ogg -%%DATADIR%%/sounds/pincers.ogg -%%DATADIR%%/sounds/poison.ogg %%DATADIR%%/sounds/receive.wav -%%DATADIR%%/sounds/rumble.ogg -%%DATADIR%%/sounds/skeleton-big-die.ogg -%%DATADIR%%/sounds/skeleton-big-hit.ogg -%%DATADIR%%/sounds/skeleton-die.ogg -%%DATADIR%%/sounds/skeleton-hit.wav -%%DATADIR%%/sounds/sling-big-miss.ogg -%%DATADIR%%/sounds/sling-big.ogg -%%DATADIR%%/sounds/sling-miss.ogg -%%DATADIR%%/sounds/sling.ogg -%%DATADIR%%/sounds/spear-miss.ogg -%%DATADIR%%/sounds/spear.ogg -%%DATADIR%%/sounds/spear.wav -%%DATADIR%%/sounds/squishy-hit.wav -%%DATADIR%%/sounds/squishy-miss.wav -%%DATADIR%%/sounds/squishy-strike.wav -%%DATADIR%%/sounds/staff.wav -%%DATADIR%%/sounds/stoned.ogg -%%DATADIR%%/sounds/sword-1.ogg -%%DATADIR%%/sounds/tail.ogg -%%DATADIR%%/sounds/throwing-knife-miss.ogg -%%DATADIR%%/sounds/throwing-knife.ogg -%%DATADIR%%/sounds/thunderstick-miss.ogg -%%DATADIR%%/sounds/thunderstick.ogg -%%DATADIR%%/sounds/torch-miss.ogg -%%DATADIR%%/sounds/torch.ogg -%%DATADIR%%/sounds/troll-big-die.wav -%%DATADIR%%/sounds/troll-big-hit.wav -%%DATADIR%%/sounds/troll-die.wav -%%DATADIR%%/sounds/troll-hit.wav -%%DATADIR%%/sounds/ugg.wav -%%DATADIR%%/sounds/wail-long.wav -%%DATADIR%%/sounds/wail-sml.wav -%%DATADIR%%/sounds/wail.wav -%%DATADIR%%/sounds/water-blast.wav -%%DATADIR%%/sounds/wolf-big-bite-miss.ogg -%%DATADIR%%/sounds/wolf-big-bite.ogg -%%DATADIR%%/sounds/wolf-bite-miss.ogg -%%DATADIR%%/sounds/wolf-bite.ogg -%%DATADIR%%/sounds/wolf-die.wav -%%DATADIR%%/sounds/wolf-hit.wav -%%DATADIR%%/sounds/wose-attack.ogg -%%DATADIR%%/sounds/wose-die.ogg -%%DATADIR%%/sounds/wose-hit.ogg -%%DATADIR%%/sounds/wose-miss.ogg -%%DATADIR%%/sounds/yeti-die.ogg -%%DATADIR%%/sounds/yeti-hit.ogg -%%DATADIR%%/sounds/zombie-attack.wav -%%DATADIR%%/sounds/zombie-hit-1.ogg -%%DATADIR%%/sounds/zombie-hit-2.ogg -%%DATADIR%%/sounds/zombie-hit-3.ogg -%%DATADIR%%/sounds/zombie-hit-4.ogg -%%DATADIR%%/sounds/zombie-hit-5.ogg -%%DATADIR%%/sounds/zombie-hit-6.ogg +%%DATADIR%%/sounds/select-unit.wav +%%DATADIR%%/sounds/select.wav +%%DATADIR%%/sounds/slider.wav +%%DATADIR%%/sounds/timer.wav +%%DOCSDIR%%/manual/images/game-screen.jpg +%%DOCSDIR%%/manual/images/main-menu.jpg +%%DOCSDIR%%/manual/images/multiplayer.jpg +%%DOCSDIR%%/manual/images/orb-blue.jpg +%%DOCSDIR%%/manual/images/orb-green.jpg +%%DOCSDIR%%/manual/images/orb-none.jpg +%%DOCSDIR%%/manual/images/orb-red.jpg +%%DOCSDIR%%/manual/images/orb-yellow.jpg +%%DOCSDIR%%/manual/images/recruit.jpg +%%DOCSDIR%%/manual/images/right_pane.jpg +%%DOCSDIR%%/manual/images/schedule-afternoon.jpg +%%DOCSDIR%%/manual/images/schedule-dawn.jpg +%%DOCSDIR%%/manual/images/schedule-dusk.jpg +%%DOCSDIR%%/manual/images/schedule-firstwatch.jpg +%%DOCSDIR%%/manual/images/schedule-morning.jpg +%%DOCSDIR%%/manual/images/schedule-secondwatch.jpg +%%DOCSDIR%%/manual/images/schedule-underground.jpg +%%DOCSDIR%%/manual/images/top_pane.jpg +%%DOCSDIR%%/manual/manual.cs.html +%%DOCSDIR%%/manual/manual.da.html +%%DOCSDIR%%/manual/manual.de.html +%%DOCSDIR%%/manual/manual.en.html +%%DOCSDIR%%/manual/manual.it.html +%%DOCSDIR%%/manual/manual.pl.html +%%DOCSDIR%%/manual/manual.txt +%%DOCSDIR%%/manual/manual.zh_CN.html +%%DOCSDIR%%/manual/styles/manual.css @dirrm %%DATADIR%%/data/ais -@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/external_binary_data/images -@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/external_binary_data +@dirrm %%DATADIR%%/data/campaigns/An_Orcish_Incursion/images/portraits +@dirrm %%DATADIR%%/data/campaigns/An_Orcish_Incursion/images +@dirrm %%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps +@dirrm %%DATADIR%%/data/campaigns/An_Orcish_Incursion/scenarios +@dirrm %%DATADIR%%/data/campaigns/An_Orcish_Incursion +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/ais +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/misc +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/portraits +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/images +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/maps +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/scenarios +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/units +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness/utils +@dirrm %%DATADIR%%/data/campaigns/Descent_Into_Darkness @dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/images/portraits @dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/images/units @dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/images @@ -5884,8 +8028,6 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo @dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/units @dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/utils @dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion -@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/external_binary_data/images -@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/external_binary_data @dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits @dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story @dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units @@ -5895,8 +8037,55 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo @dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/units @dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/utils @dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne -@dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data/images -@dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/external_binary_data +@dirrm %%DATADIR%%/data/campaigns/Liberty/images/attacks +@dirrm %%DATADIR%%/data/campaigns/Liberty/images/halo +@dirrm %%DATADIR%%/data/campaigns/Liberty/images/maps +@dirrm %%DATADIR%%/data/campaigns/Liberty/images/portraits +@dirrm %%DATADIR%%/data/campaigns/Liberty/images/projectiles +@dirrm %%DATADIR%%/data/campaigns/Liberty/images/story +@dirrm %%DATADIR%%/data/campaigns/Liberty/images +@dirrm %%DATADIR%%/data/campaigns/Liberty/maps +@dirrm %%DATADIR%%/data/campaigns/Liberty/scenarios +@dirrm %%DATADIR%%/data/campaigns/Liberty/units +@dirrm %%DATADIR%%/data/campaigns/Liberty/utils +@dirrm %%DATADIR%%/data/campaigns/Liberty +@dirrm %%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits +@dirrm %%DATADIR%%/data/campaigns/Northern_Rebirth/maps +@dirrm %%DATADIR%%/data/campaigns/Northern_Rebirth/images +@dirrm %%DATADIR%%/data/campaigns/Northern_Rebirth/music +@dirrm %%DATADIR%%/data/campaigns/Northern_Rebirth/scenarios +@dirrm %%DATADIR%%/data/campaigns/Northern_Rebirth/utils +@dirrm %%DATADIR%%/data/campaigns/Northern_Rebirth +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/items +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/misc +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/portraits +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/heroes +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/images +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps/9_overlay +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/maps +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/scenarios +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/units +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire/utils +@dirrm %%DATADIR%%/data/campaigns/Sceptre_of_Fire +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/flags +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/units +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/maps +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/scenarios +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/units +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/utils +@dirrm %%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye +@dirrm %%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/portraits +@dirrm %%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units +@dirrm %%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images +@dirrm %%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/maps +@dirrm %%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/scenarios +@dirrm %%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units +@dirrm %%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/utils +@dirrm %%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan @dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits @dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story @dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units @@ -5906,142 +8095,186 @@ share/locale/zh_CN/LC_MESSAGES/wesnoth.mo @dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units @dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/utils @dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/external_binary_data/images -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/external_binary_data -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/attacks -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/chocobone @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/deoran @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/flag -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/gerrick -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/lich -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/misc @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/portraits @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/story +@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/units @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/maps/_Unused @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/maps @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/scenarios @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/units @dirrm %%DATADIR%%/data/campaigns/The_South_Guard/utils @dirrm %%DATADIR%%/data/campaigns/The_South_Guard -@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/external_binary_data/images -@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/external_binary_data -@dirrm %%DATADIR%%/data/campaigns/Two_Brothers/images/terrain @dirrm %%DATADIR%%/data/campaigns/Two_Brothers/images @dirrm %%DATADIR%%/data/campaigns/Two_Brothers/maps @dirrm %%DATADIR%%/data/campaigns/Two_Brothers/scenarios @dirrm %%DATADIR%%/data/campaigns/Two_Brothers -@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data/images -@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/external_binary_data @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc -@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/newelves @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/projectiles @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/dwarves +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/nagas +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/orcs +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/trolls +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/undead +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/maps +@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios/scen3_alt @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/scenarios @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils @dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns +@dirrm %%DATADIR%%/data/campaigns/tutorial/images/portraits +@dirrm %%DATADIR%%/data/campaigns/tutorial/images/units +@dirrm %%DATADIR%%/data/campaigns/tutorial/images +@dirrm %%DATADIR%%/data/campaigns/tutorial/maps +@dirrm %%DATADIR%%/data/campaigns/tutorial/scenarios +@dirrm %%DATADIR%%/data/campaigns/tutorial/units +@dirrm %%DATADIR%%/data/campaigns/tutorial @dirrm %%DATADIR%%/data/campaigns -@dirrm %%DATADIR%%/data/factions +@dirrm %%DATADIR%%/data/core/images/attacks +@dirrm %%DATADIR%%/data/core/images/halo/elven +@dirrm %%DATADIR%%/data/core/images/halo/holy +@dirrm %%DATADIR%%/data/core/images/halo/undead +@dirrm %%DATADIR%%/data/core/images/halo +@dirrm %%DATADIR%%/data/core/images/help +@dirrm %%DATADIR%%/data/core/images/items +@dirrm %%DATADIR%%/data/core/images/maps +@dirrm %%DATADIR%%/data/core/images/misc +@dirrm %%DATADIR%%/data/core/images/portraits/Alex_Jarocha-Ernst +@dirrm %%DATADIR%%/data/core/images/portraits/James_Woo +@dirrm %%DATADIR%%/data/core/images/portraits/Jason_Lutes +@dirrm %%DATADIR%%/data/core/images/portraits/Kitty +@dirrm %%DATADIR%%/data/core/images/portraits/Neoriceisgood +@dirrm %%DATADIR%%/data/core/images/portraits/Nicholas_Kerpan +@dirrm %%DATADIR%%/data/core/images/portraits/Other +@dirrm %%DATADIR%%/data/core/images/portraits/Pekka_Aikio +@dirrm %%DATADIR%%/data/core/images/portraits/Tristan_Millner +@dirrm %%DATADIR%%/data/core/images/portraits +@dirrm %%DATADIR%%/data/core/images/projectiles +@dirrm %%DATADIR%%/data/core/images/scenery +@dirrm %%DATADIR%%/data/core/images/terrain/castle/elven +@dirrm %%DATADIR%%/data/core/images/terrain/castle +@dirrm %%DATADIR%%/data/core/images/terrain/cave +@dirrm %%DATADIR%%/data/core/images/terrain/flat +@dirrm %%DATADIR%%/data/core/images/terrain/forest +@dirrm %%DATADIR%%/data/core/images/terrain/off-map +@dirrm %%DATADIR%%/data/core/images/terrain/stars +@dirrm %%DATADIR%%/data/core/images/terrain/swamp +@dirrm %%DATADIR%%/data/core/images/terrain/village +@dirrm %%DATADIR%%/data/core/images/terrain/water +@dirrm %%DATADIR%%/data/core/images/terrain +@dirrm %%DATADIR%%/data/core/images/themes +@dirrm %%DATADIR%%/data/core/images/units/drakes +@dirrm %%DATADIR%%/data/core/images/units/dwarves +@dirrm %%DATADIR%%/data/core/images/units/elves-wood +@dirrm %%DATADIR%%/data/core/images/units/goblins +@dirrm %%DATADIR%%/data/core/images/units/human-loyalists +@dirrm %%DATADIR%%/data/core/images/units/human-magi +@dirrm %%DATADIR%%/data/core/images/units/human-outlaws +@dirrm %%DATADIR%%/data/core/images/units/human-peasants +@dirrm %%DATADIR%%/data/core/images/units/merfolk +@dirrm %%DATADIR%%/data/core/images/units/monsters +@dirrm %%DATADIR%%/data/core/images/units/nagas +@dirrm %%DATADIR%%/data/core/images/units/ogres +@dirrm %%DATADIR%%/data/core/images/units/orcs +@dirrm %%DATADIR%%/data/core/images/units/saurians +@dirrm %%DATADIR%%/data/core/images/units/transport +@dirrm %%DATADIR%%/data/core/images/units/trolls +@dirrm %%DATADIR%%/data/core/images/units/undead +@dirrm %%DATADIR%%/data/core/images/units/undead-necromancers +@dirrm %%DATADIR%%/data/core/images/units/undead-skeletal +@dirrm %%DATADIR%%/data/core/images/units/woses +@dirrm %%DATADIR%%/data/core/images/units +@dirrm %%DATADIR%%/data/core/images +@dirrm %%DATADIR%%/data/core/macros +@dirrm %%DATADIR%%/data/core/music +@dirrm %%DATADIR%%/data/core/sounds/ambient +@dirrm %%DATADIR%%/data/core/sounds +@dirrm %%DATADIR%%/data/core/terrain-graphics +@dirrm %%DATADIR%%/data/core/units/bats +@dirrm %%DATADIR%%/data/core/units/boats +@dirrm %%DATADIR%%/data/core/units/drakes +@dirrm %%DATADIR%%/data/core/units/dwarves +@dirrm %%DATADIR%%/data/core/units/elves +@dirrm %%DATADIR%%/data/core/units/fake +@dirrm %%DATADIR%%/data/core/units/goblins +@dirrm %%DATADIR%%/data/core/units/gryphons +@dirrm %%DATADIR%%/data/core/units/humans +@dirrm %%DATADIR%%/data/core/units/merfolk +@dirrm %%DATADIR%%/data/core/units/monsters +@dirrm %%DATADIR%%/data/core/units/nagas +@dirrm %%DATADIR%%/data/core/units/ogres +@dirrm %%DATADIR%%/data/core/units/orcs +@dirrm %%DATADIR%%/data/core/units/saurians +@dirrm %%DATADIR%%/data/core/units/trolls +@dirrm %%DATADIR%%/data/core/units/undead +@dirrm %%DATADIR%%/data/core/units/wose +@dirrm %%DATADIR%%/data/core/units +@dirrm %%DATADIR%%/data/core +@dirrm %%DATADIR%%/data/hardwired @dirrm %%DATADIR%%/data/languages -@dirrm %%DATADIR%%/data/maps/multiplayer -@dirrm %%DATADIR%%/data/maps -@dirrm %%DATADIR%%/data/scenarios/multiplayer -@dirrm %%DATADIR%%/data/scenarios -@dirrm %%DATADIR%%/data/terrain-graphics +@dirrm %%DATADIR%%/data/multiplayer/factions +@dirrm %%DATADIR%%/data/multiplayer/maps +@dirrm %%DATADIR%%/data/multiplayer/scenarios +@dirrm %%DATADIR%%/data/multiplayer @dirrm %%DATADIR%%/data/themes +@dirrm %%DATADIR%%/data/tools/castle-cutter @dirrm %%DATADIR%%/data/tools/exploder/models @dirrm %%DATADIR%%/data/tools/exploder +@dirrm %%DATADIR%%/data/tools/unit_tree/templates @dirrm %%DATADIR%%/data/tools/unit_tree +@dirrm %%DATADIR%%/data/tools/wesnoth @dirrm %%DATADIR%%/data/tools -@dirrm %%DATADIR%%/data/tutorial/images/portraits -@dirrm %%DATADIR%%/data/tutorial/images/units -@dirrm %%DATADIR%%/data/tutorial/images -@dirrm %%DATADIR%%/data/tutorial/maps -@dirrm %%DATADIR%%/data/tutorial/scenarios -@dirrm %%DATADIR%%/data/tutorial/units -@dirrm %%DATADIR%%/data/tutorial -@dirrm %%DATADIR%%/data/units @dirrm %%DATADIR%%/data @dirrm %%DATADIR%%/fonts -@dirrm %%DATADIR%%/images/attacks +@dirrm %%DATADIR%%/icons @dirrm %%DATADIR%%/images/buttons @dirrm %%DATADIR%%/images/cursors @dirrm %%DATADIR%%/images/cursors-bw +@dirrm %%DATADIR%%/images/dialogs @dirrm %%DATADIR%%/images/editor -@dirrm %%DATADIR%%/images/halo/elven -@dirrm %%DATADIR%%/images/halo/holy -@dirrm %%DATADIR%%/images/halo -@dirrm %%DATADIR%%/images/help +@dirrm %%DATADIR%%/images/flags +@dirrm %%DATADIR%%/images/footsteps @dirrm %%DATADIR%%/images/icons -@dirrm %%DATADIR%%/images/items -@dirrm %%DATADIR%%/images/maps @dirrm %%DATADIR%%/images/misc -@dirrm %%DATADIR%%/images/portraits/Alex_Jarocha-Ernst -@dirrm %%DATADIR%%/images/portraits/James_Woo -@dirrm %%DATADIR%%/images/portraits/Jason_Lutes -@dirrm %%DATADIR%%/images/portraits/Neoriceisgood -@dirrm %%DATADIR%%/images/portraits/Nicholas_Kerpan -@dirrm %%DATADIR%%/images/portraits/Other -@dirrm %%DATADIR%%/images/portraits/Pekka_Aikio -@dirrm %%DATADIR%%/images/portraits/Tristan_Millner -@dirrm %%DATADIR%%/images/portraits -@dirrm %%DATADIR%%/images/projectiles -@dirrm %%DATADIR%%/images/terrain @dirrm %%DATADIR%%/images/tools/exploder @dirrm %%DATADIR%%/images/tools -@dirrm %%DATADIR%%/images/units/drakes -@dirrm %%DATADIR%%/images/units/dwarves -@dirrm %%DATADIR%%/images/units/elves-wood -@dirrm %%DATADIR%%/images/units/goblins -@dirrm %%DATADIR%%/images/units/human-loyalists -@dirrm %%DATADIR%%/images/units/human-magi -@dirrm %%DATADIR%%/images/units/human-outlaws -@dirrm %%DATADIR%%/images/units/merfolk -@dirrm %%DATADIR%%/images/units/monsters -@dirrm %%DATADIR%%/images/units/nagas -@dirrm %%DATADIR%%/images/units/ogres -@dirrm %%DATADIR%%/images/units/orcs -@dirrm %%DATADIR%%/images/units/saurians -@dirrm %%DATADIR%%/images/units/transport -@dirrm %%DATADIR%%/images/units/trolls -@dirrm %%DATADIR%%/images/units/undead -@dirrm %%DATADIR%%/images/units/undead-necromancers -@dirrm %%DATADIR%%/images/units/undead-skeletal -@dirrm %%DATADIR%%/images/units/woses -@dirrm %%DATADIR%%/images/units @dirrm %%DATADIR%%/images -@dirrm %%DATADIR%%/music @dirrm %%DATADIR%%/sounds @dirrm %%DATADIR%% +@dirrm %%DOCSDIR%%/manual/images +@dirrm %%DOCSDIR%%/manual/styles +@dirrm %%DOCSDIR%%/manual +@dirrm %%DOCSDIR%% @dirrmtry man/cs/man6 @dirrmtry man/cs @dirrmtry man/de/man6 @dirrmtry man/de -@dirrmtry man/en_GB/man6 -@dirrmtry man/en_GB @dirrmtry man/fr/man6 @dirrmtry man/fr +@dirrmtry man/it/man6 +@dirrmtry man/it +@dirrmtry man/jp/man6 +@dirrmtry man/jp @dirrmtry man/nl/man6 @dirrmtry man/nl -@dirrmtry man/pt_BR/man6 -@dirrmtry man/pt_BR @dirrmtry man/sk/man6 @dirrmtry man/sk -@dirrmtry man/sv/man6 -@dirrmtry man/sv -%%GNOME:%%@cwd %%LOCALBASE%% -%%GNOME:%%share/applications/wesnoth.desktop -%%GNOME:%%share/pixmaps/wesnoth-icon.png -%%KDE:%%@cwd %%LOCALBASE%% -%%KDE:%%share/applnk/Games/TacticStrategy/wesnoth.desktop -%%KDE:%%share/icons/wesnoth-icon.png +@dirrmtry man/zh_CN/man6 +@dirrmtry man/zh_CN +share/applications/wesnoth.desktop +share/applications/wesnoth_editor.desktop +share/pixmaps/wesnoth-icon.png +share/pixmaps/wesnoth_editor-icon.png %%SERVER:%%@unexec rmdir /var/run/wesnothd 2>/dev/null || echo "If you are permanently removing this port, you should do a 'rm -rf /var/run/wesnothd' to remove it." | fmt @dirrmtry share/locale/ca_ES@valencia/LC_MESSAGES @dirrmtry share/locale/ca_ES@valencia |