diff options
author | pav <pav@FreeBSD.org> | 2010-07-20 18:57:07 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2010-07-20 18:57:07 +0800 |
commit | 7c60ebee71e50389e412c012abb3d5d2b3115283 (patch) | |
tree | 8fe27f46d091e6f694ea8ffd284fc81dc8ce5ffd /games/wesnoth | |
parent | a50c64ad2e10ad8c666cf401a17a5d759866d947 (diff) | |
download | freebsd-ports-gnome-7c60ebee71e50389e412c012abb3d5d2b3115283.tar.gz freebsd-ports-gnome-7c60ebee71e50389e412c012abb3d5d2b3115283.tar.zst freebsd-ports-gnome-7c60ebee71e50389e412c012abb3d5d2b3115283.zip |
- Update to 1.8.3
PR: ports/147335
Submitted by: Paul Shepel <tacid@tacid.kiev.ua>
Approved by: maintainer timeout (philip; 14 days)
Diffstat (limited to 'games/wesnoth')
-rw-r--r-- | games/wesnoth/Makefile | 131 | ||||
-rw-r--r-- | games/wesnoth/distinfo | 6 | ||||
-rw-r--r-- | games/wesnoth/files/patch-Makefile.am | 11 | ||||
-rw-r--r-- | games/wesnoth/files/patch-configure.ac | 49 | ||||
-rw-r--r-- | games/wesnoth/files/patch-m4-zlib.m4 | 15 | ||||
-rw-r--r-- | games/wesnoth/files/patch-multiplayer_connect.cpp | 11 | ||||
-rw-r--r-- | games/wesnoth/files/patch-src-Makefile.am | 55 | ||||
-rw-r--r-- | games/wesnoth/files/patch-src-font.cpp | 44 | ||||
-rw-r--r-- | games/wesnoth/files/patch-window_builder.cpp | 13 | ||||
-rw-r--r-- | games/wesnoth/pkg-plist | 8864 |
10 files changed, 385 insertions, 8814 deletions
diff --git a/games/wesnoth/Makefile b/games/wesnoth/Makefile index 2bd92259df7f..9b0984b6eb55 100644 --- a/games/wesnoth/Makefile +++ b/games/wesnoth/Makefile @@ -6,17 +6,20 @@ # PORTNAME= wesnoth -PORTVERSION= 1.6.5 -PORTREVISION= 4 +PORTVERSION= 1.8.3 CATEGORIES= games -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-1.6/${PORTNAME}-${PORTVERSION} \ - http://www.wesnoth.org/files/ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION} \ + http://files.wesnoth.org/ MAINTAINER= philip@FreeBSD.org COMMENT= A fantasy turn-based strategy game LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/COPYING + CONFLICTS= wesnoth-devel-[0-9]* USE_SDL= image mixer net ttf @@ -25,51 +28,69 @@ USE_GMAKE= yes MAKE_JOBS_SAFE= yes WANT_GNOME= yes USE_BZIP2= yes +USE_LUA= 5.1 USE_AUTOTOOLS= aclocal:110 autoheader:262 automake:110 autoconf:262 ACLOCAL_ARGS= -Im4 AUTOMAKE_ARGS= --add-missing --copy +CONFIGURE_ENV= PKG_CONFIG=${LOCALBASE}/bin/pkg-config \ + LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --localstatedir=/var \ + --with-boost=${LOCALBASE} \ --with-icondir=${PREFIX}/share/pixmaps \ --with-libiconv-prefix=${LOCALBASE} \ --with-libintl-prefix=${LOCALBASE} \ --with-localedir=${PREFIX}/share/locale -MANLANG_GAME= gl sk -MANLANG= "" cs de en_GB es et fi fr hu it lt pl sr sr@latin sv tr \ - zh_CN zh_TW +MANLANG= "" cs de en_GB es et fi fr gl hu it ja lt pl pt_BR sk \ + sr sr@ijekavian sr@ijekavianlatin sr@latin tr zh_CN zh_TW MAN6= wesnoth.6 -OPTIONS= CAMPAIGN "Enable campaign server" On \ +PORTDOCS= * +PORTDATA= * + +OPTIONS= BWMON "Enable bandwidth monitoring for server" Off \ + CAMPAIGN "Enable campaign server" On \ EDITOR "Enable map editor" On \ FRIBIDI "Enable bidirectional support" On \ + LOWMEM "Reduce memory usage (disables animations)" Off \ NLS "Enable localization" On \ + NOTIFY "Enable desktop notifications" On \ + POOLALLOC "Use wesnoth own memory allocator" Off \ + PYTHON "Enable python developer tools" On \ + RAWSOCKETS "Use raw receiving sockets in multiplayer" Off \ SERVER "Enable server" On \ + TESTS "Enable unit tests" Off \ + TINYGUI "Enable tiny gui (down to 320x200)" Off \ TOOLS "Enable extra tools for artists and translators" On .include <bsd.port.pre.mk> -# workaround: compress and add to plist disobedient man pages -.for manlang in ${MANLANG_GAME} -MAN6_${manlang:U}= wesnoth.6 - -.if defined(NO_MANCOMPRESS) -PLIST_FILES+= man/${manlang}/man6/wesnoth.6 -.else -PLIST_FILES+= man/${manlang}/man6/wesnoth.6.gz +.if ${OSVERSION} < 700000 +BROKEN= does not compile .endif -.endfor .if defined(WITH_DEBUG) CONFIGURE_ARGS+= --enable-debug .endif +.if defined(WITH_PROFILE) +CONFIGURE_ARGS+= --enable-profile +.endif + # XXX: breaks compilation because of -Werror .if !defined(WITH_STRICT) CONFIGURE_ARGS+= --disable-strict-compilation .endif +.if defined(WITHOUT_BWMON) +CONFIGURE_ARGS+= --disable-bandwidth-monitor +.else +CONFIGURE_ARGS+= --enable-bandwidth-monitor +.endif + .if defined(WITHOUT_CAMPAIGN) +CONFIGURE_ARGS+= --disable-campaign-server PLIST_SUB+= CAMPAIGN="@comment " .else CONFIGURE_ARGS+= --enable-campaign-server @@ -77,27 +98,68 @@ PLIST_SUB+= CAMPAIGN="" .endif .if defined(WITHOUT_EDITOR) -PLIST_SUB+= EDITOR="@comment " CONFIGURE_ARGS+= --disable-editor +PLIST_SUB+= EDITOR="@comment " .else +CONFIGURE_ARGS+= --enable-editor PLIST_SUB+= EDITOR="" .endif .if defined(WITHOUT_FRIBIDI) CONFIGURE_ARGS+= --without-fribidi .else +CONFIGURE_ARGS+= --with-fribidi LIB_DEPENDS+= fribidi.3:${PORTSDIR}/converters/fribidi .endif +.if defined(WITHOUT_LOWMEM) +CONFIGURE_ARGS+= --disable-lowmem +.else +CONFIGURE_ARGS+= --enable-lowmem +.endif + +.if defined(WITHOUT_NOTIFY) +CONFIGURE_ARGS+= --disable-notifications +.else +CONFIGURE_ARGS+= --enable-notifications --enable-dbus +LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus +.endif + .if defined(WITHOUT_NLS) CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " .else USE_GETTEXT= yes +CONFIGURE_ARGS+= --enable-nls PLIST_SUB+= NLS="" .endif +.if defined(WITHOUT_POOLALLOC) +CONFIGURE_ARGS+= --disable-pool-alloc +.else +CONFIGURE_ARGS+= --enable-pool-alloc +.endif + +.if defined(WITHOUT_PYTHON) +CONFIGURE_ARGS+= --disable-python-install +PLIST_SUB+= PYTHON="@comment " +.else +USE_PYTHON= yes +CONFIGURE_ENV+= PYTHON_PREFIX=${PREFIX} \ + PYTHON_VERSION=${PYTHON_VERSION:S/python//} +CONFIGURE_ARGS+= --enable-python-install +PLIST_SUB+= PYTHON="" +.include "${PORTSDIR}/Mk/bsd.python.mk" +.endif + +.if defined(WITHOUT_RAWSOCKETS) +CONFIGURE_ARGS+= --disable-raw-sockets +.else +CONFIGURE_ARGS+= --enable-raw-sockets +.endif + .if defined(WITHOUT_SERVER) +CONFIGURE_ARGS+= --disable-server PLIST_SUB+= SERVER="@comment " .else CONFIGURE_ARGS+= --enable-server @@ -105,19 +167,42 @@ MAN6+= wesnothd.6 PLIST_SUB+= SERVER="" .endif +.if defined(WITHOUT_TESTS) +CONFIGURE_ARGS+= --disable-tests +PLIST_SUB+= TESTS="@comment " +.else +CONFIGURE_ARGS+= --enable-tests +PLIST_SUB+= TESTS="" +.endif + +.if defined(WITHOUT_TINYGUI) +CONFIGURE_ARGS+= --disable-tinygui +.else +BUILD_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick +CONFIGURE_ARGS+= --enable-tinygui +.endif + .if defined(WITHOUT_TOOLS) +CONFIGURE_ARGS+= --disable-tools PLIST_SUB+= TOOLS="@comment " .else CONFIGURE_ARGS+= --enable-tools PLIST_SUB+= TOOLS="" .endif +.if defined(NOPORTDOCS) +CONFIGURE_ARGS+= --docdir=${WRKDIR}/docs +.endif + .if (defined(WITH_CAMPAIGN) || defined(WITH_SERVER) || defined(WITH_TOOLS)) && defined(WITHOUT_NLS) BROKEN= you need NLS support for `campaignd' or `wesnothd' or tools to link against gettext .endif -post-patch: - ${REINPLACE_CMD} -e 's|libpng12|libpng14|g' ${WRKSRC}/configure +.if defined(NOPORTDATA) +IGNORE= game data is required, undefine NOPORTDATA +.endif + +post-patch: .SILENT ${REINPLACE_CMD} -e 's|png_voidp_NULL|NULL|g' \ -e 's|png_error_ptr_NULL|NULL|g' \ ${WRKSRC}/src/tools/exploder_utils.cpp @@ -125,10 +210,4 @@ post-patch: post-install: .SILENT -update-desktop-database -.if !defined(NO_MANCOMPRESS) -. for manlang in ${MANLANG_GAME} - ${GZIP_CMD} ${PREFIX}/man/${manlang}/man6/wesnoth.6 -. endfor -.endif - .include <bsd.port.post.mk> diff --git a/games/wesnoth/distinfo b/games/wesnoth/distinfo index 444ac6c42480..d99664fc7512 100644 --- a/games/wesnoth/distinfo +++ b/games/wesnoth/distinfo @@ -1,3 +1,3 @@ -MD5 (wesnoth-1.6.5.tar.bz2) = 493826bbd9ba355930765a7e8fe3749a -SHA256 (wesnoth-1.6.5.tar.bz2) = 7ef047ae364278a5bf9bdc69228f77d825f793f1c4d9adae8b47f0882e7f30d7 -SIZE (wesnoth-1.6.5.tar.bz2) = 230239169 +MD5 (wesnoth-1.8.3.tar.bz2) = 62ba3a4938d3e722797cfbe9450d3e36 +SHA256 (wesnoth-1.8.3.tar.bz2) = 985d40ff04cf95bb6f8abb3353ec955c3286a6f9edb1bd29b6f26f8b12280928 +SIZE (wesnoth-1.8.3.tar.bz2) = 298923248 diff --git a/games/wesnoth/files/patch-Makefile.am b/games/wesnoth/files/patch-Makefile.am deleted file mode 100644 index 94a713e45171..000000000000 --- a/games/wesnoth/files/patch-Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.am~ -+++ Makefile.am -@@ -5,7 +5,7 @@ pkgdatadir=$(datadir)/@DATADIR@ - bin_SCRIPTS = - - # Ignore junk -- object files, editor backup files, wmllint backup files. --findfilterflags=! \( -name .svn -prune -o -name ".\#*" -o -name "*~" -o -name "*bak" -o -name 'Makefile' -o -name '*Makefile' -o -type d -o -wholename "data/test/*" \) -+findfilterflags=! \( -name .svn -prune -o -name ".\#*" -o -name "*~" -o -name "*bak" -o -name 'Makefile' -o -name '*Makefile' -o -type d -o -path "data/test/*" \) - - # List all datafiles, ignoring junk - finddata=(cd $(top_srcdir) && find data fonts icons images sounds $(findfilterflags) -print ) diff --git a/games/wesnoth/files/patch-configure.ac b/games/wesnoth/files/patch-configure.ac index 48f95633b96e..73a33764d8c7 100644 --- a/games/wesnoth/files/patch-configure.ac +++ b/games/wesnoth/files/patch-configure.ac @@ -9,48 +9,15 @@ test_build=yes if test $svn_in_version = 0 then -Index: configure.ac -=================================================================== ---- configure.ac (revision 36766) -+++ configure.ac (revision 37394) -@@ -416,21 +416,27 @@ - - # fribidi-config - --AC_PATH_PROGS([FRIBIDI_CONFIG], [fribidi-config], [none]) -- --if test "x$FRIBIDI_CONFIG" = "xnone"; then -- fribidifound=no -- AC_MSG_WARN([*** FRIBIDI not found.]) --else -- fribidifound=yes -- FRIBIDI_CFLAGS=`$FRIBIDI_CONFIG --cflags` -- FRIBIDI_LIBS=`$FRIBIDI_CONFIG --libs` -+if test "x$fribidi" != "xno"; then -+ PKG_CHECK_MODULES([FRIBIDI2], [fribidi >= 0.19.0], -+ [ -+ fribidifound=yes -+ ], -+ [ -+ AC_MSG_RESULT(no) -+ PKG_CHECK_MODULES([FRIBIDI], [fribidi], -+ [ -+ fribidifound=yes -+ oldfribidi=yes -+ ], -+ [ -+ fribidifound=no -+ AC_MSG_RESULT(no) -+ ]) -+ ]) -+ AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes]) -+ AM_CONDITIONAL([OLD_FRIBIDI], [test "x$oldfribidi" = xyes]) +@@ -428,9 +428,9 @@ if test "x$fribidi" != "xno"; then + AC_MSG_RESULT(no) + ]) + ]) +- AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes]) +- AM_CONDITIONAL([OLD_FRIBIDI], [test "x$oldfribidi" = xyes]) fi ++AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes]) ++AM_CONDITIONAL([OLD_FRIBIDI], [test "x$oldfribidi" = xyes]) --AC_SUBST([FRIBIDI_CFLAGS]) --AC_SUBST([FRIBIDI_LIBS]) --AM_CONDITIONAL([FRIBIDI], [test "x$fribidifound" = xyes -a "x$fribidi" = xyes ]) -- # python AC_PATH_PROG(PYTHON, python, none) - AC_SUBST(pkgpythondir) diff --git a/games/wesnoth/files/patch-m4-zlib.m4 b/games/wesnoth/files/patch-m4-zlib.m4 new file mode 100644 index 000000000000..68ac546c28da --- /dev/null +++ b/games/wesnoth/files/patch-m4-zlib.m4 @@ -0,0 +1,15 @@ +--- m4/zlib.m4~ ++++ m4/zlib.m4 +@@ -16,11 +16,9 @@ fi + AC_MSG_CHECKING([for zlib location]) + if test x"$zlib_prefix" = x ; then + zlib_header_found="no" +- for dir in /usr/local /usr ; do ++ for dir in /usr ; do + if test -f "$dir/include/zlib.h" ; then + zlib_header_found="yes" +- ZLIB_CFLAGS="-I$dir/include" +- ZLIB_LDFLAGS="-L$dir/lib" + break + fi + done diff --git a/games/wesnoth/files/patch-multiplayer_connect.cpp b/games/wesnoth/files/patch-multiplayer_connect.cpp deleted file mode 100644 index 0a8fe7836a68..000000000000 --- a/games/wesnoth/files/patch-multiplayer_connect.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- src/multiplayer_connect.cpp.orig 2008-09-07 18:16:37.000000000 -0700 -+++ src/multiplayer_connect.cpp 2008-09-07 18:17:40.000000000 -0700 -@@ -642,7 +642,7 @@ - res["current_player"] = id_.empty() ? current_player_ : id_; - - if (id_.empty()) { -- char const *description; -+ char const *description = NULL; - switch(controller_) { - case CNTR_NETWORK: - description = N_("(Vacant slot)"); diff --git a/games/wesnoth/files/patch-src-Makefile.am b/games/wesnoth/files/patch-src-Makefile.am index 00646474e20b..c39d10d3f7a1 100644 --- a/games/wesnoth/files/patch-src-Makefile.am +++ b/games/wesnoth/files/patch-src-Makefile.am @@ -1,34 +1,31 @@ --- src/Makefile.am~ +++ src/Makefile.am -@@ -400,7 +400,7 @@ game_config.o: revision.hpp - REVISION = $(shell LC_ALL=C svnversion -n $(topdir) 2>/dev/null) - .PRECIOUS: revision.hpp - revision.hpp: FORCE -- if [ "$(REVISION)" == "" ] || [ "$(REVISION)" == "exported" ]; then echo '' >/tmp/westemp$$$$; \ -+ if [ "$(REVISION)" = "" ] || [ "$(REVISION)" = "exported" ]; then echo '' >/tmp/westemp$$$$; \ - else echo '#define REVISION "$(REVISION)"' >/tmp/westemp$$$$; fi;\ - if cmp -s revision.hpp /tmp/westemp$$$$ 2>/dev/null; then :; else cp /tmp/westemp$$$$ revision.hpp; fi; \ - if [ -e /tmp/westemp$$$$ ]; then rm /tmp/westemp$$$$; fi -Index: src/Makefile.am -=================================================================== ---- src/Makefile.am (revision 37393) -+++ src/Makefile.am (revision 37394) -@@ -485,10 +485,16 @@ - -DLOCALEDIR=\"$(LOCALEDIR)\" -DHAS_RELATIVE_LOCALEDIR=$(HAS_RELATIVE_LOCALEDIR) +@@ -16,7 +16,7 @@ bin_PROGRAMS += campaignd + endif - if FRIBIDI -- AM_CXXFLAGS += -DHAVE_FRIBIDI @FRIBIDI_CFLAGS@ -- AM_CFLAGS += -DHAVE_FRIBIDI @FRIBIDI_CFLAGS@ -+if OLD_FRIBIDI -+ CXXFLAGS += -DOLD_FRIBIDI @FRIBIDI_CFLAGS@ -+ CFLAGS += -DOLD_FRIBIDI @FRIBIDI_CFLAGS@ - THELIBS += @FRIBIDI_LIBS@ -+else -+ CXXFLAGS += -DHAVE_FRIBIDI @FRIBIDI2_CFLAGS@ -+ CFLAGS += -DHAVE_FRIBIDI @FRIBIDI2_CFLAGS@ -+ THELIBS += @FRIBIDI2_LIBS@ + if TESTS +-bin_PROGRAMS += test ++bin_PROGRAMS += wesnoth_test endif -+endif - if X11 - CXXFLAGS += -D_X11 @X_CFLAGS@ + CLEANFILES = revision.hpp +@@ -342,7 +342,7 @@ cutter_DEPENDENCIES=libwesnoth-core.a + # Unit tests # + ############################################################################# + +-test_SOURCES = \ ++wesnoth_test_SOURCES = \ + tests/main.cpp \ + tests/utils/fake_display.cpp \ + tests/utils/fake_event_source.cpp \ +@@ -362,8 +362,8 @@ test_SOURCES = \ + tests/gui/test_save_dialog.cpp \ + $(wesnoth_source) + +-test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS) +-test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a ++wesnoth_test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS) ++wesnoth_test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a + + ############################################################################# + # Headers # diff --git a/games/wesnoth/files/patch-src-font.cpp b/games/wesnoth/files/patch-src-font.cpp deleted file mode 100644 index 301914022384..000000000000 --- a/games/wesnoth/files/patch-src-font.cpp +++ /dev/null @@ -1,44 +0,0 @@ -Index: src/font.cpp -=================================================================== ---- src/font.cpp (revision 36766) -+++ src/font.cpp (revision 37394) -@@ -50,10 +50,7 @@ - #define ERR_FT LOG_STREAM(err, log_font) - - #ifdef HAVE_FRIBIDI --#include <fribidi/fribidi.h> -- --#else -- -+#include <fribidi.h> - #endif - - namespace { -@@ -467,16 +464,25 @@ - void text_surface::bidi_cvt() - { - char *c_str = const_cast<char *>(str_.c_str()); // fribidi forgot const... -- int len = str_.length(); -+ FriBidiStrIndex len = str_.length(); - FriBidiChar *bidi_logical = new FriBidiChar[len + 2]; - FriBidiChar *bidi_visual = new FriBidiChar[len + 2]; - char *utf8str = new char[4*len + 1]; //assume worst case here (all 4 Byte characters) - FriBidiCharType base_dir = FRIBIDI_TYPE_ON; -- int n; -+ FriBidiStrIndex n; - -+ -+#ifdef OLD_FRIBIDI - n = fribidi_utf8_to_unicode (c_str, len, bidi_logical); -+#else -+ n = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8, c_str, len, bidi_logical); -+#endif - fribidi_log2vis(bidi_logical, n, &base_dir, bidi_visual, NULL, NULL, NULL); -+#ifdef OLD_FRIBIDI - fribidi_unicode_to_utf8 (bidi_visual, n, utf8str); -+#else -+ fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, bidi_visual, n, utf8str); -+#endif - is_rtl_ = base_dir == FRIBIDI_TYPE_RTL; - str_ = std::string(utf8str); - delete[] bidi_logical; diff --git a/games/wesnoth/files/patch-window_builder.cpp b/games/wesnoth/files/patch-window_builder.cpp deleted file mode 100644 index 5e0cfe356eaa..000000000000 --- a/games/wesnoth/files/patch-window_builder.cpp +++ /dev/null @@ -1,13 +0,0 @@ ---- src/gui/widgets/window_builder.cpp.orig 2008-11-02 17:31:45.000000000 +0100 -+++ src/gui/widgets/window_builder.cpp 2008-11-02 17:32:43.000000000 +0100 -@@ -199,6 +199,10 @@ - std::cerr << cfg; - assert(false); - } -+ -+ // Appease the compiler on FreeBSD -+ // Unreachable -+ return NULL; - } - - } // namespace diff --git a/games/wesnoth/pkg-plist b/games/wesnoth/pkg-plist index 6052f7268ca1..26bf27c94d05 100644 --- a/games/wesnoth/pkg-plist +++ b/games/wesnoth/pkg-plist @@ -3,8352 +3,43 @@ %%TOOLS%%bin/exploder bin/wesnoth %%TOOLS%%bin/wesnoth_addon_manager +%%TESTS%%bin/wesnoth_test %%SERVER%%bin/wesnothd %%TOOLS%%bin/wmlindent %%TOOLS%%bin/wmllint %%TOOLS%%bin/wmlscope +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo share/applications/wesnoth.desktop %%EDITOR%%share/applications/wesnoth_editor.desktop share/pixmaps/wesnoth-icon.png %%EDITOR%%share/pixmaps/wesnoth_editor-icon.png -%%DOCSDIR%%/manual/CMakeLists.txt -%%DOCSDIR%%/manual/images/de/game-screen-1.5.7.jpg -%%DOCSDIR%%/manual/images/de/main-menu-1.5.11.jpg -%%DOCSDIR%%/manual/images/de/multiplayer-1.5.11.jpg -%%DOCSDIR%%/manual/images/de/recruit-1.5.7.jpg -%%DOCSDIR%%/manual/images/de/right_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/de/top_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/es/game-screen-1.5.7.jpg -%%DOCSDIR%%/manual/images/es/main-menu-1.5.11.jpg -%%DOCSDIR%%/manual/images/es/multiplayer-1.5.11.jpg -%%DOCSDIR%%/manual/images/es/recruit-1.5.7.jpg -%%DOCSDIR%%/manual/images/es/right_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/es/top_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/game-screen-1.5.7.jpg -%%DOCSDIR%%/manual/images/hu/game-screen-1.5.7.jpg -%%DOCSDIR%%/manual/images/hu/main-menu-1.5.11.jpg -%%DOCSDIR%%/manual/images/hu/multiplayer-1.5.11.jpg -%%DOCSDIR%%/manual/images/hu/recruit-1.5.7.jpg -%%DOCSDIR%%/manual/images/hu/right_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/hu/top_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/main-menu-1.5.11.jpg -%%DOCSDIR%%/manual/images/multiplayer-1.5.11.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-1.5.7.jpg -%%DOCSDIR%%/manual/images/right_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/top_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/tr/game-screen-1.5.7.jpg -%%DOCSDIR%%/manual/images/tr/main-menu-1.5.11.jpg -%%DOCSDIR%%/manual/images/tr/multiplayer-1.5.11.jpg -%%DOCSDIR%%/manual/images/tr/recruit-1.5.7.jpg -%%DOCSDIR%%/manual/images/tr/right_pane-1.5.7.jpg -%%DOCSDIR%%/manual/images/tr/top_pane-1.5.7.jpg -%%DOCSDIR%%/manual/manual.cs.html -%%DOCSDIR%%/manual/manual.da.html -%%DOCSDIR%%/manual/manual.de.html -%%DOCSDIR%%/manual/manual.en.html -%%DOCSDIR%%/manual/manual.en_GB.html -%%DOCSDIR%%/manual/manual.es.html -%%DOCSDIR%%/manual/manual.et.html -%%DOCSDIR%%/manual/manual.fi.html -%%DOCSDIR%%/manual/manual.fr.html -%%DOCSDIR%%/manual/manual.gl.html -%%DOCSDIR%%/manual/manual.hu.html -%%DOCSDIR%%/manual/manual.it.html -%%DOCSDIR%%/manual/manual.pl.html -%%DOCSDIR%%/manual/manual.pt_BR.html -%%DOCSDIR%%/manual/manual.ru.html -%%DOCSDIR%%/manual/manual.sv.html -%%DOCSDIR%%/manual/manual.tr.html -%%DOCSDIR%%/manual/manual.txt -%%DOCSDIR%%/manual/manual.zh_CN.html -%%DOCSDIR%%/manual/manual.zh_TW.html -%%DOCSDIR%%/manual/styles/manual.css -%%DATADIR%%/data/COPYING.txt -%%DATADIR%%/data/_main.cfg -%%DATADIR%%/data/ai/formula/level_up_attack_eval.fai -%%DATADIR%%/data/ai/formula/level_up_attack_move.fai -%%DATADIR%%/data/ai/formula/opening.fai -%%DATADIR%%/data/ai/formula/patrol.fai -%%DATADIR%%/data/ai/formula/recruitment.fai -%%DATADIR%%/data/ai/formula/scouting_eval.fai -%%DATADIR%%/data/ai/formula/scouting_move.fai -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/_main.cfg -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/images/an-orcish-incursion-map.png -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/1_Defend_the_forest.map -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/2_Assassins.map -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/3_Wasteland.map -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/4_Valley_of_trolls.map -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/5_Linaera_the_quick.map -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/6_A_detour_through_the_swamp.map -%%DATADIR%%/data/campaigns/An_Orcish_Incursion/maps/7_Showdown.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/An_Orcish_Incursion/utils/journey.cfg -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/_main.cfg -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/misc/book-icon.png -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/misc/descent-into-darkness.png -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/misc/makeshift-altar.png -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/misc/weakened-ice.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/story/book.jpg -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/story/end.jpg -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/story/parthyn.jpg -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/story/travel.jpg -%%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-magic-1.png -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-magic-2.png -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-magic-3.png -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-sword-1.png -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/images/units/dark-mage-sword-2.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/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/Endless_night.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_Endless_Night.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/utils/deaths.cfg -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/utils/journey.cfg -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/utils/macros.cfg -%%DATADIR%%/data/campaigns/Descent_Into_Darkness/utils/terrain.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/_main.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/campaign_image.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/eastern-invasion-map.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/items/horse-cage.png -%%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 -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/portraits/mal-ravanal.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/portraits/owaec.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-captain-attack-morningstar.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-captain-attack-sword.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-captain-defend.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-captain-moving.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-captain.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-commander-attack-morningstar.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-commander-attack-sword.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-commander-defend.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-commander-moving.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-commander.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-lord-attack-morningstar.png -%%DATADIR%%/data/campaigns/Eastern_Invasion/images/units/owaec-lord-attack-sword.png -%%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/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 -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/04a.An_Elven_Alliance.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/04b.The_Undead_Border_Patrol.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/04c.Mal-Ravanals_Capital.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/05.Northern_Outpost.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/06.Two_Paths.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/07a.The_Crossing.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/07b.Undead_Crossing.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/09.Training_the_Ogres.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/10.Xenophobia.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/11.Lake_Vrug.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/12.Captured.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/13.Evacuation.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/14.The_Drowned_Plains.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/15.Approaching_Weldyn.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios/16.The_Council.cfg -%%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/utils/deaths.cfg -%%DATADIR%%/data/campaigns/Eastern_Invasion/utils/journey.cfg -%%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 -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits/kalenz.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits/konrad-angry.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits/konrad.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits/lisar.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/portraits/uradredia.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/arrival_of_the_heir.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/httt_story1.jpg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/httt_story2.jpg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/httt_story3.jpg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/httt_story4.jpg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/httt_story5.jpg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/httt_story6.jpg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/httt_story7.jpg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story/httt_story8.jpg -%%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/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-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 -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-attack-3.png -%%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-idle-1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-idle-2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-idle-3.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-idle-4.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-idle-5.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/human-princess-idle-6.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 -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-attack-3.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-attack-4.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-bow-attack1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-bow-attack2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-bow-attack3.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-bow-attack4.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-commander-bow-defend.png -%%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 -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-fighter-defend.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-fighter.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-attack-w1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-attack-w2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-attack-w3.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-bow-attack1.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-bow-attack2.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-bow-attack3.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-bow-attack4.png -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units/konrad-lord-bow-defend.png -%%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/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/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_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_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_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_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_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/Commander.cfg -%%DATADIR%%/data/campaigns/Heir_To_The_Throne/units/Dark_Queen.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/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/Legend_of_Wesmere/HISTORY -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/_main.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/ai/patrol.fai -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/campaign_image.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/legend-of-wesmere-map.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/aldar.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/cleodil.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/crelanu.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/galtrid.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/kalenz.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/landar.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/olurf.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/uradredia.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits/velon.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/Thoria.jpeg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/Thoria0.jpeg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/aldar.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/cleodil.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/crelanu.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/galtrid.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/haldric-ii.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/highlord.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/kalenz.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/landar.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/legmir.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/lord.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/olurf.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters/uradredia.png -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/hostmountains.jpeg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/snow.jpeg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/02_Hostile_mountains.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/04_Elvish_Treasury.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/06_Acquaintance_in_Need.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/09_Bounty_Hunters.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/10_Cliffs_of_Thoria.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/11_Battle_of_the_book.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/14_Human_Alliance.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/16_The_Chief_must_die.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/19_Costly_Revenge.tomerge -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/23_End_of_War.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/Kalian.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/Lintanir.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/North_Elves.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps/Saurgrath.map -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks/01_Uprooting.mask -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks/03_Kalian.mask -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks/05_Saurian_Treasury.mask -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks/07_Elves_last_stand.mask -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks/17_Breaking_the_siege.mask -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks/19_Costly_Revenge.mask -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks/21_Elvish_Assassins.mask -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks/22_Northern_Battle.mask -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/01_The_Uprooting.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/02_Hostile_mountains.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/03_Kalian.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/04_Elvish_Treasury.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/05_Saurian_Treasury.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/06_Acquaintance_in_Need.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/07_Elves_last_stand.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/07_Elves_last_stand_utils.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/08_Council_of_hard_choices.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/09_Bounty_hunters.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/10_Cliffs_of_Thoria.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/11_Battle_of_the_book.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/12_Revelations.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/13_News_from_the_front.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/14_Human_Alliance.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/15_The_Treaty.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/16_The_Chief_must_die.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/16_The_Chief_must_die_utils.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/17_Breaking_the_siege.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/18_Hour_of_Glory.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/19_Costly_Revenge.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/20_Council_ruling.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/21_Elvish_Assassins.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/22_Northern_Battle.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/23_End_of_War.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/24_Epilogue.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios/North_elves_utils.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/utils/ai_controller.deprecated -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/utils/characters.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/utils/deaths.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/utils/debug.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/utils/journey.cfg -%%DATADIR%%/data/campaigns/Legend_of_Wesmere/utils/low-macros.cfg -%%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/liberty-map.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/schedule-midnight.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/units/human-outlaws/rogue-mage-attack1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/rogue-mage-attack2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/rogue-mage-attack3.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/rogue-mage-attack4.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/rogue-mage-defend.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/rogue-mage-missile1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/rogue-mage-missile2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/rogue-mage-missile3.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/rogue-mage.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-attack1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-attack2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-attack3.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-attack4.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-defend-hit1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-defend-hit2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-defend-hit3.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-defend-hit4.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-defend-hit5.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-defend-miss1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-defend-miss2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-defend-miss3.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-ranged1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-ranged2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-ranged3.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord-ranged4.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-lord.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-mage-attack1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-mage-attack2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-mage-defend.png -%%DATADIR%%/data/campaigns/Liberty/images/units/human-outlaws/shadow-mage.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/boneknight-attack-1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/boneknight-attack-2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/boneknight-defend.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/boneknight-moving.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/boneknight.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/deathsquire-attack.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/deathsquire-defend.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/deathsquire-leading.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/deathsquire.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/rider-attack-1.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/rider-attack-2.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/rider-defend.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/rider-moving.png -%%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal/rider.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/journey.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/Arthian.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Camerin.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Elenia.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Eryssa.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Father_Morvin.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Hamel.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Hidel.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Malifor.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Rakshas.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Ro_Sothian.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Sisal.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Sister_Thera.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Stalrag.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Tallin-Evil.png -%%DATADIR%%/data/campaigns/Northern_Rebirth/images/portraits/Tallin.png -%%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/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/journey.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-1.png -%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-attack-2.png -%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-defend.png -%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-laden-attack-1.png -%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-laden-attack-2.png -%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-laden-defend.png -%%DATADIR%%/data/campaigns/Sceptre_of_Fire/images/units/dwarves/miner-laden.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/journey.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/campaign_image.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/farnorth.png -%%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/items/barrel-floating.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/albrock.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/flartar.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/gruu.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/howgarth.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/inarix.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/jetto.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/kapoue-angry.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/kapoue.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/lanbech.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/old_orcish_shaman.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/orcish_shaman.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/shan_taum.png -%%DATADIR%%/data/campaigns/Son_Of_The_Black_Eye/images/portraits/young_orcish_shaman.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/journey.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/halo/karrag-attack1_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-attack2_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-attack3_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-attack4_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-defend_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged10_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged1_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged2_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged3_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged4_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged5_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged6_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged7_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged8_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag-ranged9_halo.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/halo/karrag_halo.png -%%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-ranged2.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/karrag-ranged3.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_guard.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_guard_attack.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_guard_defend1.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_guard_defend2.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_sentinel.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_sentinel_attack1.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_sentinel_defend1.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_sentinel_defend2.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_stalwart.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_stalwart_attack1.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_stalwart_defend1.png -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/images/units/masked_stalwart_defend2.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_Guardian.cfg -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Lord.cfg -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Sentinel.cfg -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/units/Dwarvish_Masked_Stalwart.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/abilities.cfg -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/utils/herodeaths.cfg -%%DATADIR%%/data/campaigns/The_Hammer_of_Thursagan/utils/journey.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/misc/leader-crown.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 -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/aryad.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/burin.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/dionli.png -%%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/logalmier.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/rithrandil.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/portraits/typhon.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/east.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/story/fall_of_eldaric.png -%%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/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/kalian-elvish-champion.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-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-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 -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/undead-vampirelady.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-defend-1-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-defend-1-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-defend.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-masked-defend-1-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-masked-defend-1-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-masked-defend.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-masked-sling-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-masked-sling-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-masked-staff-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-masked-staff-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-masked.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-sling-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-sling-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-staff-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady-staff-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-lady.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-defend-1-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-defend-1-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-defend.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-leading.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked-defend-1-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked-defend-1-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked-defend.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked-leading.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked-sling-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked-sling-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked-staff-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked-staff-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-masked.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-sling-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-sling-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-staff-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader-staff-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-leader.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-defend-1-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-defend-1-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-defend.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-masked-defend-1-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-masked-defend-1-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-masked-defend.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-masked-sling-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-masked-sling-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-masked-staff-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-masked-staff-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-masked.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-sling-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-sling-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-staff-1.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast-staff-2.png -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images/units/wesfolk-outcast.png -%%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.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 -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/04a_The_River_Road.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/04b_The_Midlands.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/05_The_Oldwood.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/06_Temple_of_the_Deep.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/07_Return_to_Oldwood.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/08_Clearwater_Port.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/09_Fallen_Lich_Point.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/10_Sewer.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/11_Southbay_in_Winter.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/12_A_Final_Spring.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/13_Peoples_in_Decline.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/14_Rough_Landing.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/15_New_Land.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/16_Elf_Lords.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/17a_The_Dragon.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/17b_A_Beach.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/17c_Troll_Hole.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/17d_Cursed_Isle.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/18_A_Spy_in_the_Woods.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/19_The_Vanguard.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios/20_Return_of_the_Fleet.cfg -%%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/Fireball.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Commander.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Fighter.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Lord.cfg -%%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/units/Noble_Youth.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-green-isle-journey.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-story.cfg -%%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 -%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/dismounted-commander.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/horseman-commander-attack.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/horseman-commander-defend.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/horseman-commander-moving.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/horseman-commander.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/deoran/junior-commander-attack.png -%%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/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 -%%DATADIR%%/data/campaigns/The_South_Guard/images/portraits/deoran.png -%%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/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/winter.jpg -%%DATADIR%%/data/campaigns/The_South_Guard/images/units/commander-attack-shield.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/units/commander-attack.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/units/commander-defend-1.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/units/commander-defend-2.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/units/commander-defend-3.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/units/commander-leading.png -%%DATADIR%%/data/campaigns/The_South_Guard/images/units/commander.png -%%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/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_utils.cfg -%%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/campaign_image.png -%%DATADIR%%/data/campaigns/Two_Brothers/images/story/Two_Brothers_M1P1.png -%%DATADIR%%/data/campaigns/Two_Brothers/images/story/Two_Brothers_M1P2.png -%%DATADIR%%/data/campaigns/Two_Brothers/images/story/Two_Brothers_M2P1.png -%%DATADIR%%/data/campaigns/Two_Brothers/images/story/Two_Brothers_M4P1_the_end.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/Two_Brothers/scenarios/5_Epilog.cfg -%%DATADIR%%/data/campaigns/Two_Brothers/utils/journey.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/TODO -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/_main.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks/fist-golem.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/attacks/sand-storm.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/dragonstatue-old.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 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/magiccircle-nw.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/items/magiccircle-s.png -%%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/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/misc/UtBS_title.jpg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/dehydration-icon.png -%%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 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/13longdark2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/14longdark3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/15longdark4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/1dawn1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/2morning1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/3midday1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/4afternoon1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/5dusk1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/misc/time/6shortdark.png -%%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/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 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/elyssa.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/elyssa_silver.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/esanoo.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/portraits/garak.png -%%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-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/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/dark-keep-throne.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/darkcastle.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/summoning-center.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/summoning-circle1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/summoning-circle2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/summoning-circle3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/summoning-circle4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/summoning-circle5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/terrain/summoning-circle6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/alien/core-compact.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.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-bow-attack4.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-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-sword-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer+female-sword.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-bow-attack4.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-idle-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-idle-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-idle-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-idle-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-idle-5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-idle-6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-sword-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/archer-sword.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-bow-attack4.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-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger+female-sword.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-bow-attack4.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-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/avenger-sword.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-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-attack4.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-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/captain-melee-2.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-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-attack-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-attack-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-attack-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-attack-5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/champion-attack-6.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-attack4.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-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-defend-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-magic-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-magic-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-magic-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/druid-magic-4.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-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-attack4.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-idle-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-10.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-11.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-12.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-7.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-8.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-idle-9.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/fighter-melee-2.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-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-attack4.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-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-melee-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-melee-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hero-melee-4.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/horseman-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horseman-melee.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horseman-moving.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horseman-ranged-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horseman-ranged-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/horseman.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-ranged-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-ranged-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-ranged-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-ranged-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-ranged-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-sword-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter+female.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-ranged-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-ranged-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-sword-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/hunter-sword-defend.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-bow-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-die-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-die-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-die-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman+female-sword.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-bow-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-die-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-die-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-die-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-die-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-die-5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marksman-sword.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-bow-attack4.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-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/marshal-melee-2.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-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-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/outrider-melee-2.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+female.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-bow-attack4.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-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger+female-sword.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-bow-attack4.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-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/ranger-sword.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-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-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/rider-melee-2.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-idle-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-10.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-11.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-12.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-13.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-14.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-15.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-16.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-7.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-8.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/scout-idle-9.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+female.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-bow-attack4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-bow-attack5.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-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter+female-sword.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-bow-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-bow-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-bow-attack3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-bow-attack4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-bow-attack5.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-sword-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-sword-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-sword-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-sword-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/elves-desert/sharpshooter-sword.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.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/humans/human-commander-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/humans/human-commander-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/humans/human-commander-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/humans/human-commander-ranged1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/humans/human-commander-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/humans/human-commander.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/ant-attack.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/ant-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/ant.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/crab-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/crab-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/crab-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/crab.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/dawarf-growl.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/dawarf-melee-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/dawarf-melee-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/dawarf.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/demon-attack-1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/demon-attack-2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/demon-attack-3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/demon-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/demon.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/dust-devil.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-attack1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-attack2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-death1.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-death2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-death3.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-death4.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-death5.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-death6.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-defend.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost-ranged2.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/fireghost.png -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters/flesh-golem.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/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/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/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/units/Alien_Body.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Alien_Body2.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/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 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Darawf.cfg -%%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/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 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Champion.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Druid.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Fighter.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Hero.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Horseman.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Hunter.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Marksman.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Marshal.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Outrider.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Prowler.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Ranger.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Rider.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Scout.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Sentinel.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Shaman.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Sharpshooter.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Shyde.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Desert_Star.cfg -%%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/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/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/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.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 -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/units/Naga_Guardian.cfg -%%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/Nym.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/Undead_Horseman.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/abilities.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/deaths.cfg -%%DATADIR%%/data/campaigns/Under_the_Burning_Suns/utils/dialog-macros.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/storytxt.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/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/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-idle-1.png -%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-idle-2.png -%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-idle-3.png -%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-idle-4.png -%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-idle-5.png -%%DATADIR%%/data/campaigns/tutorial/images/units/human-princess-idle-6.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/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/_main.cfg -%%DATADIR%%/data/core/editor/brushes.cfg -%%DATADIR%%/data/core/editor/hotkeys.cfg -%%DATADIR%%/data/core/editor/music.cfg -%%DATADIR%%/data/core/editor/terrain-groups.cfg -%%DATADIR%%/data/core/editor/time-of-day.cfg -%%DATADIR%%/data/core/editor/tool-hints.cfg -%%DATADIR%%/data/core/help.cfg -%%DATADIR%%/data/core/hotkeys.cfg -%%DATADIR%%/data/core/images/attacks/axe-crude.png -%%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-dwarven-runic.png -%%DATADIR%%/data/core/images/attacks/hammer-dwarven.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-spiked.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/saber-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/editor/brush-1.png -%%DATADIR%%/data/core/images/editor/brush-2.png -%%DATADIR%%/data/core/images/editor/brush-3.png -%%DATADIR%%/data/core/images/editor/brush-nw-se.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/flame-burst-1.png -%%DATADIR%%/data/core/images/halo/flame-burst-2.png -%%DATADIR%%/data/core/images/halo/flame-burst-3.png -%%DATADIR%%/data/core/images/halo/flame-burst-4.png -%%DATADIR%%/data/core/images/halo/flame-burst-5.png -%%DATADIR%%/data/core/images/halo/flame-burst-6.png -%%DATADIR%%/data/core/images/halo/flame-burst-7.png -%%DATADIR%%/data/core/images/halo/flame-burst-8.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/merfolk/staff-flare-1.png -%%DATADIR%%/data/core/images/halo/merfolk/staff-flare-2.png -%%DATADIR%%/data/core/images/halo/merfolk/staff-flare-3.png -%%DATADIR%%/data/core/images/halo/merfolk/staff-flare-4.png -%%DATADIR%%/data/core/images/halo/merfolk/staff-flare-5.png -%%DATADIR%%/data/core/images/halo/merfolk/staff-flare-6.png -%%DATADIR%%/data/core/images/halo/merfolk/staff-flare-7.png -%%DATADIR%%/data/core/images/halo/merfolk/water-halo-1.png -%%DATADIR%%/data/core/images/halo/merfolk/water-halo-2.png -%%DATADIR%%/data/core/images/halo/merfolk/water-halo-3.png -%%DATADIR%%/data/core/images/halo/merfolk/water-halo-4.png -%%DATADIR%%/data/core/images/halo/merfolk/water-halo-5.png -%%DATADIR%%/data/core/images/halo/merfolk/water-halo-6.png -%%DATADIR%%/data/core/images/halo/merfolk/water-halo-7.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/teleport-1.png -%%DATADIR%%/data/core/images/halo/teleport-2.png -%%DATADIR%%/data/core/images/halo/teleport-3.png -%%DATADIR%%/data/core/images/halo/teleport-4.png -%%DATADIR%%/data/core/images/halo/teleport-5.png -%%DATADIR%%/data/core/images/halo/teleport-6.png -%%DATADIR%%/data/core/images/halo/teleport-7.png -%%DATADIR%%/data/core/images/halo/teleport-8.png -%%DATADIR%%/data/core/images/halo/teleport-9.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-lit2.png -%%DATADIR%%/data/core/images/items/brazier-lit3.png -%%DATADIR%%/data/core/images/items/brazier-lit4.png -%%DATADIR%%/data/core/images/items/brazier-lit5.png -%%DATADIR%%/data/core/images/items/brazier-lit6.png -%%DATADIR%%/data/core/images/items/brazier-lit7.png -%%DATADIR%%/data/core/images/items/brazier-lit8.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/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/stone-tablet.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/items/sword.png -%%DATADIR%%/data/core/images/maps/EDITING-HOWTO -%%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/dot-white.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/new-battle.png -%%DATADIR%%/data/core/images/misc/new-journey.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/misc/tod-schedule-24hrs.png -%%DATADIR%%/data/core/images/portraits/ARTISTS -%%DATADIR%%/data/core/images/portraits/drakes/burner.png -%%DATADIR%%/data/core/images/portraits/drakes/clasher.png -%%DATADIR%%/data/core/images/portraits/drakes/fighter.png -%%DATADIR%%/data/core/images/portraits/drakes/glider.png -%%DATADIR%%/data/core/images/portraits/drakes/transparent/burner.png -%%DATADIR%%/data/core/images/portraits/drakes/transparent/clasher.png -%%DATADIR%%/data/core/images/portraits/drakes/transparent/fighter.png -%%DATADIR%%/data/core/images/portraits/drakes/transparent/glider.png -%%DATADIR%%/data/core/images/portraits/dwarves/dragonguard.png -%%DATADIR%%/data/core/images/portraits/dwarves/fighter.png -%%DATADIR%%/data/core/images/portraits/dwarves/gryphon-rider.png -%%DATADIR%%/data/core/images/portraits/dwarves/guard.png -%%DATADIR%%/data/core/images/portraits/dwarves/lord.png -%%DATADIR%%/data/core/images/portraits/dwarves/runemaster.png -%%DATADIR%%/data/core/images/portraits/dwarves/sentinel.png -%%DATADIR%%/data/core/images/portraits/dwarves/thunderer.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/dragonguard.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/fighter-2.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/fighter.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/gryphon-rider.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/guard.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/lord.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/runemaster.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/sentinel.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/thunderer.png -%%DATADIR%%/data/core/images/portraits/dwarves/transparent/ulfserker.png -%%DATADIR%%/data/core/images/portraits/dwarves/ulfserker.png -%%DATADIR%%/data/core/images/portraits/elves/archer+female.png -%%DATADIR%%/data/core/images/portraits/elves/archer.png -%%DATADIR%%/data/core/images/portraits/elves/captain.png -%%DATADIR%%/data/core/images/portraits/elves/druid.png -%%DATADIR%%/data/core/images/portraits/elves/fighter.png -%%DATADIR%%/data/core/images/portraits/elves/hero.png -%%DATADIR%%/data/core/images/portraits/elves/high-lord.png -%%DATADIR%%/data/core/images/portraits/elves/lady.png -%%DATADIR%%/data/core/images/portraits/elves/lord.png -%%DATADIR%%/data/core/images/portraits/elves/marksman+female.png -%%DATADIR%%/data/core/images/portraits/elves/marksman.png -%%DATADIR%%/data/core/images/portraits/elves/ranger+female.png -%%DATADIR%%/data/core/images/portraits/elves/ranger.png -%%DATADIR%%/data/core/images/portraits/elves/scout.png -%%DATADIR%%/data/core/images/portraits/elves/shaman.png -%%DATADIR%%/data/core/images/portraits/elves/shyde.png -%%DATADIR%%/data/core/images/portraits/elves/sorceress.png -%%DATADIR%%/data/core/images/portraits/elves/sylph.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/archer+female.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/archer.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/captain.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/druid.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/fighter.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/hero.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/high-lord.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/lady.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/lord.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/marksman+female.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/marksman.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/ranger+female.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/ranger.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/scout.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/shaman.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/shyde.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/sorceress.png -%%DATADIR%%/data/core/images/portraits/elves/transparent/sylph.png -%%DATADIR%%/data/core/images/portraits/goblins/spearman.png -%%DATADIR%%/data/core/images/portraits/goblins/transparent/spearman.png -%%DATADIR%%/data/core/images/portraits/humans/assassin+female.png -%%DATADIR%%/data/core/images/portraits/humans/assassin.png -%%DATADIR%%/data/core/images/portraits/humans/bandit.png -%%DATADIR%%/data/core/images/portraits/humans/bowman.png -%%DATADIR%%/data/core/images/portraits/humans/cavalryman.png -%%DATADIR%%/data/core/images/portraits/humans/dark-adept+female.png -%%DATADIR%%/data/core/images/portraits/humans/dark-adept.png -%%DATADIR%%/data/core/images/portraits/humans/general.png -%%DATADIR%%/data/core/images/portraits/humans/grand-knight.png -%%DATADIR%%/data/core/images/portraits/humans/halberdier.png -%%DATADIR%%/data/core/images/portraits/humans/heavy-infantry.png -%%DATADIR%%/data/core/images/portraits/humans/highwayman.png -%%DATADIR%%/data/core/images/portraits/humans/horseman.png -%%DATADIR%%/data/core/images/portraits/humans/huntsman.png -%%DATADIR%%/data/core/images/portraits/humans/iron-mauler.png -%%DATADIR%%/data/core/images/portraits/humans/javelineer.png -%%DATADIR%%/data/core/images/portraits/humans/knight.png -%%DATADIR%%/data/core/images/portraits/humans/lancer.png -%%DATADIR%%/data/core/images/portraits/humans/lieutenant.png -%%DATADIR%%/data/core/images/portraits/humans/longbowman.png -%%DATADIR%%/data/core/images/portraits/humans/mage+female.png -%%DATADIR%%/data/core/images/portraits/humans/mage-arch+female.png -%%DATADIR%%/data/core/images/portraits/humans/mage-arch.png -%%DATADIR%%/data/core/images/portraits/humans/mage-light+female.png -%%DATADIR%%/data/core/images/portraits/humans/mage-light.png -%%DATADIR%%/data/core/images/portraits/humans/mage-red+female.png -%%DATADIR%%/data/core/images/portraits/humans/mage-red.png -%%DATADIR%%/data/core/images/portraits/humans/mage-silver+female.png -%%DATADIR%%/data/core/images/portraits/humans/mage-silver.png -%%DATADIR%%/data/core/images/portraits/humans/mage-white+female.png -%%DATADIR%%/data/core/images/portraits/humans/mage-white.png -%%DATADIR%%/data/core/images/portraits/humans/mage.png -%%DATADIR%%/data/core/images/portraits/humans/marshal.png -%%DATADIR%%/data/core/images/portraits/humans/master-bowman.png -%%DATADIR%%/data/core/images/portraits/humans/necromancer+female.png -%%DATADIR%%/data/core/images/portraits/humans/necromancer.png -%%DATADIR%%/data/core/images/portraits/humans/paladin.png -%%DATADIR%%/data/core/images/portraits/humans/peasant.png -%%DATADIR%%/data/core/images/portraits/humans/pikeman.png -%%DATADIR%%/data/core/images/portraits/humans/poacher.png -%%DATADIR%%/data/core/images/portraits/humans/ranger.png -%%DATADIR%%/data/core/images/portraits/humans/royal-guard.png -%%DATADIR%%/data/core/images/portraits/humans/sergeant.png -%%DATADIR%%/data/core/images/portraits/humans/spearman.png -%%DATADIR%%/data/core/images/portraits/humans/swordsman.png -%%DATADIR%%/data/core/images/portraits/humans/thief+female.png -%%DATADIR%%/data/core/images/portraits/humans/thief.png -%%DATADIR%%/data/core/images/portraits/humans/thug.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/assassin+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/assassin.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/bowman.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/dark-adept+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/dark-adept.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/general.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/halberdier.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/heavy-infantry.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/huntsman.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/iron-mauler.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/javelineer.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/lieutenant.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/longbowman.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-arch+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-arch.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-light+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-light.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-red+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-red.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-silver+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-silver.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-white+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage-white.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/mage.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/marshal-2.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/marshal.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/master-bowman.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/necromancer+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/necromancer.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/peasant.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/pikeman.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/ranger.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/royal-guard.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/sergeant.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/spearman.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/swordsman.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/thief+female.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/thief.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/trapper.png -%%DATADIR%%/data/core/images/portraits/humans/transparent/woodsman.png -%%DATADIR%%/data/core/images/portraits/humans/trapper.png -%%DATADIR%%/data/core/images/portraits/humans/woodsman.png -%%DATADIR%%/data/core/images/portraits/merfolk/fighter.png -%%DATADIR%%/data/core/images/portraits/merfolk/hunter.png -%%DATADIR%%/data/core/images/portraits/merfolk/initiate.png -%%DATADIR%%/data/core/images/portraits/merfolk/transparent/initiate.png -%%DATADIR%%/data/core/images/portraits/monsters/gryphon.png -%%DATADIR%%/data/core/images/portraits/monsters/ogre.png -%%DATADIR%%/data/core/images/portraits/monsters/scorpion.png -%%DATADIR%%/data/core/images/portraits/monsters/sea-serpent.png -%%DATADIR%%/data/core/images/portraits/monsters/transparent/gryphon.png -%%DATADIR%%/data/core/images/portraits/monsters/transparent/ogre.png -%%DATADIR%%/data/core/images/portraits/monsters/transparent/scorpion.png -%%DATADIR%%/data/core/images/portraits/nagas/fighter+female.png -%%DATADIR%%/data/core/images/portraits/nagas/fighter.png -%%DATADIR%%/data/core/images/portraits/orcs/assassin.png -%%DATADIR%%/data/core/images/portraits/orcs/grunt.png -%%DATADIR%%/data/core/images/portraits/orcs/transparent/grunt.png -%%DATADIR%%/data/core/images/portraits/orcs/warlord.png -%%DATADIR%%/data/core/images/portraits/orcs/warlord2.png -%%DATADIR%%/data/core/images/portraits/orcs/warlord3.png -%%DATADIR%%/data/core/images/portraits/orcs/warlord4.png -%%DATADIR%%/data/core/images/portraits/orcs/warlord5.png -%%DATADIR%%/data/core/images/portraits/saurians/augur.png -%%DATADIR%%/data/core/images/portraits/saurians/skirmisher.png -%%DATADIR%%/data/core/images/portraits/saurians/transparent/augur.png -%%DATADIR%%/data/core/images/portraits/saurians/transparent/skirmisher.png -%%DATADIR%%/data/core/images/portraits/trolls/transparent/whelp.png -%%DATADIR%%/data/core/images/portraits/trolls/troll.png -%%DATADIR%%/data/core/images/portraits/trolls/whelp.png -%%DATADIR%%/data/core/images/portraits/undead/brown-lich.png -%%DATADIR%%/data/core/images/portraits/undead/death-knight.png -%%DATADIR%%/data/core/images/portraits/undead/ghoul.png -%%DATADIR%%/data/core/images/portraits/undead/lich.png -%%DATADIR%%/data/core/images/portraits/undead/transparent/death-knight.png -%%DATADIR%%/data/core/images/portraits/undead/transparent/lich.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-fail-1.png -%%DATADIR%%/data/core/images/projectiles/fireball-fail-2.png -%%DATADIR%%/data/core/images/projectiles/fireball-fail-3.png -%%DATADIR%%/data/core/images/projectiles/fireball-fail-4.png -%%DATADIR%%/data/core/images/projectiles/fireball-fail-5.png -%%DATADIR%%/data/core/images/projectiles/fireball-fail-6.png -%%DATADIR%%/data/core/images/projectiles/fireball-fail-7.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/misfire-spark-1.png -%%DATADIR%%/data/core/images/projectiles/misfire-spark-2.png -%%DATADIR%%/data/core/images/projectiles/misfire-spark-3.png -%%DATADIR%%/data/core/images/projectiles/misfire-spark-4.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/muzzle-flash-10.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-11.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-12.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-13.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-14.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-4.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-5.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-6.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-7.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-8.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-9.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-n-1.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-n-2.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-n-3.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-ne-1.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-ne-2.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-ne-3.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-s-1.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-s-2.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-s-3.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-se-1.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-se-2.png -%%DATADIR%%/data/core/images/projectiles/muzzle-flash-se-3.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-large.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/whirlpool.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/story/landscape-battlefield.jpg -%%DATADIR%%/data/core/images/story/landscape-battlefield_nohumans.jpg -%%DATADIR%%/data/core/images/story/landscape-bridge.jpg -%%DATADIR%%/data/core/images/story/landscape-bridge_sun.jpg -%%DATADIR%%/data/core/images/story/landscape-castle.jpg -%%DATADIR%%/data/core/images/story/landscape-plain.jpg -%%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-bl.png -%%DATADIR%%/data/core/images/terrain/castle/castle-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/castle-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/castle-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/castle-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/castle-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/castle-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/castle-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/castle-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/castle-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/castle-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/castle-convex-tr.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-bl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-convex-tr.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-bl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-br.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-l.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-r.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-br.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-l.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-r.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/dwarven-castle-wall-cw-tr.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/castle-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/castle-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/elven/grounds.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-ccw-br.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-ccw-l.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-ccw-r.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-cw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-cw-br.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-cw-l.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-cw-r.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-cw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-castle-cw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/elven/keep-tile.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-bl.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/encampment-ground.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-castle-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-ccw-br.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-ccw-l.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-ccw-r.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-cw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-cw-br.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-cw-l.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-cw-r.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-cw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-castle-cw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/keep-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/keep-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/keep-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/keep-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/keep-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/keep-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/keep-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/keep-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/keep-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/keep-tile.png -%%DATADIR%%/data/core/images/terrain/castle/ruin-tile.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin1-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin2-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin3-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin4-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruin5-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruined-keep-tile.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-ccw-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-ccw-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-ccw-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-cw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-cw-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-cw-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-cw-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-cw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-castle-cw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/ruinkeep1-convex-tr.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-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin-convex-tr.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-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin1-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin2-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin3-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin4-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruin5-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-ccw-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-ccw-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-ccw-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-cw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-cw-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-cw-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-cw-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-cw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-castle-cw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunken-ruinkeep1-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-ccw-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-ccw-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-ccw-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-convex-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-cw-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-cw-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-cw-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-cw-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-cw-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-castle-cw-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-concave-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-concave-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-concave-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-concave-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-concave-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-concave-tr.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-convex-bl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-convex-br.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-convex-l.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-convex-r.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-convex-tl.png -%%DATADIR%%/data/core/images/terrain/castle/sunkenkeep-convex-tr.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-cave-tile.png -%%DATADIR%%/data/core/images/terrain/cave/beam-tile.png -%%DATADIR%%/data/core/images/terrain/cave/beam.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-tile.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-tile.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-tile.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-tile.png -%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-s-n.png -%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-se-nw-tile.png -%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-se-nw.png -%%DATADIR%%/data/core/images/terrain/cave/chasm-stone-bridge-sw-ne-tile.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/floor.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-variation.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/path.png -%%DATADIR%%/data/core/images/terrain/cave/path1.png -%%DATADIR%%/data/core/images/terrain/cave/path2.png -%%DATADIR%%/data/core/images/terrain/cave/path3.png -%%DATADIR%%/data/core/images/terrain/cave/path4.png -%%DATADIR%%/data/core/images/terrain/cave/path5.png -%%DATADIR%%/data/core/images/terrain/cave/path6.png -%%DATADIR%%/data/core/images/terrain/cave/path7.png -%%DATADIR%%/data/core/images/terrain/cave/path8.png -%%DATADIR%%/data/core/images/terrain/cave/path9.png -%%DATADIR%%/data/core/images/terrain/cave/wall-editor.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-bl.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-br.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-l.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-r.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-tl.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-concave-tr.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-bl.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-br.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-l.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-r.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-tl.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-chasm-convex-tr.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-bl.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-br.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-l.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-r.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-tl.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-concave-tr.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-bl.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-br.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-l.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-r.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-tl.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-convex-tr.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough-tile.png -%%DATADIR%%/data/core/images/terrain/cave/wall-rough.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-bl.png -%%DATADIR%%/data/core/images/terrain/chasm-concave-br.png -%%DATADIR%%/data/core/images/terrain/chasm-concave-l.png -%%DATADIR%%/data/core/images/terrain/chasm-concave-r.png -%%DATADIR%%/data/core/images/terrain/chasm-concave-tl.png -%%DATADIR%%/data/core/images/terrain/chasm-concave-tr.png -%%DATADIR%%/data/core/images/terrain/chasm-convex-bl.png -%%DATADIR%%/data/core/images/terrain/chasm-convex-br.png -%%DATADIR%%/data/core/images/terrain/chasm-convex-l.png -%%DATADIR%%/data/core/images/terrain/chasm-convex-r.png -%%DATADIR%%/data/core/images/terrain/chasm-convex-tl.png -%%DATADIR%%/data/core/images/terrain/chasm-convex-tr.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/dcastle-chasm-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-ccw-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-ccw-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-ccw-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-concave-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-concave-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-concave-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-concave-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-concave-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-concave-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-convex-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-convex-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-convex-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-convex-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-convex-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-convex-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-cw-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-cw-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-cw-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-cw-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-cw-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-chasm-cw-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-ccw-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-ccw-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-ccw-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-ccw-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-ccw-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-ccw-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-cw-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-cw-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-cw-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-cw-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-cw-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-chasm-cw-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-concave-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-concave-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-concave-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-concave-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-concave-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-concave-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-convex-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-convex-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-convex-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-convex-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-convex-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-convex-tr.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-cw-bl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-cw-br.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-cw-l.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-cw-r.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-cw-tl.png -%%DATADIR%%/data/core/images/terrain/dcastle-lava-cw-tr.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-plant10.png -%%DATADIR%%/data/core/images/terrain/desert-plant11.png -%%DATADIR%%/data/core/images/terrain/desert-plant2.png -%%DATADIR%%/data/core/images/terrain/desert-plant3.png -%%DATADIR%%/data/core/images/terrain/desert-plant4.png -%%DATADIR%%/data/core/images/terrain/desert-plant5.png -%%DATADIR%%/data/core/images/terrain/desert-plant6.png -%%DATADIR%%/data/core/images/terrain/desert-plant7.png -%%DATADIR%%/data/core/images/terrain/desert-plant8.png -%%DATADIR%%/data/core/images/terrain/desert-plant9.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/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/desert8.png -%%DATADIR%%/data/core/images/terrain/desert_crater.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.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/dirt2.png -%%DATADIR%%/data/core/images/terrain/flat/dirt3.png -%%DATADIR%%/data/core/images/terrain/flat/dirt4.png -%%DATADIR%%/data/core/images/terrain/flat/dirt5.png -%%DATADIR%%/data/core/images/terrain/flat/dirt6.png -%%DATADIR%%/data/core/images/terrain/flat/dirt7.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-spring.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-flowers.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-editor.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/deciduous-fall-2.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-fall-3.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-fall-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-fall-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-fall-sparse-3.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-fall-sparse-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-fall-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-fall-tile.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-fall.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-2.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-3.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-4.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-sparse-3.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-sparse-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer-tile.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-summer.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-2.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-snow-2.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-snow-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-snow-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-snow-sparse-3.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-snow-sparse-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-snow-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-snow-tile.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-snow.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-sparse-3.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-sparse-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter-tile.png -%%DATADIR%%/data/core/images/terrain/forest/deciduous-winter.png -%%DATADIR%%/data/core/images/terrain/forest/floor-n-ne-se.png -%%DATADIR%%/data/core/images/terrain/forest/floor-n-ne.png -%%DATADIR%%/data/core/images/terrain/forest/floor-n.png -%%DATADIR%%/data/core/images/terrain/forest/floor-ne-se-s.png -%%DATADIR%%/data/core/images/terrain/forest/floor-ne-se.png -%%DATADIR%%/data/core/images/terrain/forest/floor-ne.png -%%DATADIR%%/data/core/images/terrain/forest/floor-nw-n-ne.png -%%DATADIR%%/data/core/images/terrain/forest/floor-nw-n.png -%%DATADIR%%/data/core/images/terrain/forest/floor-nw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-s-sw-nw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-s-sw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-s.png -%%DATADIR%%/data/core/images/terrain/forest/floor-se-s-sw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-se-s.png -%%DATADIR%%/data/core/images/terrain/forest/floor-se.png -%%DATADIR%%/data/core/images/terrain/forest/floor-sw-nw-n.png -%%DATADIR%%/data/core/images/terrain/forest/floor-sw-nw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-sw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-n-ne-se.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-n-ne.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-n.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-ne-se-s.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-ne-se.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-ne.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-nw-n-ne.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-nw-n.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-nw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-s-sw-nw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-s-sw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-s.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-se-s-sw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-se-s.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-se.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-sw-nw-n.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-sw-nw.png -%%DATADIR%%/data/core/images/terrain/forest/floor-to-water-sw.png -%%DATADIR%%/data/core/images/terrain/forest/floor.png -%%DATADIR%%/data/core/images/terrain/forest/floor2.png -%%DATADIR%%/data/core/images/terrain/forest/floor3.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/mixed-fall-2.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-fall-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-fall-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-fall-sparse-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-fall-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-fall-tile.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-fall.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-summer-2.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-summer-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-summer-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-summer-sparse-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-summer-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-summer-tile.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-summer.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-2.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-snow-2.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-snow-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-snow-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-snow-sparse-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-snow-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-snow-tile.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-snow.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-sparse-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter-tile.png -%%DATADIR%%/data/core/images/terrain/forest/mixed-winter.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-2.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-3.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-4.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-5.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-beam-tile.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-n.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-ne.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-nw.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-s.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-se.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-small.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-sw.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms-tile.png -%%DATADIR%%/data/core/images/terrain/forest/mushrooms.png -%%DATADIR%%/data/core/images/terrain/forest/pine-2.png -%%DATADIR%%/data/core/images/terrain/forest/pine-3.png -%%DATADIR%%/data/core/images/terrain/forest/pine-4.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-small.png -%%DATADIR%%/data/core/images/terrain/forest/pine-castle-sw.png -%%DATADIR%%/data/core/images/terrain/forest/pine-small-2.png -%%DATADIR%%/data/core/images/terrain/forest/pine-small.png -%%DATADIR%%/data/core/images/terrain/forest/pine-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/pine-sparse-3.png -%%DATADIR%%/data/core/images/terrain/forest/pine-sparse-4.png -%%DATADIR%%/data/core/images/terrain/forest/pine-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/pine-tile.png -%%DATADIR%%/data/core/images/terrain/forest/pine.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-2.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-3.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-4.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-n-ne.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-n.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-ne.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-nw-n-ne.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-nw-n.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-nw.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-s.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-se.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-small.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-sw-nw.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-castle-sw.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-small.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-sparse-2.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-sparse-3.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-sparse-4.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-sparse.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest-tile.png -%%DATADIR%%/data/core/images/terrain/forest/snow-forest.png -%%DATADIR%%/data/core/images/terrain/forest/tropical-2.png -%%DATADIR%%/data/core/images/terrain/forest/tropical-3.png -%%DATADIR%%/data/core/images/terrain/forest/tropical-4.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-small.png -%%DATADIR%%/data/core/images/terrain/forest/tropical-tile.png -%%DATADIR%%/data/core/images/terrain/forest/tropical.png -%%DATADIR%%/data/core/images/terrain/forested-deciduous-fall-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-deciduous-summer-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-deciduous-winter-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-deciduous-winter-snow-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-mixed-fall-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-mixed-summer-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-mixed-winter-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-mixed-winter-snow-hills-tile.png -%%DATADIR%%/data/core/images/terrain/forested-snow-hills-tile.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-variation.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/impassable-editor.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-bl.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-br.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-l.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-r.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-tl.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-ccw-tr.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-bl.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-br.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-l.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-r.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-tl.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-concave-tr.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-bl.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-br.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-l.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-r.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-tl.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-convex-tr.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-bl.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-br.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-l.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-r.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-tl.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-cw-tr.png -%%DATADIR%%/data/core/images/terrain/lava-chasm-tile.png -%%DATADIR%%/data/core/images/terrain/lava-concave-bl.png -%%DATADIR%%/data/core/images/terrain/lava-concave-br.png -%%DATADIR%%/data/core/images/terrain/lava-concave-l.png -%%DATADIR%%/data/core/images/terrain/lava-concave-r.png -%%DATADIR%%/data/core/images/terrain/lava-concave-tl.png -%%DATADIR%%/data/core/images/terrain/lava-concave-tr.png -%%DATADIR%%/data/core/images/terrain/lava-convex-bl.png -%%DATADIR%%/data/core/images/terrain/lava-convex-br.png -%%DATADIR%%/data/core/images/terrain/lava-convex-l.png -%%DATADIR%%/data/core/images/terrain/lava-convex-r.png -%%DATADIR%%/data/core/images/terrain/lava-convex-tl.png -%%DATADIR%%/data/core/images/terrain/lava-convex-tr.png -%%DATADIR%%/data/core/images/terrain/lava-n-ne-se-s.png -%%DATADIR%%/data/core/images/terrain/lava-n-ne-se.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-se-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-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-sw-nw-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-sw.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_peak.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/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_rubble.png -%%DATADIR%%/data/core/images/terrain/sand_rubble2.png -%%DATADIR%%/data/core/images/terrain/sand_rubble3.png -%%DATADIR%%/data/core/images/terrain/shroud-editor.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-mountain-tile.png -%%DATADIR%%/data/core/images/terrain/snow-mountain5_1.png -%%DATADIR%%/data/core/images/terrain/snow-mountain5_2.png -%%DATADIR%%/data/core/images/terrain/snow-mountain5_3.png -%%DATADIR%%/data/core/images/terrain/snow-mountain6_1.png -%%DATADIR%%/data/core/images/terrain/snow-mountain6_2.png -%%DATADIR%%/data/core/images/terrain/snow-mountain6_3.png -%%DATADIR%%/data/core/images/terrain/snow-mountains.png -%%DATADIR%%/data/core/images/terrain/snow-mountains2.png -%%DATADIR%%/data/core/images/terrain/snow-mountains3.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-2.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-3.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-4.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-5.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-6.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-n.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-ne.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-nw.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-s.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-se.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-small-2.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-small-3.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-small-4.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-small.png -%%DATADIR%%/data/core/images/terrain/swamp/reed-sw.png -%%DATADIR%%/data/core/images/terrain/swamp/reed.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/camp-tile.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/coast3.png -%%DATADIR%%/data/core/images/terrain/village/coast4.png -%%DATADIR%%/data/core/images/terrain/village/coast5-1.png -%%DATADIR%%/data/core/images/terrain/village/coast5-2.png -%%DATADIR%%/data/core/images/terrain/village/coast5-3.png -%%DATADIR%%/data/core/images/terrain/village/coast5-4.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-oasis-1.png -%%DATADIR%%/data/core/images/terrain/village/desert-oasis-2.png -%%DATADIR%%/data/core/images/terrain/village/desert-oasis-3.png -%%DATADIR%%/data/core/images/terrain/village/desert-oasis-tile.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/dwarven2.png -%%DATADIR%%/data/core/images/terrain/village/dwarven3.png -%%DATADIR%%/data/core/images/terrain/village/dwarven4.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-city-tile.png -%%DATADIR%%/data/core/images/terrain/village/human-city.png -%%DATADIR%%/data/core/images/terrain/village/human-city2.png -%%DATADIR%%/data/core/images/terrain/village/human-city3.png -%%DATADIR%%/data/core/images/terrain/village/human-hills-tile.png -%%DATADIR%%/data/core/images/terrain/village/human-hills.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-hills.png -%%DATADIR%%/data/core/images/terrain/village/human-snow-mountain-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-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/hut-hills-tile.png -%%DATADIR%%/data/core/images/terrain/village/hut-mountains-tile.png -%%DATADIR%%/data/core/images/terrain/village/hut-snow-hills-tile.png -%%DATADIR%%/data/core/images/terrain/village/hut-snow-tile.png -%%DATADIR%%/data/core/images/terrain/village/hut-snow.png -%%DATADIR%%/data/core/images/terrain/village/hut-snow2.png -%%DATADIR%%/data/core/images/terrain/village/hut-tile.png -%%DATADIR%%/data/core/images/terrain/village/hut.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/walls/wall-stone-base.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-n-ne-se-bg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-n-ne-se-fg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-n-ne-se-s-fg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-n-ne.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-n.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-ne-se-s-sw-nw-fg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-ne-se-s-sw.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-ne-se-s.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-ne-se.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-ne.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-nw-n-ne-se-bg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-nw-n-ne.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-nw-n.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-nw.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-s-sw-ne-n-fg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-s-sw-nw-n-fg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-s-sw-nw.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-s-sw.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-s.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-se-s-sw-nw.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-se-s-sw.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-se-s.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-se.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-sw-ne.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-sw-nw-n-bg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-sw-nw-n-fg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-sw-nw-n-ne-bg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-sw-nw-n-ne-se-bg.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-sw-nw.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-sw.png -%%DATADIR%%/data/core/images/terrain/walls/wall-stone-tile.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/water/reef.png -%%DATADIR%%/data/core/images/terrain/water/reef2.png -%%DATADIR%%/data/core/images/terrain/water/reef3.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-attack-1.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-attack-2.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-attack-3.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-attack-4.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-attack-5.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-attack-6.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-attack-7.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-attack-8.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-defend-1.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-defend-2.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-laugh-1.png -%%DATADIR%%/data/core/images/units/dwarves/berserker-laugh-2.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-axe-6.png -%%DATADIR%%/data/core/images/units/dwarves/fighter-axe-7.png -%%DATADIR%%/data/core/images/units/dwarves/fighter-axe-8.png -%%DATADIR%%/data/core/images/units/dwarves/fighter-axe-9.png -%%DATADIR%%/data/core/images/units/dwarves/fighter-defend-1.png -%%DATADIR%%/data/core/images/units/dwarves/fighter-defend-2.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-flying-1.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-2.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-3.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-4.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-5.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-6.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-master-flying-7.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-flying-1.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-2.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-3.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-4.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-5.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-6.png -%%DATADIR%%/data/core/images/units/dwarves/gryphon-rider-flying-7.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-axe-1.png -%%DATADIR%%/data/core/images/units/dwarves/lord-axe-2.png -%%DATADIR%%/data/core/images/units/dwarves/lord-axe-3.png -%%DATADIR%%/data/core/images/units/dwarves/lord-axe-4.png -%%DATADIR%%/data/core/images/units/dwarves/lord-axe-5.png -%%DATADIR%%/data/core/images/units/dwarves/lord-axe-6.png -%%DATADIR%%/data/core/images/units/dwarves/lord-axe-7.png -%%DATADIR%%/data/core/images/units/dwarves/lord-axe-8.png -%%DATADIR%%/data/core/images/units/dwarves/lord-axe-9.png -%%DATADIR%%/data/core/images/units/dwarves/lord-defend-1.png -%%DATADIR%%/data/core/images/units/dwarves/lord-defend-2.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-1.png -%%DATADIR%%/data/core/images/units/dwarves/sentinel-defend-2.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-1.png -%%DATADIR%%/data/core/images/units/dwarves/stalwart-defend-2.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-axe-1.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-axe-2.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-axe-3.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-axe-4.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-axe-5.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-axe-6.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-axe-7.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-axe-8.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-axe-9.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-defend-1.png -%%DATADIR%%/data/core/images/units/dwarves/steelclad-defend-2.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-idle-1.png -%%DATADIR%%/data/core/images/units/dwarves/thunderer-idle-2.png -%%DATADIR%%/data/core/images/units/dwarves/thunderer-idle-3.png -%%DATADIR%%/data/core/images/units/dwarves/thunderer-idle-4.png -%%DATADIR%%/data/core/images/units/dwarves/thunderer-idle-5.png -%%DATADIR%%/data/core/images/units/dwarves/thunderer-idle-6.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-1.png -%%DATADIR%%/data/core/images/units/dwarves/ulfserker-attack-2.png -%%DATADIR%%/data/core/images/units/dwarves/ulfserker-attack-3.png -%%DATADIR%%/data/core/images/units/dwarves/ulfserker-attack-4.png -%%DATADIR%%/data/core/images/units/dwarves/ulfserker-attack-5.png -%%DATADIR%%/data/core/images/units/dwarves/ulfserker-attack-6.png -%%DATADIR%%/data/core/images/units/dwarves/ulfserker-attack-7.png -%%DATADIR%%/data/core/images/units/dwarves/ulfserker-attack-8.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-laugh-1.png -%%DATADIR%%/data/core/images/units/dwarves/ulfserker-laugh-2.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-1.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-defend-2.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-magic-1.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-magic-2.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-melee-1.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-melee-2.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-melee-3.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-melee-4.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-melee-5.png -%%DATADIR%%/data/core/images/units/elves-wood/enchantress-melee-6.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-1.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-defend-2.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-magic-1.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-magic-2.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-magic-3.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-1.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-10.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-2.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-3.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-4.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-5.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-6.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-7.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-8.png -%%DATADIR%%/data/core/images/units/elves-wood/sorceress-melee-attack-9.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-bow-attack-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-bow-attack-2.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-bow-attack-3.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-bow-attack-4.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-bow-defend.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-bow.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-melee-attack-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-melee-attack-2.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-melee-attack-3.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-melee-attack-4.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-melee-defend-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/bowman-melee-defend-2.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/heavy-infantry-idle-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/heavy-infantry-idle-2.png -%%DATADIR%%/data/core/images/units/human-loyalists/heavy-infantry-idle-3.png -%%DATADIR%%/data/core/images/units/human-loyalists/heavy-infantry-idle-4.png -%%DATADIR%%/data/core/images/units/human-loyalists/heavy-infantry-idle-5.png -%%DATADIR%%/data/core/images/units/human-loyalists/heavy-infantry-idle-6.png -%%DATADIR%%/data/core/images/units/human-loyalists/heavy-infantry-idle-7.png -%%DATADIR%%/data/core/images/units/human-loyalists/heavy-infantry-idle-8.png -%%DATADIR%%/data/core/images/units/human-loyalists/heavy-infantry-idle-9.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-attack-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow-attack-2.png -%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow-attack-3.png -%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-bow-attack-4.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-melee-attack-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-melee-attack-2.png -%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-melee-attack-3.png -%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-melee-attack-4.png -%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-melee-defend-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/longbowman-melee-defend-2.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-attack-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow-attack-2.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow-attack-3.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-bow-attack-4.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-idle-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-idle-2.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-idle-3.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-idle-4.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-melee-attack-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-melee-attack-2.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-melee-attack-3.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-melee-attack-4.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-melee-defend-1.png -%%DATADIR%%/data/core/images/units/human-loyalists/masterbowman-melee-defend-2.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/royal-warrior-attack1.png -%%DATADIR%%/data/core/images/units/human-loyalists/royal-warrior-attack2.png -%%DATADIR%%/data/core/images/units/human-loyalists/royal-warrior-defend.png -%%DATADIR%%/data/core/images/units/human-loyalists/royal-warrior-leading.png -%%DATADIR%%/data/core/images/units/human-loyalists/royal-warrior.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-idle-1.png -%%DATADIR%%/data/core/images/units/human-magi/arch-mage-idle-2.png -%%DATADIR%%/data/core/images/units/human-magi/arch-mage-idle-3.png -%%DATADIR%%/data/core/images/units/human-magi/arch-mage-idle-4.png -%%DATADIR%%/data/core/images/units/human-magi/arch-mage-idle-5.png -%%DATADIR%%/data/core/images/units/human-magi/arch-mage.png -%%DATADIR%%/data/core/images/units/human-magi/elder-mage-defend.png -%%DATADIR%%/data/core/images/units/human-magi/elder-mage-melee1.png -%%DATADIR%%/data/core/images/units/human-magi/elder-mage-melee2.png -%%DATADIR%%/data/core/images/units/human-magi/elder-mage-ranged1.png -%%DATADIR%%/data/core/images/units/human-magi/elder-mage-ranged2.png -%%DATADIR%%/data/core/images/units/human-magi/elder-mage-ranged3.png -%%DATADIR%%/data/core/images/units/human-magi/elder-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-teleport-1.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-teleport-2.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-teleport-3.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-teleport-4.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-teleport-5.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-teleport-6.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-teleport-7.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage+female-teleport-8.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-teleport-1.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage-teleport-2.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage-teleport-3.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage-teleport-4.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage-teleport-5.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage-teleport-6.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage-teleport-7.png -%%DATADIR%%/data/core/images/units/human-magi/silver-mage-teleport-8.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-attack4.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.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.png -%%DATADIR%%/data/core/images/units/merfolk/enchantress.png -%%DATADIR%%/data/core/images/units/merfolk/entangler.png -%%DATADIR%%/data/core/images/units/merfolk/fighter.png -%%DATADIR%%/data/core/images/units/merfolk/hoplite.png -%%DATADIR%%/data/core/images/units/merfolk/hunter.png -%%DATADIR%%/data/core/images/units/merfolk/initiate-defend-1.png -%%DATADIR%%/data/core/images/units/merfolk/initiate-defend-2.png -%%DATADIR%%/data/core/images/units/merfolk/initiate-magic-1.png -%%DATADIR%%/data/core/images/units/merfolk/initiate-magic-2.png -%%DATADIR%%/data/core/images/units/merfolk/initiate-staff-attack-1.png -%%DATADIR%%/data/core/images/units/merfolk/initiate-staff-attack-2.png -%%DATADIR%%/data/core/images/units/merfolk/initiate.png -%%DATADIR%%/data/core/images/units/merfolk/javelineer.png -%%DATADIR%%/data/core/images/units/merfolk/netcaster.png -%%DATADIR%%/data/core/images/units/merfolk/priestess.png -%%DATADIR%%/data/core/images/units/merfolk/siren.png -%%DATADIR%%/data/core/images/units/merfolk/spearman.png -%%DATADIR%%/data/core/images/units/merfolk/triton.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-flying-1.png -%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-2.png -%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-3.png -%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-4.png -%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-5.png -%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-6.png -%%DATADIR%%/data/core/images/units/monsters/gryphon-flying-7.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-defend-1.png -%%DATADIR%%/data/core/images/units/nagas/fighter-defend-2.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-idle-6.png -%%DATADIR%%/data/core/images/units/nagas/fighter-idle-7.png -%%DATADIR%%/data/core/images/units/nagas/fighter-idle-8.png -%%DATADIR%%/data/core/images/units/nagas/fighter-melee-1.png -%%DATADIR%%/data/core/images/units/nagas/fighter-melee-2.png -%%DATADIR%%/data/core/images/units/nagas/fighter-melee-3.png -%%DATADIR%%/data/core/images/units/nagas/fighter-melee-4.png -%%DATADIR%%/data/core/images/units/nagas/fighter-melee-5.png -%%DATADIR%%/data/core/images/units/nagas/fighter-melee-6.png -%%DATADIR%%/data/core/images/units/nagas/fighter.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon-defend-1.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon-defend-2.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon-melee-1.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon-melee-2.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon-melee-3.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon-melee-4.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon-melee-5.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon-melee-6.png -%%DATADIR%%/data/core/images/units/nagas/myrmidon.png -%%DATADIR%%/data/core/images/units/nagas/warrior-defend-1.png -%%DATADIR%%/data/core/images/units/nagas/warrior-defend-2.png -%%DATADIR%%/data/core/images/units/nagas/warrior-melee-1.png -%%DATADIR%%/data/core/images/units/nagas/warrior-melee-2.png -%%DATADIR%%/data/core/images/units/nagas/warrior-melee-3.png -%%DATADIR%%/data/core/images/units/nagas/warrior-melee-4.png -%%DATADIR%%/data/core/images/units/nagas/warrior-melee-5.png -%%DATADIR%%/data/core/images/units/nagas/warrior-melee-6.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-attack-1.png -%%DATADIR%%/data/core/images/units/orcs/assassin-attack-2.png -%%DATADIR%%/data/core/images/units/orcs/assassin-attack-3.png -%%DATADIR%%/data/core/images/units/orcs/assassin-attack-4.png -%%DATADIR%%/data/core/images/units/orcs/assassin-attack-5.png -%%DATADIR%%/data/core/images/units/orcs/assassin-attack-6.png -%%DATADIR%%/data/core/images/units/orcs/assassin-defend-1.png -%%DATADIR%%/data/core/images/units/orcs/assassin-defend-2.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-idle-1.png -%%DATADIR%%/data/core/images/units/orcs/assassin-idle-2.png -%%DATADIR%%/data/core/images/units/orcs/assassin-idle-3.png -%%DATADIR%%/data/core/images/units/orcs/assassin-idle-4.png -%%DATADIR%%/data/core/images/units/orcs/assassin-idle-5.png -%%DATADIR%%/data/core/images/units/orcs/assassin-idle-6.png -%%DATADIR%%/data/core/images/units/orcs/assassin-idle-7.png -%%DATADIR%%/data/core/images/units/orcs/assassin-idle-8.png -%%DATADIR%%/data/core/images/units/orcs/assassin-idle-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-bow-defend.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-attack-1.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-10.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-11.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-12.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-13.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-14.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-2.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-3.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-4.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-5.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-6.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-7.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-8.png -%%DATADIR%%/data/core/images/units/orcs/slayer-attack-9.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-bow-defend.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/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-1.png -%%DATADIR%%/data/core/images/units/saurians/augur-defend-2.png -%%DATADIR%%/data/core/images/units/saurians/augur-magic-1.png -%%DATADIR%%/data/core/images/units/saurians/augur-magic-2.png -%%DATADIR%%/data/core/images/units/saurians/augur-melee-1.png -%%DATADIR%%/data/core/images/units/saurians/augur-melee-2.png -%%DATADIR%%/data/core/images/units/saurians/augur-melee-3.png -%%DATADIR%%/data/core/images/units/saurians/augur-melee-4.png -%%DATADIR%%/data/core/images/units/saurians/augur-melee-5.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-1.png -%%DATADIR%%/data/core/images/units/saurians/oracle-defend-2.png -%%DATADIR%%/data/core/images/units/saurians/oracle-magic-1.png -%%DATADIR%%/data/core/images/units/saurians/oracle-magic-2.png -%%DATADIR%%/data/core/images/units/saurians/oracle-melee-1.png -%%DATADIR%%/data/core/images/units/saurians/oracle-melee-2.png -%%DATADIR%%/data/core/images/units/saurians/oracle-melee-3.png -%%DATADIR%%/data/core/images/units/saurians/oracle-melee-4.png -%%DATADIR%%/data/core/images/units/saurians/oracle-melee-5.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-1.png -%%DATADIR%%/data/core/images/units/saurians/soothsayer-defend-2.png -%%DATADIR%%/data/core/images/units/saurians/soothsayer-magic-1.png -%%DATADIR%%/data/core/images/units/saurians/soothsayer-magic-2.png -%%DATADIR%%/data/core/images/units/saurians/soothsayer-melee-1.png -%%DATADIR%%/data/core/images/units/saurians/soothsayer-melee-2.png -%%DATADIR%%/data/core/images/units/saurians/soothsayer-melee-3.png -%%DATADIR%%/data/core/images/units/saurians/soothsayer-melee-4.png -%%DATADIR%%/data/core/images/units/saurians/soothsayer-melee-5.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/shaman-defend-1.png -%%DATADIR%%/data/core/images/units/trolls/shaman-defend-2.png -%%DATADIR%%/data/core/images/units/trolls/shaman-fist-1.png -%%DATADIR%%/data/core/images/units/trolls/shaman-fist-2.png -%%DATADIR%%/data/core/images/units/trolls/shaman-fist-3.png -%%DATADIR%%/data/core/images/units/trolls/shaman-fist-4.png -%%DATADIR%%/data/core/images/units/trolls/shaman-fist-5.png -%%DATADIR%%/data/core/images/units/trolls/shaman-ranged-1.png -%%DATADIR%%/data/core/images/units/trolls/shaman-ranged-2.png -%%DATADIR%%/data/core/images/units/trolls/shaman-ranged-3.png -%%DATADIR%%/data/core/images/units/trolls/shaman.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-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-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-melee-attack-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-melee-attack-3.png -%%DATADIR%%/data/core/images/units/undead-skeletal/banebow-melee-attack-4.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-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-melee-attack-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-melee-attack-3.png -%%DATADIR%%/data/core/images/units/undead-skeletal/bone-shooter-melee-attack-4.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-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-defend-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-dying-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-dying-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-dying-3.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-dying-4.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-dying-5.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-dying-6.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-dying-7.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-idle-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-idle-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-idle-3.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-idle-4.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathblade-idle-5.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-melee-attack-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-melee-attack-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-melee-attack-3.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-melee-attack-4.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-melee-attack-5.png -%%DATADIR%%/data/core/images/units/undead-skeletal/deathknight-melee-attack-6.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-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-10.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-3.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-4.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-5.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-6.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-7.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-8.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-attack-9.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-defend-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-defend-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-dying-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-dying-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-dying-3.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-dying-4.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-dying-5.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-dying-6.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant-dying-7.png -%%DATADIR%%/data/core/images/units/undead-skeletal/revenant.png -%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-attack-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-attack-2.png -%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-attack-3.png -%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-attack-4.png -%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-attack-5.png -%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-defend-1.png -%%DATADIR%%/data/core/images/units/undead-skeletal/skeleton-defend-2.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/dreadbat-ne-1.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-ne-2.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-ne-3.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-ne-4.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-ne-5.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-se-1.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-se-2.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-se-3.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-se-4.png -%%DATADIR%%/data/core/images/units/undead/dreadbat-se-5.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/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-n-1.png -%%DATADIR%%/data/core/images/units/undead/shadow-n-2.png -%%DATADIR%%/data/core/images/units/undead/shadow-n-3.png -%%DATADIR%%/data/core/images/units/undead/shadow-n-attack-1.png -%%DATADIR%%/data/core/images/units/undead/shadow-n-attack-2.png -%%DATADIR%%/data/core/images/units/undead/shadow-n-attack-3.png -%%DATADIR%%/data/core/images/units/undead/shadow-n-attack-4.png -%%DATADIR%%/data/core/images/units/undead/shadow-n-attack-5.png -%%DATADIR%%/data/core/images/units/undead/shadow-n-attack-6.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-1.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-2.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-3.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-attack-1.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-attack-2.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-attack-3.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-attack-4.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-attack-5.png -%%DATADIR%%/data/core/images/units/undead/shadow-s-attack-6.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-defend.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-die-4.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-s-1.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-2.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-3.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-4.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-attack-1.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-attack-2.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-attack-3.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-attack-4.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-attack-5.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-defend-1.png -%%DATADIR%%/data/core/images/units/undead/wraith-s-defend-2.png -%%DATADIR%%/data/core/images/units/undead/wraith-s.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-bat-die-1.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-die-2.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-die-3.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-die-4.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-ne-1.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-ne-2.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-ne-3.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-ne-4.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-ne-5.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-se-1.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-se-2.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-se-3.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-se-4.png -%%DATADIR%%/data/core/images/units/undead/zombie-bat-se-5.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-die-1.png -%%DATADIR%%/data/core/images/units/undead/zombie-swimmer-die-2.png -%%DATADIR%%/data/core/images/units/undead/zombie-swimmer-die-3.png -%%DATADIR%%/data/core/images/units/undead/zombie-swimmer-die-4.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/unknown-unit.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/ai_controller.cfg -%%DATADIR%%/data/core/macros/amla.cfg -%%DATADIR%%/data/core/macros/animation-utils.cfg -%%DATADIR%%/data/core/macros/carryover-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/side-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/heroes_rite.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/love_theme.ogg -%%DATADIR%%/data/core/music/loyalists.ogg -%%DATADIR%%/data/core/music/main_menu.ogg -%%DATADIR%%/data/core/music/northerners.ogg -%%DATADIR%%/data/core/music/nunc_dimittis.ogg -%%DATADIR%%/data/core/music/revelation.ogg -%%DATADIR%%/data/core/music/sad.ogg -%%DATADIR%%/data/core/music/siege_of_laurelmor.ogg -%%DATADIR%%/data/core/music/silence.ogg -%%DATADIR%%/data/core/music/suspense.ogg -%%DATADIR%%/data/core/music/the_city_falls.ogg -%%DATADIR%%/data/core/music/the_dangerous_symphony.ogg -%%DATADIR%%/data/core/music/the_deep_path.ogg -%%DATADIR%%/data/core/music/the_king_is_dead.ogg -%%DATADIR%%/data/core/music/transience.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/birds1.ogg -%%DATADIR%%/data/core/sounds/ambient/birds2.ogg -%%DATADIR%%/data/core/sounds/ambient/birds3.ogg -%%DATADIR%%/data/core/sounds/ambient/campfire.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/cave-in.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.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/compat.cfg -%%DATADIR%%/data/core/terrain-graphics/corner_overlay.cfg -%%DATADIR%%/data/core/terrain-graphics/forestcastle.cfg -%%DATADIR%%/data/core/terrain-graphics/forests.cfg -%%DATADIR%%/data/core/terrain-graphics/misc.cfg -%%DATADIR%%/data/core/terrain-graphics/mountains.cfg -%%DATADIR%%/data/core/terrain-graphics/random.cfg -%%DATADIR%%/data/core/terrain-graphics/restricted-transitions.cfg -%%DATADIR%%/data/core/terrain-graphics/tiles.cfg -%%DATADIR%%/data/core/terrain-graphics/transitions_base.cfg -%%DATADIR%%/data/core/terrain-graphics/transitions_overlay.cfg -%%DATADIR%%/data/core/terrain-graphics/util.cfg -%%DATADIR%%/data/core/terrain-graphics/walls.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_Dread.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_Elder.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/Royal_Warrior.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/Troll_Shaman.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/game_config.cfg -%%DATADIR%%/data/gui/default.cfg -%%DATADIR%%/data/gui/default/macros/_initial.cfg -%%DATADIR%%/data/gui/default/macros/horizontal_scrollbar.cfg -%%DATADIR%%/data/gui/default/macros/vertical_scrollbar.cfg -%%DATADIR%%/data/gui/default/widget/button_25x25.cfg -%%DATADIR%%/data/gui/default/widget/button_default.cfg -%%DATADIR%%/data/gui/default/widget/horizontal_scrollbar_default.cfg -%%DATADIR%%/data/gui/default/widget/image_default.cfg -%%DATADIR%%/data/gui/default/widget/label_default.cfg -%%DATADIR%%/data/gui/default/widget/listbox_default.cfg -%%DATADIR%%/data/gui/default/widget/listbox_wml_message.cfg -%%DATADIR%%/data/gui/default/widget/menubar_default.cfg -%%DATADIR%%/data/gui/default/widget/minimap_default.cfg -%%DATADIR%%/data/gui/default/widget/panel_default.cfg -%%DATADIR%%/data/gui/default/widget/panel_wml_message.cfg -%%DATADIR%%/data/gui/default/widget/scroll_label_default.cfg -%%DATADIR%%/data/gui/default/widget/scroll_label_wml_message.cfg -%%DATADIR%%/data/gui/default/widget/slider_default.cfg -%%DATADIR%%/data/gui/default/widget/spacer_default.cfg -%%DATADIR%%/data/gui/default/widget/text_box_default.cfg -%%DATADIR%%/data/gui/default/widget/toggle_button_default.cfg -%%DATADIR%%/data/gui/default/widget/toggle_button_icon.cfg -%%DATADIR%%/data/gui/default/widget/toggle_button_listbox_text.cfg -%%DATADIR%%/data/gui/default/widget/toggle_button_listbox_text_with_icon.cfg -%%DATADIR%%/data/gui/default/widget/toggle_panel_default.cfg -%%DATADIR%%/data/gui/default/widget/toggle_panel_wml_message.cfg -%%DATADIR%%/data/gui/default/widget/tooltip_default.cfg -%%DATADIR%%/data/gui/default/widget/vertical_scrollbar_default.cfg -%%DATADIR%%/data/gui/default/widget/window_default.cfg -%%DATADIR%%/data/gui/default/window/addon_connect.cfg -%%DATADIR%%/data/gui/default/window/addon_list.cfg -%%DATADIR%%/data/gui/default/window/campaign_dialog.cfg -%%DATADIR%%/data/gui/default/window/editor_generate_map.cfg -%%DATADIR%%/data/gui/default/window/editor_new_map.cfg -%%DATADIR%%/data/gui/default/window/editor_resize_map.cfg -%%DATADIR%%/data/gui/default/window/editor_settings.cfg -%%DATADIR%%/data/gui/default/window/language_selection.cfg -%%DATADIR%%/data/gui/default/window/message.cfg -%%DATADIR%%/data/gui/default/window/mp_cmd_wrapper.cfg -%%DATADIR%%/data/gui/default/window/mp_connect.cfg -%%DATADIR%%/data/gui/default/window/mp_create_game.cfg -%%DATADIR%%/data/gui/default/window/mp_login.cfg -%%DATADIR%%/data/gui/default/window/mp_method_selection.cfg -%%DATADIR%%/data/gui/default/window/mp_server_list.cfg -%%DATADIR%%/data/gui/default/window/title_screen.cfg -%%DATADIR%%/data/gui/default/window/wml_message.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/lan_server.cfg -%%DATADIR%%/data/languages/C.cfg -%%DATADIR%%/data/languages/af_ZA.cfg -%%DATADIR%%/data/languages/ar_AR.cfg -%%DATADIR%%/data/languages/bg_BG.cfg -%%DATADIR%%/data/languages/ca_ES.cfg -%%DATADIR%%/data/languages/ca_ES@valencia.cfg -%%DATADIR%%/data/languages/cs_CZ.cfg -%%DATADIR%%/data/languages/da_DK.cfg -%%DATADIR%%/data/languages/de_DE.cfg -%%DATADIR%%/data/languages/el_GR.cfg -%%DATADIR%%/data/languages/en_GB.cfg -%%DATADIR%%/data/languages/eo_XX.cfg -%%DATADIR%%/data/languages/es_ES.cfg -%%DATADIR%%/data/languages/et_EE.cfg -%%DATADIR%%/data/languages/eu_ES.cfg -%%DATADIR%%/data/languages/fi_FI.cfg -%%DATADIR%%/data/languages/fr_FR.cfg -%%DATADIR%%/data/languages/fur_IT.cfg -%%DATADIR%%/data/languages/gl_ES.cfg -%%DATADIR%%/data/languages/he_IL.cfg -%%DATADIR%%/data/languages/hr_HR.cfg -%%DATADIR%%/data/languages/hu_HU.cfg -%%DATADIR%%/data/languages/id_ID.cfg -%%DATADIR%%/data/languages/is_IS.cfg -%%DATADIR%%/data/languages/it_IT.cfg -%%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/lv_LV.cfg -%%DATADIR%%/data/languages/mk_MK.cfg -%%DATADIR%%/data/languages/mr_IN.cfg -%%DATADIR%%/data/languages/nb_NO.cfg -%%DATADIR%%/data/languages/nl_NL.cfg -%%DATADIR%%/data/languages/pl_PL.cfg -%%DATADIR%%/data/languages/pt_BR.cfg -%%DATADIR%%/data/languages/pt_PT.cfg -%%DATADIR%%/data/languages/racv.cfg -%%DATADIR%%/data/languages/ro_RO.cfg -%%DATADIR%%/data/languages/ru_RU.cfg -%%DATADIR%%/data/languages/sk_SK.cfg -%%DATADIR%%/data/languages/sl_SI.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/languages/zh_TW.cfg -%%DATADIR%%/data/multiplayer/_main.cfg -%%DATADIR%%/data/multiplayer/eras.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_Howling_Ghost_Badlands.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/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_A_New_Land.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_Underworld.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_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_Howling_Ghost_Badlands.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/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_A_New_Land.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_Underworld.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_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/ANL_utils/ANL_auto_working.cfg -%%DATADIR%%/data/multiplayer/scenarios/ANL_utils/ANL_general_macros.cfg -%%DATADIR%%/data/multiplayer/scenarios/ANL_utils/ANL_help.cfg -%%DATADIR%%/data/multiplayer/scenarios/ANL_utils/ANL_leader_options.cfg -%%DATADIR%%/data/multiplayer/scenarios/ANL_utils/ANL_research_options.cfg -%%DATADIR%%/data/multiplayer/scenarios/ANL_utils/ANL_special_macros.cfg -%%DATADIR%%/data/multiplayer/scenarios/ANL_utils/ANL_worker_options.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-formula-recruitment.cfg -%%DATADIR%%/data/scenario-formula.cfg -%%DATADIR%%/data/scenario-test.cfg -%%DATADIR%%/data/temp-file_send_data_strings.cfg -%%DATADIR%%/data/themes/default.cfg -%%DATADIR%%/data/themes/dfool.cfg -%%DATADIR%%/data/themes/editor2.cfg -%%DATADIR%%/data/themes/experimental.cfg -%%DATADIR%%/data/themes/macros.cfg -%%DATADIR%%/data/tools/README -%%DATADIR%%/data/tools/about_cfg_to_wiki -%%DATADIR%%/data/tools/addon_manager/COPYING.txt -%%DATADIR%%/data/tools/addon_manager/__init__.py -%%DATADIR%%/data/tools/addon_manager/asc.gif -%%DATADIR%%/data/tools/addon_manager/bg.gif -%%DATADIR%%/data/tools/addon_manager/desc.gif -%%DATADIR%%/data/tools/addon_manager/html.py -%%DATADIR%%/data/tools/addon_manager/jquery.js -%%DATADIR%%/data/tools/addon_manager/style.css -%%DATADIR%%/data/tools/addon_manager/tablesorter.js -%%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/emacs_mode/README -%%DATADIR%%/data/tools/emacs_mode/wesnoth-mode.el -%%DATADIR%%/data/tools/emacs_mode/wesnoth-mode.texi -%%DATADIR%%/data/tools/emacs_mode/wesnoth-update.el -%%DATADIR%%/data/tools/emacs_mode/wesnoth-wml-additions.cfg -%%DATADIR%%/data/tools/emacs_mode/wesnoth-wml-data.el -%%DATADIR%%/data/tools/expand-terrain-macros.py -%%DATADIR%%/data/tools/exploder/castle-concave.cfg -%%DATADIR%%/data/tools/exploder/castle-convex.cfg -%%DATADIR%%/data/tools/exploder/castle-exploded-concave.cfg -%%DATADIR%%/data/tools/exploder/castle-exploded-convex.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-concave.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-convex.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-exploded-concave.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-exploded-convex.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-trans-n-s.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-trans-ne-sw.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-trans-nw-se.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-trans-s-n.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-trans-se-nw.cfg -%%DATADIR%%/data/tools/exploder/castle-wall-trans-sw-ne.cfg -%%DATADIR%%/data/tools/exploder/models/castle.cfg -%%DATADIR%%/data/tools/exploder/wall-concave.cfg -%%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/extractbindings -%%DATADIR%%/data/tools/helpheader.xhtml -%%DATADIR%%/data/tools/helptrailer.xhtml -%%DATADIR%%/data/tools/journeylifter -%%DATADIR%%/data/tools/scoutDefault.py -%%DATADIR%%/data/tools/terrain2wiki.rb -%%DATADIR%%/data/tools/trackplacer -%%DATADIR%%/data/tools/unit_tree/TeamColorizer -%%DATADIR%%/data/tools/unit_tree/__init__.py -%%DATADIR%%/data/tools/unit_tree/animations.py -%%DATADIR%%/data/tools/unit_tree/helpers.py -%%DATADIR%%/data/tools/unit_tree/style.css -%%DATADIR%%/data/tools/vim/formulaai.vim -%%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/wmlgrammar.py -%%DATADIR%%/data/tools/wesnoth/wmliterator.py -%%DATADIR%%/data/tools/wesnoth/wmlparser.py -%%DATADIR%%/data/tools/wesnoth/wmltools.py -%%DATADIR%%/data/tools/wesnoth_addon_manager -%%DATADIR%%/data/tools/wmlflip -%%DATADIR%%/data/tools/wmlindent -%%DATADIR%%/data/tools/wmllint -%%DATADIR%%/data/tools/wmllint_gui -%%DATADIR%%/data/tools/wmlmove -%%DATADIR%%/data/tools/wmlscope -%%DATADIR%%/data/tools/wmltest -%%DATADIR%%/data/tools/wmlunits -%%DATADIR%%/fonts/COPYING -%%DATADIR%%/fonts/DejaVuSans.ttf -%%DATADIR%%/fonts/wqy-zenhei.ttc -%%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/button-active.png -%%DATADIR%%/images/buttons/button-disabled.png -%%DATADIR%%/images/buttons/button-pressed.png -%%DATADIR%%/images/buttons/button.png -%%DATADIR%%/images/buttons/button_transparent-active.png -%%DATADIR%%/images/buttons/button_transparent-disabled.png -%%DATADIR%%/images/buttons/button_transparent-pressed.png -%%DATADIR%%/images/buttons/button_transparent.png -%%DATADIR%%/images/buttons/checkbox-active-pressed.png -%%DATADIR%%/images/buttons/checkbox-active.png -%%DATADIR%%/images/buttons/checkbox-disabled-pressed.png -%%DATADIR%%/images/buttons/checkbox-disabled.png -%%DATADIR%%/images/buttons/checkbox-pressed.png -%%DATADIR%%/images/buttons/checkbox.png -%%DATADIR%%/images/buttons/downarrow-button-active.png -%%DATADIR%%/images/buttons/downarrow-button-disabled.png -%%DATADIR%%/images/buttons/downarrow-button-pressed.png -%%DATADIR%%/images/buttons/downarrow-button.png -%%DATADIR%%/images/buttons/downarrow-button_transparent-active.png -%%DATADIR%%/images/buttons/downarrow-button_transparent-disabled.png -%%DATADIR%%/images/buttons/downarrow-button_transparent-pressed.png -%%DATADIR%%/images/buttons/downarrow-button_transparent.png -%%DATADIR%%/images/buttons/draw_button_editor-active.png -%%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 -%%DATADIR%%/images/buttons/flip_map_button_editor.png -%%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_custom-active-pressed.png -%%DATADIR%%/images/buttons/group_custom-active.png -%%DATADIR%%/images/buttons/group_custom-pressed.png -%%DATADIR%%/images/buttons/group_custom.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/group_x-active-pressed.png -%%DATADIR%%/images/buttons/group_x-active.png -%%DATADIR%%/images/buttons/group_x-pressed.png -%%DATADIR%%/images/buttons/group_x.png -%%DATADIR%%/images/buttons/large-button-active.png -%%DATADIR%%/images/buttons/large-button-pressed.png -%%DATADIR%%/images/buttons/large-button.png -%%DATADIR%%/images/buttons/left_arrow-button-active.png -%%DATADIR%%/images/buttons/left_arrow-button-disabled.png -%%DATADIR%%/images/buttons/left_arrow-button-pressed.png -%%DATADIR%%/images/buttons/left_arrow-button.png -%%DATADIR%%/images/buttons/left_arrow-button_transparent-active.png -%%DATADIR%%/images/buttons/left_arrow-button_transparent-disabled.png -%%DATADIR%%/images/buttons/left_arrow-button_transparent-pressed.png -%%DATADIR%%/images/buttons/left_arrow-button_transparent.png -%%DATADIR%%/images/buttons/lite-active.png -%%DATADIR%%/images/buttons/lite-pressed.png -%%DATADIR%%/images/buttons/lite.png -%%DATADIR%%/images/buttons/lite_small-active.png -%%DATADIR%%/images/buttons/lite_small-pressed.png -%%DATADIR%%/images/buttons/lite_small.png -%%DATADIR%%/images/buttons/menu-button-active.png -%%DATADIR%%/images/buttons/menu-button-pressed.png -%%DATADIR%%/images/buttons/menu-button.png -%%DATADIR%%/images/buttons/paste_button_editor-active.png -%%DATADIR%%/images/buttons/paste_button_editor-pressed.png -%%DATADIR%%/images/buttons/paste_button_editor.png -%%DATADIR%%/images/buttons/pause-active.png -%%DATADIR%%/images/buttons/pause-pressed.png -%%DATADIR%%/images/buttons/pause.png -%%DATADIR%%/images/buttons/play-active.png -%%DATADIR%%/images/buttons/play-pressed.png -%%DATADIR%%/images/buttons/play-side-active.png -%%DATADIR%%/images/buttons/play-side-pressed.png -%%DATADIR%%/images/buttons/play-side.png -%%DATADIR%%/images/buttons/play-turn-active.png -%%DATADIR%%/images/buttons/play-turn-pressed.png -%%DATADIR%%/images/buttons/play-turn.png -%%DATADIR%%/images/buttons/play.png -%%DATADIR%%/images/buttons/redo_button_editor-active.png -%%DATADIR%%/images/buttons/redo_button_editor-pressed.png -%%DATADIR%%/images/buttons/redo_button_editor.png -%%DATADIR%%/images/buttons/resize-direction-bottom-left.png -%%DATADIR%%/images/buttons/resize-direction-bottom-right.png -%%DATADIR%%/images/buttons/resize-direction-bottom.png -%%DATADIR%%/images/buttons/resize-direction-center.png -%%DATADIR%%/images/buttons/resize-direction-left.png -%%DATADIR%%/images/buttons/resize-direction-none.png -%%DATADIR%%/images/buttons/resize-direction-right.png -%%DATADIR%%/images/buttons/resize-direction-top-left.png -%%DATADIR%%/images/buttons/resize-direction-top-right.png -%%DATADIR%%/images/buttons/resize-direction-top.png -%%DATADIR%%/images/buttons/resize_button_editor-active.png -%%DATADIR%%/images/buttons/resize_button_editor-pressed.png -%%DATADIR%%/images/buttons/resize_button_editor.png -%%DATADIR%%/images/buttons/right_arrow-button-active.png -%%DATADIR%%/images/buttons/right_arrow-button-disabled.png -%%DATADIR%%/images/buttons/right_arrow-button-pressed.png -%%DATADIR%%/images/buttons/right_arrow-button.png -%%DATADIR%%/images/buttons/right_arrow-button_transparent-active.png -%%DATADIR%%/images/buttons/right_arrow-button_transparent-disabled.png -%%DATADIR%%/images/buttons/right_arrow-button_transparent-pressed.png -%%DATADIR%%/images/buttons/right_arrow-button_transparent.png -%%DATADIR%%/images/buttons/scrollbottom-active.png -%%DATADIR%%/images/buttons/scrollbottom-disabled.png -%%DATADIR%%/images/buttons/scrollbottom-pressed.png -%%DATADIR%%/images/buttons/scrollbottom.png -%%DATADIR%%/images/buttons/scrollbottom_transparent-active.png -%%DATADIR%%/images/buttons/scrollbottom_transparent-disabled.png -%%DATADIR%%/images/buttons/scrollbottom_transparent-pressed.png -%%DATADIR%%/images/buttons/scrollbottom_transparent.png -%%DATADIR%%/images/buttons/scrollgroove-bottom.png -%%DATADIR%%/images/buttons/scrollgroove-disabled-bottom.png -%%DATADIR%%/images/buttons/scrollgroove-disabled-horizontal.png -%%DATADIR%%/images/buttons/scrollgroove-disabled-left.png -%%DATADIR%%/images/buttons/scrollgroove-disabled-mid.png -%%DATADIR%%/images/buttons/scrollgroove-disabled-right.png -%%DATADIR%%/images/buttons/scrollgroove-disabled-top.png -%%DATADIR%%/images/buttons/scrollgroove-horizontal.png -%%DATADIR%%/images/buttons/scrollgroove-left.png -%%DATADIR%%/images/buttons/scrollgroove-mid.png -%%DATADIR%%/images/buttons/scrollgroove-right.png -%%DATADIR%%/images/buttons/scrollgroove-top.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-bottom.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-disabled-bottom.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-disabled-horizontal.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-disabled-left.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-disabled-mid.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-disabled-right.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-disabled-top.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-horizontal.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-left.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-mid.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-right.png -%%DATADIR%%/images/buttons/scrollgroove_transparent-top.png -%%DATADIR%%/images/buttons/scrollhorizontal-active.png -%%DATADIR%%/images/buttons/scrollhorizontal-disabled.png -%%DATADIR%%/images/buttons/scrollhorizontal-pressed.png -%%DATADIR%%/images/buttons/scrollhorizontal.png -%%DATADIR%%/images/buttons/scrollhorizontal_transparent-active.png -%%DATADIR%%/images/buttons/scrollhorizontal_transparent-disabled.png -%%DATADIR%%/images/buttons/scrollhorizontal_transparent-pressed.png -%%DATADIR%%/images/buttons/scrollhorizontal_transparent.png -%%DATADIR%%/images/buttons/scrollleft-active.png -%%DATADIR%%/images/buttons/scrollleft-disabled.png -%%DATADIR%%/images/buttons/scrollleft-pressed.png -%%DATADIR%%/images/buttons/scrollleft.png -%%DATADIR%%/images/buttons/scrollleft_transparent-active.png -%%DATADIR%%/images/buttons/scrollleft_transparent-disabled.png -%%DATADIR%%/images/buttons/scrollleft_transparent-pressed.png -%%DATADIR%%/images/buttons/scrollleft_transparent.png -%%DATADIR%%/images/buttons/scrollmid-active.png -%%DATADIR%%/images/buttons/scrollmid-disabled.png -%%DATADIR%%/images/buttons/scrollmid-pressed.png -%%DATADIR%%/images/buttons/scrollmid.png -%%DATADIR%%/images/buttons/scrollmid_transparent-active.png -%%DATADIR%%/images/buttons/scrollmid_transparent-disabled.png -%%DATADIR%%/images/buttons/scrollmid_transparent-pressed.png -%%DATADIR%%/images/buttons/scrollmid_transparent.png -%%DATADIR%%/images/buttons/scrollright-active.png -%%DATADIR%%/images/buttons/scrollright-disabled.png -%%DATADIR%%/images/buttons/scrollright-pressed.png -%%DATADIR%%/images/buttons/scrollright.png -%%DATADIR%%/images/buttons/scrollright_transparent-active.png -%%DATADIR%%/images/buttons/scrollright_transparent-disabled.png -%%DATADIR%%/images/buttons/scrollright_transparent-pressed.png -%%DATADIR%%/images/buttons/scrollright_transparent.png -%%DATADIR%%/images/buttons/scrolltop-active.png -%%DATADIR%%/images/buttons/scrolltop-disabled.png -%%DATADIR%%/images/buttons/scrolltop-pressed.png -%%DATADIR%%/images/buttons/scrolltop.png -%%DATADIR%%/images/buttons/scrolltop_transparent-active.png -%%DATADIR%%/images/buttons/scrolltop_transparent-disabled.png -%%DATADIR%%/images/buttons/scrolltop_transparent-pressed.png -%%DATADIR%%/images/buttons/scrolltop_transparent.png -%%DATADIR%%/images/buttons/select_button_editor-active.png -%%DATADIR%%/images/buttons/select_button_editor-pressed.png -%%DATADIR%%/images/buttons/select_button_editor.png -%%DATADIR%%/images/buttons/slider-active.png -%%DATADIR%%/images/buttons/slider-disabled.png -%%DATADIR%%/images/buttons/slider-selected.png -%%DATADIR%%/images/buttons/slider.png -%%DATADIR%%/images/buttons/start_position_button_editor-active.png -%%DATADIR%%/images/buttons/start_position_button_editor-pressed.png -%%DATADIR%%/images/buttons/start_position_button_editor.png -%%DATADIR%%/images/buttons/stop-active.png -%%DATADIR%%/images/buttons/stop-pressed.png -%%DATADIR%%/images/buttons/stop.png -%%DATADIR%%/images/buttons/toggle_grid_button_editor-active.png -%%DATADIR%%/images/buttons/toggle_grid_button_editor-pressed.png -%%DATADIR%%/images/buttons/toggle_grid_button_editor.png -%%DATADIR%%/images/buttons/undo_button_editor-active.png -%%DATADIR%%/images/buttons/undo_button_editor-pressed.png -%%DATADIR%%/images/buttons/undo_button_editor.png -%%DATADIR%%/images/buttons/uparrow-button-active.png -%%DATADIR%%/images/buttons/uparrow-button-disabled.png -%%DATADIR%%/images/buttons/uparrow-button-pressed.png -%%DATADIR%%/images/buttons/uparrow-button.png -%%DATADIR%%/images/buttons/uparrow-button_transparent-active.png -%%DATADIR%%/images/buttons/uparrow-button_transparent-disabled.png -%%DATADIR%%/images/buttons/uparrow-button_transparent-pressed.png -%%DATADIR%%/images/buttons/uparrow-button_transparent.png -%%DATADIR%%/images/buttons/zoom_in_button_editor-active.png -%%DATADIR%%/images/buttons/zoom_in_button_editor-pressed.png -%%DATADIR%%/images/buttons/zoom_in_button_editor.png -%%DATADIR%%/images/buttons/zoom_out_button_editor-active.png -%%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.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/selection-overlay.png -%%DATADIR%%/images/editor/tool-overlay-select-brush.png -%%DATADIR%%/images/editor/tool-overlay-select-wand.png -%%DATADIR%%/images/editor/tool-overlay-starting-position.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/knalgan-flag-1.png -%%DATADIR%%/images/flags/knalgan-flag-2.png -%%DATADIR%%/images/flags/knalgan-flag-3.png -%%DATADIR%%/images/flags/knalgan-flag-4.png -%%DATADIR%%/images/flags/knalgan-flag-icon.png -%%DATADIR%%/images/flags/loyalist-flag-1.png -%%DATADIR%%/images/flags/loyalist-flag-2.png -%%DATADIR%%/images/flags/loyalist-flag-3.png -%%DATADIR%%/images/flags/loyalist-flag-4.png -%%DATADIR%%/images/flags/loyalist-flag-icon.png -%%DATADIR%%/images/flags/undead-flag-1.png -%%DATADIR%%/images/flags/undead-flag-2.png -%%DATADIR%%/images/flags/undead-flag-3.png -%%DATADIR%%/images/flags/undead-flag-4.png -%%DATADIR%%/images/flags/undead-flag-icon.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-addon-delete.png -%%DATADIR%%/images/icons/icon-addon-publish.png -%%DATADIR%%/images/icons/icon-advanced.png -%%DATADIR%%/images/icons/icon-ai.png -%%DATADIR%%/images/icons/icon-display.png -%%DATADIR%%/images/icons/icon-general.png -%%DATADIR%%/images/icons/icon-hostgame.png -%%DATADIR%%/images/icons/icon-hotseat.png -%%DATADIR%%/images/icons/icon-multiplayer.png -%%DATADIR%%/images/icons/icon-music.png -%%DATADIR%%/images/icons/icon-server.png -%%DATADIR%%/images/icons/icon-serverother.png -%%DATADIR%%/images/icons/icons-abilities.png -%%DATADIR%%/images/icons/icons-numbers.png -%%DATADIR%%/images/icons/icons-resistances.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-tinygui.png -%%DATADIR%%/images/misc/bar-energy.png -%%DATADIR%%/images/misc/blank.png -%%DATADIR%%/images/misc/capture.png -%%DATADIR%%/images/misc/character-box.png -%%DATADIR%%/images/misc/ellipse-1.png -%%DATADIR%%/images/misc/ellipse-bottom.png -%%DATADIR%%/images/misc/ellipse-hero-bottom.png -%%DATADIR%%/images/misc/ellipse-hero-selected-bottom.png -%%DATADIR%%/images/misc/ellipse-hero-selected-top.png -%%DATADIR%%/images/misc/ellipse-hero-top.png -%%DATADIR%%/images/misc/ellipse-leader-bottom.png -%%DATADIR%%/images/misc/ellipse-leader-selected-bottom.png -%%DATADIR%%/images/misc/ellipse-leader-selected-top.png -%%DATADIR%%/images/misc/ellipse-leader-top.png -%%DATADIR%%/images/misc/ellipse-nozoc-bottom.png -%%DATADIR%%/images/misc/ellipse-nozoc-selected-bottom.png -%%DATADIR%%/images/misc/ellipse-nozoc-selected-top.png -%%DATADIR%%/images/misc/ellipse-nozoc-top.png -%%DATADIR%%/images/misc/ellipse-selected-bottom.png -%%DATADIR%%/images/misc/ellipse-selected-top.png -%%DATADIR%%/images/misc/ellipse-top.png -%%DATADIR%%/images/misc/eye.png -%%DATADIR%%/images/misc/folder-icon.png -%%DATADIR%%/images/misc/font8x8.png -%%DATADIR%%/images/misc/hidden.png -%%DATADIR%%/images/misc/icon-advance.png -%%DATADIR%%/images/misc/icon-ellipsis.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/missing-image.png -%%DATADIR%%/images/misc/no_observer.png -%%DATADIR%%/images/misc/poisoned.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 -%%DATADIR%%/images/misc/selection-border-left.png -%%DATADIR%%/images/misc/selection-border-right.png -%%DATADIR%%/images/misc/selection-border-top.png -%%DATADIR%%/images/misc/selection-border-topleft.png -%%DATADIR%%/images/misc/selection-border-topright.png -%%DATADIR%%/images/misc/selection2-background.png -%%DATADIR%%/images/misc/selection2-border-botleft.png -%%DATADIR%%/images/misc/selection2-border-botright.png -%%DATADIR%%/images/misc/selection2-border-bottom.png -%%DATADIR%%/images/misc/selection2-border-left.png -%%DATADIR%%/images/misc/selection2-border-right.png -%%DATADIR%%/images/misc/selection2-border-top.png -%%DATADIR%%/images/misc/selection2-border-topleft.png -%%DATADIR%%/images/misc/selection2-border-topright.png -%%DATADIR%%/images/misc/selection2_transparent-background.png -%%DATADIR%%/images/misc/selection2_transparent-border-botleft.png -%%DATADIR%%/images/misc/selection2_transparent-border-botright.png -%%DATADIR%%/images/misc/selection2_transparent-border-bottom.png -%%DATADIR%%/images/misc/selection2_transparent-border-left.png -%%DATADIR%%/images/misc/selection2_transparent-border-right.png -%%DATADIR%%/images/misc/selection2_transparent-border-top.png -%%DATADIR%%/images/misc/selection2_transparent-border-topleft.png -%%DATADIR%%/images/misc/selection2_transparent-border-topright.png -%%DATADIR%%/images/misc/slowed.png -%%DATADIR%%/images/misc/sort-arrow-reverse.png -%%DATADIR%%/images/misc/sort-arrow.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/tod-bright.png -%%DATADIR%%/images/misc/topleft-corner.png -%%DATADIR%%/images/misc/topright-corner.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 -%%DATADIR%%/images/tools/exploder/mask-castle-ne.png -%%DATADIR%%/images/tools/exploder/mask-castle-nw.png -%%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/tools/magenta_team_color_palette.png -%%DATADIR%%/images/wesnoth-icon-small.png -%%DATADIR%%/sounds/README -%%DATADIR%%/sounds/arrive.wav -%%DATADIR%%/sounds/bell.wav -%%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/receive.wav -%%DATADIR%%/sounds/select-unit.wav -%%DATADIR%%/sounds/select.wav -%%DATADIR%%/sounds/slider.wav -%%DATADIR%%/sounds/timer.wav %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo @@ -8371,6 +62,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo @@ -8393,6 +85,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo @@ -8415,6 +108,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo @@ -8437,6 +131,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo @@ -8459,6 +154,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo @@ -8481,6 +177,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo @@ -8503,6 +200,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo @@ -8525,6 +223,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo @@ -8544,9 +243,33 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-units.mo %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-utbs.mo %%NLS%%share/locale/el/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo @@ -8569,6 +292,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo @@ -8591,6 +315,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo @@ -8613,6 +338,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo @@ -8635,6 +361,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo @@ -8657,6 +384,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo @@ -8679,6 +407,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo @@ -8701,6 +430,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo @@ -8723,6 +453,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo @@ -8745,6 +476,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo @@ -8767,6 +499,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo @@ -8789,6 +522,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo @@ -8811,6 +545,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo @@ -8833,6 +568,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo @@ -8855,6 +591,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo @@ -8877,6 +614,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo @@ -8899,6 +637,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo @@ -8921,6 +660,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo @@ -8943,6 +683,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo @@ -8965,6 +706,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo @@ -8987,6 +729,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo @@ -9009,6 +752,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo @@ -9031,6 +775,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo @@ -9053,6 +798,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo @@ -9075,6 +821,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo @@ -9097,6 +844,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo @@ -9119,6 +867,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo @@ -9141,6 +890,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo @@ -9163,6 +913,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo @@ -9185,6 +936,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo @@ -9207,6 +959,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo @@ -9229,6 +982,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo @@ -9251,6 +1005,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo @@ -9270,9 +1025,56 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-units.mo %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-utbs.mo %%NLS%%share/locale/sr/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth.mo %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo @@ -9295,6 +1097,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo @@ -9317,6 +1120,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo @@ -9339,6 +1143,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo @@ -9358,9 +1163,33 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-units.mo %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-utbs.mo %%NLS%%share/locale/tr/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo @@ -9383,6 +1212,7 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo @@ -9402,349 +1232,105 @@ share/pixmaps/wesnoth-icon.png %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-units.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo -@dirrm %%DATADIR%%/data/ai/formula -@dirrm %%DATADIR%%/data/ai -@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/utils -@dirrm %%DATADIR%%/data/campaigns/An_Orcish_Incursion -@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/story -@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/items -@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/images/portraits -@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/images/units -@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/images -@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/maps -@dirrm %%DATADIR%%/data/campaigns/Eastern_Invasion/scenarios -@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/images/portraits -@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/story -@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images/units -@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/images -@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/maps -@dirrm %%DATADIR%%/data/campaigns/Heir_To_The_Throne/scenarios -@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/Legend_of_Wesmere/ai -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/portraits -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story/characters -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere/images/story -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere/images -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere/maps -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere/masks -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere/scenarios -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere/utils -@dirrm %%DATADIR%%/data/campaigns/Legend_of_Wesmere -@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/units/human-outlaws -@dirrm %%DATADIR%%/data/campaigns/Liberty/images/units/undead-skeletal -@dirrm %%DATADIR%%/data/campaigns/Liberty/images/units -@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/images -@dirrm %%DATADIR%%/data/campaigns/Northern_Rebirth/maps -@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/items -@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/halo -@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/misc -@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 -@dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/images -@dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/maps -@dirrm %%DATADIR%%/data/campaigns/The_Rise_Of_Wesnoth/scenarios -@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/images/deoran -@dirrm %%DATADIR%%/data/campaigns/The_South_Guard/images/flag -@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 -@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/images/story -@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/utils -@dirrm %%DATADIR%%/data/campaigns/Two_Brothers -@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/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/humans -@dirrm %%DATADIR%%/data/campaigns/Under_the_Burning_Suns/images/units/monsters -@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/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 -@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/core/editor -@dirrm %%DATADIR%%/data/core/images/attacks -@dirrm %%DATADIR%%/data/core/images/editor -@dirrm %%DATADIR%%/data/core/images/halo/elven -@dirrm %%DATADIR%%/data/core/images/halo/holy -@dirrm %%DATADIR%%/data/core/images/halo/merfolk -@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/drakes/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/drakes -@dirrm %%DATADIR%%/data/core/images/portraits/dwarves/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/dwarves -@dirrm %%DATADIR%%/data/core/images/portraits/elves/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/elves -@dirrm %%DATADIR%%/data/core/images/portraits/goblins/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/goblins -@dirrm %%DATADIR%%/data/core/images/portraits/humans/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/humans -@dirrm %%DATADIR%%/data/core/images/portraits/merfolk/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/merfolk -@dirrm %%DATADIR%%/data/core/images/portraits/monsters/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/monsters -@dirrm %%DATADIR%%/data/core/images/portraits/nagas -@dirrm %%DATADIR%%/data/core/images/portraits/orcs/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/orcs -@dirrm %%DATADIR%%/data/core/images/portraits/saurians/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/saurians -@dirrm %%DATADIR%%/data/core/images/portraits/trolls/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/trolls -@dirrm %%DATADIR%%/data/core/images/portraits/undead/transparent -@dirrm %%DATADIR%%/data/core/images/portraits/undead -@dirrm %%DATADIR%%/data/core/images/portraits -@dirrm %%DATADIR%%/data/core/images/projectiles -@dirrm %%DATADIR%%/data/core/images/scenery -@dirrm %%DATADIR%%/data/core/images/story -@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/walls -@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/gui/default/macros -@dirrm %%DATADIR%%/data/gui/default/widget -@dirrm %%DATADIR%%/data/gui/default/window -@dirrm %%DATADIR%%/data/gui/default -@dirrm %%DATADIR%%/data/gui -@dirrm %%DATADIR%%/data/hardwired -@dirrm %%DATADIR%%/data/languages -@dirrm %%DATADIR%%/data/multiplayer/factions -@dirrm %%DATADIR%%/data/multiplayer/maps -@dirrm %%DATADIR%%/data/multiplayer/scenarios/ANL_utils -@dirrm %%DATADIR%%/data/multiplayer/scenarios -@dirrm %%DATADIR%%/data/multiplayer -@dirrm %%DATADIR%%/data/themes -@dirrm %%DATADIR%%/data/tools/addon_manager -@dirrm %%DATADIR%%/data/tools/castle-cutter -@dirrm %%DATADIR%%/data/tools/emacs_mode -@dirrm %%DATADIR%%/data/tools/exploder/models -@dirrm %%DATADIR%%/data/tools/exploder -@dirrm %%DATADIR%%/data/tools/unit_tree -@dirrm %%DATADIR%%/data/tools/vim -@dirrm %%DATADIR%%/data/tools/wesnoth -@dirrm %%DATADIR%%/data/tools -@dirrm %%DATADIR%%/data -@dirrm %%DATADIR%%/fonts -@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/flags -@dirrm %%DATADIR%%/images/footsteps -@dirrm %%DATADIR%%/images/icons -@dirrm %%DATADIR%%/images/misc -@dirrm %%DATADIR%%/images/tools/exploder -@dirrm %%DATADIR%%/images/tools -@dirrm %%DATADIR%%/images -@dirrm %%DATADIR%%/sounds -@dirrm %%DATADIR%% -@dirrm %%DOCSDIR%%/manual/images/de -@dirrm %%DOCSDIR%%/manual/images/es -@dirrm %%DOCSDIR%%/manual/images/hu -@dirrm %%DOCSDIR%%/manual/images/tr -@dirrm %%DOCSDIR%%/manual/images -@dirrm %%DOCSDIR%%/manual/styles -@dirrm %%DOCSDIR%%/manual -@dirrm %%DOCSDIR%% +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth +@dirrmtry man/af/man6 +@dirrmtry man/af +@dirrmtry man/ar/man6 +@dirrmtry man/ar +@dirrmtry man/bg/man6 +@dirrmtry man/bg +@dirrmtry man/ca/man6 +@dirrmtry man/ca +@dirrmtry man/ca_ES@valencia/man6 +@dirrmtry man/ca_ES@valencia @dirrmtry man/cs/man6 @dirrmtry man/cs @dirrmtry man/da/man6 @dirrmtry man/da @dirrmtry man/de/man6 @dirrmtry man/de +@dirrmtry man/el/man6 +@dirrmtry man/el +@dirrmtry man/en@shaw/man6 +@dirrmtry man/en@shaw @dirrmtry man/en_GB/man6 @dirrmtry man/en_GB +@dirrmtry man/eo/man6 +@dirrmtry man/eo @dirrmtry man/es/man6 @dirrmtry man/es @dirrmtry man/et/man6 @dirrmtry man/et +@dirrmtry man/eu/man6 +@dirrmtry man/eu @dirrmtry man/fi/man6 @dirrmtry man/fi @dirrmtry man/fr/man6 @dirrmtry man/fr +@dirrmtry man/fur_IT/man6 +@dirrmtry man/fur_IT @dirrmtry man/gl/man6 @dirrmtry man/gl +@dirrmtry man/he/man6 +@dirrmtry man/he +@dirrmtry man/hr/man6 +@dirrmtry man/hr @dirrmtry man/hu/man6 @dirrmtry man/hu +@dirrmtry man/id/man6 +@dirrmtry man/id +@dirrmtry man/is/man6 +@dirrmtry man/is @dirrmtry man/it/man6 @dirrmtry man/it +@dirrmtry man/ko/man6 +@dirrmtry man/ko +@dirrmtry man/la/man6 +@dirrmtry man/la @dirrmtry man/lt/man6 @dirrmtry man/lt +@dirrmtry man/lv/man6 +@dirrmtry man/lv +@dirrmtry man/mk/man6 +@dirrmtry man/mk +@dirrmtry man/mr/man6 +@dirrmtry man/mr +@dirrmtry man/nb_NO/man6 +@dirrmtry man/nb_NO @dirrmtry man/nl/man6 @dirrmtry man/nl @dirrmtry man/pl/man6 @dirrmtry man/pl +@dirrmtry man/pt/man6 +@dirrmtry man/pt +@dirrmtry man/pt_BR/man6 +@dirrmtry man/pt_BR @dirrmtry man/racv/man6 @dirrmtry man/racv +@dirrmtry man/ro/man6 +@dirrmtry man/ro @dirrmtry man/ru/man6 @dirrmtry man/ru @dirrmtry man/sk/man6 @dirrmtry man/sk +@dirrmtry man/sl/man6 +@dirrmtry man/sl @dirrmtry man/sr/man6 @dirrmtry man/sr +@dirrmtry man/sr@ijekavian/man6 +@dirrmtry man/sr@ijekavian +@dirrmtry man/sr@ijekavianlatin/man6 +@dirrmtry man/sr@ijekavianlatin @dirrmtry man/sr@latin/man6 @dirrmtry man/sr@latin @dirrmtry man/sv/man6 @dirrmtry man/sv +@dirrmtry man/tl/man6 +@dirrmtry man/tl @dirrmtry man/tr/man6 @dirrmtry man/tr +@dirrmtry man/vi/man6 +@dirrmtry man/vi @dirrmtry man/zh_CN/man6 @dirrmtry man/zh_CN @dirrmtry man/zh_TW/man6 @@ -9752,6 +1338,8 @@ share/pixmaps/wesnoth-icon.png @dirrmtry share/applications %%NLS%%@dirrmtry share/locale/ca_ES@valencia/LC_MESSAGES %%NLS%%@dirrmtry share/locale/ca_ES@valencia +%%NLS%%@dirrmtry share/locale/en@shaw/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/en@shaw %%NLS%%@dirrmtry share/locale/fur_IT/LC_MESSAGES %%NLS%%@dirrmtry share/locale/fur_IT %%NLS%%@dirrmtry share/locale/la/LC_MESSAGES @@ -9762,6 +1350,10 @@ share/pixmaps/wesnoth-icon.png %%NLS%%@dirrmtry share/locale/nb_NO %%NLS%%@dirrmtry share/locale/racv/LC_MESSAGES %%NLS%%@dirrmtry share/locale/racv +%%NLS%%@dirrmtry share/locale/sr@ijekavian/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/sr@ijekavian +%%NLS%%@dirrmtry share/locale/sr@ijekavianlatin/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/sr@ijekavianlatin %%NLS%%@dirrmtry share/locale/sr@latin/LC_MESSAGES %%NLS%%@dirrmtry share/locale/sr@latin %%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES |